@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Maison Neue";
  src: url("../fonts/maisonneuebook.woff2") format("woff2"),
    url("../fonts/maisonneuebook.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue Medium";
  src: url("../fonts/maisonneuemedium.woff2") format("woff2"),
    url("../fonts/maisonneuemedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --blue: #040258;
  --green: #00d697;
  --lightGreen: #7defd4;
  --FontMaison: "Maison Neue";
  --FontMaisonMedium: "Maison Neue Medium";
}
html {
  scroll-behavior: inherit !important;
}
body {
  font-family: "Barlow", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  font-family: var(--FontMaison);
}
img {
  width: 100%;
  display: block;
}
button {
  border: 0;
  background: none;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  padding: 10px 0;
}
.logo {
  width: 150px;
  display: block;
  transition: all 0.3s ease-in-out;
}

.menuList li a {
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  display: block;
  transition: all 0.3s ease-in-out;
}
.menuList li.active a {
  color: var(--green);
}
/* .mainWrap {
  background: url(../images/bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
} */

.bg1 {
  background: url(../images/bg.webp) no-repeat bottom;
  background-size: cover;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.bg2 {
  background: url(../images/bg2.webp) no-repeat bottom;
  background-size: cover;

  overflow: hidden;
}

section {
  margin-bottom: 50px;
}

.welcomeNoteSec h1 {
  color: var(--white);
  text-align: center;
  margin: 0;
  font-weight: 700;
}

.bannerWrp {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.bannerWrp video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.introPara {
  background: var(--white);
  color: var(--blue);
  text-align: center;
  font-weight: 500;
  border-top: 2px solid var(--green);
  position: relative;
  border-radius: 0 0 5px 5px;
}
.introPara p {
  font-family: var(--FontMaisonMedium);
}
.introPara p:last-child {
  margin-bottom: 0;
}
.introPara::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  top: -16px;
  background: url(../images/greenStar.svg) no-repeat center;
  background-size: 100%;
}

.title {
  color: var(--lightGreen);
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 24px;
}

.tabList {
  overflow: hidden;
  position: relative;
}
.tabList::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  bottom: 15px;
  left: 0;
  background: var(--white);
  border-radius: 5px;
}
.tabList li button {
  display: table;
  margin: 0 auto;
  color: var(--blue);
  position: relative;
  padding: 30px 0;
  font-size: 12px;
  width: 100%;
  height: 100%;
}
.tabList li.active button {
  font-weight: 700;
}
.tabList li button:before,
.tabList li button:after {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  background: url(../images/bracket.svg) no-repeat center;
  background-size: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.tabList li button:before {
  left: 0;
}
.tabList li button:after {
  right: 0;
  transform: scaleX(-1);
}
.tabList li.active button:before,
.tabList li.active button:after {
  opacity: 1;
}

.serIntro {
  text-align: center;
  color: var(--white);
  font-weight: 500;
}
.serIntro h3 {
  color: var(--green);
}
.serIntro p:last-child {
  margin-bottom: 0;
}

.serviceCard img {
  aspect-ratio: 5/3;
  overflow: hidden;
  border: 1px solid var(--green);
}

.serviceTxt {
  text-align: center;
  color: var(--white);
}
.serviceTxt h4 {
  color: var(--green);
  font-weight: 700;
}
.serviceTxt > *:last-child {
  margin-bottom: 0;
}

.serviceSlider .swiper-button-prev,
.serviceSlider .swiper-button-next {
  top: 35% !important;
}

.formSec {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 51, 0.95);
  z-index: 999;
}

.leadForm {
  border: 1px solid var(--white);
}
.leadForm label {
  color: var(--white);
  font-family: var(--FontMaison);
}
.leadForm .form-control {
  border: 1px solid var(--white);
  background: none;
  color: var(--white);
}
.leadForm .form-control:focus {
  outline: none;
  box-shadow: none;
}

.cta {
  color: var(--blue);
  background: var(--green);
  display: table;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  padding: 15px 30px;
}

.cta:hover {
  background: var(--blue);
  color: var(--green);
}

.line {
  height: 1px;
  background: var(--white);
}

.aboutTitle {
  font-weight: bold;
}
.aboutTitle span {
  position: relative;
  padding: 0 50px;
}
.aboutTitle span::before,
.aboutTitle span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/whiteStar.svg) no-repeat center;
  background-size: cover;
}
.aboutTitle span::after {
  left: auto;
  right: 0;
}

.aboutTxt {
  color: var(--white);
  text-align: center;
}
.aboutTxt > * {
  margin-bottom: 0;
}
.aboutTxt h5 {
  font-weight: 700;
  margin-bottom: 20px;
}
.aboutTxt p {
  font-family: var(--FontMaison);
}
.contactTitle {
  font-weight: 700;
}

.contactInfo {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: var(--FontMaison);
}
.contactInfo h6 {
  font-weight: 700;
}
.contactInfo p:last-child {
  margin-bottom: 0;
}

.contactInfo .col:last-child {
  border: 0;
}
.copyright {
  color: var(--white);
  text-align: center;
  font-family: var(--FontMaison);
}

.accHead {
  text-align: center;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.accordianWrp {
  border-top: 1px solid var(--white);
}
.accordianWrp > div {
  border-bottom: 1px solid var(--white);
  position: relative;
  z-index: 1;
}
.accordianWrp > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.accordianWrp > div.active::before {
  opacity: 1;
}
.accordianWrp > div:nth-child(1).active:before {
  background: url(../images/vyoma.webp) no-repeat bottom;
  background-size: cover;
}
.accordianWrp > div:nth-child(2).active:before {
  background: url(../images/vision.webp) no-repeat center;
  background-size: cover;
}
.accordianWrp > div:nth-child(3).active {
  background: url(../images/mission.webp) no-repeat bottom;
  background-size: cover;
}
.accContent {
  text-align: center;
  color: var(--white);
  line-height: 1;
  display: none;
  font-family: var(--FontMaison);
  line-height: 1.3;
}
.accContent p:last-child {
  margin-bottom: 0;
}
.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  border: 2px solid var(--white);
  padding: 0;
  border-radius: 100%;
  display: block !important;
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  left: 1% !important;
}
.swiper-button-next {
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  right: 1% !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--green);
}
.leadBtn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  transform-origin: 50% 50%;
}
.leadBtn.active {
  opacity: 1;
}
.formCloseBtn {
  aspect-ratio: 1/1;
  width: 30px;
  border: 2px solid var(--white);
  border-radius: 100%;
  margin-bottom: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.formCloseBtn svg {
  fill: var(--white);
  width: 60%;
  height: 60%;
}

.scrollBtn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 30px;
  aspect-ratio: 1/1;
  background: var(--green);
  border-radius: 100%;
  display: none;
}
.scrollBtn svg {
  width: 80%;
  height: 80%;
  fill: var(--white);
}
