:root {
  --clr-bg-header: #4682B4;
  --clr-btn: #4682B4;
  --clr-dropdown: #4682B4;
  --clr-nav-hover: #4682B4;
  --clr-dropdown-hov: #4682B4;
  --clr-dropdown-link-hov: #4682B4;
  --clr-light: #FAFAFA;
}



* {

  padding: 0;

  margin: 0;

  box-sizing: border-box;

}





* {

  font-family: "Albert Sans", sans-serif;

  font-optical-sizing: auto;

}



* {

  font-family: "Roboto", sans-serif;

  font-optical-sizing: auto;

}



@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
}


@font-face {
    font-family: 'MyriadPro-semibold';
    src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
}

@font-face {
    font-family: 'MyriadPro-bold';
    src: url('../fonts/MYRIADPRO-BOLD.OTF') format('opentype');
}

* {
    font-family: 'MyriadPro-bold', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
* {
    font-family: 'MyriadPro-semibold', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
* {
    font-family: 'MyriadPro', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}




ul {

  list-style: none;

}



a {

  text-decoration: none;

}



header {

  position: sticky;

  top: 0px;

  background-color: #000000;

  width: 100%;

  z-index: 1000;

}



section {

  position: relative;

  height: calc(100vh - 3rem);

  width: 100%;

  overflow: hidden;

}



.overlay {

  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  background-color: rgba(30, 130, 95, 0.5);

}



.head-navbar {

  max-width: 84rem;

  padding: 0 2rem;

  margin: 0 auto;

  display: flex;

  position: relative;

}



.logo-container {

  flex: 1;

  display: flex;

  align-items: center;

}



.nav-btn {

  flex: 3;

  display: flex;

}



.nav-links {

  flex: 2;

}



.log-sign {

  display: flex;

  justify-content: center;

  align-items: center;

  flex: 1;

}



.logo {

  color: var(--clr-light);

  font-size: 1.1rem;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  line-height: 3rem;

  padding: 10px;

}



.logo img {

  width: 100px;

}



.logo span {

  font-weight: 300;

}



.btn {

  display: inline-block;

  padding: 8px 15px;

  font-size: .8rem;

  border: 2px solid var(--clr-light);

  border-radius: 2rem;

  line-height: 1;

  margin: 0 .2rem;

  transition: .3s;

  text-transform: uppercase;

}



.log-sign .btn.solid,

.log-sign .btn.transparent:hover {

  background-color: var(--clr-light);

  color: #000000;

}



.fnt-fam {

  font-family: sans-serif;

  font-size: 11px;

  font-weight: 700;

}



.btn.transparent,

.btn.solid:hover {

  background-color: var(--clr-light);

  color: #000000;

}



.nav-links>ul {

  display: flex;

  justify-content: center;

  align-items: center;

  margin: 20px 0px;

}



.nav-link {

  position: relative;

}



.nav-link>a {

  line-height: 3rem;

  color: var(--clr-light);

  padding: 0 .8rem;

  letter-spacing: 1px;

  font-size: 16px;

  font-weight: 300;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.nav-link>a>i {

  margin-left: .2rem;

}



.nav-link:hover > a {

  transform: scale(1.1);

}



.dropdown {

  position: absolute;

  top: 100%;

  left: 0;

  width: 13rem;

  transform: translateY(10px);

  opacity: 0;

  pointer-events: none;

  transition: .5s;

}



.dropdown ul {

  position: relative;

}



.dropdown-link>a {

  display: flex;

  background-color: var(--clr-light);

  color: #000000;

  padding: .5rem 1rem;

  font-size: 15px;

  font-weight: 600;

  align-items: center;

  justify-content: space-between;

  transition: .3s;

}



.dropdown-link:hover>a {

  background-color: #000000;

  color: var(--clr-light);

}



.dropdown-link:not(:nth-last-child(2)) {

  border-bottom: 1px solid var(--clr-light);

}



.dropdown-link i {

  transform: rotate(-90deg);

}



.arrow {

  position: absolute;

  width: 11px;

  height: 11px;

  top: -5.5px;

  left: 32px;

  background-color: var(--clr-light);

  transform: rotate(45deg);

  cursor: pointer;

  transition: .3s;

  z-index: -1;

}



.dropdown-link:first-child:hover~.arrow {

  background-color: #000000;

}



.dropdown-link {

  position: relative;

}



.dropdown.second {

  top: 0;

  left: 100%;

  padding-left: .8rem;

  cursor: pointer;

  transform: translateX(10px);

}



.dropdown.second .arrow {

  top: 10px;

  left: -5.5px;

}



.nav-link:hover>.dropdown,

.dropdown-link:hover>.dropdown {

  transform: translate(0, 0);

  opacity: 1;

  pointer-events: auto;

}



.hamburger-menu-container {

  flex: 1;

  display: none;

  align-items: center;

  justify-content: flex-end;

}



.hamburger-menu {

  width: 2.5rem;

  height: 2.5rem;

  display: flex;

  align-items: center;

  justify-content: flex-end;

}



.hamburger-menu div {

  width: 1.6rem;

  height: 3px;

  border-radius: 3px;

  background-color: var(--clr-light);

  position: relative;

  z-index: 1001;

  transition: .5s;

}



.hamburger-menu div:before,

.hamburger-menu div:after {

  content: '';

  position: absolute;

  width: inherit;

  height: inherit;

  background-color: var(--clr-light);

  border-radius: 3px;

  transition: .5s;

}



.hamburger-menu div:before {

  transform: translateY(-7px);

}



.hamburger-menu div:after {

  transform: translateY(7px);

}



#check {

  position: absolute;

  top: 50%;

  right: 1.5rem;

  transform: translateY(-50%);

  width: 2.5rem;

  height: 2.5rem;

  z-index: 90000;

  cursor: pointer;

  opacity: 0;

  display: none;

}



#check:checked~.hamburger-menu-container .hamburger-menu div {

  background-color: transparent;

}



#check:checked~.hamburger-menu-container .hamburger-menu div:before {

  transform: translateY(0) rotate(-45deg);

}



