@charset "UTF-8";
/*!
Website Name: kpat
Website URI:	https://kpat.com/
develop by:	Adosphereindia
Author:		Krut
*/


/* jost font */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');


:root {
    --font-jost: 'Jost', sans-serif;
    --font18: 18px;
    --font20: 20px;
    --font24: 24px;
    --font28: 28px;
    --font30: 30px;
    --font36: 36px;
    --font40: 40px;
    --font58: 58px;
    --dark: #16243e;
    --blue-light: #EBFCFF;
    --gray: #808080;
    --gd-bg: linear-gradient(90.46deg, #004F70 0.35%, #00A9CA 92.17%);
    --gd-revbg: linear-gradient(90.46deg, #00A9CA 0.35%, #004F70 92.17%);

    --py100: 100px 0;
    --py60: 60px 0;
    --py64: 64px 0;
    --py40: 40px 0;
    --py30: 30px 0;
    --mb16: 16px;
    --mb8: 8px;

}

*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.4s linear;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-jost);
}


/*************** navbar css start **************/
/*************** navbar css start **************/

.kpat-navbar {
    padding: 14px 0;
    background-color: #fff;
}

.kpat-nav .navbar-nav .nav-item {
    font-family: var(--font-jost);
    font-size: var(--font18);
}

.kpat-nav .navbar-nav .nav-item .nav-link {
    padding: 0 24px;
    color: var(--dark);
    font-weight: 500;
}



/* navbar toggle */

.navbar-light .navbar-toggler {
    border-color: #444;
    outline: 0;
    border: none;
}

.navbar-light .navbar-toggler:focus {
    background: none;
    outline: 0;
    box-shadow: none;
}

.navbar-light .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: var(--dark);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-light .navbar-toggler:hover span,
.navbar-light .navbar-toggler:focus span {
    background: var(--dark);
}

/* rotate first span */
.navbar-light .navbar-toggler[aria-expanded='true'] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-light .navbar-toggler[aria-expanded='true'] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-light .navbar-toggler[aria-expanded='true'] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-light .navbar-toggler[aria-expanded='false'] span {
    transform: none;
    opacity: 1;
}

