/* ---------------------
      Variables
-------------------------*/
:root {
	--primary-color: #1e50bc;
	--secondary-color: #1a8fe3;
    --text-color: #7a7a7a;
    --font-main: 'DM Sans', sans-serif;
    --main-grad: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Global */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main) !important;
}

section {
	padding: 100px 0;
}

p {
    color: var(--text-color);
    font-family: var(--font-main) !important;
}

h1, h2, h3, h4, h6 {
    font-family: var(--font-main) !important;
}

.sub-title {
    font-size: 18px;
    font-weight: 500;
    padding-left: 25px;
    display: inline-block;
    background-image: -webkit-linear-gradient(45deg, var(--primary-color) 15%, var(--secondary-color) 65%);
    background-image: linear-gradient(45deg, var(--primary-color) 15%, var(--secondary-color) 65%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title:before, .sub-title span:before, .sub-title span:after  {
    top: 6px;
    width: 2px;
    content: "";
    height: 13px;
    position: absolute;
    background: var(--primary-color);
}

.sub-title:before {
    left: 15px;
}

.sub-title span:before {
    left: 20px;
}

.sub-title span:after {
    left: 25px;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    padding-top: 18px;
    line-height: 1.238;
    color: #000;
}

.inner-icon-section h4 {
    font-size: 20px;
    font-weight: 700;
    max-width: 105px;
    line-height: 1.4;
    color: #000;
    padding-left: 20px;
}

.experience-card {
    left: 0;
    right: 0;
    bottom: 0;
    width: 190px;
    height: 195px;
    margin: 0 auto;
    padding-top: 30px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
}

.experience-card h3 {
    font-size: 62px;
    font-weight: 700;
    background-image: -webkit-linear-gradient(45deg, var(--primary-color) 15%, var(--secondary-color) 65%);
    background-image: linear-gradient(45deg, var(--primary-color) 15%, var(--secondary-color) 65%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-card p {
    font-size: 18px;
    font-weight: 700;
    padding-top: 10px;
    color: #000;
}

/* Footer */
.site-footer {
    background: url(../assets/img/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 100px;
    background-color: #10212b;
    color: #fff;
}

.site-info {
    text-align: right;
    padding: 30px 0 15px;
    width: 60%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-info p {
    color: #fff;
    font-size: 14px;
}

.footer-about-card {
    padding: 45px 30px 65px;
    border-radius: 5px;
    background-color: #10212b;
}

.footer-socials a {
    transition: 500ms all ease;
    background: transparent;
    margin: 0 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 15px;
}

.footer-socials a i {
    font-size: 20px;
    color: #fff;
}

.footer-socials a:hover {
    background: var(--primary-color);
}

.contact-info .icon-wrapper i {
    color: var(--primary-color);

    border: 1px solid #fff;
    text-align: center;
    margin-right: 10px;
    font-size: 20px;
    padding: 15px 15px;
    border-radius: 50%;
    background: #fff;
}

.contact-info .txt-wrapper p {
    font-size: 17px;
    color: #fff;
    line-height: 1.875;
}

.footer-links {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #fff;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

/* Header */

.header-top {
    padding: 10px 0;
}

.header-cta {
    margin-left: 30px;
}

.header-cta .icon-wrapper {
    margin-right: 15px;
}

.header-cta .icon-wrapper i {
    font-size: 40px;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), to(var(--secondary-color)));
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-cta .text-wrapper h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;    
}

.header-bottom {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.main-navigation a {
    padding: 25px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #fff;
    text-decoration: underline;
}

.btn-header {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 5px;
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff !important;
}

.btn-header:hover {
    color: var(--primary-color) !important;
    background-color: #fff;
	border: 1px solid var(--primary-color) !important;
    text-decoration: none;
}

/* Home */

.service-card {
    height: 450px;
    z-index: 1;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 30px;
    padding: 55px 35px 30px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 48px;
}

.service-card h3:before {
    top: 65px;
    left: 0;
    width: 50px;
    height: 4px;
    content: "";
    border-radius: 10px;
    position: absolute;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.btn-qoute {
    color: var(--primary-color) !important;
    background-color: #f0f3f9;
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

.service-card::before {
    bottom: 0;
    right: 0;
    width: 0%;
    z-index: -1;
    content: "";
    height: 0%;
    position: absolute;
    background: var(--main-grad);
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
  }

  .service-card:hover::before {
    width: 100%;
    height: 100%;
  }

  .service-card:hover h3, .service-card:hover p {
    color: #fff;
  }

  .service-card:hover h3::before {
    background: #fff;
  }

  .service-card:hover {
    background: transparent;
  }

  .service-card img {
    -webkit-transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
    transition: 0.4s cubic-bezier(0.24, 0.74, 0.58, 1);
    transition-delay: 0s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

  .service-card:hover img {
    filter: brightness(0) invert(1);
    transform: rotateY(360deg);
  }

  .btn-qoute:hover {
    word-spacing: 3px;
    text-decoration: none;
  }

  .service-img {
    border-radius: 10px;
  }

  .btn-grad {
    background: var(--main-grad);
    color: #fff !important;
    font-weight: 500;
    padding: 16px 60px;
    border-radius: 5px;
    display: inline-block;
    background-size: 200%, 1px;
    -webkit-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
  }

  .btn-grad:hover {
    text-decoration: none;
  }

  .mid-banner {
    background: url(../assets/img/parallaxdark_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }

  .best-card {
    border-radius: 10px;
    margin: 20px;
    padding: 30px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  }

  .best-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    padding-top: 30px;
  }

  .img-span {
    background: var(--main-grad);
    padding:  20px;
    width: 80px;
    border-radius: 100%;
    text-align: center;
  }

  .tesimonial-section {
    background-color: #F8FAFC
  }

  .btn-carousel {
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 10px;
  }

  .btn-carousel:hover {
    text-decoration: none;
    background: var(--primary-color);
    color: #fff !important;
  }



  /* Testimonial Slider */
  .owl-carousel .owl-item img {
    width: auto !important;
  }

  .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
    position: absolute;
    right: 0;
    top: -100px;
  }

  /* --end-- */

  @media screen and (max-width: 767px) {
    .btn-header {
        display: none;
    }

    .mobile-menu {
        background: #fff;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        position: absolute;
        right: 15px;
        top: -55px;
    }

    .header-bottom {
        background: #fff !important;
    }

    .main-navigation a {
        color: #000;
        padding: 10px 0;
        font-size: 14px;
    }
  }

  @media screen and (min-width: 768px) and (max-width: 991px) {
    .service-card {
        height: 520px;
        padding: 30px 15px;
    }

    .best-card {
        padding: 15px;
    }

    .footer-about-card {
        padding: 45px 15px 65px;
    }
    
    .footer-socials a {
        margin: 0;
    }
  }
