

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
:root {
  --firstColor:#bf1e2e;
  --color-black: hsl(0, 0%, 10%);
  --color-darks: hsl(0, 0%, 25%);
  --color-greys: hsl(0, 0%, 60%);
  --color-light: hsl(0, 0%, 95%);
  --color-white: hsl(0, 0%, 100%);
  --color-green-100: hsl(152, 24%, 50%);
  --color-green-200: hsl(152, 24%, 35%);
  --color-green-300: hsl(152, 24%, 25%);
  --display-100: clamp(0.88rem, calc(0.8rem + 0.38vw), 1rem);
  --display-200: clamp(1rem, calc(0.96rem + 0.18vw), 1.13rem);
  --display-300: clamp(1.2rem, calc(1.11rem + 0.43vw), 1.5rem);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: var(--display-200);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-black);
  background-color: var(--color-white);
}

/*main {overflow: hidden;}*/

/*a, button {cursor: pointer; border: none; outline: none; background: none;}*/

/*img, video {display: block; max-width: 100%; height: auto; -o-object-fit: cover; object-fit: cover;}*/

img {image-rendering: -webkit-optimize-contrast; image-rendering: -moz-crisp-edges; image-rendering: crisp-edges;}

.container {max-width: 75rem;height: auto;margin: 0 auto;padding: 0 1.25rem;}
.brand {font-family: inherit; font-size: 1.6rem; font-weight: 600;line-height: 1.25;
  letter-spacing: -1px; text-transform: uppercase; color: var(--color-green-200);}
.header {position: fixed; left: 0; top: 0; width: 100%; height: auto; z-index: 10; margin: 0 auto;
  background-color: var(--color-white); box-shadow: var(--shadow-medium);}
.navbar {display: flex; flex-direction: row; align-items: center;justify-content: flex-start;
  -moz-column-gap: 1rem; column-gap: 1rem; width: 100%; height: 4rem; margin: 0 auto;}
.menu {position: fixed; top: 0; left: -100%; width: 80%; height: 100%; z-index: 10; overflow-y: auto;
  background-color: var(--color-white); box-shadow: var(--shadow-medium); transition: all 0.45s ease-in-out;}
.menu.is-active {top: 0; left: 0;}
.menu-inner {display: flex;flex-direction: column; row-gap: 1.25rem; margin: 1.25rem;}
.menu-link {font-family: inherit; font-size: 1rem; font-weight: 500;line-height: 1.5;text-transform: uppercase;
  color: var(--color-black); transition: all 0.3s ease;}
.menu-block {display: inline-block; font-family: inherit;
  font-size: var(--display-100); font-weight: 500; line-height: 1.25;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center; white-space: nowrap; margin-left: auto;padding: 0.65rem 1.5rem;
  border-radius: 3rem; color: var(--color-white);background-color: var(--color-black);
  box-shadow: var(--shadow-medium);transition: all 0.3s ease-in-out;}
.menu-block:hover{color:#fff;}  
@media only screen and (min-width: 48rem) {
  .menu {position: relative; top: 0; left: 0; width: auto; height: auto; margin-left: auto; background: none;
    box-shadow: none;}
  .menu-inner {display: flex; flex-direction: row; -moz-column-gap: 1.75rem; column-gap: 1.75rem; margin: 0 auto;}
  .menu-link {text-transform: capitalize;}
  .menu-block {margin-left: 2rem;}
}

.burger {position: relative; display: block; cursor: pointer; order: -1; width: 1.6rem; height: auto; border: none;
  outline: none; visibility: visible;}
.burger-line { display: block; cursor: pointer; width: 100%; height: 2px; margin: 6px auto; transform: rotate(0deg);
  background: var(--color-black);}
@media only screen and (min-width: 48rem) {
  .burger {display: none; visibility: hidden;}
}
.overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 10;opacity: 0; visibility: hidden;
  background-color: rgba(0, 0, 0, 0.65);transition: all 0.3s ease-in-out;}
