@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  text-transform: lowercase;
  font-family: "Lato", sans-serif;
  border: none;
  scroll-behavior: smooth;
  list-style-type: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
  outline: none !important;
}

/*-------------------nav bar starts------------*/



nav {
  position: relative;
  top: 0;
  z-index: 10;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
  height: 70px;
  width: 100%;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.navbar-yellow {
  background-color: rgb(0,0,0, 0.6) !important;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);

}

nav ul {
  height: 70px;
  list-style-type: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  transition: 0.5s ease-in-out;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

nav ul li {
  display: flex;
  align-items: center;
  transition: background-color 0.5s ease-in-out;
  height: 70px;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

nav ul li a {
  display: block;
  padding: 0px 20px;
  color: black;
  transition: background-color 0.5s ease-in-out;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(0, 0, 0, 0.6);
  min-width: 200px;
  transition: 0.5s linear;
  top: 100%;
  left: 0;
  border-radius: 0% 0% 5% 5%;
  width: 100%;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown-link {
  height: 70px;
}

.dropdown-content a {
  display: block;
  padding: 15px 25px;
  color: white;
  transition: 0.5s ease-in-out;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.scroll-container {
  height: 3000px;
  transition: background-color 0.5s ease-in-out;
}

/* Before 300px */
.navbar-before-300px {
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: transparent;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.navbar-before-300px ul li a {
  color: white;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* After 300px */
.navbar-after-300px {
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: rgb(0, 0, 0, 0.6);
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.navbar-after-300px ul li a {
  color: white;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown-link.dropdown-hover,
.navbar-yellow,
.dropdown-content:hover {
  background-color: rgb(0, 0, 0, 0.6);
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.dropdown-content a:hover {
  color: white;
  transition: 0.5s linear;
  -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.logo01 {
  width: 210px;
  height: 33px;
}

/*-----mobile navbar---------*/

.nav-mob {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(0, 0, 0, 0.6);
  height: 11vh;
  width: 100%;
  z-index: 1;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  -ms-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  backface-visibility: hidden;
  transform: translateZ(0px);
  transition: 0.3s;
}

.mob_nav_logo img {
  width: 250px;
  height: 43px;
  margin: auto;
}

.burger {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  padding: 0;
  width: 82px;
  height: 82px;
  font-size: 30px;
  color: #f9f9f9;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.burger i:last-child {
  display: none;
}

body.open .burger i:first-child {
  display: none;
}

body.open .burger i:last-child {
  display: block;
}

.overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(27 32 44 / 70%);
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

body.open .overlay {
  visibility: visible;
  opacity: 1;
}



.nav-mob button {
  background: transparent;
  border: 0;
  cursor: pointer;
}

aside {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100%;
  padding: 60px 55px 25px 25px;
  background-color: rgb(0, 0, 0, 0.6);
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
  translate: 100% 0;
  transition: 0.3s;
}

body.open aside {
  translate: 0;
}

aside a {
  display: flex;
  align-items: center;
  height: 77px;
  font-size: 20px;
  cursor: pointer;
}


/*----------------- button ------------------*/

.cta {
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.cta span {
  padding-bottom: 3px;
  letter-spacing: 4px;
  font-size: 14px;
  padding-right: 5px;
  text-transform: lowercase;
  display: inline-block;
  transition: all 0.7s ease;
  color: #fff;
}

.cta:hover span,
.cta:focus span {
  transform: translateX(4px);
  transition: all 0.7s ease;
}

.cta:active span {
  transform: scale(0.9);
}

.cta svg {
  transform: translateX(0);
  transition: all 0.5s ease;
}

.cta:hover svg,
.cta:focus svg {
  transform: translateX(10px);
}

.cta:active svg {
  transform: scale(0.9);
}

/*----------------- video ------------------*/

.vidoplay {
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: top;
  align-items: top;
  position: relative;
  z-index: 0;
  background-color: #fdfdfd;

}

.videoexp_laptop {
  height: 100%;
  width: 100%;
  background-size: cover;
  overflow: hidden;
  pointer-events: none;
 
}

.brandimgcontainer {
  height:370px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandimagemain {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(images/homepage_BG.jpg);
  background-size: cover;
  background-repeat: repeat-x;
}

.brandmotto{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.brandmotto p{
  font-size: 44px;
  font-weight: 200;
  line-height: 40px;
  letter-spacing: 1.8px;
}

.brandmotto h4{
  margin-top: 40px;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1.8px;
}


/*------------------------------footer------------------*/
.footer-main{
  background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)), url(images/footer_background.png);
  background-repeat: repeat-x;
  background-size:cover;
  text-align: center;

}

.footer-main .icons{
  padding: 32px;

}

.footer-main .icons a{
  height: 40px;
  width: 40px;
  line-height:40px;
  text-align: center;
  font-size: 20px;
  color: #6f6f6f;
  border-radius: 50%;
  border: 1.2px solid  #6f6f6f;
  margin: 0 10px;
  transition: all 0.7s ease;
}

.footerdis{
  display: flex;
  justify-content: center;
  align-items:center ;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
}

.footer-main .icons a:hover{
  color: white;
  border: 1.5px black solid;
}

.facebook:hover{
  transform: translateY(-4px);
  background-color: #3b5998;
  transition: all 0.7s ease;
  
}


.whatsapp:hover{
  transform: translateY(-4px);
  background-color: #4ac157;
  transition: all 0.7s ease;
  color: white;
}


.envelope:hover{
  transform: translateY(-4px);
  background-color: #ea4335;
  transition: all 0.7s ease;
  
}


.instagram:hover{
  transform: translateY(-4px);

  background: radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
  transition: all 0.7s ease;
}


.linkedin:hover{
  transform: translateY(-4px);
  background-color: #0177b5;
  transition: all 0.7s ease;
 
}


.footer-right01 a{
  color: black;
}



/*----------------small phone---------
-----------------------------------------*/
@media screen and (max-width: 320px) and (min-width: 10px){
 .nav {
    display: none;
  }

  .navmobile {
    display: block;
  }

  .nav-mob{
    height:55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mob_nav_logo img{
    width: 130px;
    height: 23px;
    margin: auto;
  }

  .burger {
    padding-top: 5px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  aside {
    width: 200px;
    height: 100%;
    padding: 60px 35px 25px 35px;
  }


  .vidoplay_mobile{
    display: block;
  }
  .vidoplay{
    display:none;
  }

  .vidoplay_mobile{
    height: 80vh;
    width: 100%;
  }
  
  .videoexp_mobile{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .brandimgcontainer{
    height:200px;
    width: 100%;
  }
  .brandimagemain{
    height: 100%;
    width: 100%;
  }

  .brandmotto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .brandmotto p{
    font-size: 22px;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: 1.4px;
  }

  .brandmotto h4{
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1.8px;
  }
  
  .footer-main .icons{
    padding: 30px;
  }

  .footer-main .icons a{
    height: 30px;
    width: 30px;
    padding-bottom: 10px;
    line-height:30px;
    text-align: center;
    font-size: 14px;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 4px;
    transition: all 0.7s ease;
  }

}

/*----------------small phone---------
-----------------------------------------*/

@media screen and (max-width: 376px) and (min-width: 320px){

  .nav {
    display: none;
    
  }

  .navmobile {
    display: block;
  }

  .nav-mob{
    height:70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mob_nav_logo img{
    width: 140px;
    height: 27px;
    margin: auto;
  }
  .burger {
    padding-top: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  aside {
    width: 270px;
    height: 100%;
    padding: 60px 55px 25px 65px;
  }

  .vidoplay_mobile{
    display: block;
  }
  .vidoplay{
    display:none;
  }

  .vidoplay_mobile{
    height: 80vh;
    width: 100%;
  }
  
  .videoexp_mobile{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .brandimgcontainer{
    height:200px;
    width: 100%;
  }
  .brandimagemain{
    height: 100%;
    width: 100%;
  }

  .brandmotto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .brandmotto p{
    font-size: 22px;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: 1.4px;
  }

  .brandmotto h4{
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1.8px;
  }
  .footer-main .icons{
    padding: 35px;
  }

  .footer-main .icons a{
    height: 38px;
    width: 38px;
    padding-bottom: 10px;
    line-height:35px;
    text-align: center;
    font-size: 1.2rem;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 2px;
    transition: all 0.7s ease;
  }


} 

 
/*----------------big phone---------
-----------------------------------------*/

@media screen and (max-width: 450px) and (min-width: 300px){

.nav {
    display: none;
  }

  .navmobile {
    display: block;
  }

  .nav-mob{
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mob_nav_logo img{
    width: 140px;
    height: 25px;
    margin: auto;
  }

  .burger {
    padding-top: 5px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  aside {
    width: 270px;
    height: 100%;
    padding: 60px 55px 25px 65px;
  }

  .vidoplay_mobile{
    display: block;
  }
  .vidoplay{
    display:none;
  }

  .vidoplay_mobile{
    height: 80vh;
    width: 100%;
  }
  
  .videoexp_mobile{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .brandimgcontainer{
    height:200px;
    width: 100%;
  }
  .brandimagemain{
    height: 100%;
    width: 100%;
  }

  .brandmotto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .brandmotto p{
    font-size: 22px;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: 1.4px;
  }

  .brandmotto h4{
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1.8px;
  }

  .footer-main .icons{
    padding: 35px;
  }

  .footer-main .icons a{
    height: 38px;
    width: 38px;
    padding-bottom: 10px;
    line-height:35px;
    text-align: center;
    font-size: 1.2rem;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 4px;
    transition: all 0.7s ease;
  }
} 


@media screen and (max-width: 740px) and (min-width: 450px){
  .nav {
    display: none;
  }
  .nav-mob {
    height:50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navmobile {
    display: block;
  }

  .mob_nav_logo img{
    width: 135px;
    height: 23px;
    margin: auto;
  }

  .burger {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 100%;
    padding: 40px 35px 25px 45px;
    background-color: rgb(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    translate: 100% 0;
    transition: 0.3s;
  }

    
  .vidoplay {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    justify-content: top;
    align-items: top;
    position: relative;
    z-index: 0;
    background-color: #fdfdfd;
    
  }

  .videoexp_laptop {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    pointer-events: none;
  
  }

  .vidoplay_mobile{
    display: none;
  }
  .vidoplay{
    display:block;
  }

  .brandimgcontainer {
    height:220px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brandimagemain {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/BG10.jpg);
    background-size: cover;
    background-repeat: repeat-x;
  }

  .brandmotto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .brandmotto p{
    font-size: 30px;
    font-weight: 200;
    line-height: 40px;
    letter-spacing: 1.8px;
  }

  .brandmotto h4{
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1.8px;
  }

  .brandimg{
    position: center center;
    height:370px;
    width: fit-content;
    
  }

  .footer-main .icons{
    padding: 26px;
  }

  .footer-main .icons a{
    height: 34px;
    width: 34px;
    padding-bottom: 10px;
    line-height:32px;
    text-align: center;
    font-size: 16px;
    color: #6f6f6f;
    border-radius: 50%;
    border: 1.2px solid  #6f6f6f;
    margin: 0 4px;
    transition: all 0.7s ease;
  }
    
}


/*----------------tablet ipad air---------
-----------------------------------------*/

@media screen and (max-width: 821px) and (min-width: 740px){
  .nav {
    display: none;
  }
  .nav-mob {
    height:70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navmobile {
    display: block;
  }

  .mob_nav_logo img{
    width: 180px;
    height: 32px;
    margin: auto;
  }

  .burger {
    width: 82px;
    height: 72px;
    font-size: 22px;
  }

  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100%;
    padding: 80px 55px 25px 85px;
    background-color: rgb(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    translate: 100% 0;
    transition: 0.3s;
  }

    
  .vidoplay {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: top;
    align-items: top;
    position: relative;
    z-index: 0;
    background-color: #fdfdfd;
    
  }

  .videoexp_laptop {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    pointer-events: none;
  
  }

  .vidoplay_mobile{
    display: none;
  }
  .vidoplay{
    display:block;
  }

  .brandimgcontainer {
    height:30vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brandimagemain {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/BG10.jpg);
    background-size: cover;
    background-repeat: repeat-x;
  }

  .brandmotto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .brandmotto p{
    font-size: 36px;
    font-weight: 200;
    line-height: 40px;
    letter-spacing: 1.8px;
  }

  .brandmotto h4{
    margin-top: 30px;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1.8px;
  }

  .brandimg{
    position: center center;
    height:370px;
    width: fit-content;
    
  }

  .footer-main{
    height: 10vh;
    width: 100%;
  }
    

}

@media (min-width: 821px) {
  .nav {
    display: block;
  }

  .navmobile {
    display: none;
  }
  .vidoplay_mobile{
    display: none;
  }
  .vidoplay{
    display:block;
  }
}
