/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Cutive Mono", sans-serif;
}

a {
  color: #2dc997;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-family: "Cutive Mono", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

h2
 {
  font-family: "Cutive Mono", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2dc997;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #49d6a9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo h1 {
  font-size: 32px;
  margin: 0;
  line-height: 1;
  font-family: "Questrial", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(52, 59, 64, 0.9);
  height: 70px;
  transition: all 0.5s;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Questrial", sans-serif;
  color: #fff;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
}

.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: -6px;
  left: 0;
  background-color: #2dc997;
  visibility: hidden;
  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(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2dc997;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(77, 77, 77, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #666666;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2dc997;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2dc997;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(/catalog/view/image/hero-bg.jpg) top center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
    padding-top: 0;
    font-size: 28px;
    line-height: 36px;
  }

  #hero .custom-image {
    width: 50%; /* Set the width to a specific size for smaller screens */  
    margin-left:7%; 
  }
}

#hero h2 {
  color: #eee;
  margin-bottom: 20px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    margin-left:3%;
    margin-right:3%;
  }
}

#hero .btn-get-started {
  font-family: "Cutive Mono", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 24px 42px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background: #2dc997;
  border: 2px solid #2dc997;
}

@media (max-width: 768px) {
	#hero .btn-get-started {
	  font-size: 16px;
	  padding: 20px 36px;
	  margin: 5px;
	}
}
#hero .btn-get-started:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

  /* For larger screens */
  @media (min-width: 991px) {
    #hero .custom-image {
      max-width: 35%; /* Reduce the image width by 5% relative to the container width */
      float: right; /* Align the image to the right */
    }

    #hero .custom-video {
      max-width: 45%; /* Reduce the video width by 5% relative to the container width */
      float: left; /* Align the video to the left */
    }
  }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  font-family: "Questrial", sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 40px;
  color: #999;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: whitesmoke;
  min-height: 40px;
  margin-top: 92px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Features Us Section
--------------------------------*/
#features {
  font-family: "Questrial", sans-serif;
  background: #fff;
  padding: 80px 0;
}

#features .features-container .background {
  min-height: 300px;
  background: url(/image/site/main/start-a-network-featured-laptop-no-bg-sm.png) center center no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

#features .features-container .content {
  background: #fff;
  font-weight: 500;
  font-size: 24px;
}

#features .features-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #features .features-container .title {
    padding-top: 15px;
  }
}

#features .features-container p {
  line-height: 26px;
}

#features .features-container p:last-child {
  margin-bottom: 0;
}

#features .features-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#features .features-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #2dc997;
}

#features .features-container .icon-box .icon i {
  color: #2dc997;
  font-size: 24px;
  line-height: 0;
}

#features .features-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#features .features-container .icon-box .title a {
  color: #111;
}

#features .features-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Call To Action Section
--------------------------------*/
#ebook {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/image/site/main/start-a-network-call-to-action-sm.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  #ebook {
    background-attachment: scroll;
  }
}

#ebook .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#ebook .cta-text {
  color: #fff;
  font-size: 18px;
}

@media (min-width: 769px) {
  #ebook .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#ebook .cta-btn {
  font-family: "Questrial", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#ebook .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
#pricing {
  /*background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;*/
  background: #f7f7f7;
  padding: 80px 0 40px 0;

}

#pricing .box {
  padding: 20px;
  /* background: #f9f9f9; */
  background: #fff;
  text-align: center;
  border-radius: 8px;
  border-color: #245cac;
  position: relative;
  overflow: hidden;
  display: flex; 
  flex-direction: column;
  align-items: center;
}

#pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
/*  color: #052c3f;*/
  color: #247c3c;
}

#pricing .box .pricing-box-title {
  font-size: 42px;
  color: #247c3c;
  font-weight: 500;
  font-family: "Questrial", sans-serif;
  margin-bottom: 20px;
}

