*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --my-font: "Open Sans", sans-serif;



    --clr-black: #000;
    --clr-white: #fff;
    --clr-white-light: #e2e8fa;
    --clr-main: #055973;
    --clr-main-light: #16A5C3;
    --clr-main-light-2: #16a5c39c;
    --clr-orange: #ffa000;
    --para-clr: #6c6a72;
}

body {
    font-family: var(--my-font);
}

a,
a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none    ;
}

/*$$ Start Common Section $$*/

/* Start Cursor */
.ap-cursor {
	position: fixed;
	width: 40px;
	height: 40px;
	left: -20px;
	top: -20px;
	border-radius: 50%;
	border: 2px solid var(--clr-main);
	transition: transform 0.2s ease;
	transform-origin: center center;
	pointer-events: none;
	z-index: 999999999999;
}
.ap-cursor-point {
	position: fixed;
	width: 10px;
	height: 10px;
	left: -10px;
	top: -10px;
	border-radius: 50%;	
	background: var(--clr-main-light);
	pointer-events: none;
	z-index: 999999999999;
	opacity: 0.4;
}
.ap-cursor.ap-grow {
	width: 50px;
	height: 50px;	
	left: -25px;
	top: -25px;
	background: var(--clr-main-light);
    opacity: 0.4;
	border: none;
}
.ap-cursor.ap-grow-small {
	width: 80px;
	height: 80px;	
	left: -40px;
	top: -40px;
	background: #fff;
	mix-blend-mode: difference;
	border: none;	
}
.ap-cursor.ap-cursor-white {
    width: 25px;
    height: 25px;
    left: -12.5px;
    top: -12.5px;
    border-color: var(--clr-white);
    background: var(--clr-main-light-2);
    opacity: 0.3;
}

/* End Start Cursor */

.ap-d-flex {
    display: flex;
}
.ap-justify-cont-centr {
    justify-content: center;
}
.ap-justify-cont-end {
    justify-content: flex-end;
}
.ap-align-item-centr {
    align-items: center;
}


/* Start Heading */

h1 {
    font-family: var(--my-font);
    font-size: 60px;
    font-weight: 800;
    color: var(--clr-black);
}

h2 {
    font-family: var(--my-font);
    font-size: 45px;
    font-weight: 800;
    padding-bottom: 14px;
    color: var(--clr-black);
}

h3 {
    font-family: var(--my-font);
    font-size: 30px;
    font-weight: 600;
    color: var(--clr-black);
}

h4 {
    font-family: var(--my-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--clr-black);
}

h5 {
    font-family: var(--my-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-black);
}

h1.ap-heading-white, 
h2.ap-heading-white, 
h3.ap-heading-white, 
h4.ap-heading-white,
.ap-para.ap-para-white {
    color: var(--clr-white);
}

.ap-para {
    font-family: var(--my-font);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--para-clr);
}


.ap-heading-tag {
    font-family: var(--my-font);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    display: block;
    z-index: 1;
    margin-left: 10px;
    padding-bottom: 10px;
}
.ap-heading-tag-white{
    color: var(--clr-white);
}
.ap-heading-tag::before {
    content: "";
    position: absolute;
    left: -11px;
    top: -1px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--clr-main-light-2);
    z-index: -1;
}
.ap-heading-tag.ap-heading-tag-white::before {
    background: var(--clr-orange);
}
.ap-heading-tag-center {
    text-align: center;
    margin: auto;
    width: max-content;
}
.ap-heading-center {
    max-width: 55%;
    text-align: center;
    margin: auto;    
    padding-bottom: 25px;  
}
.bold-heighlighter {
    font-weight: 800;
}


.ap-para-center {
    max-width: 55%;
    text-align: center;
    margin: auto;  
}
/* End Heading */

/* Start Section Padding */

.ap-section {
    padding: 50px 0px;
}

/* End Section Padding */

/* Start Buttons Variation */

/* Btn White */
.ap-button-circle {
    position: relative;
    padding: 14px 32px;
    background: var(--clr-white);
    border-radius: 50px;
    display: inline-block;
    overflow: hidden;
}
.ap-button-circle::before {
    content: "";
    position: absolute;
    left: -19px;
    bottom: -5px;
    width: 48px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-main-light);
    z-index: 0;
    transition: all 0.5s ease;
}
.ap-button-circle-txt {
    font-family: var(--my-font);
    font-size: 16px;
    /* z-index: 2; */
    position: relative;
    font-weight: 600;
    color: var(--clr-black);
    transition: all 0.5s ease;
}
.ap-button-circle:hover .ap-button-circle-txt {
    color: var(--clr-white);
}
.ap-button-circle:hover::before {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0px;
    border-radius: 50px;
}

/* Btn Orange */
.ap-button-circle.ap-btn-clr-orange {
    background: var(--clr-main-light);
}
.ap-button-circle.ap-btn-clr-orange::before {
    background: var(--clr-orange);
}


/* Btn bg White */
.ap-button-circle.ap-btn-clr-orange.bg-wht-btn {
    background: var(--clr-white);
}


/* End Buttons Variation */

/* Start Magnet Effect Button */
.ap-magnet-effect-btn {
    position: relative;
    padding: 14px 32px;
    background: var(--clr-main-light);
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.3s;
    overflow: hidden;
}
.ap-magnet-effect-btn .ap-button-circle-txt {
    color: var(--clr-white);
}
.ap-magnet-effect-btn::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--clr-orange);
    transition: 1s, left 0s,top 0s;
}
.ap-magnet-effect-btn:hover::before {
    width: 200px;
    height: 200px;
}

/* End Magnet Effect Button */

/* Start Custom checkbox In Form */

.ap-custom-checkbox-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ap-checkbox {
    padding: 0px 30px; 
}

.ap-checkbox input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.ap-checkbox-icon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7rem;
    min-height: 7rem;
    border-radius: 0.5rem;
    border: 1px solid #eeeeee;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.ap-checkbox-icon-title::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #16a5c3;
    opacity: 0.5;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}
