/*--------------------------------------------------------------
# General
#Developer: Puspa Subedi, Hari panta
#Company: BItcraft Technology Pvt. Ltd
#Website: https://bitcraft.com.np
#Contact: +977-9813399343
#Email: bitcrafttechnology@gmail.com
--------------------------------------------------------------*/

:root {
  --primary: #17469e;
  --accent: #FFCB05;
  --secondary-blue: #4f75c8;
  --soft-yellow: #fff4cc;
  --background: rgb(236, 245, 248);;
  --surface: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f97316;
  --danger: #ef4444;
  --info: #22d3ee;
}


body {
    font-family: "Roboto", sans-serif;
    color: var(--text-main);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}


a {
    color: #17469e;
    text-decoration: none;
}

a:hover {
    color: #17469e;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}


.text-red {
    color: #17469e;
}

.text-black {
    color: #1c1d1d;
}


@media (min-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #e6ecf7;
    padding: 7px 0;
}

#topbar .contact-info .text {
    color: #1c1d1d;
    font-size: 18px;
    line-height: 27px;
}

#topbar .social-links a {
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social_icon {
    width: 36px;
    height: 36px;
}

#facebook {
    background: url("../img/icons/socials/gray-facebook.svg");
}

#facebook:hover {
    background: url("../img/icons/socials/facebook.svg") !important;
}

#instagram {
    background: url("../img/icons/socials/gray-insta.svg");
}

#instagram:hover {
    background: url("../img/icons/socials/insta.svg") !important;
}

#tiktok {
    background: url("../img/icons/socials/gray-tiktok.svg");
}

#tiktok:hover {
    background: url("../img/icons/socials/tiktok.svg") !important;
}

#youtube {
    background: url("../img/icons/socials/gray-youtube.svg");
}

#youtube:hover {
    background: url("../img/icons/socials/youtube.svg") !important;
}

#whatsapp {
    background: url("../img/icons/socials/gray-whatsapp.svg");
}

#whatsapp:hover {
    background: url("../img/icons/socials/whatsapp.svg") !important;
}

#topbar .phone {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 6px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
    padding: 6px 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: #106eea;
}

#header .logo img {
    margin: 0 0 10px 0;
    max-height: 65px;
    mix-blend-mode: multiply;
}

.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: 0 10px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    color: #1c1d1d;
    font-family: "Roboto", sans-serif;
    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 a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #17469e !important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 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-weight: 400;
}

.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: #106eea;
}

.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;
}

.quote-btn {
    border: 3px solid #17469e;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    width: 200px;
    height: 45px;
    line-height: 40px;
    margin-right: 20px;
    background: #17469e;
    color: #ffffff !important;
    border-radius: 50px !important;
}

.quote-btn:hover {
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    border: 3px solid #17469e !important;
}

.quote-btn:hover {
    font-size: 18px;
    font-weight: 700;
    color: #17469e !important;
}

.submit-btn-center {
    justify-content: center;
}

.search {
    font-size: 15px;
    display: inline-block;
    background: #ffffff;
    color: #17469e;
    line-height: 1;
    padding: 13px 0;
    margin-right: 20px;
    border-radius: 50px;
    border: 3px solid #d1d3d4;
    text-align: center;
    width: 45px;
    height: 45px;
}

.search:hover {
    background: #17469e;
    color: #ffffff;
    border: 3px solid #17469e;

}


#search.active {
    display: block;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 0 0 rgba(0, 0, 0, 0.04), 0 -1px 0 0 rgba(0, 0, 0, 0.04);
    opacity: 1;
    visibility: visible;
}

#search {
    display: none;
    background-color: #d1d3d440;
}

#search input {
    width: 100%;
    border-radius: 3px;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease-out;
    padding: 15px 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 400;
    line-height: 1.42857143;
    vertical-align: middle;
}

#search .search-list.show {
    display: block;
    position: absolute;
    padding: 15px;
    width: 55%;
    z-index: 9000000;
    background: #f3f4f4;
    transition: 0.3s;
}

#search .search-list {
    display: none;
}


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

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

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@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(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile .quote-btn, .navbar-mobile .search {
    display: none !important;
}

.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 a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.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:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #106eea;
}

