:root{
    --primary-color: #000000;
    --red:#EB001C;
    --white: #fff;
}

body {
    background: var(--primary-color);
    margin: 0px;
    overflow-x: hidden;
    color: var(--white);
}

.activeLink {
  color: var(--red)!important;
}

/* typography */

.be-vietnam-pro-thin {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .be-vietnam-pro-extralight {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .be-vietnam-pro-light {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .be-vietnam-pro-regular {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .be-vietnam-pro-medium {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .be-vietnam-pro-semibold {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .be-vietnam-pro-bold {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .be-vietnam-pro-extrabold {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .be-vietnam-pro-black {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .be-vietnam-pro-thin-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .be-vietnam-pro-extralight-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .be-vietnam-pro-light-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .be-vietnam-pro-regular-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .be-vietnam-pro-medium-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .be-vietnam-pro-semibold-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .be-vietnam-pro-bold-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .be-vietnam-pro-extrabold-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .be-vietnam-pro-black-italic {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  .quantico-regular {
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .quantico-bold {
    font-family: "Quantico", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .quantico-regular-italic {
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .quantico-bold-italic {
    font-family: "Quantico", sans-serif;
    font-weight: 700;
    font-style: italic;
  }

/* typography */

.container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    position: fixed;
    width: 100%;
    z-index: 10000;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
}

.navLogo{
  height: 52px;
}

@media screen and (max-width: 800px) {
  .navLogo{
    height: 40px;
  }
}

.navItems {
    width: 80%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    color: white;
    align-content: center;
    align-items: center;
}

.navLinkContainer {
    display: flex;
    gap: 25px;
}

.navLinkContainerMobile {
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  position: fixed;
  padding: 20px;
  width: 80vw;
  height: auto;
  gap: 15px;
  background-color: #000000e6;
  z-index: 1000000;
  text-align: right;
  display: none;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -15%);
}

.nav-link {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
    color: white;
    text-decoration: none;
}

.nav-link:hover{
    color: var(--red);
}
.menuIcon{
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 1050px) {
   .navLinkContainer {
    display: none;
   }
   .menuIcon{
    display: block;
    z-index: 100;
    background-color: var(--primary-color);
   }
   nav {
    z-index: 10000;
   }
}

/* section one */

.banner {
    width: 100vw;
    height: 100vh;
}

.bannerImage {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}

.bannerTitle {
    font-size: 75px;
    text-transform: uppercase;
}

.bannerText {
    position: absolute;
    z-index: 1;
    width: 30%;
    margin-left: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bannerSubTitle {
  font-size: 18px;
  line-height: 32px;
}

.bannerSubTitleSmall {
  font-size: 16px;
}

.bannerButton {
  border-radius: 16px;
  background: none;
  font-size: 18px;
  color: white;
  padding: 10px;
  border: 1px solid white;
  margin-top: 160px;
  max-width: 400px;
}


@media screen and (max-width: 1200px) {
  .bannerText{
    width: 55%;
  }
}

@media screen and (max-width: 800px) {
  .bannerText{
    width: 60%;
  }
  .bannerTitle {
    font-size: 45px;
  }
  .bannerSubTitle {
    font-size: 14px;
  }
  .bannerButton {
    font-size: 14px;
  }
}


/* second two */

.sectionTwo {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sectionTwoImage {
    width: 100vw;
    position:absolute;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.sectionTwoText {
    width: 80%;
    position:absolute;
    z-index: 1;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.sectionTwoSubTitle {
    font-size: 18px;
    line-height: 32px;
    width: 45%;
}

.extraSmallText {
  font-size: 14px!important;
}

.sectionTwoSubTitleTwo {
  margin-top: 100px;
  display: flex;
  justify-content: right;
  text-align: right;
}


@media screen and (max-width: 900px) {
  .sectionTwoSubTitle{
    width: 80%;
  }
}

@media screen and (max-width: 800px) {
  .sectionTwoSubTitle{
    font-size: 18px;
  }
}

.centerColSectionTwo {
    width: 100%;
    margin-top: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.downIcon {
    margin-top: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* section three */
.sectionThree {
    background-image: url('../img/long-bg.svg');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.sectionThreeContainer {
    width: 80%;
    margin-top: 100px;
}
.connectionContainer {
    width: 80%;
    margin-top: 100px;
}

.sectionTitle {
    font-size: 70px;
}

.sectionDescription {
    font-size: 25px;
}

@media screen and (max-width: 1250px) {
  .sectionTitle{
    font-size: 35px;
  }
  .sectionDescription {
    font-size: 18px;
}
}

.flex {
    display: flex;
}

.spaceBetween {
    justify-content: space-between;
}
.flexCol {
    display: flex;
    flex-direction: column;
}

.textRight {
    text-align: right;
}

.itemOne {
    width: 50%;
    justify-content: center;
}

.itemTwo {
    width: 40%;
    object-fit: contain;
}

@media screen and (max-width: 1250px) {
  
  .sectionThreeContainer .flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .connectionContainer .flex {
    flex-wrap: wrap;
    
  }
  .itemOne {
    width: 100%!important;
  }

  .itemTwo {
      width: 100%!important;
  }

  .itemTwo img {
    margin-top: 20px;
    max-width: 100%;
  }

}

/* section four */

.sectionFour {
    width: 100vw;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sectionFourTitle {
    font-size: 70px;
}

.sectionDescription {
    font-size: 18px;
}

@media screen and (max-width: 1250px) {
  .sectionFourTitle {
    font-size: 40px;
  }

  .sectionDescription {
      font-size: 18px;
  }
}

.sectionFourSubTitle {
  width: 80%;
}

.sectionFourIcon {
  width: 35px;
  margin-right: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 900px) {
  .sectionFourTitle {
    font-size: 40px;
  }

  .sectionFourIcon {
    width: 35px;
  }

}

/* footer */
footer {
 width: 100vw;
 display: flex;
 justify-content:center;
}

.footerSection {
    width: 80%;
    padding: 50px;
    display: flex;
    justify-content: space-evenly;
}

.footerMenu {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

@media screen and (max-width: 850px) {
  .footerSection {
    flex-direction: column;
   }
  .footerMenu {
    margin-bottom: 50px;
  }
  .footerMenu img {
    height: 80px;
  }

  .menu2 {
    order: 1;
  }

  .menu1 {
    order: 2;
  }

  .menu3 {
    order: 3;
  }
}

.nav-link-footer {
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-decoration: none;
}

.nav-link-footer:hover{
    color: var(--red);
}


/* about */
.aboutSectionTeam {
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.bannerTextAbout {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 100;
}

@media screen and (max-width: 900px) {
  .bannerTextAbout {
    width: 90%;
  }
  .aboutSectionTeam {
    margin-top: 50px;
  }
}

.bannerAbout {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    flex-wrap: wrap;
}

.bannerAboutThree {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    z-index: 999;
}

.aboutVision {
    width: 80%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-evenly;
    z-index: 999;
}

.vision {
  display: flex;
  flex-direction: column;
  width: 45%;
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .aboutVision {
    width: 90%;
  }
  .vision {
    width: 100%;
  }
}


/* team */
.teamContainer {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 70%;
    align-items: center;
    justify-content: center;
}

.team {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.teamImage {
    width: 250px;
    height: 250px;
    object-fit: cover;
} 

@media screen and (max-width: 900px) {
  .teamContainer {
    width: 90%;
  }
  .team {
    width: 40%;
  }
  .teamImage {
    width: 100%;
  }
}
/* slider */

.sliderImage {
    width: 800px;
    margin-top: 20px;
    cursor: pointer;
}

  section.awSlider .carousel{
    width: 800px;
    display:table;
    z-index:2;
  }
  
  section.awSlider{
    width: 800px;
    margin:30px auto;
    padding:30px;
    position:relative;
    display:table;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  section.awSlider:hover > img{
    width: 800px;
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity:1;
  }
  
  section.awSlider img{
     pointer-events: none;
  }
  
  section.awSlider > img{
    display: none;
    position:absolute;
    top:30px;
    z-index:1;
    transition:all .9s;
    filter: blur(1.8vw);
    -webkit-filter: blur(2vw);
    -moz-filter: blur(2vw); 
    -o-filter: blur(2vw); 
    -ms-filter: blur(2vw);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity:.5;
  }

  .carousel-indicators {
    display: none;
  }
.item{
    text-align: center;
}
  .sliderText {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
  }

  .carousel-control.left{
    background-image: none;
  }
  .carousel-control.right{
    background-image: none;
  }

.sliderTitle {
    font-size: 40px;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 850px) {
  .awSlider{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .sliderImage {
    width: 100%  ;
}

  section.awSlider .carousel{
    width: 100%  ;
  }
  
  section.awSlider{
    width: 100%  ;
    user-select: none;
  }
  
  section.awSlider:hover > img{
    width: 100%  ;
  }
  
}

@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes upDownSmall {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.animateDownIcon {
  animation: upDown 2s infinite;
}
.animateDownIconSmall {
  animation: upDownSmall 2s infinite;
}

.hide {
  display: none;
}

.unhide {
  display: flex;
}

.no-scroll {
  overflow: hidden;
}

.contactSectionTitle {
  font-size: 40px;
  margin-bottom: 15px;
}

.pointer {
  cursor: pointer;
}

.rightArrorIcon {
  height: 10px;
  transform: rotate(270deg);
}