.ap-checkbox-icon-title:hover::before,
.ap-checkbox-input:checked + .ap-checkbox-icon-title::before {
    left: 0;
    top: 0;
    border-radius: 0px;
    width: 100%;
    height: 100%;
}
.ap-checkbox-input:checked + .ap-checkbox-icon-title {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.ap-checkbox-icon,
.ap-checkbox-title {
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.ap-checkbox-title {
    padding-top: 8px;
}
.ap-checkbox-icon svg {
    width: 48px;
    height: auto;
    fill: var(--clr-main-light-2);
    transition: all 0.4s ease-in-out;
}
.ap-checkbox-icon svg .cls-1,
.ap-checkbox-icon svg .cls-2 {
    stroke: var(--clr-main-light-2);
    transition: all 0.4s ease-in-out;
}

.ap-checkbox-icon-title:hover .ap-checkbox-icon svg,
.ap-checkbox-input:checked + .ap-checkbox-icon-title .ap-checkbox-icon svg {
    fill: var(--clr-white);
}
.ap-checkbox-icon-title:hover .ap-checkbox-icon svg .cls-1,
.ap-checkbox-icon-title:hover .ap-checkbox-icon svg .cls-2,
.ap-checkbox-input:checked + .ap-checkbox-icon-title .ap-checkbox-icon svg .cls-1,
.ap-checkbox-input:checked + .ap-checkbox-icon-title .ap-checkbox-icon svg .cls-2  {
    stroke: var(--clr-white);    
}

.ap-checkbox-icon-title:hover .ap-checkbox-title,
.ap-checkbox-input:checked + .ap-checkbox-icon-title .ap-checkbox-title {
    color: var(--clr-white);
}

.ap-form-sub-msg {
    font-size: 18px;
    font-weight: 600;
    color: #16a5c3; 
}

.ap-checkbox-input:checked + .ap-checkbox-icon-title::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--clr-orange);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/Assets/Images/check.png);

}



/* End Custom Checkbox In Form */


/* Start Left icon Right Info Box */
.ap-left-icon-box-wrap {
    display: flex;
    gap: 25px;
    padding-top: 30px;
}
.ap-left-icon-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.ap-left-icon-box img {
    width: 64px;
    height: auto;
}
.ap-box-right-info {
    padding-left: 20px;
}
.ap-left-icon-box-title {
    font-family: var(--my-font);
    font-weight: 800;
}

/* End Left icon Right Info Box */

/* Start List Style 1 */
.ap-list-style-1 li {
    position: relative;
    font-family: var(--my-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-black);
    padding-left: 24px;
}
.ap-list-style-1 li:not(:last-child) {
    padding-bottom: 10px;
}
.ap-list-style-1 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--clr-main-light);
}
.ap-list-style-1 li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 4px;
    height: 6px;
    border-bottom: 2px solid var(--clr-white);
    border-right: 2px solid var(--clr-white);
    transform: rotate(45deg);
}
/* End List Style 1 */

