@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Regular.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Medium.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-MediumItalic.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Bold.ttf) format('truetype')
}


:root {
    --primary-color: #03466E;
    --secondary-color: #F68712;
    --body-text-color: #666666;
    --bg-blue: linear-gradient(to right, #017dbe, #0066ae, #00509c, #003989, #022274);
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

button:focus,
.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.bg-tertiary {
    background: #fafafa;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
}

.btn {
    border-radius: 8px;
    padding: .5rem 1rem;
}

ul, address {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
}

.form-control {
    font-size: 14px;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    border: 1px solid #ced4da;
}

h2, h3, h6 {
    color: #000;
}

.topbar {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1020;
    height: 35px;
    transition: background-color 0.3s ease;
    padding: .5rem 0;
}

.topbar a {
    color: #fff;
}

.topbar a span i {
    margin-right: .5rem;
}

.navbar {
    position: sticky;
    top: 35px;
    z-index: 1020;
    transition: background-color 0.3s ease;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.navbar.scrolled {
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: var(--secondary-color);
}

a.navbar-brand {
    padding: 0;
}

.btn-primary,
.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    border-color: var(--primary-color);
}

.btn-primary,
.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary,
.btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: .9;
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1030;
    border-radius: 50%;
}

.btn-scroll-top,
.btn-scroll-top:hover {
    padding: .25rem .6rem;
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-scroll-top:hover {
    opacity: .8;
}

section {
    padding: 2rem 0;
}

.title-section {
    text-align: center;
    padding-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.banner-section {
    background: var(--bg-blue);
    color: #fff;
    padding: .5rem 0;
}

.banner-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 1rem;
}

.banner-section p {
    font-size: 1rem;
    font-style: italic;
    line-height: 22px;
    font-weight: 500;
}

.banner-section img {
    position: relative;
    animation: moveBannerImg 5s linear 0s infinite alternate;
}

@keyframes moveBannerImg {
    0% {
        top: 0px;
    }

    25% {
        top: 10px;
    }

    50% {
        top: 20px;
    }

    75% {
        top: 30px;
    }

    100% {
        top: 40px;
    }
}

.about-us img {
    -webkit-transition: .7s;
    transition: .7s;
}

.about-us img:hover {
    -webkit-transform: translatex(-25px);
    transform: translatex(-25px);
}

.card-services {
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    color: var(--body-text-color);
    min-height: 240px;
    margin-bottom: .5rem;
}

.card-services .service-details img {
    padding-bottom: 1rem;
}

h5.service-title {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.choose-us img {
    position: relative;
    animation: moveChooseImg 5s linear 0s infinite alternate;
}

@keyframes moveChooseImg {
    0% {
        top: 0px;
    }

    25% {
        top: 20px;
    }

    50% {
        top: 40px;
    }

    75% {
        top: 60px;
    }

    100% {
        top: 80px;
    }
}

.choose-us .accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.choose-us .accordion .accordion-item .accordion-button {
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-choose-us {
    color: var(--body-text-color);
}

.choose-us .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.title-choose-us {
    color: var(--primary-color);
}

.card-choose-us p {
    margin-bottom: .25rem;
}

.card-choose-us:hover .title-choose-us,
.card-choose-us:hover .choose-us-data .number {
    color: var(--secondary-color);
}

.card-choose-us:hover .choose-us-data .number {
    border: 1px solid var(--secondary-color);
}

footer {
    background: #fff;
    color: var(--primary-color);
    min-height: 250px;
    padding-top: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
}

footer .footer-logo img {
    max-width: 160px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding-bottom: .25rem;
}

.quick-links .footer-links li:before {
    content: "\f0da";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    padding-right: 10px;
    color: var(--primary-color);
    font-size: 14px;
}

.footer-links li a {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-links li span {
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

.footer-links li i {
    width: 20px;
    margin-right: 1rem;
    font-size: 1rem;
}

.footer-links li i.w-20 {
    margin-right: 2.5rem;
}

footer .copyright-section {
    padding: 1rem 0;
    background-color: var(--primary-color);
    margin-top: 1rem;
    color: #fff;
}

footer .copyright-section .social-media-icons ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
}

footer .copyright-section .social-media-icons ul li {
    margin: 0 .25rem;
}

footer .copyright-section .social-media-icons ul li.bg-social-icon {
    width: 35px;
    height: 35px;
    background-color: #0c6ea9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .copyright-section .social-media-icons ul li a {
    color: #fff;
}

footer .copyright-section .social-media-icons ul li:hover {
    background-color: var(--secondary-color);
}

section.page-title {
    padding: 0;
}

.page-title {
    background-color: var(--primary-color);
    min-height: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title h2 {
    margin-bottom: 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card-contact-us {
    padding: 1rem .75rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    color: var(--body-text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 190px;
}

.address-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: .5rem;
}

.address-detrails .contact-details ul {
    list-style: none;
}

.address-detrails .contact-details ul li a {
    color: var(--body-text-color);
}

.card-contact-form {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    color: var(--body-text-color);
    margin-top: 1rem;
}

.card-contact-form img {
    border-radius: 8px 0 0 8px;
}

.card-contact-form .contact-form {
    padding: 2.25rem 1rem;
}

.products-accordion .accordion .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e0d9d9;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.products-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.products-accordion .accordion .accordion-item .accordion-button {
    border-radius: 8px;
}

.products-accordion .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.products-accordion .accordion .accordion-item .accordion-body ul li::before {
    content: "\f0da";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    padding-right: 10px;
    color: var(--body-text-color);
    font-size: 14px;
}

.terms-conditions .terms-block {
    margin-bottom: .5rem;
}

.products-accordion .accordion .accordion-item .accordion-body ul {
    list-style: none;
}

.products-accordion .accordion .accordion-item .accordion-body,
.products-accordion .accordion .accordion-item .accordion-body ul li {
    color: var(--body-text-color);
    padding: .25rem 0 .25rem 1rem;
}

.testimonies {
    background: var(--bg-blue);
}

.testimonies h2.title-section {
    color: #fff;
}

.card-testimony {
    padding: 1rem;
    padding-top: 4rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    color: var(--body-text-color);
    margin: 2rem 0;
    margin-top: 4rem;
    position: relative;
    background-image: url(../images/shape-4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.card-testimony .profile-pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border: 3px solid #fff;
}

.card-testimony .client-details {
    margin-bottom: 0;
}

.card-testimony .client-details h6,
.card-testimony .client-details span {
    color: var(--primary-color);
    margin-bottom: 0;
}

.card-testimony .client-details p {
    margin-top: .5rem;
    margin-bottom: 0;
}

.testimonies .carousel-indicators {
    bottom: -15px;
}

/* Flaoting icon Style */

.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 100;
}

a.float:hover i {
    opacity: .8;
    color: #fff;
}

/* Media Query */

@media(max-width:991px) {
    .banner-section h1 {
        font-size: 2.25rem;
        line-height: 40px;
    }

}

@media(max-width:767px) {
    .topbar a span i {
        margin-right: .25rem;
    }

    .banner-section {
        padding: 2rem 0;
    }

    .card-services {
        min-height: auto;
    }

    footer .copyright-section .social-media-icons ul {
        justify-content: center;
        padding-top: .5rem;
    }

    .card-testimony {
        padding-top: 0;
        margin-top: 3rem;
    }

    .card-testimony .client-details {
        padding-top: 5rem;
    }
}

@media(max-width:359px) {
    .topbar a span {
        font-size: 12px;
    }
}