.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: #106eea;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 75vh;
    background: url("../img/slidder/slider1.webp") top left;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: #19243dbf;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    text-transform: uppercase;
    color: #222222;
    font-family: "Roboto", sans-serif;
}

#hero h1 span {
    color: #106eea;
}

#hero h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

#hero .google-bg {
    height: 55px;
    width: 55px;
    font-size: 30px;
    display: inline-block;
    padding: 6px 13px;
    border-radius: 60px;
    transition: 0.5s;
    color: #fff;
    background: #17469e;
}

#hero .btn-google-rating {
    border: 3px solid #17469e;
    border-radius: 50px;
    color: #ffffff;
}

#hero .btn-get-started:hover {
    background: #247cf0;
}

#hero .btn-watch-video i {
    color: #106eea;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: #3b8af2;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

    #hero h1 {
        font-size: 21px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .fs-5
    {
        font-size: 1em !important;
    }

}


@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #ffffff;
}

.section-title {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.section-title h1 {
    font-size: 36px;
    line-height: 53px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1c1d1d;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: #106eea;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 300px;
    background-size: cover !important;
    position: relative;
}

.breadcrumbs .container {
    position: relative;
}

.breadcrumbs h2 {
    font-size: 42px;
    padding: 0;
    margin-bottom: 70px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.breadcrumbs a {
    color: #ffffff;
}


.breadcrumbs:before {
    content: "";
    background: #19243dbf;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 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-family: "roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: ">";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.featured-services .icon-box::before {
    content: "";
    position: absolute;
    background: #cbe0fb;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.featured-services .icon-box:hover::before {
    background: #106eea;
    top: 0;
    border-radius: 0;
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #106eea;
    transition: all 0.3s ease-in-out;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #111;
}

.description {
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
}

.text-icon p {
    font-size: 18px;
    line-height: 27px;
    color: #1c1d1d;
    margin-left: 20px;
    font-weight: 500;
}

.read-more-btn {
    width: 176px;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    background: #ffffff;
    line-height: 27px;
    color: #17469e;
    border: 2px solid #17469e;
}

.read-more-btn:hover {
    background: #17469e;
    color: #ffffff;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.about .content ul li:first-child {
    margin-top: 35px;
}

.about .content ul i {
    background: #fff;
    box-shadow: 0 6px 15px rgba(16, 110, 234, 0.12);
    font-size: 24px;
    padding: 20px;
    margin-right: 15px;
    color: #106eea;
    border-radius: 50px;
}

.about .content ul h5 {
    font-size: 18px;
    color: #555555;
}

.about .content ul p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .about-img, .about-details-img {
    padding-right: 30px;
    padding-top: 30px;
}

.about-details-img {
    padding-left: 45px;
    padding-top: 30px;
}

.about .about-img:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 60px;
    width: 540px;
    height: calc(100% - 40px);
    background: #ffcb05;
    transition: 1s cubic-bezier(0.06, 0.43, 0.22, 1);
    z-index: -1;
}

.about .about-details-img:before {
    content: '';
    position: absolute;
    right: 105px;
    top: 75px;
    width: calc(100% - 120px);
    height: calc(100% - 30px);
    background: #ffcb05;
    transition: 1s cubic-bezier(0.06, 0.43, 0.22, 1);
    z-index: -1;
}

.about h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1C1D1D;
}

.mt-100 {
    margin-top: 100px;
}

.mt-50 {
    margin-top: 50px;
}

.about .about-quality .text p {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    color: #1C1D1D;
    font-weight: 700;
    margin-bottom: 0;
}

.about .about-quality .text {
    flex-direction: column;
    margin-left: 20px;
}

.border-left {
    border-left: 1px solid #d1d3d4;
    padding-left: 15px;
}

.section-title h1 {
    font-size: 28px !important;
}

.section-title h1:after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    margin-left: 10px;
    background-color: var(--primary);
}

.follow .social {
    background: #d1d3d433;
    padding: 30px 25px;
}

.follow .social .image img:first-child {
    margin-right: 5px;
}

.follow .social .image {
    margin-top: 20px;
    height: 300px;
}

.services .title {
    font-size: 36px;
    color: #17469e;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.services .sub-title {
    font-size: 18px;
    color: #1C1D1D;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services h5 {
    color: #1C1D1D;
    font-size: 16px;
    font-weight: 500;
}


