@import url("https://fonts.googleapis.com/css?family=Spectral:100,200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Cookie:100,200,300,400,500,600,700");
@import url(classy-nav.css);


@font-face {
  font-family: CommercialScript;
  src: url(../assets/CommercialScriptComRegular.TTF);
}

@font-face {
  font-family: ChaseCallasSH;
  src: url(../assets/ChaseCallasSH.ttf);
}


:root {
  /* --brand: #00007c; */
  --brand: #b0182a;
  --sub: #f4bd00;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

html,
body {
	font-family: "Jost", sans-serif;
	-webkit-font-smoothing: antialiased;
  /* overflow: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Spectral", sans-serif;
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Jost", sans-serif;
	color: #707070;
	font-weight: 400;
	line-height: 26px;
}

li {
  list-style: none;
}

.classynav ul {
  margin: 0;
  padding: 10px; 
  background-color: white;
}
.classynav ul li {
  margin: 0;
  padding: 0; 
}

a {
  color: var(--body);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
  text-decoration: none;
}

.text-brand{
  color: var(--brand);
}

.background-brand{
  background-color: var(--brand);
}

.btn-brand{
  background-color: var(--brand);
  color: white;
}

.btn-brand:hover{
  background-color: white;
  color: var(--brand);
  border: 1px solid var(--brand);
}

/* Topbar */
.topbar .icons a{
  color: black;
  background-color: white;
  border: 1px solid white;
}

.topbar .icons a:hover{
  background-color: black;
  color: white;
  border: 1px solid white;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background-color: #000000;
  color: white;
}

.back-to-top:hover{
  color: white;
}

/* Float Icons */
.float {
  position:fixed;
  width:60px;
  height:60px;
  bottom:110px;
  left:20px;
  background-color:#37b6ff;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.float-2 {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  left:20px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float {
  margin-top:16px;
}

.float:hover {
  color: #37b6ff;
  background-color: white;
  border: 1px solid #37b6ff;
}

.float-2:hover {
  color: #25d366;
  background-color: white;
  border: 1px solid #25d366;
}

/*** Footer ***/
.footer, .topbar{
  background-image: -moz-linear-gradient(0deg, #b0182a 0%, #f70000 100%);
  background-image: -webkit-linear-gradient(0deg, #b0182a 0%, #f70000 100%);
  background-image: -ms-linear-gradient(0deg, #b0182a 0%, #f70000 100%);
}

/* .footer, .topbar{
  background-image: -moz-linear-gradient(0deg, #12128b 0%, #0000f7 100%);
  background-image: -webkit-linear-gradient(0deg, #12128b 0%, #0000f7 100%);
  background-image: -ms-linear-gradient(0deg, #12128b 0%, #0000f7 100%);
  
  background-image: linear-gradient(to left, #1818a3 0%, #3333ff 51%, #1818a3 100%);
} */

.footer a{
  text-decoration: none;
}

.footer-head{
  color: white;
  font-weight: 900;
}

.footer-color{
  color: #ffffff;
  /* color: black; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: .3s;
  /* background-color: var(--brand);
  border: 1px solid var(--brand); */
}

.footer .btn.btn-social:hover {
  color: black;
  /* background-color: white; */
  /* background-color: black;
  border: 1px solid var(--brand); */
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  /* color: black; */
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: white;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .3);
}

.footer .copyright a {
  color: white;
}

.footer .copyright a:hover {
  color: #b9babc;
}

.close {
  color: #000;
  opacity: 0.7;
  font-size: 40px;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.close:hover {
  opacity: 1;
}

.nav-brand{
color: white !important;
  /* color: black !important; */
}
/* =====================  */
.book-now-btn-3 a {
  display: block;
  padding: 15px 20px;
  border: 2px solid white;
  /* border-radius: 20px; */
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s;
  margin-left: 10px;
}
.book-now-btn-3 a:hover{
  background-color: white;
  color: black;
}


.classy-navbar{
  position: relative;
}
.book-now-btn{
  position: absolute;
  right: 20px;
}


/* Topbar */

.tbar{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 100px;
}

.hsub{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.hsub a{
  color: white;
}
.hsub a:hover{
  color: white;
}

.hsub .icons a{
  padding: 0px;
  background-color: white;
  color: white;
}
.hsub .icons a:hover{
  color: var(--brand);
}

@media only screen and (max-width: 962px){
  .tbar{
    padding-left: 0px;
    padding-right: 0px;
    gap: 10px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hsub{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media only screen and (min-width: 967px){
  
  .lap-space{
    padding-right: 90px;
    padding-left: 90px;
  }
  .laptop-space{
    padding-right: 100px;
    padding-left: 100px;
  }
    
}

/* .topbar{
  background-image: -moz-linear-gradient(0deg, #b0182a 0%, #f70000 100%);
  background-image: -webkit-linear-gradient(0deg, #b0182a 0%, #f70000 100%);
  background-image: -ms-linear-gradient(0deg, #b0182a 0%, #f70000 100%);
  color: white;
} */

.topbar{
  /* background-image: -moz-linear-gradient(0deg, #12128b 0%, #0000f7 100%);
  background-image: -webkit-linear-gradient(0deg, #12128b 0%, #0000f7 100%);
  background-image: -ms-linear-gradient(0deg, #12128b 0%, #0000f7 100%); */
  color: white;
}

/* Header */
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: sticky;
}

.header.sticked {
  background: white;
  box-shadow: 0px 2px 20px rgba(var(--body), 0.1);
}

.header .logo img {
  max-height: 100px;
  /* margin-right: 6px; */
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--brand);
  background: white;
  border: 1px solid var(--brand);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: white;
  background: var(--brand);
}

@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    /* margin-right: 50px; */
    margin-right: 10px;
  }
}

/* @media (max-width: 767px) {
  .top-buttons{
    margin-top: 40px;
  }
} */

/* Desktop Navigation */
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 14px 20px; */
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--brand);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--brand);
  }

  /* .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  } */

  /* .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: white;
    background: var(--brand);
  } */

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--dark);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: white;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  /* .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: white;
    background: var(--brand);
  } */

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    min-width: 1050px;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: white;
    background: none;
  }

  /* .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: white;
    background: var(--brand);
  } */

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation */
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    /* background: var(--body); */
    background: white;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    /* color: white; */
    color: var(--body);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  /* .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: white;
    background: var(--brand);
  } */

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid white;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: black !important;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }

  .mobile-nav-toggle.bi-x {
    color: black !important;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

/* .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: white;
    background: none;
  } */

  /* .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: white;
    background: var(--brand);
  } */

/* .image-drop {
  display: flex;
  align-items: center;
  border-bottom: 3px dotted black;
} */

.image-drop img {
    max-width: 100%;
    height: auto;
    margin-right: 10px; /* Adjust spacing between image and link */
}

@media (max-width: 768px) {
    .image-drop {
        flex-direction: column;
        align-items: center;
    }

    .image-drop img {
        margin-right: 0; /* Remove right margin on mobile */
        margin-bottom: 10px; /* Add bottom margin on mobile for spacing */
    }
}

.image-drop a:hover{
  color: var(--brand) !important;
}

.nav-brand{
  /* font-size: 45px;
	font-family: "Cookie", sans-serif; */
  font-size: 40px;
  font-family: CommercialScript;
  display: flex;
  align-items: center;
}

.nav-brand img{
  margin-right: 15px;
  height: 60px;
}

.nav-brand span.and{
  font-family: ChaseCallasSH;
}

@media only screen and (max-width: 775px) {
  .nav-brand{
   font-size: 25px;
   display: flex;
   flex-direction: column;
   align-items: center;
  }
  .nav-brand img{
    margin-right: 0;
    margin-bottom: 10px;
    height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-brand{
   font-size:12px;
  }
  .nav-brand img{
    margin-right: 10px;
    height: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .nav-brand{
   font-size: 25px;
  }
  .nav-brand img{
    height: 50px;
  }
}

.btn_1,
.btn_2:hover,
.main_menu .navbar-toggler:after,
.banner_part .banner_text .btn_1,
.feature_part .single_feature:hover span {
  background-image: linear-gradient(to left, #b0182a 0%, #f3001c 51%, #b0182a 100%);
}

.btn_1 {
  display: inline-block;
  padding: 13.5px 45px;
  border-radius: 50px;
  font-size: 14px;
  color: #fff;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  text-transform: capitalize;
  background-size: 200% auto;
  border: 1px solid transparent;
  box-shadow: 0px 12px 20px 0px rgba(255, 126, 95, 0.15);
}

/* line 38, E:/172 Etrain Education/172_Etrain_Education_html/sass/_button.scss */
.btn_1:hover {
  color: #fff !important;
  background-position: right center;
  box-shadow: 0px 10px 30px 0px rgba(193, 34, 10, 0.2);
}

@media (max-width: 576px) {

  /* line 24, E:/172 Etrain Education/172_Etrain_Education_html/sass/_button.scss */
  .btn_1 {
    padding: 10px 30px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

  /* line 24, E:/172 Etrain Education/172_Etrain_Education_html/sass/_button.scss */
  .btn_1 {
    padding: 10px 30px;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  /* line 24, E:/172 Etrain Education/172_Etrain_Education_html/sass/_button.scss */
  .btn_1 {
    padding: 10px 30px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .top-buttons .btn_1 {
    margin-top: 0px;
  }
}

.card a{
  text-align: center;
}

.feature-item div img{
  height: 150px;
  object-fit: contain;
}

.feature-item ul li a p{
  margin-top: 30px;
}

.navbar .dropdown ul {
  background: white;
}

.black-panther{
  height: 14px;
}

/* .navbar>ul>li>.scrollto-black:before {
  background-color: transparent;
}

.navbar>ul>li>.scrollto-black{
  background-color: #f4bd00;
  border-radius: 50px;
}
@media (max-width: 976px) {
  .navbar>ul>li>.scrollto-black{
    display: inline;
    margin: 20px 0px 0px 20px !important;
  }
} */


.scrollto-black:before {
  background-color: transparent;
}

.scrollto-black{
  background-color: #f4bd00;
  border-radius: 50px;
}

.scrollto-black{
  padding: 10px 20px;
}
.dropdown-black ul li a{
  color: black !important;
}

.top-buttons .btn_1 {
  margin: 0px 20px;
}

.lap-space{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 976px) {
  .lap-space{
    justify-content: start;
  }
}

.dropdown-laptop {
  max-height: 300px;
  overflow-y: auto;
}

/* .dropdown-laptop::-webkit-scrollbar {
  display: none;
} */

.dropdown-laptop::-webkit-scrollbar {
  width: 6px; /* Vertical scrollbar width */
  height: 6px; /* Horizontal scrollbar height */
}

.dropdown-laptop::-webkit-scrollbar-thumb {
  background-color: var(--brand); /* Set the color of the scrollbar thumb */
  border-radius: 10px; /* Add rounded corners for both vertical and horizontal scrollbars */
}

.dropdown-laptop::-webkit-scrollbar-track {
  background: #f1f1f1; /* Optional: Set the background color of the scrollbar track */
  border-radius: 10px; /* Rounded corners for the track */
}

.vendor-carousel-img img{
  height: 100px !important;
  object-fit: contain;
}

.tech-img{
  border: 15px solid #f8f8f8;
  margin: 20px 10px;
  transition: all 0.5s;
  overflow: hidden;
}

.tech-img:hover{
  border: 15px solid var(--brand);
}

#tech-img .tech-img img{
  height: 150px;
  object-fit: contain;
}

#tech-img .tech-img{
  padding: 0px 20px;
}


@media (max-width: 976px) {
  #tech-img .tech-img{
    padding: 20px 20px;
  }
}