/* Start Service Card */
.ap-service-card-wrap {
    padding-top: 50px;
    padding-bottom: 30px;
}
.ap-service-card-col {
    display: flex;
}
.ap-service-card {
    display: flex;
    flex-direction: column;  
    padding: 40px;
    margin: 20px 0px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 30px rgba(8,14,28,0.06);
    background-color: var(--clr-white);
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;   
}
.ap-service-card::before, .ap-service-card::after {
    content: '';
    position: absolute;
    height: 110px;
    width: 110px;
    background-color: var(--clr-main-light);
    opacity: 0.6;
    border-radius: 50%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: -1;
}
.ap-service-card::before {
    bottom: -73px;
    right: -28px;
}
.ap-service-card::after {
    right: -73px;
    bottom: -28px;
}
.ap-service-card-num {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
    color: var(--clr-white-light);
    opacity: 0.3;
}
.ap-service-card-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 25px;
}
.ap-service-card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--clr-white-light);
    -webkit-clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
    /* clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z"); */
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.ap-service-card-icon img {
    width: 42px;
}
.ap-service-card-icon .ap-icon-dots::before, .ap-service-card-icon .ap-icon-dots::after {
    content: '';
    position: absolute;
    background-color: var(--clr-main-light);
    height: 24px;
    width: 23px;
    border-radius: 50%;
}
.ap-service-card-icon .ap-icon-dots::before {
    top: 0;
    right: 9px;
}
.ap-service-card-icon .ap-icon-dots::after {
    height: 12px;
    width: 11px;
    bottom: 0;
    left: 27px;
}
.ap-service-card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.ap-service-card-title {
    color: var(--clr-black);
    padding-bottom: 12px;
    font-weight: 700;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.ap-service-card-desc {
    color: var(--para-clr);
    flex: 1 1 auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.ap-service-card-link {
    position: relative;
    margin-top: 15px;
    display: inline-block;
    width: max-content;
    background-color: var(--clr-white-light);
    padding: 10.5px 27px;
    box-shadow: none;
    border-radius: 50px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    overflow: hidden;
}
.ap-service-card-link::before {
    content: "";
    position: absolute;
    left: -40px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #bcefff;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.ap-service-card-link i {
    color: var(--clr-black);
    padding-left: 9px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.ap-service-card-link:hover::before {
    border-radius: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ap-service-card-link:hover i {
    transform: translateX(6px);
}
.ap-service-card .ap-card-bg-shape {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    pointer-events: none;
}
.ap-service-card .ap-card-bg-shape img {
    width: 100%;
}

.ap-service-card:hover::before, .ap-service-card:hover::after {
    opacity: 1;
    height: 120%;
    width: 120%;
    border-radius: 0;
}
.ap-service-card:hover .ap-service-card-icon::before {
    background-color: var(--clr-white);
}
.ap-service-card:hover .ap-service-card-title {
    color: var(--clr-white);
}
.ap-service-card:hover .ap-service-card-desc {
    color: var(--clr-white);
}
.ap-service-card:hover .ap-service-card-link {
    background-color: var(--clr-white);
}
.ap-service-card:hover .ap-card-bg-shape {
    bottom: 0;
    opacity: 1;
}
/* End Service Card */

/* Start Left-Img Right-Info Middle Video Btn  */
.ap-leftImg-rightInfo-midVideoBtn {
    background-image: url(/Assets/Images/cta_bg_wave.png);
    background-size: auto;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: var(--clr-main);
    z-index: 2;
    position: relative;
}
.ap-left-img-video-btn {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}
.ap-left-img-video-btn::after {
    content: "";
    height: 140px;
    width: 140px;
    background-color: var(--clr-main);
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 70px);
    right: -70px;
}
.ap-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ap-play-btn {
    position: absolute;
    display: inline-block;
    right: -40px;
    z-index: 1;
    top: calc(50% - 40px);
}
.ap-play-btn>i {
    --icon-size: 80px;
    display: inline-block;
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    line-height: var(--icon-size, 60px);
    text-align: center;
    background-color: var(--clr-white);
    color: var(--clr-main-light);
    font-size: var(--icon-font-size, 1.1em);
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.ap-play-btn::before,
.ap-play-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--clr-white);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;

    background-color: var(--clr-main-light);
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
.ap-play-btn::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

.ap-right-info {
    padding: 120px 10px;
}
.ap-right-info .ap-button-circle.ap-btn-clr-orange {
    background: var(--clr-white);
    margin-top: 25px;
}

/* Jquery Popup Magnify */
body .mfp-content .mfp-iframe-scaler .mfp-iframe {
    border-radius: 24px !important;
}

/* End Left-Img Right-Info Middle Video Btn  */


/* Start CTA Section */
.ap-cta-section {
    position: relative;
    padding: 90px 0px;
    background-color: #6D17EFD9;
    background-image: url(/Assets/Images/banner-2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.ap-cta-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(99deg, #6D17EFD9 0%, #176DF1D9 100%); 
}
.ap-cta-section .ap-intro-btn {
    text-align: right;
}
.ap-cta-section h2 {
    color: var(--clr-white);
}

/* End CTA Section */


/* Start Service Section */

.ap-service-detail-title-wrap {
    padding-top: 25px;
    padding-bottom: 12px;
}
.ap-service-detail-title-wrap .ap-service-detail-title {
    font-weight: 700;
}
.ap-service-detail-video-sec {
    padding: 25px 0px;
}
.ap-service-detail-video-sec .ap-list-style-1 {
    padding-top: 20px;
} 
.ap-service-detail-video-sec .ap-video-img {
    width: fit-content;
    position: relative;
}
.ap-realted-service-list-wrap {
    padding-top: 25px;
}
.ap-related-service {
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 40px;
}
.ap-related-service li {
    position: relative;
}
.ap-related-service li a {
    display: block;
    background-color: var(--clr-white);
    margin: 0 0 20px 0;
    padding: 16px 30px 19px 25px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
    border-radius: 4px;
    color: var(--para-clr);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.ap-related-service li a:hover,
.ap-related-service li a.active
{
    background-color: var(--clr-main-light);
    color: var(--clr-white);
}
.ap-related-service li a::before {
    content: "\f061";
    position: absolute;
    right: 25px;
    top: 17px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    color: var(--theme-color);
    -webkit-transition: all ease 0.1s;
    transition: all ease 0.1s;
}
.ap-service-detail-brochure {
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;    
    margin-bottom: 40px;
}
.ap-service-detail-brochure-btn,
.ap-service-detail-cta-btn {
    position: relative;
    z-index: 4;
    display: inline-block;
    overflow: hidden;
    padding: 20.5px 20px;    
    background-color: var(--clr-main-light);
    vertical-align: middle;
    color: var(--clr-white);
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
}
.ap-service-detail-cta-btn {
    background-color: var(--clr-orange);
}
.ap-service-detail-brochure-btn:hover, 
.ap-service-detail-cta-btn:hover {
    color: var(--clr-white);
}
.ap-service-detail-brochure-btn::before,
.ap-service-detail-brochure-btn::after,
.ap-service-detail-cta-btn::before,
.ap-service-detail-cta-btn::after {
    content: "";
    position: absolute;
    height: 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    background-color: var(--clr-orange);
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border-radius: 99px;
    -webkit-transform: scaleY(1.1);
    -ms-transform: scaleY(1.1);
    transform: scaleY(1.1);
    transform-origin: center;
}
.ap-service-detail-cta-btn::before,
.ap-service-detail-cta-btn::after {
    background-color: var(--clr-main-light);
}
.ap-service-detail-brochure-btn::before,
.ap-service-detail-cta-btn::before {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}
.ap-service-detail-brochure-btn::before, 
.ap-service-detail-cta-btn::before {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}
.ap-service-detail-brochure-btn:hover::before, 
.ap-service-detail-brochure-btn:hover::after,
.ap-service-detail-cta-btn:hover::before, 
.ap-service-detail-cta-btn:hover::after {
    height: 100%;
    border-radius: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.ap-service-detail-brochure-btn i {
    padding-right: 8px;
}
.ap-service-detail-cta {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    background-image: url(/Assets/Images/inro-2-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.ap-service-detail-cta-struct {
    position: relative;
}
.ap-service-detail-cta-struct::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 255px;
    height: 255px;
    background: #16a5c3;
    clip-path: polygon(0 0, 0 43%, 49% 0);
}
.ap-service-detail-cta-struct::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: 0;
    width: 255px;
    height: 255px;
    background: #16a5c3;
    clip-path: polygon(0 0, 0 43%, 49% 0);
    transform: rotate(180deg);
}
.ap-service-detail-cta-inner-struct {
    position: relative;
    padding: 120px 40px;    
}
.ap-service-detail-cta-inner-struct::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 380px;
    height: 380px;
    background: linear-gradient(90deg, rgb(255 9 9 / 0%) 8%, rgb(22 165 195 / 44%) 35%, rgb(22 165 195 / 57%) 100%);
    clip-path: polygon(0 0, 0 43%, 49% 0);
    z-index: -1;
}
.ap-service-detail-cta-inner-struct::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
    height: 380px;
    background: linear-gradient(90deg, rgb(255 9 9 / 0%) 8%, rgb(22 165 195 / 44%) 35%, rgb(22 165 195 / 57%) 100%);
    clip-path: polygon(0 0, 0 43%, 49% 0);
    z-index: -1;
    transform: rotate(180deg);
}
.ap-service-detail-cta::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    z-index: -1;
    border-radius: 5px;
}
.ap-service-detail-cta .sideBar-cta-subTitle {
    color: var(--clr-white);
    text-align: center;
    display: inline-block;
    width: 100%;
    padding-bottom: 15px;
}
.ap-service-detail-cta .ap-service-sidebar-title {
    color: var(--clr-white);
    text-align: center;
    padding-bottom: 18px;
}
.ap-service-detail-cta-btn-wrap {
    padding-top: 30px;
    text-align: center;
}
.ap-service-detail-cta-btn {
    width: auto;
}
.ap-service-detail-cta-btn i {
    padding-left: 8px;
}
/* End Service Section */

/*$$ End Common Section $$*/


/*$$ Start Header Section $$*/
#ap-header-top-bar {
    background-color: var(--clr-main-light);
    padding: 18px 0px;
}
.top-bar-left-side {
    display: flex;
    color: var(--clr-white);
}
.ap-header-location,.ap-header-contact {
    padding-right: 18px;
}
.top-bar-left-side a {
    color: #fff;
}
.top-bar-left-side i {
    padding-right: 10px;
}

.top-bar-left-side a:hover i,
.top-bar-right-side a:hover i {
    animation: jump-shaking 0.83s infinite;
}

@keyframes jump-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateY(-4px) }
    35% { transform: translateY(-4px) rotate(17deg) }
    55% { transform: translateY(-4px) rotate(-17deg) }
    65% { transform: translateY(-4px) rotate(17deg) }
    75% { transform: translateY(-4px) rotate(-17deg) }
    100% { transform: translateY(0) rotate(0) }
  }

  .top-bar-right-side {
    color: #fff;
  }
  .ap-social-icon-top-bar i {
    font-size: 18px;
    color: #fff;
    padding: 0px 8px;
}

#ap-header {
    position: relative;
    background-color: var(--clr-main);
    padding: 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* overflow: hidden; */
}
.ap-logo-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 33%;
    height: 100%;
    background: var(--clr-white);
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
.ap-logo-bg::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
    height: 100%;
    background: var(--clr-main-light);
    clip-path: polygon(65% 0, 71% 0, 100% 100%, 87% 100%);
}
.ap-header-inner-wrap {
    position: relative;
    z-index: 999999;
}
.ap-logo img {
    width: 85px;
    height: auto;
}
.ap-menu-btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ap-menu-wrap {
    flex: 1 1 auto;
}
.ap-menu {
    display: flex;
    justify-content: flex-end;
}
.ap-menu li {
    font-size: 18px;
    font-weight: 500;
    padding: 0px 8px;
    margin: 0px 12px;
    color: var(--clr-white);
}
.ap-menu>li {
    position: relative;
}
.ap-menu li a {
    color: var(--clr-white);
    position: relative;
}
.ap-menu li a {
    line-height: 50px;
}
.ap-menu li a.ap-button-circle {
    line-height: normal;
    padding: 10px 16px;    
}