.procedure {
    background: var(--surface);
    padding-bottom: 20px !important;
    overflow: visible !important;
}

.procedure> .container
{
    margin-top: -130px;
    position: relative;
}

.procedure p {
    color: #111827;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 1px;
        justify-content: left !important;

}

.procedure .text {
    flex-direction: column;
        justify-content: left !important;

}

.procedure .desc {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;

}

.stats {
    background: #f0f0f0;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--surface) 100%); */
    padding: 2rem 1rem;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  text-align: left;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 200px;
  border-left: 2px solid var(--primary); /* Light green line */
  padding-left: 2rem;
  position: relative;
}

.stat-box .dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary); /* Match line color */
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -6px;
  transform: translateY(-50%);
}

.stat-box h2 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  text-align: left;
  color: #002520; /* Dark greenish-black */
  font-weight: 600;
}

.stat-box p {
  color: #002520;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.service-style1__single-img .overlay-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--surface);
    z-index: 3;
}

/*service new design */
.service-style1__single {
    position: relative;
    display: block;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 17px 30px 13px;
    padding-right: 0;
}

/*service new design */
.team-style1__single {
    position: relative;
    display: block;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 17px 30px 13px;
}

.service-style1__single .title-box {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.service-style1__single-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-style1__single .overlay-text {
    position: absolute;
    left: 0px;
    bottom: 50px;
    right: 30px;
    border-top-right-radius: 6px;
    background-color: #cbe0fb;
    padding: 17px 30px 17px;
    padding-right: 0;
    z-index: 3;
}

.service-style1__single .btn-box {
    position: relative;
    display: block;
}
.service-style1__single .btn-box a {
    position: relative;
    display: flex
;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 13px 0px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.team-style1__single .btn-box{
    display: flex;
    justify-content: center;
}
.team-style1__single .btn-box a {
    position: relative;
    color: var(--primary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin: 13px 0px 0px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-style1__single-img .overlay-icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: transparent;
}

.service-style1__single-img .img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--text-main);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.service-style1__single .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-style1__single .btn-box a span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.feature {
    background: #17469e;
    padding-bottom: 20px !important;
}

.feature p {
    color: #ffffff;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 1px;
}

.feature .text {
    flex-direction: column;
    margin-left: 20px;
}

.feature .desc {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;

}


.connect {
    padding: 80px 0;
    background: url(../img/connect_bg.webp) no-repeat center center;
    background-size: cover;
    position: relative;

}

.connect:before {
    content: "";
    background: #19243dbf;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.connect .card, .contact .card {
    border-radius: 20px;
    width: 80%;

}

.connect .card .form-group, .contact .card .form-group {
    margin: 20px;
}

.connect .card .form-group input, select, .contact .card .form-group input {
    padding: 5px 15px;
    background: #ffffff;
    border: 0;
    outline: 0;
    border-bottom: 1px solid #D1D3D4;
    font-size: 18px;

}

.connect .card .form-group input::placeholder, .contact .card .form-group input::placeholder {
    color: #4D4D4F;
    padding-left: 0 !important;
}

.connect .card-header, .contact .card-header {
    background: #17469e;
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 20px 0;

}


.connect .card-header h3, .contact .card-header h3 {
    color: #ffff;
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    text-align: center;
}

.connect h2, .contact h2 {
    color: var(--primary);
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    text-transform: uppercase;
}

.connect p, .contact p {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact hr {
    color: #4D4D4F;
}

.connect hr {
    color: #f0f0f0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e2eefd;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts .count-box i {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #106eea;
    color: #fff;
    width: 56px;
    height: 56px;
    line-height: 0;
    border-radius: 50px;
    border: 5px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #062b5b;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
}

.clients img:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}
@media (max-width: 768px) {
.video-wrapper {
    display: none;
}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #e2eefd;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .icon-box .icon {
    width: 64px;
    height: 64px;
    background: #f1f6fe;
    border-radius: 4px;
    border: 1px solid #deebfd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
    color: #3b8af2;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #222222;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
    color: #106eea;
}

.services .icon-box:hover .icon {
    border-color: #106eea;
}


.gallery {
    background: #ffffff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
    background: #d1d3d440;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.faq .faq-list .question {
    font-family: "roboto", sans-serif;
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    padding-left: 25px;
    cursor: pointer;
    color: #1C1D1D;
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    right: 0;
    top: -2px;
}

.faq .faq-list p {
    margin-bottom: 0;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    color: #4D4D4F;
    font-size: 16px;
    padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: black;
}

.faq .faq-list .collapsed:hover {
    color: #17469e;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}


.query {
    /* background: #FFCB05; */
    background-color: #17469e5c;
}

.query p {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #19243D;

}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 27px;
    font-weight: 700;
    margin: 30px 0 5px 0;
    color: #1C1D1D;
    position: relative;
}

.testimonials .testimonial-item h3 span {
    display: inline-block;
    position: relative;
}

.testimonials .testimonial-item h3 span:before,
.testimonials .testimonial-item h3 span:after {
    content: "";
    position: absolute;
    height: 1px;
    background: #FFCB05;
    top: 50%;
    width: 80px;
}

.testimonials .testimonial-item h3 span:before {
    right: 100%;
    margin-right: 15px;
}

.testimonials .testimonial-item h3 span:after {
    left: 100%;
    margin-left: 15px;
}


.testimonials .testimonial-item p {
    font-size: 16px;
    margin: 0 auto 15px auto;
    color: #4D4D4F;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #17469e33;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #17469e;
}

.testimonial-img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.ratings {
    margin-top: 0px;
    margin-bottom: 0px;
}

.ratings i {
    margin-right: 0px;
    color: #b3d1fa;
    font-size: 15px;
}

.rating-color {
    color: var(--primary) !important;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 45%;
    }
}

/*--------------------------------------------------------------
#about style 2
--------------------------------------------------------------*/
.about-style3__img {
    position: relative;
    display: block;
    max-width: 540px;
    margin-right: 30px;
}

.about-style3__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    margin-left: 100px;
}
.about-style3__img .overlay-box {
    position: absolute;
    display: flex
;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--primary);
    padding-top: 5px;
    z-index: 3;
}
.about-style3__img .overlay-box .overlay-box__shape1 {
    position: absolute;
    left: 0;
    bottom: -150px;
    right: 0;
}
.about-style3__img .overlay-box .overlay-box__shape2 {
    position: absolute;
    bottom: -70px;
    right: -155px;
}
.about-style3__img .overlay-box .fact-counter {
    position: relative;
        font-family: "Roboto", sans-serif !important;

    display: block;
}
.about-style3__img .overlay-box .fact-counter .counter-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px 6px;
    font-family: "Roboto", sans-serif !important;
}
.about-style3__img .overlay-box .fact-counter .counter-box h2 {
    position: relative;
    display: inline-flex
;
    align-items: center;
    color: #ffffff;
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 500;
        font-family: "Roboto", sans-serif;

}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.about-style3__img .overlay-box .fact-counter .counter-box h2 span.ziro {
    position: relative;
    top: -3px;
    font-family: "Roboto", sans-serif;

}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
    font-family: "Roboto", sans-serif;
    line-height: 1.1em;
}
.about-style3__img .overlay-box .fact-counter .counter-box h2 span.plus {
    position: relative;
    top: -3px;
    display: inline-block;
    line-height: 40px;
}

