/*  =============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #062749;
  --black-color-light: #062749e0;
  --black-color-lighten: #062749be;
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
 

}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.containero {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.headerr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(46, 64%, 38%, 0.3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.navo {
  height: var(--header-height);
}

.navo__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.navo__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navo__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 1.05rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}
.navo__logo img{
  height: 87px;
}
.navo__logo .logoo-text p{
  color: #23e94b;


}
.navo__logo .logoo-text span p{
  color: #1DA1F2;

}
.navo__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.navo__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .navo__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .navo__menu::-webkit-scrollbar {
    width: 0;
  }
  .navo__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.navo__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.navo__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdowno__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdowno__link, 
.dropdowno__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdowno__link i, 
.dropdowno__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdowno__link:hover, 
.dropdowno__sublink:hover {
  background-color: var(--black-color);
}

.dropdowno__menu, 
.dropdowno__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdowno__item:hover .dropdowno__menu, 
.dropdowno__subitem:hover > .dropdowno__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdowno__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdowno__sublink {
  background-color: var(--black-color-lighten);
}
.navo__logo img{
  height: 52px;
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .containero {
    margin-inline: 1rem;
  }

  .navo__link {
    padding-inline: 1rem;
  }

}

/* For large devices */
@media screen and (min-width: 1118px) {
  .containero {
    margin-inline: auto;
  }

  .navo {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .navo__toggle {
    display: none;
  }
  .navo__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .navo__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .navo__link:hover {
    background-color: transparent;
  }

  .dropdowno__item, 
  .dropdowno__subitem {
    position: relative;
  }

  .dropdowno__menu, 
  .dropdowno__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdowno__link, 
  .dropdowno__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdowno__link {
    padding-inline: 1rem;
  }

  .dropdowno__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdowno__item:hover .dropdowno__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdowno__subitem:hover > .dropdowno__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
  .navo__logo img{
    height: 87px;
  }
}
 /* ---------------------footer---------------------------------- */

 footer{
  position: relative;
  background-color: #062749;
  width: 100%;
  bottom: 0;
  left: 0;
 }
 footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #AFAF86;
 }
 footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
 }
 footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
 }
 .content .top .logo-details{
  color: #fff;
  font-size: 30px;
 }
 .content .top .media-icons{
  display: flex;
 }
 .content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4S ease;
 }
 .content .top .media-icons a:nth-child(1){
  background: #4267B2;
 }
 .content .top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
 }
 .content .top .media-icons a:nth-child(2){
  background: #1DA1F2;
 }
 .content .top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
 }
 .content .top .media-icons a:nth-child(3){
  background: #E1306C;
 }
 .content .top .media-icons a:nth-child(3):hover{
  color:#E1306C;
  background: #fff;
 }
 .content .top .media-icons a:nth-child(4){
  background: #0077B5;
 }
 .content .top .media-icons a:nth-child(4):hover{
  color:#0077B5;
  background: #fff;
 }
 .content .top .media-icons a:nth-child(5){
  background: #FF0000;
 }
 .content .top .media-icons a:nth-child(5):hover{
  color:#FF0000;
  background: #fff;
 }
 footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
 }
 footer .content .link-boxes .box{
  width: calc(100% / 4 - 10px);
  
 }
  .content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
 }
 /* .link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 50px;
  background: #fff;
 } */
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.link-boxes .input-box{
  margin-left: 55px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #062749;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
} 
.link-boxes .input-box input:hover{
color: #AFAFB6;
font-size: 16PX;
}
.link-boxes .input-box input[type="button"]{
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
opacity: 1;
}
.link-boxes .input-box input{
height: 40px;
}
.buttom-details .bottom_text a{
  margin-right: 10px;
}
footer .buttom-details{
  width: 100%;
  background: #082038;
}
footer .buttom-details .buttom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}

.buttom-details .buttom_text span,
.buttom-details .buttom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}
.buttom-details .buttom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}

.buttom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px){
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
    
   }
  footer .content .link-boxes .inputbox{
    width: 40%;
    margin-top: 10px;
  }
} 
@media (max-width: 700px ){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
    
   }
  footer .content .link-boxes .inputbox{
    width: 60%;
  }
  .buttom-details .buttom_text span,
.buttom-details .buttom_text a{
  font-size: 12px;
  color: #fff;
}
}

@media (max-width: 500px ){
  footer::before{
      top: 145px;
     }
  
 footer .content .top {
  flex-direction: column ;
 }
 .content .top .media-icons{
  margin-top: 16px;
 }
 footer .content .link-boxes .box{
  width: calc(100% / 1 - 10px);
  
 }
 footer .content .link-boxes .inputbox{
width: 100%;
}
}