#pricing .box h4 {
  font-size: 42px;
  color: #f44c34;
  font-weight: 500;
  font-family: "Questrial", sans-serif;
  margin-bottom: 20px;
}

#pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

#pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

#pricing .box ul {
  padding: 0;
  list-style: none;
  color: #052c3f;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

#pricing .box ul li {
  padding-bottom: 16px;
}

#pricing .box ul i {
  color: #85b0be;
  font-size: 18px;
  padding-right: 4px;
}

#pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

#pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

#pricing .box .btn-buy {
  background: #245cac;
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Cutive Mono", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

#pricing .box .btn-buy:hover {
  background: #a6c6d0;
}

#pricing .container .featured {
  background: #f7f7f7;
  box-shadow: none;
  padding: 0 0 0 0;
}

#pricing .monthly-label {
  float: left;
  margin-right: 5px; 
  display: inline-block;
  white-space: nowrap; 
}

#pricing .annual-label {
   float: right;
   margin-left: 5px;  
   display: inline-block;
   white-space: nowrap;
}

#pricing .pricing-toggle {
  display: flex;
  justify-content: space-between; 
}

/* Clear floats */
#pricing .pricing-toggle:after {
  content: '';
  display: block;
  clear: both;  
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 80px 0 60px 0;
}

#team .team-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
}

#team .team-container .content .team-title {
  color: #245cac;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  padding-left: 30px;
}

#team .team-container .content {
  padding-left: 30px;
  font-size: 18px;
  margin-right: 10%;
}

#team .team-container .content .description {
  padding-left: 30px;
  padding-right: 10%;
}

#team .team-container .image-wrapper {
  display: flex;
  justify-content: space-between;
  margin-left: 10%;
  margin-right: 10%;
  }

#team .team-container .image-wrapper .background-image {
  max-width: 45%;
}

@media (max-width: 991px) {
  #team .team-container .row {
    flex-direction: column-reverse;
  }

    #team .team-container .content {
    margin-left: 20px;
    margin-right: 20px;
    }
  
  #team .team-container .image-wrapper {
    flex-direction: row;
    margin-bottom: 20px;
  }

  #team .team-container .image-wrapper .background-image {
    max-width: 45%;
    margin-right: 20px;
  }

  #team .team-container .content {
    margin-left: 0; /* Reset margin to align content properly */
  }
  
  #team .team-container .content .team-title {
  font-weight: 700;
  font-size: 18px;
  }
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #2dc997;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

#team .sub-content i {
  font-size: 24px;
  font-weight: 500;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #2dc997;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding: 20px 0;
}

#contact .social-links a {
  font-size: 18px;
  background: #333;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #2dc997;
  color: #fff;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #2dc997;
}

#contact .php-email-form button[type=submit] {
  background: #247c3c;
  border: 0;
  padding: 10px 48px;
  color: #fff;
  transition: 0.4s;
  font-size: 18px;
}

#contact .php-email-form button[type=submit]:hover {
  background: #51d8ad;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #343b40;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/*--------------------------------------------------------------
# Inner Page
--------------------------------------------------------------*/
.inner-page button {
  background: #245cac;
  /* width: 30%; */
  width: 100%;
}

/*--------------------------------------------------------------
# Modal Styles
--------------------------------------------------------------*/
/* Close Button */
.modal .btn-close {
  background-size: 25%;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
  width: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  opacity: 0.5;
}

.modal .btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Youtube Embed
--------------------------------------------------------------*/
/* For larger screens */
@media (min-width: 768px) {
  .embed-responsive-16by9 iframe {
    width: 100%; /* Set the width to 100% for larger screens */
    height: 350px;
    padding-bottom: 25px;
  }
}

/* For smaller screens */
@media (max-width: 767px) {
  .embed-responsive-16by9 iframe {
    width: 80%; /* Set the width to a specific size for smaller screens */
  }
}

  /* Vertically center the image */
  .container .center-image {
    display: flex;
    align-items: center;
    height: 100%; /* This will ensure the image takes the full height of the column */
  }