.about-style3__content {
    position: relative;
    display: block;
}
.about-style3__content .sec-title.withtext {
    padding-bottom: 25px;
}
.sec-title .sub-title {
    position: relative;
    display: block;
    font-family: "Roboto", serif;
}

.service-style3__content .sec-service-title.withtext {
    padding-bottom: 25px;
}
.sec-service-title .service-sub-title {
    position: relative;
    display: block;
    font-family: "Roboto", serif;
}
.sec-service-title .service-sub-title h4 {
    position: relative;
    display: inline-block;
    padding-left: 4px;
    color: var(--primary);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Roboto", serif;

}

.sec-title .sub-title h4 {
    position: relative;
    display: inline-block;
    padding-left: 4px;
    color: var(--primary);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Roboto", serif;

}

.sec-title h2 {
    color: #444444;
    font-size: 46px;
    line-height: 1.3em;
    font-weight: 500;
    text-transform: none;
}

.testimonial-quote{
    font-size: 40px;
}

/*--------------------------------------------------------------
#testimonials Style 2
--------------------------------------------------------------*/
.testimonial-style1__single {
    position: relative;
    display: block;
    border-radius: 6px;
    background-color: #cbe0fb;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 77px 50px 44px;
    margin-top: 50px;
}
.testimonial-style1__single .overlay-icon {
    position: absolute;
    top: 20px;
    right: 50px;
    line-height: 0;
    opacity: 44%;

}
.testimonial-style1__single .overlay-icon span {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 74px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary);
}
.icon-quote:before {
    content: "\e964";
}
.testimonial-style1__single-img {
    position: absolute;
    top: -50px;
    left: 50px;
     width: 100px;      /* desired width */
    height: 100px;     /* desired height */
    overflow: hidden;
}
.testimonial-style1__single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.testimonial-style1__single-content {
    position: relative;
    display: block;
}