.ap-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--clr-white);
    transform: scaleX(0);
    transition: transform .5s ease;
}
.ap-menu li a:hover::before {
    transform: scaleX(1);
  }
  .ap-menu li i {
    padding-left: 6px;
  }

  /* Start Sub Menu */
  #toggleMenuButton {
    pointer-events: none;
 }
  .ap-menu li .sub-menu {
    position: absolute;
    left: 0;
    /* top: 40px; */
    width: 230px;
    background-color: var(--clr-white);
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px);
    transition: all 0.5s ease;
  }
  .ap-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .ap-menu li .sub-menu li {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .ap-menu li .sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .ap-menu li .sub-menu li a {
    color: var(--clr-black);
    display: inline-block;
    width: 100%;
    padding: 14px 15px;
    line-height: initial;
  }
  .ap-menu li .sub-menu li a::before {
    content: none;
  }
  .ap-menu li .sub-menu li a:hover {
    background-color: var(--clr-main-light);
    color: var(--clr-white);
  }

  /* button Hover */
  .ap-header-contact-btn {
    flex: 1 1 auto;
  }
  .dedcription-btn {
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 30px;
    background-color: #fcfcfc;
    color: var(--clr-orange);
    text-align: center;
    font-size: 18px;
    padding: 9px 0;
    transition: all 0.3s;
    padding-right: 40px;
    margin: 20px 5px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
  }
  .dedcription-btn .btn-icon {
    background-color: var(--clr-orange);
    width: 67px;
    height: 45px;
    float: right;
    position: absolute;
    border-radius: 30px 30px 30px 0;;
    right: 0px;
    top: 0px;
    transition: all 0.3s;
  }
  .name-descripeion {
    position: relative;
    z-index: 9;
  }
  .btn-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 45px solid #fcfcfc;
    border-right: 26px solid transparent;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .dedcription-btn:hover .btn-icon {
    width: 100%;
    border-radius: 30px;
  }
  .dedcription-btn:hover .btn-icon::after {
    display: none;
    opacity: 0.1;
  }
  .btn-icon i {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
  }
  .dedcription-btn:hover {
    color: #fff!important;
  }

/* Mobile Toggle */
header .mobile-navbar-btn {
    display: none;
}

header .mobile-nav-btn {
    width: 50px;
    height: 50px;
    margin: 6px;
    background-image: linear-gradient(to right, #0f93af, #16a5c3);
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
}

header .mobile-nav-btn .mobile-nav-custom-svg {
    width: 30px;
    height: 50px;
    margin: 10px;
    position: relative;
}

header .mobile-nav-btn .mobile-nav-custom-svg span {
    background: #fff;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    transition: transform 0.5s , width 0.5s;
}

header .mobile-nav-btn .mobile-nav-custom-svg .cusom-svg-line-1 {
    transform: translate(-50%, -12px);
}

header .mobile-nav-btn .mobile-nav-custom-svg .cusom-svg-line-3 {
    transform: translate(-50%, 8px);
}

header .open-menu  .mobile-nav-btn .mobile-nav-custom-svg .cusom-svg-line-1 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

header .open-menu  .mobile-nav-btn .mobile-nav-custom-svg .cusom-svg-line-3 {
    transform: translate(-50%, -50%) rotate(45deg);
}

header .open-menu  .mobile-nav-btn .mobile-nav-custom-svg .cusom-svg-line-2 {
    width: 0;
}

/*$$ End Header Section $$*/


/*$$ Start Home Page $$*/

/* Start Hero Section */
.swiper-button-prev,
.swiper-button-next {
    color: var(--clr-main-light);
}
.ap-hero-section .swiper-slide {
    min-height: 600px;
    position: relative;
}
.ap-hero-section .swiper-slide::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-black);
    opacity: 0.4;
    z-index: -1;
}
#ap-home-hero-sec .swiper-slide {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
}
#ap-home-hero-sec .home-slide-1 {
    background-image: url(/Assets/Images/banner-2.jpeg);
}
#ap-home-hero-sec .home-slide-2 {
    background-image: url(/Assets/Images/banner-1.jpeg);
}

#ap-home-hero-sec h1 {
    color: #fff;
    transform: translateY(50px);   
    opacity: 0; 
    transition: 0.6s ease;
    padding-bottom: 30px;
}

#ap-home-hero-sec .swiper-slide-active h1 {
    transform: translateY(0);   
    opacity: 1; 
    transition-delay: 0.3s;
    transition-property: transform, opacity;
    animation: heading-in 1s ease forwards;
}
@keyframes heading-in {
    from {
        transform: translateY(50px);   
        opacity: 0; 
    }
    to {
        transform: translateY(0);   
        opacity: 1; 
        transition-delay: 0.3s;
        transition-property: transform, opacity;
    }
}
#ap-home-hero-sec .ap-heading-tag {
    color: #fff;
    transform: translateX(-50px);   
    opacity: 0; 
    transition: 0.6s ease;
    display: inline-block;
    padding-bottom: 10px;
}
#ap-home-hero-sec .swiper-slide-active .ap-heading-tag {
    transform: translateY(0);   
    opacity: 1; 
    transition-delay: 0.6s;
    transition-property: transform, opacity;
    animation: tag-in 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes tag-in {
    from {
        transform: translateX(-50px);   
        opacity: 0; 
    }
    to {
        transform: translateY(0);   
        opacity: 1; 
        transition-property: transform, opacity;
    }
}