#check:checked~.hamburger-menu-container .hamburger-menu div:after {

  transform: translateY(0) rotate(45deg);

}



@keyframes animation {

  from {

    opacity: 0;

    transform: translateY(15px);

  }



  to {

    opacity: 1;

    transform: translateY(0px);

  }

}



@media (max-width: 920px) {

  .hamburger-menu-container {

    display: flex;

  }



  #check {

    display: block;

  }



  .nav-btn {

    position: fixed;

    height: calc(100vh - 3rem);

    top: 3rem;

    left: 0;

    width: 100%;

    background-color: #000000;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    overflow-x: hidden;

    overflow-y: auto;

    transform: translateX(100%);

    transition: .65s;

  }



  #check:checked~.nav-btn {

    transform: translateX(0);

  }



  #check:checked~.nav-btn .nav-link,

  #check:checked~.nav-btn .log-sign {

    animation: animation .5s ease forwards var(--i);

  }



  .nav-links {

    flex: initial;

    width: 100%;

  }



  .nav-links>ul {

    flex-direction: column;

  }



  .nav-link {

    width: 100%;

    opacity: 0;

    transform: translateY(15px);

  }



  .nav-link>a {

    line-height: 1;

    padding: 1.6rem 2rem;

  }



  .nav-link:hover>a {

    transform: scale(1);

    background-color: var(--clr-nav-hover);

  }



  .dropdown,

  .dropdown.second {

    position: initial;

    top: initial;

    left: initial;

    transform: initial;

    opacity: 1;

    pointer-events: auto;

    width: 100%;

    padding: 0;

    background-color: var(--clr-dropdown-hov);

    display: none;

  }



  .nav-link:hover>.dropdown,

  .dropdown-link:hover>.dropdown {

    display: block;

  }



  .nav-link:hover>a>i,

  .dropdown-link:hover>a>i {

    transform: rotate(360deg);

  }



  .dropdown-link>a {

    background-color: transparent;

    color: var(--clr-light);

    padding: 1.2rem 2rem;

    line-height: 1;

  }



  .dropdown.second .dropdown-link>a {

    padding: 1.2rem 2rem 1.2rem 3rem;

  }



  .dropdown.second .dropdown.second .dropdown-link>a {

    padding: 1.2rem 2rem 1.2rem 4rem;

  }



  .dropdown-link:not(:nth-last-child(2)) {

    border-bottom: none;

  }



  .arrow {

    z-index: 1;

    background-color: #000000;

    left: 10%;

    transform: scale(1.1) rotate(45deg);

    transition: .5s;

  }



  .nav-link:hover .arrow {

    background-color: var(--clr-nav-hover);

  }



  .dropdown .dropdown .arrow {

    display: none;

  }



  .dropdown-link:hover>a {

    background-color: var(--clr-dropdown-link-hov);

  }



  .dropdown-link:first-child:hover~.arrow {

    background-color: var(--clr-nav-hover);

  }



  .nav-link>a>i {

    font-size: 1.1rem;

    transform: rotate(-90deg);

    transition: .7s;

  }



  .dropdown i {

    font-size: 1rem;

    transition: .7s;

  }



  .log-sign {

    flex: initial;

    width: 100%;

    padding: 1.5rem 1.9rem;

    justify-content: flex-start;

    opacity: 0;

    transform: translateY(15px);

  }

}



/* ---------------------------------------------------------------------------- */



/* .bg-all{

   background-color: #f8f8f8;

} */

/* ---------------------------------------------------------------------------- */

