@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url("../fonts/stylesheet.css");


:root {
  --font-Gotham: "Gotham";
  --primary-color: #18c3f9;
  --secondary-color: #8f8f8f;
  --border-color: #dddddd;
  --card-shadow: 1px 1px 10px 5px #ebebeb;
}
/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #dad9f2;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

body {
  font-family: var(--font-Gotham);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: #000;
  color: white;
}

h1,
h2 {
  font-weight: 700;
  text-transform: uppercase;
}
h3 {
  font-size: 35px;
  text-transform: uppercase;
}
h1 span,
h2 span {
  color: var(--primary-color);
  font-family: var(--font-Gotham);
}
h3 span {
  font-weight: 700;
}
h2 {
  font-size: 50px;
}
a {
  color: var(--primary-color);
}

p{
  line-height: 1.8;
}
.theme-btns {
  margin: 10px 0px;
  display: flex;
  gap: 10px;
}
.btn-primary {
  border-radius: 0;
  border-color: transparent;
  padding: 12px 35px 12px 25px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  position: relative;
}
.btn-primary::before {
  content: "";
  background: var(--primary-color);
  position: absolute;
  display: block;
  z-index: -1;
  clip-path: polygon(0 0, 91% 0, 100% 70%, 0 72%);
  height: 70px;
  width: 100%;
  left: 0;
  top: -1px;

}
.btn-primary:hover {
  background: transparent;
  border-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 5px;
  padding-right: 25px;
}
.btn-primary:hover::before{
  opacity: 0;
  visibility: hidden;
}
.btn:focus-visible{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--card-shadow);
}
.btn-secondary {
  font-weight: 500;
  background: transparent;
  border-radius: 30px;
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-size: 16px;
  color: var(--primary-color);
  transition: transform 0.4s ease-in-out;
  padding: 12px 25px;
}
.btn-secondary:hover {
  background: var(--primary-color);
  transition: transform 0.4s ease-in-out;
  transform: translateY(-10px);
  color: white;
}
label{
  margin-bottom: 10px;
  text-transform: capitalize;
  color: black;
}
input.form-control {
  border-radius: 5px;
  background-color: white;
  border: 1px solid #dadada;
  height: 50px;
  padding: 10px 15px;
  margin-bottom: 15px;
}

textarea.form-control {
  border-radius: 5px;
  background-color: white;
  border: 1px solid #dadada;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px 2px var(--primary-color);
}
/* custom-select */
.select {
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #dadada;
  margin-bottom: 20px;
  text-align: start;
  background: white;
  color: black;
}
.select .selectBtn {
  padding: 13px 25px;
  width: 100%;
  cursor: pointer;
}
.select .selectBtn:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transition: 0.2s ease;
}
.select .selectBtn.toggle {
  border-radius: 3px 3px 0 0;
}
.select .selectBtn.toggle:after {
  transform: translateY(-50%) rotate(-135deg);
}
.select .selectDropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  border-top: 1px solid #eee;
  z-index: 1;
  background: #fff;
  transform-origin: top center;
  transform: scale(1, 0);
  visibility: hidden;
  transition: 0.2s ease;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}
