:root {
  --color-black: #000;
  --color-blue:#0D0D17 !important;
  --color-blue-3:#29294B;
  --color-light-green:#68ab89;
  --color-green:#68ab89;
  --color-light-gray: #dfdfdf;
  --color-red: #D7392D;
  --font-family: 'Poppins', sans-serif !important;
  --bold-font: 500;
}

body{
  overflow-x: hidden !important;
  font-family: 'Poppins';
  background-color: var(--color-blue);
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 5px;
  height: 5px
}

::-webkit-scrollbar-corner {
  background: var(--color-blue);
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--color-blue);
  margin-left: 15px;
  border: 1px solid var(--color-blue);
  border-radius: 15px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-light-green);
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-light-green);
}

/* SCROLLBAR */


h1,h2,h3,h4,h5,h6,p{
  color:white;
}

a:hover{
  border:none;
  text-decoration: none;
}

.home-bg{
  background-image: url('../images/home-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-blue);
}

.home-first-section{
  background-image: url('../images/first-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 85vh;
  background-position: bottom left -100px;
  background-color: var(--color-blue);
}

@media (min-width:200px) and (max-width:768px) {
  .home-first-section{
    height: 100%;
    background-position: bottom left -190px;
  }
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

button, .btn{
  border-radius: 8px;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.header-logo{
  width: 100px;
}

.loading-screen-container {
  height: 100%;
  width: 100%;
  background-color: var(--color-blue);
  background-image: url('../images/logo.png');
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 100000;
  transition: opacity .5s ease-in-out;
}

.loading-screen-container.hide {
  opacity: 0
}

.loading-screen-loader {
  height: 230px;
  width: 230px;
  border-radius: 100%;
  border: 1px solid #fff;
  margin-top: 22px;
  border-right: none;
  border-bottom: none;
  animation-name: spin, fade;
  animation-duration: 3s, 3s;
  animation-timing-function: cubic-bezier(.075, .82, .165, 1), linear;
  animation-iteration-count: infinite;
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(1110deg)
  }
}

@keyframes fade {
  0%, 100%, 70% {
    opacity: 0
  }

  50% {
    opacity: 1
  }
}


.color-blue{
  color:var(--color-blue);
}

.color-light-green{
  color:var(--color-light-green);
}

.navbar.navbar-dark {
  padding-right: 100px;
  padding-left: 100px;
}
.navbar.navbar-dashboard {
  padding-right: 100px;
  padding-left: 100px;
}

.fixed-top.bg-dark{
  background-color: var(--color-blue) !important;
  box-shadow: 0px 0px 15px;
}

.navbar-dashboard.bg-gray{
  background-color: #F7F7F7;
}

@media (min-width:992px) {
  .navbar-nav{
    margin-left: 50px;
  }
}

@media (min-width:200px) and (max-width:992px) {
  .navbar.navbar-dark {
    padding-right: 10px;
    padding-left: 10px;
    background-color: var(--color-blue) !important
  }

  .navbar-nav{
    margin-left: 10px;
  }

}

#mainNav .nav-item.active, #mainNav .nav-item:hover {
  cursor: pointer;
}

#mainNav .nav-item {
  margin-right: 35px;
}
/*
#subTabs .nav-link{
  max-width: 150px;
  margin: auto;
}

.about-bg {
  background-image: url('../images/right-top.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 25%;
  min-height: 700px;
}

.dashboard-bg {
  background-image: url('../images/right-top.png'),url('../images/bottom-left.png') ;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: top right, bottom left;
  position: relative, relative;
  background-size: 20%, 17%;
  min-height: 92vh;
  padding-top: 30px;
} */

@media (min-width:992px) {
  /* .home-bg {
    height: 100vh;
  }
  .about-bg {
    height: 100vh;
  } */
  /* .home-first-section{
    min-height: 950px;
  } */
}

.home-content {
  /* padding-top: 175px !important; */
  color:white;
}

.home-content h1{
  font-weight: 900;
  letter-spacing: 8px;
}

.home-content .sub-text{
  font-size: 17px;
}

.home-image {
  width: 100%;
  /* padding-top: 120px; */
}

@media (min-width:200px) and (max-width:768px) {
  .home-content {
    padding-top: 50px !important;
  }

  .home-image {
    width: 75%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

button {
  outline: none;
}

.text-blue{
  color: var(--color-blue) !important;
}

.btn-blue {
  background-color: var(--color-blue) !important;
  color: white !important;
  border: 2px solid var(--color-blue) !important;
  min-width: fit-content;
}

.btn-light-blue {
  background-color: var(--color-blue-3) !important;
  color: white !important;
  border: 2px solid var(--color-blue-3) !important;
  font-weight: 600;
}

.btn-light-green {
  background-color: var(--color-light-green) !important;
  color: white;
  border: 2px solid var(--color-light-green) !important;
}

/* .btn-blue:hover {
  background-color: white !important;
  color: var(--color-blue) !important;
  border: 2px solid var(--color-blue) !important;
} */

.btn-round {
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-square {
  border-radius: none;
}

.footer-bg-image {
  background: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-position-y: 80px;
  margin-top: -150px;
}

footer{
  background-color: #221E3F;
}

.footer-container {
  padding-top: 120px;
  padding-bottom: 25px;
}

.isp-section{
  width: 90%;
  margin: auto;
  min-height: 260px;
  background-image: url('../images/isp-bg.png');
  background-repeat: no-repeat;
  border-radius: 25px;
  background-size: cover;
}

.support-section{
  margin-top: -250px;
  margin-bottom: 35px;
  min-height: 270px;
  background-image: url('../images/blue-bg.jpg');
  background-repeat: no-repeat;
  border-radius: 40px;
  background-size: cover;
}



/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 45%;
  padding: 0 20px;
}

.column img {
  /* margin-top: 20px; */
  margin-bottom: 20px;
  vertical-align: middle;
  width: 100%;
}

.column a{
  position: relative;
}

.column a span{
  position: relative;
  left: 11%;
  top:60px;
  font-size: 21px;
  color: #ffffff;
  font-weight: 700;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

.social-links a{
  font-size: 25px;
  margin-right: 15px;
}


/* Testimonial start */

.carousel-container{
  margin: 0;
  padding: 0;
}

.testimonial-section .card {
    /* box-shadow: 0px 4px 8px 0px #BDBDBD; */
    background-color: #22243B;
    background-image: url('../images/testimonial-bg.jpg');
    background-repeat: no-repeat;
    border-radius: 35px;
    background-size: cover;
    background-position: right;
}

@media (max-width:768px) {
  .testimonial-section{
    padding-right:10px;
    padding-left: 10px;
  }
}

.profile-pic {
    border-radius: 100px;
    width: 60px !important;
    height: 60px;
    /* box-shadow: 0px 4px 8px 0px #BDBDBD */
}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    color: #1E88E5 !important;
    border: none;
    padding: 5px 20px !important;
    font: inherit;
    font-size: 50px !important
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    color: #0D47A1 !important;
    background-color: transparent !important
}

.owl-dots {
    display: none
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0
}


/* Testimonial end */


.plan-card{
  padding-top:20px;
  /* padding-left:100px;
  padding-right:70px */
}

.card{
  /* margin-top:30px; */
}

@media (max-width:1199px) {
  .card{
    margin-top:30px;
  }
}

@media (min-width:768px) {
  .captcha-section{
    padding-left: 60px;
    padding-right: 60px;
  }

  .isp-plan-section{
    padding-left: 60px;
    padding-right: 60px;
  }

  .residential-plan-section{
    padding-left: 60px;
    padding-right: 60px;
  }

  .server-plan-section{
    padding-left: 60px;
    padding-right: 60px;
  }
}

.captcha-section{
  background-image: url('../images/captcha-plans-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-blue);
  min-height: 100vh;
  background-position: center;
}

.isp-plan-section{
  background-image: url('../images/isp-plan-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-blue);
  min-height: 100vh;
  background-position: center;
}

.residential-plan-section{
  background-image: url('../images/residential-plan-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-blue);
  min-height: 100vh;
  background-position: center;
}

.server-plan-section{
  background-image: url('../images/server-plan-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-blue);
  min-height: 100vh;
  background-position: center;
}

.bulk-plan-section{
  background-image: url('../images/bg/bulk.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-blue);
  min-height: 100vh;
  background-position: center;
}

.section-bg-image{
  background-attachment: fixed;
  background-repeat:no-repeat;
  background-size:cover;
  /* background-position:center; */
  min-height:100vh;
}

.plan-card .card{
  background: #17172F;
  border-radius: 30px;
  min-height: 480px;
  max-width: 355px;
  min-width: 355px;
}

.text-black{
  color:black !important;
}

.card-footer {
  padding-bottom: 25px;
  border:none;
  background: transparent;
}

.card-options .nav.nav-tabs.tab-two-btn-wrap {
  border:none;
}

.card-options .btn{
  background: #29294B;
  color:white;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  margin-right: 5px;
  border:none;
  min-width: 80px;
}

.card-options .btn:hover{
  background: var(--color-light-green);
  color:black;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  margin-right: 5px;
  border:none;
}

.card-options .btn.active{
  background: var(--color-light-green);
  color:black;
  font-weight: 700;
  min-width: fit-content;
}

.info-card{
  background: #16172F;
  border-radius:30px;
  padding: 25px;
}

.login-section{
  background-image: url('../images/login-bg.png');
  height: 100vh;
  background-size:cover;
  background-repeat: no-repeat;
}


.login-section .card{
  background: #15152D !important;
  border-radius: 30px !important;
  margin-bottom: 30px !important;
  margin-top: 0px !important;
}

.login-section .card-header{
  background: transparent;
  width: 90%;
  color: white;
  text-align: center;
  border-bottom: 2px solid #292A49 !important;
  margin: auto;
  font-size: 18px;
  font-weight: 800;
}

.custom-input{
  background: var(--color-blue-3);
  border-radius: 20px;
  color:white;
  outline: none;
  padding: 7px 10px;
  border: none;
  text-align: center;
  font-size: 14px;
}

textarea.custom-textarea{
  width: 100%;
  height: 100%;
  background: var(--color-blue-3);
  color:var(--color-orange);
  text-align: center;
  border: none;
  border-radius: 10px;
  font-size: 14px;
}

textarea.custom-textarea:focus{
  border: none;
  outline: none;
}

.card-body a{
  color:var(--color-light-green);
}

.login-content{
  margin-top: 140px;
  color:white;
}

.search-input, .search-input:focus{
  height: 45px;
  background-color: var(--color-blue-3);
  border:none;
  border-radius: 5px;
  color:white !important;
}

.search-input::placeholder{
  color:white;
}

.search-input:focus{
    box-shadow: none !important;
}

.search-btn{
  border-radius: 5px;
  background-color: var(--color-light-green);
  height: 45px;
  width: 45px;
}

.faq-card{
  background-color:var(--color-blue-3);
  border-radius: 10px;
  padding: 20px;
  text-align:center;
}

.text-button{
  padding: 2px;
  font-size: 11px;
  font-weight: 700;
  width: 100px;
}


/* Checkout Modal CSS */
#checkoutModal, #siteModal {
  z-index: 11111;
}

#checkoutModal .modal-content, #siteModal .modal-content {
  display: block;
  background-color: var(--color-blue) !important;
  border-radius: 10px !important;
  color: var(--color-blue-3) !important;
  padding: 15px 15px;
  min-width: 500px;
  max-width: 500px;
}

#checkoutModal .modal-header,
#checkoutModal .modal-body,
#checkoutModal .modal-footer,
#siteModal .modal-header,
#siteModal .modal-body,
#siteModal .modal-footer  {
  display: block;
  padding: 15px 15px;
}

#checkoutModal button, #siteModal button {
  background-color: var(--color-green) !important;
  border-color: var(--color-green) !important;
  border-radius: 0px;
  color: var(--color-blue) !important;
  font-size: 14px !important;
  font-weight: 600;
  height: 34px;
  box-shadow: none !important;
  outline: none !important;
}

#checkoutModal input#couponCode {
  background-color: var(--color-blue-3) !important;
  border-color: var(--color-blue-3) !important;
  border-radius: 0px !important;
  color: white !important;
  font-size: 14px !important;
  height: 34px;
  text-align: left;
  padding: 8px !important;
  box-shadow: none !important;
  outline: none !important;
}

#checkoutModal input#couponCode::-webkit-input-placeholder {
  color: white !important;
}

#checkoutModal input#couponCode::-moz-placeholder {
  color: white !important;
}

#checkoutModal input#couponCode:-ms-input-placeholder {
  color: white !important;
}