#ap-home-hero-sec .ap-button-circle {
    transform: translateY(-50px);   
    opacity: 0; 
    transition: 0.6s ease;
}
#ap-home-hero-sec .swiper-slide-active .ap-button-circle {
    animation: btn-in 1s ease forwards;
    animation-delay: 0.6s;
}
@keyframes btn-in {
    from {
        transform: translateY(-70px);   
        opacity: 0; 
    }
    to {
        transform: translateY(0);   
        opacity: 1; 
        transition-property: transform, opacity;
    }
}

/* End Hero Section */

/* Start Intro Section */
#ap-home-intro-sec {
    position: relative;
}
#ap-home-intro-sec::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Assets/Images/bg-intro.png);
    background-size: contain;
    background-position: bottom right -246px;
    background-repeat: no-repeat;
    opacity: 0.09;

}
.ap-intro-img-group {
    position: relative;
}
.ap-intro-img-group img {
    border-radius: 15px;
    border: 4px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
img.ap-intro-img-2 {
    position: absolute;
    left: 175px;
    bottom: -59px;
}
.ap-stat-count {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background:var(--clr-main-light);
    color: var(--clr-white);
    position: absolute;
    top: 200px;
    left: 50%;
    border-radius: 10px;
}
.ap-stat-count-num {
    font-family: var(--my-font);
    font-size: 30px;
    font-weight: 600;
}

#ap-home-intro-sec .ap-list-wrap {
    padding-top: 35px;
}
.ap-intro-btn {
    padding-top: 35px;   
}
/* End Intro Section */

/* Start Why Choose Us */
#ap-home-why-choose-sec {
    position: relative;
}
#ap-home-why-choose-sec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("/Assets/Images/wave-2.jpg");
    opacity: 0.15;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top -140px center;
}
#ap-home-why-choose-sec .ap-why-choose-card-wrap {
    padding-top: 50px;
}
#ap-home-why-choose-sec .ap-left-icon-box {
    padding: 35px;
    margin-bottom: 35px;
    background: aliceblue;
    border-radius: 10px;
}
#ap-home-why-choose-sec .ap-box-right-info {
    padding-left: 30px;
}
#ap-home-why-choose-sec .ap-box-left-icon {
    position: relative;
}
#ap-home-why-choose-sec .ap-box-left-icon::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 90px;
    height: 90px;
    background: #70c8da;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
}

/* End Why Choose Us */

/* Start Service Section */
#ap-home-service-sec {
    background-image: url(/Assets/Images/service_bg_1.png);
    background-color: #f5f5f5;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* End Service Section */

/* Start Testimonial Section */
.ap-testimonialSwiper .swiper-wrapper {
    padding-bottom: 20px;
}
.ap-slider-banner {
    background-color: var(--clr-main-light);
    padding: 80px 60px 250px 60px;
    border-radius: 25px;
    margin: 80px 0px;
    margin-bottom: 0;
}
.ap-slider-wrapper {
    padding: 0px 70px;
    margin-top: -225px;
}
.ap-testimonialSwiper .swiper-slide {
    position: relative;
    padding: 40px;
    background-color: var(--clr-white);
    border-radius: 15px;    
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.ap-test-logo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 15px;
}
.ap-test-logo img {
    width: 56px;
    height: auto;
}
.ap-test-logo .ap-logo-txt {
    font-family: var(--my-font);
    font-weight: 800;
    color: var(--clr-main);
    text-transform: uppercase;
    padding-left: 11px;
}
.ap-test-msg .ap-para {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #EAEAEA;
}
.ap-test-profile-quote-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ap-test-profile img {
    max-width: 40px;
    height: auto;
}
.ap-test-name {
    margin-bottom: 4px;
    padding-top: 8px;
}
.ap-test-desc {
    font-size: 14px;
    color: var(--clr-main);
}
#ap-home-testimonial-sec .swiper-button-next,
#ap-home-testimonial-sec .swiper-button-prev {
    color: var(--clr-white);
    justify-content: flex-end;
} 
#ap-home-testimonial-sec  .swiper-button-prev {
    margin-left: auto;
    width: 100%;
    left: -90px;
}
#ap-home-testimonial-sec .swiper-button-next {
    margin-left: auto;
    left: 75px;
}
/* End Testimonial Section */


 /* Start Contact Form */

.ap-form-wrap {
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -moz-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 0.5px solid #0000001a;
    border-radius: 12px;
    overflow: hidden;
}
.ap-form-address-sec {
    position: relative;
    padding: 40px;
    width: 100%;
    background-color: var(--clr-main-light);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.ap-form-address-sec::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Assets/Images/bg-struct.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
}
.ap-form-address-sec .ap-address-title {
    color: var(--clr-white);
}
.ap-form-address-sec .ap-para {
    color: var(--clr-white-light);
}
.ap-address-group-wrap {
    padding-top: 65px;
}
.ap-address-group {
    display: flex;
    position: relative;
}
.ap-address-group:not(:last-child) {
    margin-bottom: 40px;
}
.ap-address-group .ap-address-group-txt {
    padding-left: 15px;
}
.ap-address-group i {
    position: relative;
    color: var(--clr-white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff87;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 5;
}
.ap-address-group i::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    margin: auto;
    background: var(--clr-white);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}
a.ap-address-group:hover i::after {
    width: 100%;
    height: 100%;
}
a.ap-address-group:hover i {
    color: var(--clr-main-light);
}
 
.ap-address-group-txt .ap-address-txt {
    color: var(--clr-white-light);
}
.ap-address-group-txt .ap-txt-heighlight {
    color: var(--clr-white);
    font-weight: 600;
}
.ap-form-sec {
    position: relative;
    padding: 40px;
}
.ap-form-sec::before {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -60px;
    width: 400px;
    height: 330px;
    background-color: #16a5c3;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: shapeChange 8s ease-in-out infinite;
}
@keyframes shapeChange {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 70% 30% 30% / 70% 30% 30% 70%;
    }
    50% {
        border-radius: 30% 60% 30% 80% / 30% 70% 20% 70%;
    }
    75% {
        border-radius: 70% 10% 40% 70% / 80% 20% 70% 10%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.ap-form-sec .ap-form-heading {
    text-align: center;
}

#ap-home-form {
    padding-top: 40px;
}

.ap-custom-checkbox-heading {
    padding-bottom: 30px;
    padding-top: 20px;
    text-align: center;
}

.ap-form-group {
    position: relative;
    margin-bottom: 50px;
}
.ap-form-group input {
    width: 100%;
    padding: 0px 0px 10px 0px;
    border: none;
    border-bottom: 1px solid #BABABA;
    color: #595959;
    background-color: transparent;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
}
.ap-from-submit-group {
    text-align: center;
}
.ap-from-submit-btn {
    border: none;
}