.bebas-neue-regular {

  font-family: "Bebas Neue", sans-serif;

  font-weight: 400;

  font-style: normal;

}



/* ------------------------------------------------------ */

.carousel-caption {

  position: absolute;

  top:15%;

  bottom: 1.25rem;

  left: 4%;

  padding-top: 1.25rem;

  padding-bottom: 1.25rem;

  color: #000000;

  text-align: left;

  width:38%;

}



.carousel-caption h1 {

  font-size: 35px;

  font-weight: 700;

  /* font-family: "Bebas Neue", sans-serif; */

}



.carousel-caption h1 {

  color: #6e6e73;

}



.carousel-caption h1 span {

  color: black;

}

.carousel-caption h2 {

  font-size: 35px;

  font-weight: 700;

  /* font-family: "Bebas Neue", sans-serif; */

}

.carousel-caption h2 {

  color: #6e6e73;

}

.carousel-caption h2 span {

  color: black;

}



.carousel-caption p {

  font-size: 17px;

  font-weight: 500;

  color: #000000;

}



.carousel-control-next {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0 !important;

  z-index: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 15%;

  padding: 0;

  color: #fff;

  text-align: center;

  background: 0 0;

  border: 0;

  opacity: .5;

  transition: opacity .15s ease;

}



.carousel-control-prev {

  position: absolute;

  top: 0;

  bottom: 0;

  left:-65px !important;

  z-index: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 15%;

  padding: 0;

  color: #fff;

  text-align: center;

  background: 0 0;

  border: 0;

  opacity: .5;

  transition: opacity .15s ease;

}



/* ------------------------------------------------------ */



/* SWAP */

.btn-log {

  padding: 7px 15px;

  border-radius: 4px;

  margin: 8px;

  font-weight: 700;

}



.btn-swap:hover {

  color: white !important;

}



.btn-swap {

  background-color: #fff;

  border: 2px solid #166687;

  transition: all 0.3s;

  position: relative;

  cursor: pointer;

  color: #166687;



  span {

    position: relative;

    z-index: 1;

  }



  &:hover {

    color: #fff;



    &:after {

      width: 100%;

      z-index: 0;

    }

  }



  &:after {

    content: '';

    position: absolute;

    transition: all 0.3s;

    width: 0%;

    height: 100%;

    top: 0;

    left: 0;

    background: #166687;

  }

}





/* ------------------------------------------------------ */





/* --------------------------------------------------------- */





/* ------------------------------------------------------ */



.footer {

  background-color: #000000;

}



.footer-col {

  padding: 0 15px;

}



.footer-col img {

  margin-bottom: 30px;

}



ul {

  padding-left: 0rem;

}



.footer-col h4 {

  font-size: 18px;

  color: #ffffff;

  text-transform: capitalize;

  margin-bottom: 35px;

  font-weight: 500;

  position: relative;

}



.footer-col ul li {

  color: rgb(255, 255, 255) !important;

}



.footer-col h4::before {

  content: '';

  position: absolute;

  left: 0;

  bottom: -10px;

  background-color: #fbaa1d;

  height: 2px;

  box-sizing: border-box;

  width: 50px;

}



.footer-col ul li:not(:last-child) {

  margin-bottom: 10px;

}



.footer-col ul li a {

  font-size: 16px;

  text-transform: capitalize;

  color: #ffffff;

  text-decoration: none;

  font-weight: 300;

  color: #ffffff;

  display: block;

  /* transition: all 0.3s ease; */

}



.footer-col ul li a:hover {

  color: #ffffff;

  /* padding-left: 8px; */

}



.footer-col .social-links a {

  display: inline-block;

  height: 40px;

  width: 40px;

  background-color: rgba(255, 255, 255, 0.2);

  margin: 0 10px 10px 0;

  text-align: center;

  line-height: 40px;

  border-radius: 50%;

  color: #ffffff;

  /* transition: all 0.5s ease; */

}



.footer-col .social-links a:hover {

  color: #4581b3;

  background-color: #ffffff;

}



/* ------------------------------------------------------ */





/* ------------------------------------------------------ */



/* ------------- */

.footer_bottom {

  padding: 12px 0;

  background: #000000;

  border-top: 1px solid white;

}



.widgets_container a p {

  font-size: 14px;

  margin-bottom: 10px;

  color: #4581b3;

}



.widgets_container p {

  font-size: 14px;

  margin-bottom: 10px;

  color: #4581b3;

}



.copyright_area {

  color: #ffffff;

}



p:last-child {

  margin-bottom: 0;

}



.copyright_area p a {

  color: #ffffff;

}



.copyright_area p {

  font-size: 14px;

  margin-bottom: 0px;

  text-align: center;

}



/* ------------------------------------------------------ */

/* --------------------------------------------------------- */