.overlay.is-active {display: block;opacity: 1; visibility: visible;}
.top-section{display:flex; width:100%; background:var(--firstColor);}
.top-section .top-left, .top-section .top-right{color:#fff; font-size:14px;letter-spacing:1px; padding:8px;}
a.menu-link:hover{color:var(--firstColor);}
/*****************banner************/
.banner{width:100%; float:left;}
.home {height: 100vh; position: relative; overflow: hidden;}
.home video {position: absolute;  width: 100%; height: 100%; object-fit: cover;  z-index: 1;}
.home-content {position: relative; padding-top: 150px; color: #fff; text-align: center;  z-index: 3;}
.home-content h1 {font-size: 35px; line-height: 1.1;}
.home p {font-size:25px; margin-top: 10px;}
.home-content button {display: block; font-size: clamp(14px, 1.5vw, 18px); border: 1px solid #f1f1f1;
    border-radius: 5px; background: transparent; color: #fff; margin: 15px auto 0; padding: 12px 20px;
    cursor: pointer;}
.home::before { content: ""; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 2; }
.video-form{background:#ffffff57; border-radius:10px;padding:15px;}	
section.page_wrap {width:100%; float:left}
.p-15{padding:15px;}
.bgOne{background:#000;}
.mt-20{margin-top:20px;}
.mt-25{margin-top:25px;}
.mt-30{margin-top:30px;}
.mt-35{margin-top:35px;}
.mt-40{margin-top:40px;}
.mb-20{margin-bottom:20px;}
.mb-25{margin-bottom:25px;}
.mb-30{margin-bottom:30px;}
.mb-35{margin-bottom:35px;}
.mb-40{margin-bottom:40px;}

.hdOne{font-size:25px;}
.service-provide{display:flex;}
.service-provide{margin:15px 0;}
.service-provide img{width:60px; margin-right:10px;}
.service-provide h4{font-size:20px;}
ul.list-col-two{margin:0px; padding:0px;}
ul.list-col-two{column-count: 2;}
ul.list-col-two{column-count: 2;}
ul.list-col-two li{font-size:16px; padding:5px 0;}
ul.list-col-two li:before{content:'\2192';font-size:18px; padding-right:10px; color:var(--firstColor); font-weight:700;}
.service-img img{border-top-right-radius:100px;}
.callBtn{border:0px; background:var(--firstColor); padding:8px 20px; border-radius:25px; font-size:18px;color:#fff;}
.bg-img{background:url(../images/bg-img.jpg);
background-repeat:no-repeat; background-size:cover;
}
.box_area{border:1px solid #ddd; box-shadow: 0 3px 10px rgb(0 0 0 / 0.2); padding:15px;}
.footer_area{color:#666; font-size:16px;}
.social-icon a{background:#fff;padding:5px;color:#111;}
@media(max-width:768px){
	.service-provide{margin:10px 0;}
	.service-provide h4{font-size:16px;}
	.service-provide img{width:40px; margin-right:10px;}
	.service-img img{border-bottom-right-radius:50px; border-bottom-left-radius:50px;}
	ul.list-col-two li{font-size:13px;}
	.top-section .top-left, .top-section .top-right{font-size:12px;}
}
 
 /**************contact************/
.form {width: 100%; max-width: 820px; background-color: #fff; border-radius: 10px; box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000; overflow: hidden; display: grid; grid-template-columns: repeat(2, 1fr); margin: 0 auto;}
.contact-form {background-color: #424242; position: relative;}
.contact-form:before {content: ""; position: absolute; width: 26px; height: 26px; background-color: #424242;
  transform: rotate(45deg); top: 50px; left: -13px;}
form {padding: 2.3rem 2.2rem; z-index: 10; overflow: hidden; position: relative;}
.title {color: #fff; font-weight: 500; line-height: 1; margin-bottom: 0.7rem;}
.input-container {position: relative; margin: 1rem 0;}
.input {width: 100%; outline: none; border: 1px solid #6f6f6f; background: none; padding: 0.6rem 1.2rem; color: #fff;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.5px; border-radius: 5px; transition: 0.3s;}
textarea.input {padding: 0.8rem 1.2rem; min-height: 150px; border-radius: 5px; resize: none; overflow-y: auto;}
.input-container label {position: absolute; top: 50%; left: 15px; transform: translateY(-50%); padding: 0 0.4rem;
  color: #fafafa; font-size: 0.9rem; font-weight: 400; pointer-events: none; z-index: 1000; transition: 0.5s;}
.input-container.textarea label {top: 1rem; transform: translateY(0);}
.btn {padding: 0.6rem 1.3rem; background-color: #fff; border: 2px solid #fafafa; font-size: 0.95rem;color: #051020;
  line-height: 1; border-radius: 5px; outline: none; cursor: pointer; transition: 0.3s; margin: 0; width: 100%;}
.btn:hover {background-color: transparent; color: #fff;}
.input-container span {position: absolute; top: 0; left: 25px; transform: translateY(-50%);font-size: 0.8rem; padding: 0 0.4rem;
  color: transparent; pointer-events: none; z-index: 500;}
.input-container span:before, .input-container span:after { content: ""; position: absolute; width: 10%; opacity: 0;
  transition: 0.3s; height: 5px; background-color: #051020; top: 50%; transform: translateY(-50%);}
.input-container span:before {left: 50%;}
.input-container span:after {right: 50%;}
.input-container.focus label {top: 0; transform: translateY(-50%); left: 25px; font-size: 0.8rem;}
.input-container.focus span:before, .input-container.focus span:after {width: 50%; opacity: 1;}
.contact-info {padding: 2.3rem 2.2rem; position: relative;}
.contact-info .title {color: #444;}
.text {color: #333; margin: 1.5rem 0 2rem 0;}
.information {display: flex; color: #555; margin: 0.7rem 0; align-items: center; font-size: 0.95rem;}
.information i {color: #444; margin-top: -12px; font-size: 20px;}
.icon {width: 28px; margin-right: 0.7rem;}
.social-media {padding: 2rem 0 0 0;}
.social-media p {color: #333;}
.social-icons {display: flex; margin-top: 0.5rem;}
.social-icons a {width: 35px; height: 35px;  border-radius: 5px;background: linear-gradient(45deg, #051020, #051020);
  color: #fff; text-align: center; line-height: 35px; margin-right: 0.5rem; transition: 0.3s;}
.social-icons a:hover {transform: scale(1.05);}
.contact-info:before {content: ""; position: absolute; width: 110px; height: 100px; border: 22px solid #051020;
  border-radius: 50%; bottom: -77px; right: 50px; opacity: 0.3;}
.square {position: absolute; height: 400px; top: 50%; left: 50%; transform: translate(181%, 11%);opacity: 0.2;}

@media (max-width: 850px) {
	.form {grid-template-columns: 1fr;}
	.contact-info:before {bottom: initial; top: -75px; right: 65px; transform: scale(0.95);}
	.contact-form:before {top: -13px; left: initial; right: 70px;}
	.square {transform: translate(140%, 43%); height: 350px;}
	.text {margin: 1rem 0 1.5rem 0;}
	.social-media {padding: 1.5rem 0 0 0;}
}

@media (max-width: 480px) {
	/*.container {padding: 1.5rem;}*/
	.contact-info:before {display: none;}
	.square{display: none;}
	form, .contact-info {padding: 1.7rem 1.6rem;}
	.text, .information, .social-media p {font-size: 0.8rem;}
	.title {font-size: 1.15rem;}
	.social-icons a {width: 30px; height: 30px; line-height: 30px;}
	.icon {width: 23px;}
  .input {padding: 0.45rem 1.2rem;}
  .btn {padding: 0.45rem 1.2rem;}
  
}