.ap-form-group input+.ap-form-label {
    font-family: var(--my-font);
    position: absolute;
    top: 2px;
    left: 0px;
    transition: 0.2s ease all;
    color: #595959;
    margin-bottom: 0px;
    pointer-events: none;
}
.ap-form-group input:focus+.ap-form-label, 
.ap-form-group input:not(:placeholder-shown)+.ap-form-label {
    top: -20px;
    font-size: 12px;
}


 /* End Contact Form  */


/* Start panel-navigate-sec */
#ap-home-panel-navigate-sec {
    width: 100%;
    overflow-x: hidden;
}
#ap-home-panel-navigate-sec .canvas-wrap {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}
#ap-home-panel-navigate-sec canvas {
    max-width: 100vw;
    max-height: 500vh;
}

/* End panel-navigate-sec */


/*$$ End Home Page $$*/


/*$$ Start About Page $$*/


/* Start About Hero Section */

#ap-about-hero-sec {
    background-image: url(/Assets/Images/bg-about2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.ap-simple-hero-section {
    padding: 150px 0px;
    position: relative;
    z-index: 2;
}
#ap-about-hero-sec.ap-simple-hero-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Assets/Images/divider1-hero.png);
    opacity: 0.7;
}
.ap-simple-hero-section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;    
    z-index: -1;
}
.ap-simple-hero-section .ap-heading-tag {
    color: var(--clr-white);
}
.ap-simple-hero-section h1 {
    color: var(--clr-white);
}
/* End About Hero Section */

/* Start About Intro Sec */
.ap-about-logo-card {
    background-color: var(--clr-white);
    box-shadow: 0px 10px 30px 0px rgb(14 30 42 / 24%);
    max-width: 170px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    position: absolute;
    top: 200px;
    left: 50%;
    border: 1px solid #05597357;
}
.ap-about-logo-card img {
    width: 80px;
    height: auto;
}
.ap-about-intro-btn-wrap {
    padding-top: 30px;
    border-top: 1px solid #d3d1d1;
}
.ap-about-intro-btn-wrap .ap-intro-btn {
    padding-top: 0px;
}
.ap-about-intro-btn-wrap .ap-call-btn {
    display: flex;
    align-items: center;
}
.ap-about-intro-btn-wrap .ap-call-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 20px 0px 0px;
    width: 65px;
    height: 65px;
    border-style: double;
    border-width: 4px 4px 4px 4px;
    border-color: #d8e7ff;
    border-radius: 50% 50% 50% 50%;
}
.ap-about-intro-btn-wrap .ap-call-btn .ap-call-text-wrap p {
    margin-bottom: 0px;
}
.ap-about-intro-btn-wrap .ap-call-btn .ap-call-text-wrap .ap-call-text {
    font-size: 16px;
    font-weight: 500;
    color: #6A6A6A;
}
.ap-about-intro-btn-wrap .ap-call-btn .ap-call-text-wrap .ap-call-no {
    font-size: 20px;
    font-weight: 600;
    color: #2e2d2d; 
}
/* End About Intro Sec */

/* Start Work Process Section */
#ap-about-work-process-sec {
    background-color: #f5f5f5;
    background-image: url(/Assets/Images/process_bg_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.ap-process-card-wrap {
    position: relative;
    padding: 80px 0px;
}
.ap-process-card-wrap .process-line {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    height: 0;
    width: 100%;
    text-align: center;
}
.ap-process-card-col {
    display: flex;
    padding: 0px 34px;
}
.ap-process-card {
    position: relative;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    border-radius: 10px;
    padding: 30px 20px;
    background-color: var(--clr-white);
    text-align: center;
    flex: 1 1 auto;
}
.ap-process-card .process-card-number {
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: var(--clr-main-light);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-white);
}
.ap-process-card .process-card-number::before,
.ap-process-card .process-card-number::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--clr-main-light);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.ap-process-card .process-card-number::before {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ap_ripple;
    animation-name: ap_ripple;
}
.ap-process-card .process-card-number::after {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ap_ripple;
    animation-name: ap_ripple;
}
@keyframes ap_ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

.ap-process-card .ap-process-card-icon {
    width: 46px;
    height: auto;
    margin-bottom: 15px;
}
.ap-process-card .ap-process-card-title {
    padding-bottom: 12px;
}
/* End Work Process Section */

/* Start About Video Overlap Sec  */
#ap-about-video-overlap-sec {
    margin-bottom: -120px;
}
#ap-about-video-overlap-sec .ap-video-overlap-wrap {
    position: relative;
    background-color: var(--clr-main);
    padding: 70px;
    background-image: url(/Assets/Images/video-overlap-sec.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#ap-about-video-overlap-sec .ap-video-overlap-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-main);
    opacity: 0.91;
}
#ap-about-video-overlap-sec .ap-video-img {
    position: relative;
    margin-bottom: -185px;
    border: 8px solid #fff;
}
#ap-about-video-overlap-sec .ap-video-img img {
    width: -webkit-fill-available;
}

/* End About Video Overlap Sec  */

/* Start About Testimonial Sec */
#ap-about-testimonial-sec {
    padding-bottom: 70px; 
}
#ap-about-testimonial-sec .container-fluid {
    padding: 0px;
}
#ap-about-testimonial-sec .ap-slider-banner {
    border-radius: 0px;
    margin: 0px;
    padding-top: 270px;
}

/* End About Testimonial Sec */

/*$$ End About Page $$*/


/*$$ Start Contact Page $$*/


/* Start Contact Hero Section */

#ap-contact-hero-sec {
    background-image: url(/Assets/Images/contact-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#ap-contact-hero-sec.ap-simple-hero-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Assets/Images/divider1-right-hero.png);
    opacity: 0.3;
}
#ap-contact-hero-sec.ap-simple-hero-section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #141d38;
    opacity: 0.90;
    z-index: -1;
}


/* End Contact Hero Section */

/* Start Contact Box */
.ap-contact-box-wrap {
    margin-top: 30px;
}
.ap-contact-box-col {
    margin-bottom: 30px;
}
.ap-contact-box {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 30px 35px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease;
    border-radius: 5px;
}
.ap-contact-box:hover {
    transform: translateY(-10px);
}
.ap-contact-box::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, var(--clr-main-light-2), var(--clr-main-light));
    content: "";
    transition: all 300ms ease;
}
.ap-contact-box:hover::before {
    width: 100%;
}
.ap-contact-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(/Assets/Images/contact-box-struct.png);
}
.ap-contact-box .ap-contact-box-icon {
    z-index: 1;
}
.ap-contact-box .ap-contact-box-icon svg {
    width: 56px;
    height: auto;
}
.ap-contact-box .ap-contact-box-icon svg path {
    fill: var(--clr-main-light);
    transition: all 300ms ease;
}
.ap-contact-box:hover .ap-contact-box-icon svg path {
    fill: var(--clr-white);
    transition: all 300ms ease;
}
.ap-contact-box .ap-contact-box-content {
    padding-left: 25px;
    z-index: 1;
}
.ap-contact-box .ap-contact-box-content .ap-contact-box-title,
.ap-contact-box .ap-contact-box-content .ap-contact-box-desc {
    transition: all 300ms ease;
}
.ap-contact-box:hover .ap-contact-box-content .ap-contact-box-title,
.ap-contact-box:hover .ap-contact-box-content .ap-contact-box-desc {
    color: var(--clr-white);
}
/* End Contact Box */

