

/*=====================FONT ===========================*/
@font-face {
    font-family: 'Lato';
              src: url('./../../fonts/lato/Lato-Regular.ttf') format('truetype');
}


@font-face {
    font-family: 'Roboto';
              src: url('./../../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Titillium';
              src: url('./../../fonts/Titillium/TitilliumWeb-Regular.ttf') format('truetype');
}



@font-face {
    font-family: 'Concert_One';
              src: url('./../../fonts/Concert_One/ConcertOne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
              src: url('./../../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}

.row{
  margin: 0px;
}

/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

.sec-center {
  position: relative;
  max-width: 100%;
  text-align: center;
  z-index: 200;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.user_img {
  height: 50px;
  width: 50px;
  margin-right: 20px;
  border-radius: 50%;
}

.chevron{
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.light-back{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100%;
  width: 100%;
  transition: all 200ms linear;
  opacity: 0;
}
.dark-light:checked ~ .light-back{
  opacity: 1;
}
.dropdown:checked + label,
.dropdown:not(:checked) + label{
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  height: 50px;
  transition: all 200ms linear;
  border-radius: 4px;
  width: 220px;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  cursor: pointer;
  color: #102770;
}


.dropdown:checked + label:before,
.dropdown:not(:checked) + label:before{
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}
.dropdown:checked + label:before{
  pointer-events: auto;
}
.dropdown:not(:checked) + label .uil {
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}
.dropdown:checked + label .uil {
  transform: rotate(180deg);
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}
.section-dropdown {
  position: absolute;
  padding: 10px;
  background-color: #2c3e50;
  top: 70px;
  left: 0;
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
}
.dark-light:checked ~ .sec-center .section-dropdown {
  background-color: #fff;
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.15);
}
.dropdown:checked ~ .section-dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
}
.section-dropdown:after {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #2c3e50;
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.dark-light:checked ~ .sec-center .section-dropdown:after {
  border-bottom: 8px solid #fff;
}

a.cus-drop-link {
  position: relative;
  color: #fff;
  font-weight: .9em;
  transition: all 200ms linear;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  margin: 2px 0;
  margin-bottom: 8px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
}

a.cus-drop-link i.cus-drop-link-i{
    font-size: 1.5em;
    margin-right: 15px;
    color: white;
}


.dark-light:checked ~ .sec-center .section-dropdown a {
  color: #102770;
}
a.cus-drop-link:hover {
  color: #2c3e50;
  background-color: white;
}

a.cus-drop-link:hover i.cus-drop-link-i{
    color: #2c3e50;
}
.dark-light:checked ~ .sec-center .section-dropdown a:hover {
  color: #ffeba7;
  background-color: #102770;
}
a.cus-drop-link .uil {
  font-size: 22px;
}
.dropdown-sub:checked + label,
.dropdown-sub:not(:checked) + label{
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
    -ms-flex-pack: distribute;
    cursor: pointer;
}
.dropdown-sub:checked + label .uil,
.dropdown-sub:not(:checked) + label .uil{
  font-size: 22px;
}
.dropdown-sub:not(:checked) + label .uil {
  transition: transform 200ms linear;
}
.dropdown-sub:checked + label .uil {
  transform: rotate(135deg);
  transition: transform 200ms linear;
}
.dropdown-sub:checked + label:hover,
.dropdown-sub:not(:checked) + label:hover{
  color: #102770;
  background-color: #ffeba7;
}
.dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub{
  color: #102770;
}
.dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub:hover{
  color: #ffeba7;
  background-color: #102770;
}

.section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
}
.dropdown-sub:checked ~ .section-dropdown-sub{
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}
.section-dropdown-sub a {
  font-size: 14px;
}
.section-dropdown-sub a .uil {
  font-size: 20px;
}
.logo {
	position: fixed;
	top: 50px;
	left: 40px;
	display: block;
	z-index: 11000000;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
	transition: all 250ms linear;
}
.logo:hover {
  background-color: transparent;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
  transition: all 200ms linear;
}
.dark-light:checked ~ .logo img{
  filter: brightness(10%);
}

@media screen and (max-width: 991px) {
.logo {
	top: 30px;
	left: 20px;
}
.dark-light:checked + label,
.dark-light:not(:checked) + label{
  top: 20px;
  right: 20px;
}
}
/*=====================================================*/

body {
    overflow-x: hidden;
    font-family: 'Poppins', 'Titillium', 'Concert_One',  "Lato",  "Roboto", Arial,  sans-serif;
    padding: 0px;
    font-size: 1em;
    width: 100%;
    background-color: white;
}


/*============================= Nav style  ==============================================*/

.bg-white {
    background-color: #fff;
}

#logo {
    width: 30px;
    height: 30px;
    border-radius: 4px
}

.navbar-brand {
    font-size: 16px;
    margin-left: 60px;
}

.navbar-brand img {
    height: 100px;
}


.navbar-nav {
    width: 100%;
    font: none;

}

.navbar-toggler-icon i {
    color: #636e72;
    font-size: 1.5em;
    outline: none;
}

.nav-item {
    padding: 6px 14px;
    text-align: center;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Poppins', 'Titillium', 'Concert_One',  "Lato",  "Roboto",     Arial,  sans-serif;
    letter-spacing: 1.5px;
    padding: 5px;
    font-size: 0.8em;
    color: #57606F;
    transition: all 300ms linear;
}

.navbar-dark .navbar-nav .active>.nav-link{
    color: #7edfff;
    letter-spacing: 1.5px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: #7edfff;
    outline: none;
}

.navbar-dark .navbar-nav .active>.nav-link::after,
.navbar-dark .navbar-nav .nav-link:hover::after {
  outline: none;
  display: block;
  content: "";
  color: #7edfff;
  width: 35%;
  height: 2px;
  background-color: #7edfff;
  position: relative;
  top: 5px;
  left: 0%;
  animation-name: extend-bottom-line;
  animation-duration: .3s;
  animation-timing-function: linear;
}

@keyframes extend-bottom-line {
  from {width: 0%;}
  to {width: 35%;}
}

@keyframes reduce-bottom-line {
  from {width: 35%;}
  to {width: 0%;}
}


.nav_login {
  font-family: 'Poppins', 'Titillium', 'Concert_One',  "Lato",  "Roboto",     Arial,  sans-serif;
  margin-right: 10%;
  display: flex;
  align-content: center;

}

.nav_login a span{
  display: none;
}

.nav_login a:hover i.bi-person-circle{
  color: #7edfff;
}

.nav_login a i.bi-person-circle{
    color: #57606F;
    font-size: 2em;
}


nav .navbar-collapse  ul.navbar-nav {
    justify-content: center;
}

.navbar-collapse.collapse.in {
    display: block !important;
}



@media (max-width: 992px) {
    .navbar-brand {
        padding: 14px 20px;
        font-size: 16px;
        margin-left: 10px;
    }

    .nav-item {
        width: 100%;
        text-align: left;
    }
    .navbar-dark .navbar-nav .nav-link {
      text-align: center;
        font-size: 0.7em;
        transition: 500ms ease;
    }
    .navbar-dark .navbar-nav .nav-link:hover {
      color: #7edfff;
      border-top: 1px solid #7edfff;
      border-bottom: 1px solid #7edfff;
      letter-spacing: 1.5px;
      padding: 5px;
      font-size: 0.7em;

    }
    .nav_login {
      padding-left: 20px;
      margin-bottom: 30px;
     justify-content: center;
    }

    .nav_login a i{
        color: white;
        font-size: 1.5em;
        text-align: center;
    }

    .nav_login a span{
      display: inline-block;
      font-weight: normal;
      font-size: 0.7em;
      color: white;
      padding-left: 10px;
      position: relative;
      top: -5px;
      text-align: center;
    }

    .nav_login a span:hover{
      color: #7edfff;
    }

    .nav_login a i:hover {
      color: #7edfff;
    }


}


/*============================= GO TOP ==============================================*/

.go-top {
  padding: 5px;
  min-width: 30px;
  color: white;
  background-color: #2c3e50;
  text-align: center;
  font-size: 0.8em;
  position: fixed;
  right: 10px;
  bottom: 20px;
  cursor: pointer;
}

/*============================= FOOTER style  ==============================================*/
footer.web-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Poppins', Arial,  sans-serif;
    background-color: #2C3E50;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 80px;
    padding-bottom: 20px;
}

div.copyright {
  font-size: .9em;
  text-align: center;
  color: #bdc3c7;
  padding-top : 40px;
}

div.designed{
  text-align: center;
  color: #bdc3c7;
  padding-top : 15px;
  padding-bottom: 20px;
  font-size: .8em;
}

.designed a {
  color: #f8c291;
}

.footer-about h3, .footer-link h3{
  color: #e67e22;
  margin-bottom: 10px;
  font-size: 1.2em;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.footer-link h3::after{
  display: block;
  content: "";
  width: 25%;
  height: 3px;
  background-color: #e67e22;
  position: relative;
  top : 15px;
}

footer.web-footer .about {
  line-height: 25px;
  margin-bottom: 20px;
  color: #bdc3c7;
}

.footer-link2{
  margin: 20px;
}

.footer-link2 a {
  text-decoration: none;
  color: #bdc3c7;
  font-size: 0.9em;
}

.footer-link2 a:hover {
  color: #e67e22;
}


.footer-link2 span {
  color: #bdc3c7;
  font-size: 0.9em;
  position: relative;
  top : -5px;
  margin-left: 20px;
}

/*================================================================================================================*/

@media only screen and (max-width: 416px) {

  .navbar-brand img {
      height: 60px;
  }

  .navbar {
    width : 100vw;
  }

  .navbar-dark .navbar-nav .active>.nav-link::after,
  .navbar-dark .navbar-nav .nav-link:hover::after {
    outline: none;
    display: block;
    content: "";
    color: #7edfff;
    width: 0%;
    height: 2px;
    animation-name: none;
  }

  footer.web-footer {
      padding: 20px;
      padding-top: 80px;
      padding-bottom: 20px;
  }


  .footer-about h3, .footer-link h3{
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .footer-link {
    margin-top: 2em;
  }

  .footer-link h3{
    margin-bottom: 2em;
  }

  .footer-link2{
    margin: 10px;
    padding: 0px;
    margin-top: 1em;
  }

  .copyright{
    font-size: .8em;
  }


}