.testimonial-style1__single-content .title-box {
    position: relative;
    display: block;
}

.testimonial-style1__single-content .customer-info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 27px;
}
.testimonial-style1__single-content .customer-info .rating-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    background-color: #D1D3D4;
    padding: 12px 15px 12px;
}
.testimonial-style1__single-content .customer-info .rating-box .rating-number {
    position: relative;
    display: block;
    margin-left: 6px;
}


/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services #services-filters {
    margin: 0 auto 36px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.services #services-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 22px;
    font-family: "roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #D1D3D4;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.services #services-filters li:hover,
.services #services-filters li.filter-active {
    color: #17469e;
}

.services #services-filters li:last-child {
    margin-right: 0;
}

.services .services-item {
    margin-bottom: 30px;
}

.services .services-item .services-info h4 {
    font-size: 18px;
    font-weight: 600;
}

.services .services-item .services-info p {
    color: #555555;
    font-size: 14px;
    margin-bottom: 0;
}

.services .services-item .services-info .details-link {
    right: 10px;
}

.services .services-item .services-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.services .services-item .services-links a:hover {
    color: #6ba7f5;
}

.card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.services .card-body {
    padding: 40px 65px;
}

.services .card-title {
    color: #19243D;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
}

.services .card-text {
    font-size: 16px;
    font-family: "roboto", sans-serif;
    color: #4D4D4F;
    text-align: center;
}

.services .service-btn {
    font-size: 56px;
    margin-top: 20px;
    color: #17469e;
}


/*--------------------------------------------------------------
# services Details
--------------------------------------------------------------*/

.bg-brown {
    background: #d1d3d440;
    padding: 60px 0;
}

.services .related-service-btn {
    font-size: 40px;
    margin-top: 20px;
    color: #17469e;
}

.services-details .services-details-slider img {
    width: 100%;
}

.services-details .services-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.services-details .services-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #106eea;
}

.services-details .services-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #106eea;
}

.services-details .services-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.services-details .services-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.services-details .services-info ul li + li {
    margin-top: 10px;
}

.services-details .services-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-details .services-description p {
    padding: 0;
}


/* =========================================
        Gallery
===========================================
*/

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.gallery #gallery-filters {
    margin: 0 auto 36px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.gallery #gallery-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 22px;
    font-family: "roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #D1D3D4;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.gallery #gallery-filters li:hover,
.gallery #gallery-filters li.filter-active {
    color: #17469e;
}

.gallery #gallery-filters li:last-child {
    margin-right: 0;
}

.gallery .gallery-item {
    margin-bottom: 30px;
}

.gallery .gallery-item .gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
}

.gallery .gallery-item .gallery-info p {
    color: #555555;
    font-size: 14px;
    margin-bottom: 0;
}

.gallery .gallery-item .gallery-info .details-link {
    right: 10px;
}

.gallery .gallery-item .gallery-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.gallery .gallery-item .gallery-links a:hover {
    color: #6ba7f5;
}