/* Start Map Section */
.map-wrap {
    margin-bottom: -8px;
    padding-top: 40px;
}
/* End Map Section */

/*$$ End Contact Page $$*/


/*$$ Start Footer Section $$*/
#ap-footer-sec {
    position: relative;
    background-color: var(--clr-main);
    padding: 100px 0px;
}
#ap-footer-sec::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(/Assets/Images/footer_shape_2.svg);
    background-repeat: no-repeat;
}
#ap-footer-sec .container {
    position: relative;
    z-index: 2;
}
#ap-footer-sec .ap-footer-logo-form-wrap {
    position: relative;
    justify-content: space-between;
    padding-bottom: 28px;
}
#ap-footer-sec .ap-footer-logo-form-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    opacity: 0.7;
}
#ap-footer-sec .ap-footer-logo {
    position: relative;
    background: #fff;
    display: inline-block;
    padding: 20px;
    padding-right: 35px;
    border-radius: 8px;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}
#ap-footer-sec .ap-footer-logo::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
    height: 100%;
    background: var(--clr-main-light);
    clip-path: polygon(43% 0, 80% 0, 100% 100%, 73% 100%);
}
#ap-footer-sec .ap-footer-logo img {
    width: 80px;
    height: auto;
}
#ap-footer-sec .ap-footer-title {
    position: relative;
    color: var(--clr-white);
    margin-bottom: 50px;
    margin-top: 50px;
}
#ap-footer-sec .ap-footer-title::before {
    content: '';
    height: 3px;
    width: 85px;
    background-color: var(--clr-white);
    position: absolute;
    left: 0;
    bottom: -15px;
}
#ap-footer-sec .ap-footer-title::after {
    content: '';
    height: 10px;
    width: 10px;
    background-color: var(--clr-main-light);
    position: absolute;
    bottom: -18px;
    left: 83px;
    border-radius: 99px;
    border: 2px solid var(--clr-white);
}
#ap-footer-sec .ap-footer-form-service {
    padding-bottom: 28px;
}
#ap-footer-sec .ap-footer-radio-label {
    color: var(--clr-white);
    cursor: pointer;
}
#ap-footer-sec input {
    cursor: pointer;
}
#ap-footer-sec .ap-footer-social-icon-wrap {
    display: flex;
}
#ap-footer-sec .ap-footer-form-group {
    position: relative;
    width: 88%;
}
#ap-footer-sec .ap-footer-form-group input {
    width: 100%;
    padding: 9px 120px 9px 20px;
    border-radius: 35px;
    border: none;
}
#ap-footer-sec .ap-footer-form-group input:focus {
    outline: none;
}
#ap-footer-sec .ap-footer-form-btn {
    padding: 9px 30px;
    border-radius: 40px;
    outline: none;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    background: #ffa000;
    color: #fff;
}

#ap-footer-sec .ap-footer-social-icon i {
    color: var(--clr-white-light);
    font-size: 25px;
    padding: 0px 20px 0px 0px;
    transition: all 0.5s ease;
}
#ap-footer-sec .ap-footer-social-icon a:hover i {
    color: var(--clr-orange);
}
#ap-footer-sec .shape-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: auto;
    width: 40%;
}
#ap-footer-sec .particle-1 {
    pointer-events: none;
}
#ap-footer-sec .ap-footer-quick-link li:not(:last-child) {
    padding-bottom: 10px;
}
#ap-footer-sec .ap-footer-quick-link a {
    position: relative;
    color: var(--clr-white);
    display: inline-block;
    padding-left: 18px;
    transition: all 0.5s ease;
}
#ap-footer-sec .ap-footer-quick-link a:hover {
    transform: translateX(4px);
}
#ap-footer-sec .ap-footer-quick-link a:hover::before {
    border-color: var(--clr-orange);
}
#ap-footer-sec .ap-footer-quick-link a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease;
}
#ap-footer-sec .ap-footer-call-email-wrap {
    padding-top: 15px;
}
#ap-footer-sec .ap-footer-call-email-wrap a {
    color: var(--clr-white);
    display: block;
}
#ap-footer-sec .ap-footer-call-email-wrap a i {
    padding-right: 10px;
    transition: all 0.5s ease;
}
#ap-footer-sec .ap-footer-call-email-wrap a:hover i {
    color: var(--clr-orange);
    transform: scale(1.3);
}
#ap-footer-sec .ap-footer-call-email-wrap a:not(:last-child) {
    padding-bottom: 18px;
} 
/*$$ End Footer Section $$*/


/*$$$ Start Responsive $$$*/


/* Bootstrap Setup */

@media screen and (min-width: 576px) {
    .container, .container-sm {
        max-width: 690px;
    }
}

@media screen and (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 1090px;
    }
}
@media only screen and (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}