#checkoutModal input#couponCode:-moz-placeholder {
  color: white !important;
}

#checkoutModal .modal-header .close, #siteModal .modal-header .close {
  background-color: transparent !important;
  color: var(--color-green) !important;
  font-size: 32px !important;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 10px;
  opacity: 1;
}

#checkoutModal .modal-header .modal-header-img, #siteModal .modal-header .modal-header-img {
  max-width: 175px;
  max-height: 75px;
}

#checkoutModal .modal-header .modal-title, #siteModal .modal-header .modal-title {
  color: var(--color-green) !important;
  margin: 0;
  font-size: 16px;
  padding: 20px 0px 10px 0px;
}

#checkoutModal .modal-body #paymentInfo {
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 500;
}

#checkoutModal .modal-body #paymentInfo>div {
  margin-bottom: 10px;
  color: var(--color-green);
}

#checkoutModal .modal-footer>*, #siteModal .modal-footer>* {
  margin: .25rem;
}

#checkoutModal .modal-footer .checkbox a {
  color: var(--color-green) !important;
  font-weight: 500;
  text-decoration: none !important;
}

#checkoutModal .modal-footer #tosCheck {
  height: auto;
  vertical-align: middle;
}

#checkoutModal .modal-footer label {
  color: white;
}

#checkoutModal .modal-footer a {
  color: var(--color-green);
}

#allSites{
  background: transparent;
  color:white;
  width: 100%;
}

@media (max-width: 576px) {
  #checkoutModal .modal-content, #siteModal .modal-content {
    min-width: 85%;
    max-width: 85%;
  }
}


.dropdown-item.active, .dropdown-item:active {
  background-color: var(--color-light-green) !important;
}

.btn-inline-icon{
  width: 35px;
  height: 35px;
  border-radius: 100%;
  padding: 0px;
  margin-left: 10px;
}

.w-90{
  width:90%;
}

.product-price{
  font-size: 18px;
}

.autoTopupLable{
  margin-top:21px;
}

.autoTopup-input{
  text-align: center;
  background: transparent;
  border-bottom: 1px solid white !important;
  width: 40px;
  color: white;
  outline: none;
  padding: 5px;
  border: none;
}