.btn-kpat {
    background: var(--gd-bg);
    color: #fff;
    border-radius: 1000vmax;
    padding: 8px 20px;
    font-size: var(--font18);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.btn-kpat:hover {
    color: #fff;
    background: var(--gd-revbg);
    transition: all 0.3s ease-in-out;
}

/*************** navbar css end **************/
/*************** navbar css end **************/

/*************** header css start **************/
/*************** header css start **************/

.header-section {
    background-color: var(--blue-light);
    padding: var(--py100);
}

.header-section .header-detail {
    padding-right: 30px;
}

.header-section .header-detail h6 {
    font-size: var(--font20);
    font-weight: 600;
    background: var(--gd-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-section .header-detail h1 {
    font-size: var(--font58);
    color: var(--dark);
    font-weight: 700;
    padding: 16px 0;
    line-height: 1.2;
}

.header-section .header-detail p {
    font-size: var(--font18);
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 40px;
}

.header-section .header-img {
    position: relative;
    z-index: 1;
}

.header-section .header-img .star-icon {
    position: absolute;
    right: 34%;
    top: 10%;
    z-index: 0;
    -webkit-animation: star-icon 3s ease-in-out infinite alternate both;
    animation: star-icon 3s ease-in-out infinite alternate both;
}

.header-section .header-img .pattern-dot {
    position: absolute;
    left: 22%;
    bottom: 12%;
    z-index: -1;
    -webkit-animation: pattern-dot 4s ease-in-out infinite alternate both;
    animation: pattern-dot 4s ease-in-out infinite alternate both;
}

.header-section .header-img .five-year {
    position: absolute;
    background-color: var(--dark);
    color: #fff;
    max-width: 175px;
    height: 175px;
    border-radius: 50%;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;

}

.header-section .header-img .five-year p {
    margin-bottom: 8px;
}

.header-section .header-img .five-year::before {
    content: '';
    width: 155px;
    height: 155px;
    border-radius: 50%;
    position: absolute;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='3' stroke-dasharray='7' stroke-dashoffset='34' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 100px;
    /* border: 2px dotted #fff; */
    -webkit-animation: five-year 10s linear infinite forwards;
    animation: five-year 10s linear infinite forwards;
}

/* animation */

/* dotted border animation */
@-webkit-keyframes five-year {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes five-year {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* star animation */

@-webkit-keyframes star-icon {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@keyframes star-icon {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

/* pattern-dot animation */
@-webkit-keyframes pattern-dot {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@keyframes pattern-dot {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

/*************** header css end **************/
/*************** header css end **************/

/*************** About css start **************/
/*************** About css start **************/
.about-section {
    padding: var(--py100);
    background-color: #fff;
}

.about-section .about-detail h6 {
    font-size: var(--font20);
    font-weight: 600;
    background: var(--gd-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .about-detail h1 {
    font-size: var(--font40);
    color: var(--dark);
    font-weight: 700;
    padding: 16px 0;
    line-height: 1.2;
    text-transform: capitalize;
}

.about-section .about-detail p {
    font-size: var(--font18);
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 40px;
}

.about-section .about-img {
    position: relative;
    z-index: 1;
}

.about-section .about-img .about-dot {
    position: absolute;
    left: 35%;
    bottom: 5%;
    z-index: -1;
    -webkit-animation: about-dot 4s ease-in-out infinite alternate both;
    animation: about-dot 4s ease-in-out infinite alternate both;
}

.about-section .about-img .wave-line {
    position: absolute;
    right: 26%;
    top: 20%;
    z-index: -1;
    -webkit-animation: wave-line 4s ease-in-out infinite alternate both;
    animation: wave-line 4s ease-in-out infinite alternate both;
}

.about-section .about-img .about-year {
    position: absolute;
    background: var(--gd-bg);
    color: #fff;
    right: 20%;
    top: 8%;
    z-index: 1;
    border-radius: 8px;
    padding: 8px;
}

.about-section .about-img .about-year p {
    margin-bottom: 2px;
    line-height: 1.2;
}

.about-section .about-img .about-year h5 {
    margin-bottom: 0;
    font-weight: 700;
}


/* animation */
/* about dot*/

@keyframes about-dot {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

/* wave-line */
@keyframes wave-line {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}


/*************** About css end **************/
/*************** About css end **************/


/*************** vision mission css start **************/
/*************** vision mission css start **************/
.vision-mission {
    background-color: #F6F5FA;
    padding: var(--py100);
}

.vision-mission .vision-detail, .vision-mission .mission-detail {
    display: flex;
    flex-direction: row;
}

.vision-mission .vision-detail .vision-info {
    margin-bottom: 40px;
}

.vision-mission .vision-detail .vision-info h4, .vision-mission .mission-detail .mission-info h4 {
    color: var(--dark);
    font-size: var(--font24);
    font-weight: 700;
}

.vision-mission .vision-detail .vision-info p, .vision-mission .mission-detail .mission-info p {
    color: var(--gray);
    font-size: var(--font16);
    font-weight: 500;
}

.vision-mission .vision-detail .vision-icon, .vision-mission .mission-detail .mission-icon {
    max-width: 70px;
    width: 100%;
    height: 70px;
    background-color: #fff;
    border-radius: 5px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-mission .vision-detail .vision-icon img, .vision-mission .mission-detail .mission-icon img {
    width: 40px;
    height: auto;
}

/*************** vision mission css end **************/
/*************** vision mission css end **************/

/*************** service section css start **************/
/*************** service section css start **************/
.service-section {
    padding: var(--py100);

}

.service-section .service-heading h1 {
    color: var(--dark);
    font-size: var(--font28);
    text-align: center;
    font-weight: 700;
    margin-bottom: 70px;
}

.service-card {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    padding: 16px;
    height: 100%;
    z-index: 10;

}

.service-card .service-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    clip-path: circle(54.3% at 100% 100%);
    background-color: #F0F8FF;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: all 0.4s linear;

}

.service-card:hover .service-circle {
    width: 100%;
    height: 100%;
    clip-path: fill-box;
    clip-path: circle(140% at 100% 100%);
    transition: all 0.4s linear;

}

.service-card .service-icon {
    position: relative;
    display: inline-block;
    top: -42px;
}

.service-vector {
    position: absolute;
    top: 20%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card .service-detail h2 {
    font-size: var(--font20);
    font-weight: 700;
    color: var(--dark);
}

.service-card .service-detail {
    height: 74%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
}

.service-card .service-detail a {
    margin-top: auto;
}

.service-card .service-detail p {
    font-size: var(--font18);
    font-weight: 500;
    color: var(--gray);
}

.service-section .industry-heading h1 {
    color: var(--dark);
    font-size: var(--font28);
    text-align: center;
    font-weight: 700;
    margin: 70px 0;
}

/*************** service section css end **************/
/*************** service section css end **************/


/*************** business-section css start **************/
/*************** business-section css start **************/
.business-section {
    padding: var(--py100);
    background-color: #F6F5FA;
}

.business-section .col-xl-4:hover {
    background-color: #fff;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.business-section .business-heading {
    text-align: center;
}

.business-section .business-heading h1 {
    font-size: var(--font28);
    font-weight: 700;
    color: var(--dark);
}

.business-section .business-heading p {
    font-size: var(--font18);
    font-weight: 500;
    color: var(--gray);
}

.business-section .business-card {
    padding: 20px 0;
}

.business-section .business-card .business-icon {
    width: 64px;
    height: 64px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
}

.business-section .business-card h1 {
    font-size: var(--font20);
    font-weight: 700;
    color: var(--dark);
    margin: 16px 0 12px 0;

}

.business-section .business-card p {
    font-size: var(--font16);
    font-weight: 500;
    color: var(--gray);
}

/*************** business-section css end **************/
/*************** business-section css end **************/


/*************** contact-section css start **************/
/*************** contact-section css start **************/
.contact-section {
    padding: var(--py100);
}

.contact-section .contact-img {
    position: relative;
}

.contact-section .contact-img .track-record {
    position: absolute;
    padding: 16px 30px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    top: 16%;
    border-radius: 5px;
    -webkit-animation: track-record 4s ease-in-out infinite alternate both;
    animation: track-record 4s ease-in-out infinite alternate both;
}

.contact-section .contact-img .track-record .track-icon {
    width: 40px;
    height: 40px;
    background-color: #F6F5FA;
    border-radius: 50%;
    margin: 0 auto;


}

.contact-section .contact-img .track-record h4 {
    font-size: var(--font20);
    font-weight: 600;
    color: var(--dark);
    margin-top: 5px;
}

.contact-section .contact-img .plus-minus {
    position: absolute;
    left: -3px;
    bottom: 16%;
    -webkit-animation: plus-minus 10s linear infinite forwards;
    animation: plus-minus 10s linear infinite forwards;
}

.contact-section .contact-img .coin-icon {
    position: absolute;
    left: 32%;
    top: 1%;
    -webkit-animation: plus-minus 10s linear infinite forwards;
    animation: plus-minus 10s linear infinite forwards;
}

.contact-section .contact-img .growth-strat {
    position: absolute;
    background: var(--gd-bg);
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    bottom: -6%;
    left: 14%;
    -webkit-animation: growth-strat 4s ease-in-out infinite alternate both;
    animation: growth-strat 4s ease-in-out infinite alternate both;
}

.contact-section .contact-img .growth-strat h4 {
    color: #fff;
    margin-top: 20px;
    font-size: var(--font20);
}



@-webkit-keyframes plus-minus {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes plus-minus {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@keyframes growth-strat {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes track-record {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@keyframes growth-strat {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}


.contact-form h2 {
    font-weight: 700;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-form .form-label {
    font-weight: 500;
    font-size: var(--font16);
    color: var(--gray);
}

.contact-form .form-control {
    background-color: #EEF2F2;
    border-radius: 4px;
    border: none;
}

.contact-form .btn-form {
    background: var(--gd-bg);
    display: block;
    color: #fff;
    font-size: var(--font18);
    font-weight: 700;
    width: 100%;
    border-radius: 1000vmax;
    padding: 12px 0;
}

.contact-form .btn-form:hover {
    background: var(--gd-revbg);
}

/*************** contact-section css end **************/
/*************** contact-section css end **************/



/*************** review css start **************/
/*************** review css start **************/
.review-section {
    padding: var(--py64);
}

.review-section .review-heading {
    text-align: center;
    margin-bottom: 50px;
}

.review-section .review-heading h5 {
    font-size: var(--font20);
    font-weight: 600;
    background: var(--gd-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-section .review-heading h1 {
    color: var(--dark);
    font-size: var(--font40);
    font-weight: 700;
}

.review-section .review-card {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-section .review-card .review-icon {
    background-color: var(--dark);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    margin-top: -14%;
}

.review-section .review-card p {
    font-weight: 500;
    font-weight: var(--font16);
    color: var(--gray);
}

.review-section .review-card b {
    font-weight: 600;
    font-size: var(--font18);
    color: var(--dark);
    margin-top: auto;
}

/*************** review css end **************/
/*************** review css end **************/

/*************** footer css start **************/
/*************** footer css start **************/
footer {
    background-color: var(--dark);
    padding: var(--py100);
    border-radius: 150px 0 0 0;
    position: relative;
}

footer::before {
    content: '';
    background-image: url(../img/footer-pattern.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 34px;
    left: 60px;
    z-index: 100;
    width: 250px;
    height: 250px;
}

footer::after {
    content: '';
    background-image: url(../img/wave-line.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 10%;
    z-index: 100;
    width: 50px;
    height: 75px;
    opacity: 0.1;
}

.footer-about p {
    color: #fff;
    font-weight: 500;
    font-size: var(--font16);
    margin: 15px 0;
}

.footer-about .social-icon {
    padding-left: 0;
}

.footer-about .social-icon li {
    display: inline-block;
    margin-right: 20px;
}

.footer-about .social-icon li:first-child {
    margin: 0;
    margin-right: 20px;
}

.footer-about .social-icon li a {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #2A436D;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick-link h4 {
    color: #fff;
    font-weight: 600;
    font-size: var(--font20);
    margin-bottom: 16px;

}

.quick-link ul {
    padding-left: 0;
}

.quick-link li {
    list-style: none;
    margin-bottom: 16px;
}

.quick-link li a {
    text-decoration: none;
    color: #fff;
    font-size: var(--font16);
    font-weight: 500;
}

.servies-link h4 {
    color: #fff;
    font-weight: 600;
    font-size: var(--font20);
    margin-bottom: 16px;
}

.servies-link ul {
    padding-left: 15px;

}

.servies-link ul li {
    color: #fff;
    font-size: var(--font16);
    margin-bottom: 16px;

}

.servies-link ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;

}

.contact-info h4 {
    color: #fff;
    font-weight: 600;
    font-size: var(--font20);
    margin-bottom: 16px;
}

.contact-info .contact-address p {
    color: #fff;
    font-weight: 500;
    font-size: var(--font16);
    margin-bottom: 16px;
    display: flex;
}

.contact-info .contact-address p svg {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.contact-info .contact-mobile a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
    display: inline-block;
}

.contact-info .contact-mobile a svg {
    margin: 0 10px;
}


.contact-info .contact-email a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.contact-info .contact-email a svg {
    margin: 0 10px;
}


.copy-right {
    background-color: #101B31;
    padding: 15px 0;
}

.copy-right p {
    font-size: var(--font16);
    color: #fff;
    margin-bottom: 0;
}

.copy-right p a {
    text-decoration: none;
    color: #fff;
}

.copy-right p a:hover {
    color: #00A9CA;
}

/*************** footer css end **************/
/*************** footer css end **************/

/*************** about page css start **************/
/*************** about page css start **************/

.page-heading {
    position: relative;
    padding: 182px 0;
    z-index: 10;
}

.about-bg {
    background-image: url(../img/about-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-heading::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.page-heading h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;

}

.page-heading .bradcome {
    text-align: center;
    color: #fff;
    font-size: var(--font16);

}

.page-heading .bradcome b {
    color: #09D4FC;
    font-weight: 500;
}

.page-heading a {
    text-align: center;
    text-decoration: none;
    color: #fff;

}


/*************** about page css end **************/
/*************** about page css end **************/

.aboutpage-section {
    padding: var(--py100);
}

.aboutpage-section .about-contact {
    background: var(--gd-bg);
    padding: 20px 40px;
    border-radius: 8px;
    text-align: center;
}

.about-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}


.about-icon::before, .about-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    border-radius: 50%;
    animation: pulsing 2.5s linear infinite;
}

.about-icon:after {
    animation: pulsing1 2.5s linear infinite;
}


@keyframes pulsing {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.2;
        transform: scale(1.4);
    }

    80% {
        opacity: 0;
        transform: scale(1.4);
    }

    90% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes pulsing1 {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.2;
        transform: scale(1.15);
    }

    80% {
        opacity: 0;
        transform: scale(1.15);
    }

    90% {
        opacity: 0;
        transform: scale(1);
    }
}

.aboutpage-section .about-contact p {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    margin: 10px 0;
}

.aboutpage-section .about-info h2 {
    font-size: var(--font28);
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.aboutpage-section .about-info p {
    font-size: var(--font18);
    color: var(--gray);
    font-weight: 500;
}

.aboutpage-section .about-contact a {
    color: #fff;
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font18);
    margin-bottom: 10px;
}

.aboutpage-section .about-contact .social-icon {
    padding-left: 0;
    margin-bottom: 0;
}

.aboutpage-section .about-contact .social-icon li {
    display: inline-block;
    list-style: none;
}

.aboutpage-section .about-contact .social-icon li a {
    width: 32px;
    height: 32px;
    background-color: #00B6D5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 6px;
    margin: 12px;
}


/*************** service page css start **************/
/*************** service page css start **************/

.service-section .card-link {
    text-decoration: none;
}

.service-bg {
    background-image: url(../img/service-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*************** service page css end **************/
/*************** service page css end **************/



/***************services sub pages css start ***************/
/***************services sub pages start ***************/


.bookkeeping-bg {
    background-image: url(../img/bookkeeping-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bookkeeping-section {
    padding-top: 100px;

}

.bookkeeping-section .bookkeeping-detail {
    margin-bottom: 64px;
}

.bookkeeping-section .bookkeeping-detail h2 {
    font-size: 22px;
    color: var(--dark);
    font-weight: 600;
}

.bookkeeping-section .bookkeeping-detail p {
    font-size: var(--font18);
    color: var(--gray);
    font-weight: 500;
}


.bookkeeping-section .bookkeeping-card {
    display: flex;
    margin-bottom: 20px;
}

.bookkeeping-section .bookkeeping-card .icon {
    margin-right: 10px;
}

.bookkeeping-section .bookkeeping-card .bookkeeping-info h2 {
    font-size: var(--font18);
    font-weight: 600;
    color: var(--dark);

}

.bookkeeping-section .bookkeeping-card .bookkeeping-info p {
    font-size: var(--font16);
    color: var(--gray);
    font-weight: 500;
}


.backoffice-bg {
    background-image: url(../img/backoffice-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.gas-bg {
    background-image: url(../img/gas-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-bg {
    background-image: url(../img/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*************** services sub pages css end ***************/
/*************** services sub pages css end ***************/



/*************** contact pages css start ***************/
/*************** contact pages css start ***************/
.contact-detail .contact-style {
    background-color: #EEF2F2;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}

.contact-detail .contact-style .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 64px;
    width: 100%;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 22px;
    box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.16), 0px 0px 0px 1px rgba(0, 0, 0, 0.06);
}

.contact-detail .contact-style .contact-detail p {
    margin-bottom: 4px;
    color: var(--gray);
    font-size: var(--font16);
}

.contact-detail .contact-style .contact-detail a {
    display: inline-block;
    color: var(--dark);
    font-size: var(--font18);
    text-decoration: none;
    font-weight: 600;
}

.map-section {
    padding-top: 100px;
    width: 100%;
    height: 400px;
}

.map-section h1 {
    font-size: var(--font28);
    color: var(--dark);
    text-align: center;
    font-weight: 700;
    margin-bottom: 32px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}




/*************** contact pages css end ***************/
/*************** contact pages css end ***************/


#toTop {
    padding: 5px 3px;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: none;
    z-index: 1000;
    cursor: pointer;
    text-align: right;
}

#toTop .arrow-top {
    width: 50px;
    border: 1px solid #004F70;
    height: 50px;
    padding: 8px;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    transform: rotate(-90deg);
    border-radius: 50%;
}