@media screen and (max-width: 1199.5px) {

/*$ Start Common Section $*/

/* Start Left-Img Right-Info Middle Video Btn  */
.ap-left-img-video-btn::after {
    right: calc(50% - 70px);
    top: calc(100% - 70px);
}
.ap-left-img-video-btn {
    position: relative;
    width: 100%;
    height: auto;
}
.ap-play-btn {
    position: absolute;
    top: calc(100% - 40px);
    right: calc(50% - 40px);
}
/* End Left-Img Right-Info Middle Video Btn  */

/* Start Service Section */
.ap-service-detail-video-sec .ap-left-img-video-btn {
    position: absolute;
    top: 50%;
}
.ap-service-detail-video-sec .ap-service-detail-video-details {
    padding-top: 25px;
}
/* End Service Section */

/*$ End Common Section $*/

/* Start Header */
    header .mobile-navbar-btn {
        display: block;
        margin-left: auto;
        z-index: 9999;
        flex: 1 1 auto;
    }

    header .ap-menu-wrap {
        position: fixed;
        top: 0;
        width: 100%;
        left: 0;
        height: 100%;
        background: var(--clr-main-light);
        flex-direction: column;

        transform: translateX(100%);
        transition: all 0.5s linear;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 999;
    }
    #ap-header.active .ap-menu-wrap {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #ap-header.active .mobile-nav-btn {
        position: fixed;
        top: 12px;
        right: 12px;
        border: 1px solid #fff;
    }
    #ap-header.active .mobile-nav-btn .mobile-nav-custom-svg {
        height: 30px;
    }

    #ap-header.active .ap-menu {
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }

    #ap-header.active .ap-menu li {
        min-height: 5rem;
        line-height: 5rem;
        /* text-align: center; */
    }
    .ap-menu li {
        margin: 0;
        padding: 0;
    }
    .ap-menu li a {
        padding: 0px 15px;
        /* margin: 0px 12px; */
    }
    .ap-menu li a::before {
        content: none;
    }
    .ap-menu li a.ap-button-circle::before {
        content: '';
    }    
    #ap-header.active .ap-menu li a {
        font-size: 2rem;
    }
    
    #ap-header.active .ap-menu li a.ap-button-circle {
        font-size: initial;
        margin-left: 12px;
    }


    /* Start Sub Menu */
    #toggleMenuButton {
        pointer-events: all;
    }
    #ap-header.active .ap-menu li .sub-menu li {
        line-height: initial;
        min-height: auto;
    }
    .ap-menu li i {
        padding-right: 20px;
        padding-top: 14px;
        font-size: 46px;
        float: right;
    }
    .ap-menu li a.ap-button-circle i {
        font-size: initial;
        padding-top: 0px;
        padding-right: 0px;
        float: none;      
    }

    .ap-menu li .sub-menu {
        position: relative;
        width: 100%;
        z-index: 15;
        display: none;
    }
    #ap-header .ap-menu li .sub-menu li a {
        font-size: 20px;
        padding-left: 40px;
    }
    .ap-menu li .sub-menu li a:hover {
        background-color: #16a5c35c;
        color: #000;
    }

/* End Header */

/* Start Home Page */

.ap-intro-info-group {
    padding-top: 100px;
}


/* End Home Page */

/*$$ Start About Page $$*/

/* Start Work Process Section */
.ap-process-card-wrap .process-line {
    display: none;
}
.ap-process-card-col {
    padding: 0px 15px;
}
.ap-process-card {
    margin: 35px;
}
/* End Work Process Section */

/* Start About Video Overlap Sec  */

#ap-about-video-overlap-sec .ap-video-img img {
    margin-top: 25px;
}
#ap-about-video-overlap-sec .ap-video-img .ap-left-img-video-btn {
    position: absolute;
    top: 50%;
}

/* End About Video Overlap Sec  */

/* Start About Testimonial Section */

#ap-about-testimonial-sec .ap-slider-banner {
    padding-top: 315px;
}

/* End About Testimonial Section */

/*$$ End About Page $$*/

}

@media screen and (max-width: 991.5px) {
/* Start Header */
    .top-bar-left-side {
        justify-content: center;
        padding-bottom: 20px;
    }
    #ap-header-top-bar .ap-justify-cont-end {
        justify-content: center;
    }
/* End Header */

/* Start Home Page */

/* Start Why Choose Us */
#ap-home-why-choose-sec .ap-why-choose-heading-wrap .ap-justify-cont-end {
    justify-content: flex-start;
}

/* End Why Choose Us */

/* Start Contact Form */
 .ap-form-address-sec {
    border-bottom-left-radius: 0px;
}
.ap-form-group.ap-from-submit-group {
    margin-bottom: 10px;
}
/* End Contact Form */
/* End Home Page */

/*$$ Start Footer Section $$*/
.ap-footer-form-wrap {
    padding-top: 45px;
}

/*$$ End Footer Section $$*/


}

@media screen and (max-width: 767.5px) {
/* Start Service Section */
.ap-cta-section .ap-intro-btn {
    text-align: left;
}

/* End Service Section */

/* End Common CSS */ 
}

@media screen and (max-width: 767px) {

/* Start Common CSS */


/* Start Heading */

h1 {
    font-size: 45px;
}
h2 {
    font-size: 35px;
}
.ap-heading-center {
    max-width: 100%;
}
.ap-para-center {
    max-width: 100%;
}

/* End Heading */

/* Start Custom checkbox In Form */
.ap-custom-checkbox-wrapper {
    flex-wrap: wrap;
}
.ap-checkbox {
    padding-bottom: 25px;
}
/* End Custom checkbox In Form */


/* End Common CSS */ 


/* Start Home Page */
#ap-home-hero-sec .swiper-button-prev, 
#ap-home-hero-sec .swiper-button-next {
    display: none;
}
.ap-intro-img-group .ap-intro-img-1 {
    height: 370px;
}
.ap-intro-img-group .ap-intro-img-2 {
    width: 355px;
}

/* Start Testimonial section */
.ap-slider-wrapper {
    padding: 0px 20px;
}
.ap-test-nav {
    display: none   ;
}
/* Start Testimonial section */

/* End Home Page */

/*$$ Start About Page $$*/

/* Start Work Process Section */
.ap-process-card-col {
    padding: 0px 30px;
}
/* End Work Process Section */

/* Start About Intro Sec */
.ap-call-btn {
    padding-top: 25px;	
 }
 /* End About Intro Sec */

 /* Start About Video Overlap Sec  */

#ap-about-video-overlap-sec .ap-video-overlap-wrap {
    padding: 35px;
 }
 
 /* End About Video Overlap Sec  */
 
 /*$$ End About Page $$*/

}

@media screen and (max-width: 575px) {

/*$ Start Common Section $*/

/* Start Left-Img Right-Info Middle Video Btn  */

.ap-right-info {
    padding-top: 90px;
    padding-bottom: 60px;
}

/* End Left-Img Right-Info Middle Video Btn  */

/*$ End Common Section $*/

/* Start Header */
#ap-header-top-bar {
    display: none;
}

/* End Header */

/* Start Home Page */
.ap-intro-img-group .ap-intro-img-1{
    height: 270px;
}
.ap-intro-img-group .ap-intro-img-2 {
    width: 230px;
    left: 50px;
}
.ap-stat-count {
    top: 117px;
    left: 128px;
    padding: 15px;
}
.ap-stat-count-num {
    font-size: 18px;
}
.ap-left-icon-box-wrap {
    flex-direction: column;
    align-items: flex-start;
}
/* End Home Page */
}


@media screen and (max-width: 480px) {
    /* Start Header */
    .ap-logo-bg {
        width: 38%;
    }
    .ap-logo-bg::before {
        clip-path: polygon(65% 0, 71% 0, 100% 100%, 77% 100%);
    }
    .ap-header-contact-btn {
        display: none;
    }

    /* End Header */

    /*$$ Start Footer Section $$*/

    #ap-footer-sec .ap-footer-form-group {
        width: 100%;
    }

/*$$ End Footer Section $$*/

}


/*$$$ End Responsive $$$*/