.select .selectDropdown .option {
  padding: 10px 24px;
  box-sizing: border-box;
  cursor: pointer;
}
.select .selectDropdown .option:hover {
  background: #f8f8f8;
}
.select .selectDropdown.toggle {
  visibility: visible;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* custom-select */

/* top-header */
.top-header {
  padding: 13px;
  position: absolute;
  width: 100%;
  z-index: 9999;
}

.top-header ul.social-links {
  display: flex;
  list-style: none;
  gap: 10px;
  justify-content: end;
  margin: 0;
}
.top-header ul.social-links li a{
  border: 1px solid;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s ease-in-out;

}
.top-header ul.social-links li a:hover {
  background: black;
  transform: translateY(-5px);
  transition: all .5s ease-in-out;
}
.top-header a {
  color: white;
  text-decoration: none;
}
.top-header-bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.top-header-bg img {
  width: 100%;
  height: 60px;
}
/* top-header */
/* navbar */
.navbar {
  z-index: 9999;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  transition: all .5s ease-in-out;
  top: 60px;
}

.navbar .navbar-brand {
  width: 10%;
}
.navbar .navbar-nav {
  gap: 20px;
}
.navbar .navbar-collapse {
  justify-content: end;
  margin-right: 20px;
}
nav .nav-link {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  
}
nav .nav-link:hover,
nav .nav-link.active,
nav .nav-link:focus {
  color: var(--primary-color) !important;
}

.nav-link::before {
  content: "";
  height: 2px;
  width: 0;
  display: block;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}
.nav-link.active::before,
.nav-link:hover::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.headerActive{
  position: fixed;
    top: 0;
    transition: all .5s ease-in-out;
    background: #0000009c;
}

/* navbar */
/* sec-hero */
.hero-and-about-bg ,
.inner-page-bg{
  position: absolute;
  z-index: -5;
  width: 100%;
  overflow: hidden;
  height: 100%;
  top: 0;

}

.inner-page-bg img,
.hero-and-about-bg img {
  width: 100%;
}
.sec-hero {
  position: relative;
  padding: 270px 0 220px;
  height: 1480px;
}
.sec-hero .content {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.sec-hero .content h1 {
  font-size: 58px;
  text-transform: uppercase;
  font-weight: 800;
}
.sec-hero .content h1 span {
  font-size: 95px;
}

.sec-hero .content p {
  font-size: 18px;
  width: 80%;
  margin: 0px auto;
}

.sec-hero .content .theme-btns {
  justify-content: center;
  margin: 40px 0;
}
.sec-hero .content .theme-btns .btn-primary{
  background: var(--primary-color);
  border-radius: 30px;
  padding: 13px 40px;
}
.sec-hero .content .theme-btns .btn-primary:hover{
  background: transparent;
}
.sec-hero .content .theme-btns .btn-primary::before{
opacity: 0;
visibility: hidden;
}
.hero-social {
  position: absolute;
  top: 210px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-social .border-line {
  height: 100px;
  width: 2px;
  background: #808491;
  margin-bottom: 60px;
  position: relative;
  left: -6px;
}

.hero-social .contact-ul {
  padding: 0;
  list-style: none;
}

.hero-social .contact-ul a i {
  background: transparent;
  height: 45px;
  width: 45px;
  color: var(--primary-color);
}

.hero-social .contact-ul a:hover i {
  background: var(--primary-color);
  color: white;
}

.hero-social .scroll p {
  position: relative;
  transform: rotate(-90deg);
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  left: -10px;
}

.hero-social .scroll a {
  font-size: 40px;
  position: relative;
  margin-top: 70px;
  display: inline-block;
  position: relative;
  left: 34px;
}

.hero-social .scroll a::before {
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  background: #2a3550;
  border-radius: 50%;
  z-index: -1;
  top: -5px;
}
/* sec-about */
section.sec-about {
  position: relative;
  padding: 150px 0;
}
section.sec-about .content {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  height: 100%;
  justify-content: center;
}
section.sec-about .content h2 {
  color: var(--primary-color);
}
/* sec-about */
/* sec-leads */
section.sec-leads {
  background: url(../assets/leads-bg.png) center center/cover no-repeat;
  padding: 160px 0;
  text-align: center;
  position: relative;
  z-index: 1;

}

section.sec-leads .content {
  width: 80%;
  margin: 0 auto;
}

/* sec-leads */
/* sec-form */
.sec-contact-us {
  padding: 350px 0 100px;
  position: relative;
}
.sec-contact-us .content {
  width: 80%;
}
.sec-contact-us .contact-bg {
  position: absolute;
  left: 0;
  width: 32%;
}
.home-page-form {
  padding: 50px 30px 30px;
  background: white;
  border-radius: 10px;
  position: relative;
}

.home-page-form h5 {
  color: black;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-size: 25px;
}

.home-page-form::before{
  content: "";
  height: 6px;
  width: 99%;
  position: absolute;
  top: -8px;
  background: transparent;
  border-radius: 30px 30px 0 0;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid var(--primary-color);
}
.home-page-form .btn-primary {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 20px;
}

/* sec-form */
/* inner-page */
.sec-hero.inner-page {
  height: 1200px;
}
.sec-about.inner-page-content  {
  padding:0;
  position: relative;
}
.sec-about.inner-page-content .container {
  border-bottom: 1px solid var(--border-color);
  padding: 100px 0;
}
/* robocall-page */
.robocall-content .content {
  text-align: center;
  display: block !important;
  margin-bottom: 70px;
}

.robocall-content .content h2 {
  font-size: 65px;
}
.card.card-robocall {
  background: #161616;
  color: white;
  text-align: center;
  height: 400px;
  transition: all .4s ease-in-out;
margin-bottom: 30px;
}
.card.card-robocall:hover {
  box-shadow: 1px 1px 140px 5px #ffffff61;
  position: relative;
  transform: scale(1.1);
  transition: all .4s ease-in-out;
}

.card.card-robocall .card-img-top {
  width: unset;
  margin-bottom: 20px;
}

.card.card-robocall .card-body {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 30px;
}

.card.card-robocall .card-title {
  font-size: 25px;
}

/* robocall-page */
/* cloud-page */
.cloud-img {
  position: absolute;
  left: 0;
  top: -100px;
  width: 50%;
}
section.sec-map {
  position: relative;
  padding: 150px 0 100px;
  height: 1440px;
}

.map-bg {
  position: absolute;
  left: 0;
  width: 100%;
}

.map-bg img {
  width: 100%;
}
.card.card-circle {
  background: transparent;
  border: none;
  position: relative;
  width: 300px;
}
.card.card-circle .img-box {
  position: relative;
  height: 250px;
  width: 160px;
  left: 50%;
  transform: translateX(-50%);
}
.card.card-circle .icon-box {
  position: absolute;
  background: white;
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  top: 19px;
}
.card.card-circle .card-body {
  padding: 0;
  margin: 20px 0;
}

.card.card-circle .card-body h5 {
  font-size: 24px;
  text-align: center;
  color: white;
}

.card.card-circle .card-body h5.number {
  color: var(--primary-color);
  font-weight: 700;
}

.card.card-circle.one {
  position: absolute;
  left: 90px;
  top: 300px;
}

.card.card-circle.two {
  position: absolute;
  left: 520px;
  top: 330px;
}

.card.card-circle.three {
  position: absolute;
  left: 52.5%;
  transform: translateX(-50%) !important;
  top: 10px;
}

.card.card-circle.four {
  position: absolute;
  right: 400px;
  top: 299px;
}

.card.card-circle.five {
  position: absolute;
  right: 93px;
  top: -74px;
}

.card.card-circle.two .img-box .circle-img {
  transform: rotate(140deg);
  top: 40px;
  position: relative;
  left: -20px;
}

.card.card-circle.two .img-box .icon-box {
  top: 143px;
  left: 89px;
}

.card.card-circle.two .img-box {
  margin-bottom: 45px;
}

section.sec-map .container-fluid {
  position: relative;
}

.card.card-circle.three .img-box .circle-img {
  position: relative;
  transform: rotate(180deg);
  top: 38px;
}

.card.card-circle.three .icon-box {
  top: 150px;
}

.card.card-circle.three .img-box {
  margin-bottom: 55px;
}

.card.card-circle.four .circle-img {
  position: relative;
  transform: rotate(-47deg);
  top: 30px;
  right: -12px;
}

.card.card-circle.four .icon-box {
  top: 65px;
  left: 58px;
}

.card.card-circle.four .card-body {
  position: relative;
  top: 51px;
  left: -18px;
}
section.sec-screen-img img {
  width: 100%;
}
/* sec-calculator */
section.sec-calculator {
  padding: 70px 0;
}
section.sec-calculator .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
section.sec-calculator .content h2 {
  font-weight: 800;
  font-size: 40px;
}

.calculator-form .content2 h3 span {
  font-weight: 800;
}

.calculator-form .content2 h3 {
  text-transform: capitalize;
  font-size: 30px;
}

.calculator-form {
  padding: 40px;
  margin-top: 30px;
}

.calculator-form .content2 {
  text-align: center;
  margin-bottom: 30px;
  color: black;
}

.calculator-form .form-select {
  margin-bottom: 30px;
  padding: 0 30px;
  height: 60px;
}
.calculator-form{
      border-radius: 10px 10px 20px 20px;
  filter: drop-shadow(0px 5px 12.5px rgba(0, 0, 0, 0.04));
  box-shadow: 0px 0px 20px 1px #dddce6;
  position: relative;
  background-color: white;
}
.calculator-form .btn-primary {
  margin-bottom: 25px;
  width: 100%;
  text-transform: uppercase;
}


.calculator-form input.form-control {
  border-radius: 30px;
  background-color: white;
  border: 1px solid #dadada;
  height: 60px;
  padding: 10px 25px;
  margin-bottom: 15px;
}

.calculator-form textarea.form-control {
  border-radius: 15px;
  background-color: white;
  border: 1px solid #dadada;
  padding: 10px 25px;
  margin-bottom: 15px;
}
.calculator-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px 2px #3a36dbe3;
}

.calculator-form::before {
  content: "";
  height: 6px;
  width: 99%;
  position: absolute;
  top: -8px;
  background: transparent;
  border-radius: 30px 30px 0 0;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid var(--primary-color);
}
/* sec-calculator */
/* cloud-page */
/* contact-us */
.contact-us-page .sec-contact-us {
  padding: 70px 0 300px;
}
.contact-us-page .contact-ul {
  display: block !important;
  padding: 0;
  list-style: none;
  margin-top: 40px;
}

.contact-us-page .contact-ul a {
  text-decoration: none;
  margin-bottom: 25px;
}

.contact-us-page .inner-page-bg {
  display: block !important;
}
.cloud-page .sec-about .container {
  border: none;
}
/* contact-us */
/* inner-page */


/* sec-services */

section.sec-services {
  padding: 100px 0;
}
section.sec-services .content {
  text-align: center;
  width: 90%;
  margin: 0px auto 50px auto;
}

.card.card-service {
  border: none;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
.card.card-service.first {
  height: 550px;
  background: url(../assets/service-bg-1.png) center center/cover no-repeat;
}
.card.card-service.second {
     height: 265px;
  background: url(../assets/service-bg-2.png) center center/cover no-repeat;
}
.card.card-service.third {
     height: 265px;
  background: url(../assets/service-bg-3.png) center center/cover no-repeat;
}
.card.card-service.second .card-body,
.card.card-service.third .card-body  {
  width: 455px;
}

.card.card-service .card-body {
  padding: 30px;
  color: white;
}
.card.card-service .card-body h3 {
  text-transform: capitalize;
}
.card.card-service .card-body .btn-primary {
  border-radius: 50%;
  background: var(--primary-color);
  padding: 0;
  height: 50px;
  width: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card.card-service .card-body .btn-primary::before {
  display: none;
}

.card.card-service .card-body .btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}


/* sec-services */
/* sec-testimonail */
section.sec-testimonail {
  height: 600px;
  background: url(../assets/testimonail-bg.png) center center/cover no-repeat;
  position: relative;
  z-index: 99;
}
section.sec-testimonail .content{
  height: 495px;
  width: 600px;
  background: url(../assets/testimonail-card-bg.png) center center/cover no-repeat;
  position: absolute;
  bottom: -200px;

}
.card.card-testimonail {
background-color: transparent;
height: 100%;
}
.card.card-testimonail .card-body {
  color: white;
  padding: 130px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;


}
.card.card-testimonail .card-body .card-text {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 30px;
}
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  background: var(--primary-color);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateX(-50%);
  top: 420px;
  z-index: 9999;
}
.testimonial-slider .slick-next {
    right: 40%;
}
.testimonial-slider .slick-prev{
  left: 45%;
}
.testimonial-slider .slick-next:before{
  content: "\f054";
  font-family: "FontAwesome";
}
.testimonial-slider .slick-prev:before{
  content: "\f053";
  font-family: "FontAwesome";
}
/* sec-testimonail */
/* footer */
footer .container {
  border-top: 1px solid var(--border-color);
  padding: 100px 0 80px 0;
}
footer .navbar-brand {
  margin-bottom: 20px;
  display: block;
}

footer ul {
  padding: 0;
}

footer ul li {
  list-style: none;
}
footer ul li a {
  text-decoration: none;
}

footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

footer .social-links li a {
  height: 50px;
  width: 50px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--primary-color);
}

footer .social-links li a:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
  border-color: var(--primary-color);
}
ul.contact-ul li a {
  color: white;
  margin-bottom: 15px;
  display: block;
}

ul.contact-ul li i {
  height: 40px;
  width: 40px;
  background: var(--primary-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 18px;
  color: white;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--primary-color);
  margin-right: 10px;
}
ul.contact-ul li a:hover i{
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
  border-color: var(--primary-color);
}
footer .content h5 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

footer .content h5::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 70px;
  background: var(--primary-color);
  top: 100%;
}
footer .navigation li a {
  font-weight: 500;
  line-height: 2;
  color: white;
}

footer .navigation li a:hover {
  color: var(--primary-color);
}


/* footer */
/* btm-footer */

.btm-footer .container {
  border-top: 1px solid var(--border-color);
  padding: 30px 0 10px 0;
}

.btm-footer .container a {
  color: #757575;
  text-decoration: none;
  font-weight: 500;
}
/* btm-footer */
/* animation */
.hero-small-card,
.small-card,
.dashboard-card{
  animation: mymove 2s ease-in-out .5s infinite;
}
@keyframes mymove {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  50% {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px)
  }

  to {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }
}
/* animation */

/* responsive */

/* responsive */