.history {
    padding: 55px 0 40px 0;
    background: url(../img/history_bg.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

.history:before {
    content: "";
    background: #19243dbf;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.history p {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    margin-top: 13px;
    margin-bottom: 0;
}

.history span {
    color: #ffffff;
    font-family: "roboto", sans-serif;
    font-size: 16px;
}


.suppliers {
  background: #f0f0f0;
  color: #17469e !important;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--surface) 100%); */
}

.suppliers .card img {
    max-height: 85px;
    object-fit: contain;
}

.suppliers .card {
    padding: 20px;
    width: 100%;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    background: rgba(16, 110, 234, 0.8);
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    background: #3b8af2;
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #222222;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing .box h3 {
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing .box h4 {
    font-size: 36px;
    color: #106eea;
    font-weight: 600;
    font-family: "roboto", 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: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: #106eea;
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .featured h3 {
    color: #fff;
    background: #106eea;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: #106eea;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.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 .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #106eea;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #106eea;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #3b8af2;
}

@-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 {
    padding: 0 0 10px 0;
    color: #444444;
    font-size: 14px;
    background: #f1f6fe;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 14px;
    padding: 0 20px;
    background: #106eea;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}


#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #17469e;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
    padding-right: 25px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #106eea;
}

#footer .footer-top .footer-contact p {
    margin-top: 20px;
    font-size: 14px;
    margin-bottom: 0;
    font-family: "roboto", sans-serif;
    color: #ffffff;
}

#footer .footer-top .footer-contact p {
    margin-top: 20px;
    font-size: 14px;
    margin-bottom: 0;
    font-family: "roboto", sans-serif;
    color: #ffffff;
}

#footer .footer-top .footer-contact img {
    width: 250px;
}

.footer-contact-details {
    margin-top: 20px;
}

.footer-contact-details span {
    color: #0e2b60;
    font-size: 21px;
    font-family: "roboto", sans-serif;
    font-weight: 700;
}

.footer-contact-details p {

    font-size: 18px;
    margin-top: 0 !important;
    font-weight: 500;
}

.footer hr {
    margin: 5px 0;
}

.slider-style3-highlights-single {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid var(--secondary-blue);
    padding: 95px 40px 32px;
}
.slider-style3-highlights-single .icon-box {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 6px;
    background-color: #edf4f2;
}
.slider-style3-highlights-single .title-box {
    position: relative;
    display: block;
    padding-bottom: 8px;
}
.slider-style3-highlights-single .count-box {
    position: absolute;
    top: 19px;
    right: 35px;
    color: #1746b7;
    -webkit-text-stroke: 1px var(--secondary-blue);
    font-size: 60px;
    line-height: 1.1em;
    font-family: "Roboto", serif;
    font-weight: 500;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #FFCB05;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 20px;
    padding-right: 10px;
}

#footer .footer-top .footer-links h4 {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-top: 20px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


#footer .footer-top .footer-links ul li {
    padding: 2px 0;
    display: flex;
    align-items: center;

}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    transition: 0.3s;
    text-transform: uppercase;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-family: "roboto", sans-serif;
}

#footer .footer-top .footer-links ul a:hover {
    color: #fff4cc;
}



#footer .footer-links input:focus {
    outline: none;
}

#footer .footer-links input[type=submit] {
    border: 0;
    font-size: 18px;
    padding: 15px 50px;
    background: #ffffff;
    color: #17469e;
    font-family: "Roboto", sans-serif;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-links input:focus {
    border: none;
}

#footer .copyright {
    text-align: center;
    padding: 10px 0 0 0;
    font-family: "roboto", sans-serif;
    font-size: 16px;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #444444;
}

.email-link b a {
    color: #fff;
}

.email-link span a {
    color: #fff;
}

.img {
    width: 100%;
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.error-message {
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}

.contact-message {
    color: #ffcb05 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

#more {
    display: none;
}

#less {
    display: block;
}

video {
    margin-top: -16px !important;
}

.video-wrapper {
    width: 100%;
}

video {
    width: 100% !important;
}

#myBtn {
    cursor: pointer;
}

.sticky {
    position: fixed;
    left:0;
    right: 0;
    z-index: 1;
  }

  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + #header {
    padding-top: 60px;
  }

@media (max-width: 991px)
{
    .sticky + #header {
        padding-top: 140px !important;
      }
}

@media (max-width: 545px) {
    .apply-btn {
        display: none !important;
    }
}
@media (max-width: 545px) {
.about-style3__img .overlay-box{
    width: 180px;
    height: 180px;
    top: 85%;
}
.about-style3__img .inner {
    margin-left: 30px;
}
}

