/* ===============================
   CSS Boilerplate - Base Styles
   =============================== */

:root {
    --white: #ffffff;
    --black: #1d1e24;
    --black-2: #020502;
    --blue: #0a408f;
    --grey: #2b3032;
    --grey2: #4b5c65;
    --grey3: #343e43;
    --grey4: #9197a0;
    --grey5: #828282;
}

/* 1. Box Sizing Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

/* 3. Set core body defaults */
body {
    background-color: var(--white);
    font-family: 'Poppins', Verdana, Geneva, Tahoma, sans-serif;
    color: var(--black);
    font-size: 16px;
    overflow-x: hidden;
}

/* 4. List style reset */
ul,
ol {
    list-style: none;
}

/* 5. Anchor default styles */
a {
    color: inherit;
    text-decoration: none;
}

/* 6. Image and media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Form elements inherit font */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Remove button borders & default styles */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/*BG*/
.bg-white {
    background-color: var(--white);
}

/*COLOR*/
.color-white {
    color: var(--white);
}

/*Top Level*/
section {
    padding: 60px 0;
}

/*Custom Button*/
.ct-link-button {
    position: relative;
    border-radius: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid var(--white);
    background-color: var(--white);
    color: var(--black-2);
    line-height: 1.4;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 400ms ease;
}

.blue-btn {
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: var(--white);
}

.blue-bdr {
    color: var(--blue);
    border: 1px solid var(--blue);
}

.black-bdr {
    color: var(--black-2);
    border: 1px solid var(--black-2);
}

.trans-white-bdr {
    color: var(--white);
    border: 1px solid var(--white);
    background-color: transparent;
}

.button-icon-c {
    padding: 8px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    border-radius: 50%;
    width: 31px;
    height: 31px;
    justify-content: center;
    align-items: center;
    background-color: var(--blue);
    font-size: 13px;
}

.button-icon {
    border: 1px solid var(--blue);
    color: var(--white);
}

.button-hover-icon {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--blue);
    display: none;
}

.ct-link-button:hover {
    border: 1px solid var(--blue);
    color: var(--white);
    background-color: var(--blue);
}

.blue-btn:hover {
    border: 1px solid var(--white);
    color: var(--black-2);
    background-color: var(--white);
}

.ct-link-button:hover .button-hover-icon {
    display: flex;
}

.cstm-container {
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

@media(min-width:320px) {
    .cstm-container {
        max-width: 100%;
    }
}

@media(min-width:991px) {
    .cstm-container {
        max-width: 100%;
    }
}

@media(min-width:1025px) {
    .cstm-container {
        max-width: 85%;
    }
}

@media(min-width:1600px) {
    .cstm-container {
        max-width: 85%;
    }
}

@media(min-width:1921px) {
    .cstm-container {
        max-width: 70%;
    }
}

.header-c {
    padding: 10px 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 20;
}

.logo-c {
    width: 180px;
}

.main-menu-c {
    margin-right: 20px;
}

.main-menu-list {
    flex-direction: row;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
}

.main-menu-list li {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    position: relative;
}

.main-menu-list li a {
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-left: 20px;
    color: var(--white);
    white-space: nowrap;
    border-radius: 20px;
    background-color: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--white);
}

.main-menu-list>li>a:hover,
.main-menu-list>li.active>a,
.main-menu-list>li:hover>a {
    background-color: var(--white);
    color: var(--black-2);
}

.dropdown-icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    margin-left: 2px;
}

.main-menu-list .sub-menu-c {
    position: absolute;
    z-index: 9999999;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scale(.6);
    transition-property: opacity, transform, visibility;
    transition-duration: .4s;
}

.main-menu-list li .sub-menu {
    padding: 15px;
    flex-direction: column;
    white-space: nowrap;
    display: flex;
    margin-top: 2px !important;
    background: #04132a !important;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.9;
    border: 1px solid var(--white);
}

.main-menu-list li.has-child:hover .sub-menu-c {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.main-menu-list li .sub-menu li {
    margin-left: 0;
}

.main-menu-list li .sub-menu li a {
    background-color: none;
    padding: 10px 20px;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    position: relative;
}

.main-menu-list li .sub-menu li:last-child a {
    border-bottom: 0;
}

.main-menu-list li .sub-menu li a:hover,
.main-menu-list li .sub-menu li.active a {
    background-color: none;
}

.main-menu-list li .sub-menu li a:hover::after,
.main-menu-list li .sub-menu li.active a::after {
    background-color: var(--white);
    opacity: 0.2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.menu-image-title-after {
    margin-right: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.main-menu-list li .sub-menu li .menu-image-title {
    padding-right: 10px;
}

.hero-header {
    background: url('../images/bg/single-post-banner.jpg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 170px;
    padding-bottom: 150px;
    overflow: hidden;
    position: relative;
}

.inner-header {
    height: 640px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-header p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
}

.inner-banner-pattern {
    position: absolute;
    overflow: hidden;
    bottom: -10px;
    opacity: 0.2;
    left: 0px;
}

.shake {
    display: inline-block;
    animation: shake 3s infinite;
}

@keyframes shake {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-home-heading {
    text-transform: capitalize;
}

.about-home-img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    border-radius: 30px;
}

.about-home-txt {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.block-bg-c {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.block-bg-img-c {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.block-bg-c::after {
    content: "";
    background: linear-gradient(#042b65, #051c3d 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.block-box-c {
    position: relative;
    z-index: 3;
}

.h2-style-1 {
    color: var(--black-2);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.h1-style-1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.why-choose-c {
    background-image: linear-gradient(#020d1e, #051731 50%, #051731 60%, #020d1e 100%);
    position: relative;
    background-position: 50% 50%;
}

.point-c {
    border-top-color: rgba(255, 255, 255, 0.3);
    border-top-style: solid;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 15px;
    border-top-width: 1px;
    position: relative;
    z-index: 1;
}

.p-number-c {
    color: var(--grey4);
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
}

.p-hd-c {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
}

.p-txt-c {
    font-size: 16px;
    line-height: 1.4;
    color: var(--grey4);
}

.map-image {
    mix-blend-mode: normal;
    position: absolute;
    top: 50%;
    opacity: 0.05;
    max-width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.so-txt-c {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.ctm-mb-10 {
    margin-bottom: 10px;
}

.ctm-mb-15 {
    margin-bottom: 15px;
}

.ctm-mt-20 {
    margin-top: 20px;
}

.ctm-mt-30 {
    margin-top: 30px;
}

.ctm-mb-20 {
    margin-bottom: 20px;
}

.ctm-ms-20 {
    margin-left: 20px;
}

.ctm-mb-30 {
    margin-bottom: 30px;
}

.ctm-p-20 {
    padding: 20px;
}

.so-box-mc {
    height: 100%;
    padding-top: 100px;
}

.so-box-c {
    position: relative;
    border-radius: 15px;
    padding: 20px;
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
    height: 100%;
    text-align: center;
    background-color: var(--grey5);
}

.so-box-c:hover {
    background: linear-gradient(#042b65, #051c3d 100%);

}

.so-box-c .icon-c {
    font-size: 100px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    border: 2px solid var(--grey5);
    line-height: 0px;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--grey5);
}

.so-box-c .icon-c svg {
    width: 100px;
    fill: var(--grey5);
}

.so-box-c:hover .icon-c {
    border: 2px solid #042b65;
    color: #042b65;
}

.so-box-c:hover .icon-c svg {
    fill: #042b65;
}

.so-box-c h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0;
    padding-top: 80px;
}

.so-box-c p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
}

.so-hover-img {
    visibility: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}

.so-box-c:hover .so-state-img {
    visibility: hidden;
}

.so-box-c:hover .so-hover-img {
    visibility: visible;
}

.onboarding-c {
    background-image: linear-gradient(#020d1e, #051731 50%, #051731 60%, #020d1e 100%);
    position: relative;
    overflow: hidden;
}

.onboarding-c p {
    font-size: 16px;
    line-height: 1.4;
}

#onboarding-c-bg-1 {
    position: absolute;
    right: 0px;
    top: 44%;
    width: 300px;
}

#onboarding-c-bg-2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 300px;
}

.onboarding-slider-c {}

.onboarding-slider-c .swiper-wrapper {
    justify-content: center;
}

@media (max-width: 1560px) {
    .onboarding-slider-c .swiper-wrapper {
        justify-content: flex-start;
        /* align left */
    }

    body .ob-button-c {
        display: flex !important;
    }
}

.ob-bx-c {
    width: 260px;
    text-align: center;
    padding: 30px 15px;
}

.ob-button-c {
    display: none !important;
}

.onboarding-slider .swiper-slide {
    width: 260px !important;
}

.ob-bx-img-c {
    position: relative;
}

.ob-bx-top-line-c {
    border-top: 1px dashed var(--white);
    border-left: 1px dashed var(--white);
    border-right: 1px dashed var(--white);
    width: 82px;
    height: 61px;
    border-radius: 10px;
    position: absolute;
    top: -20px;
    right: -56px;
    z-index: -1;
}

.ob-bx-bottom-line-c {
    border-bottom: 1px dashed var(--white);
    border-left: 1px dashed var(--white);
    border-right: 1px dashed var(--white);
    width: 82px;
    height: 61px;
    border-radius: 10px;
    position: absolute;
    bottom: -20px;
    right: -56px;
    z-index: -1;
}

.onboard-bdr-c {
    width: 50%;
    margin-bottom: -60px;
}

.ob-text-c {
    padding: 40px 0 0 0;
}

.ob-text-c h2 {
    font-size: 23px;
    font-weight: 600;
}

.testimonials-c {
    text-align: center;
    background-color: #001a27;
    background-position: 50% 50%;
}

.tst-text-c {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider-c {
    margin-top: 40px;
    padding: 0 10px;
}

.tst-img-c {
    width: 60px;
    background-color: #ffffff;
    margin-bottom: -25px;
    z-index: 9;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    border-radius: 100%;
    border: 4px solid #001a27;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-box {
    background-color: #ffffff;
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-box-c {
    padding: 0;
    transform: scale(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.swiper-slide {
    padding: 0;
}

.swiper-slide-active .testimonial-box-c {
    transform: scale(1);
}

.tst-button {
    font-size: 20px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 100px;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    transition-duration: 400ms;
    transition-property: color, background-color;
}

.tst-button:hover {
    background-color: var(--white);
    color: var(--blue);
}

.tst-button-c {
    margin-top: 40px;
}

.read-more-link,
.read-close-link {
    text-decoration: underline;
    color: var(--black-2);
}

.read-more-link:hover,
.read-close-link:hover {
    color: var(--black-2);
}

.testimonials-name {
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.blog-box-list-c {}

.blog-box-img-c {
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.blog-box-img-2-c {
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.blog-box-date-c {
    color: var(--blue);
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.blog-box-title-c {
    font-size: 18px;
    color: var(--black-2);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    display: block;
}

.blog-box-text-c {
    color: var(--grey2);
    font-size: 16px;
    line-height: 1.4;
}

.call-to-action-bg-c {
    background: url('../images/bg/cta-bg-new.png');
    background-size: cover;
    border-radius: 15px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    position: relative;
    background-position: 50% 50%;
}

.cta-box-c {
    padding: 20px;
}

.cta-patterns {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 250px;
    height: 250px;
}

footer {
    background-image: linear-gradient(#020d1e, #051731 50%, #051731 60%, #020d1e 100%);
    background-size: auto, cover;
    text-align: left;
    background-position: 50% 50%;
    padding: 20px 0;
}

.logo-img-c {
    margin-bottom: 20px;
    width: 180px;
}

.footer-box-c {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-break {
    background-color: #3f5c6c;
    width: 1px;
    margin-bottom: 20px;
}

.footer-head {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

.footer-icon {
    margin-right: 10px;
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.social-links-c a {
    color: var(--white);
    font-size: 25px;
    margin-right: 15px;
}

.social-links-c a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.footer-top-c {
    border-bottom-color: #3f5c6c;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin-bottom: 20px;
}

.footer-menu-2 li {
    display: inline-block;
    position: relative;
}

.footer-menu-2 li::before {
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    top: 0;
}

.footer-menu-2 li a {
    margin: 0 5px;
    color: var(--white);
    margin-bottom: 0;
}

.footer-menu-2 li a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.footer-menu-2 li:first-child::before {
    content: none;
}

.copyrights-c {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.back-to-top {
    background-color: var(--blue);
    color: var(--white);
    height: 40px;
    width: 40px;
    font-size: 19px;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    margin: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
    border-radius: 100px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.about-top-1 {
    width: 100%;
    margin-top: 20px;
    margin-bottom: -140px;
    border-radius: 10px;
    height: 500px;
    object-fit: cover;
}

.our-story-c {
    background-image: linear-gradient(#020d1e, #051731 50%, #051731 60%, #020d1e 100%);
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
    padding-top: 200px;
    padding-bottom: 120px;
}

.p-focus {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

.sectors-left-c {
    padding: 30px;
    border-radius: 15px;
    margin-top: -120px;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.1);
}

.sectors-left-c img {
    width: 140px;
}

.sectors-right-c {
    padding: 0 30px;
    font-size: 18px;
    font-weight: 500;
}

.sectors-box-list-c {
    padding-top: 60px;
}

.sectors-box-c {
    background-color: #f5f6f7;
    border-radius: 15px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    height: 100%;
}

.sectors-box-c img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.sectors-box-c h4 {
    color: var(--black-2);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.sectors-box-c ul {
    margin: 15px 0;
    padding-left: 15px;
    list-style: disc;
}

.approach-c {
    background-image: linear-gradient(#020d1e, #051731 50%, #051731 60%, #020d1e 100%);
    width: 100%;
    background-size: cover;
    background-repeat: repeat;
}

.approach-list-c {
    position: relative;
    border: 1px solid var(--white);
    padding: 30px;
}

.al-top-left-c {
    position: absolute;
    top: -13px;
    left: -13px;
}

.al-top-right-c {
    position: absolute;
    right: -13px;
    top: -13px;
}

.al-bottom-left-c {
    position: absolute;
    bottom: -13px;
    left: -13px;
}

.al-bottom-right-c {
    position: absolute;
    bottom: -13px;
    right: -13px;
}

.approach-box-c img {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.approach-box-c h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.approach-box-c p {
    color: #858b95;
}

.why-choose-box-c .why-share-icon {
    width: 60px;
    height: 60px;
    margin-top: 20px;
}

.why-choose-box-c {
    background-color: #e9eff3;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-radius: 15px;
    height: 100%;
}

.why-choose-box-c h4 {
    color: #001a27;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left;
    margin-top: -20px;
}

.why-choose-box-c p {
    padding-right: 20px;
}

.why-share-pattern-c {
    width: 150px;
    height: 150px;
}

.service-top-c {
    background-image: linear-gradient(#020d1e, #051731 50%, #051731 60%, #020d1e 100%);
    width: 100%;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-radius: 15px;
    text-align: left;
    align-items: center;
    position: relative;
}

.service-top-c .row {
    position: relative;
    z-index: 1;
}

.service-top-c .img-left-c {
    object-fit: contain;
    border-radius: 15px;
    z-index: 999;
    width: 100%;
}

.service-pattern-c {
    width: 100%;
    position: absolute;
    top: 80px;
    right: -40px;
    z-index: 2;
}

.features-box-list-c {}

.col-features-box-c {
    margin-top: 40px;
}

.features-box-c {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    height: 100%;
    transition-duration: 0.4s;
    transition-timing-function: ease;
    border: solid 2px #cbcbcb;
}

.features-box-c:hover {
    background-color: #0a408f;
    border-color: #0a408f;
}

.features-box-c:hover h4 {
    color: var(--white);
}

.features-box-c:hover p {
    color: #fefefebf;
}

.features-box-c a:hover {
    color: #fefefebf;
}

.feature-image-c {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px;
    margin-top: -50px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
}

.contact-us-top-c .feature-image-c {
    padding: 0;
}

.feature-image-c img {
    width: 40px;
    height: 40px;
}

.feature-image-c svg {
    width: 40px;
    height: 40px;
}

.features-box-c h4 {
    color: #001a27;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.features-box-c p {
    text-align: center;
}

.faq-header .accordion-button {
    background-color: #f5f6f7;
    box-shadow: none;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.2px;
}

.faq-header .accordion-button span {
    padding-right: 20px;
}

.faq-header .accordion-button::after {
    transform: scale(0.8);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-header .accordion-button:not(.collapsed) {
    background-color: #e9eff3;
    color: #212529;
}

.faq-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.col-faq {
    margin-top: 20px;
}

.faq-body {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    background-color: #f5f6f7;
}

.iframe-c {
    width: 100%;
    height: 500px;
    filter: grayscale(100%);
    background-color: var(--white);
}

.iframe-c:hover {
    filter: grayscale(0%);
}

.contact-us-c {
    margin-top: -450px;
}

.contact-us-top-c {
    background-color: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 40px;
    position: relative;
}

.home-form-c {
    border-radius: 30px;
    border: 1px solid var(--white);
    padding: 30px;
}

.home-form-c input {
    border-radius: 100px;
    border: 1px solid var(--white);
    background: none;
    color: var(--white);
}

.home-form-c textarea {
    border-radius: 20px;
    border: 1px solid var(--white);
	color: var(--white);
    background: none;
}

.home-form-c input::placeholder,
.home-form-c textarea::placeholder {
    color: var(--white);
    opacity: 0.2;
}

.home-form-c input:focus,
.home-form-c textarea:focus {
    outline: none;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--black-2);
}

.contact-form-c {
    border-radius: 30px;
    padding: 30px;
    background-color: #e9eff3;
}

.contact-form-c input {
    border-radius: 100px;
    border: 1px solid var(--white);
    background: var(--white);
}

.contact-form-c textarea {
    border-radius: 20px;
    border: 1px solid var(--white);
    background: var(--white);
}

.contact-form-c input::placeholder,
.contact-form-c textarea::placeholder {
    color: var(--black-2);
    opacity: 0.2;
}

.contact-form-c input:focus,
.contact-form-c textarea:focus {
    outline: none;
    border: 1px solid #001a27;
    background: var(--white);
    color: var(--black-2);
}

.contact-block-c i {
    font-size: 32px;
    color: #001a27;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-block-c a,
.contact-block-c p {
    color: var(--black-2);
    font-size: 18px;
    font-weight: 600;
}

.contact-block-c a:hover {
    color: var(--grey5);
}

.contact-block-c .d-flex {
    margin-bottom: 30px;
}

.form-field input,
.form-field textarea {
    padding: 9px;
    box-shadow: none;
    outline: none;
}

.form-field textarea {
    min-height: 140px;
    resize: none;
}

.contact-form-c label {
    color: #777771;
    font-size: 12px;
    font-family: inherit;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-c .required-c {
    color: #E04562;
}

.form-field {
    margin-bottom: 30px;
}

.lottie-c {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.blank-template-c p {
    margin-bottom: 20px;
}

#contact_form .alert {
    margin-top: 10px;
}

.g-recaptcha {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.wsp-container h2 {
    margin-bottom: 20px;
}

.wsp-category-title,
.wsp-container li {
    margin-bottom: 10px;
    display: list-item;
}

.wsp-container ul {
    list-style: revert;
}

.blog-img-c {
    margin-top: -100px;
    z-index: 999;
    border-radius: 15px;
    margin-bottom: 40px;
}

.break-1 {
    border-bottom-color: #4b5c65;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.pagination {
    margin-top: 20px;
}

.pagination span.current {
    background-color: #0a408f;
    padding-top: 5px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 5px;
    margin-top: 3px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
    border-color: #ffffff;
    color: #ffffff;
    font-size: 11px;
}

.pagination a {
    background-color: #4b5c65;
    padding-top: 5px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 5px;
    margin-top: 3px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 11px;
}

.menu-icon {
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    height: 4px;
    background-color: var(--white);
    border-radius: 2px;
}

#slideMenu {
    z-index: 999999;
}

.offcanvas__close button {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.offcanvas-body ul li a {
    color: var(--white);
    display: flex;
    border-bottom: 1px solid var(--white);
    padding: 10px 0;
}

.offcanvas-body>ul>li>a {
    justify-content: space-between;
}

.offcanvas-body>ul>li:last-child>a {
    border-bottom: 0;
}

.offcanvas-body .dropdown-icon-area i {
    transition: transform 0.3s ease;
}

.offcanvas-body .revert-c .dropdown-icon-area i {
    transform: rotate(180deg);
}

.offcanvas-body ul .sub-menu-c {
    display: none;
}

.offcanvas-body ul .sub-menu-c.show-c {
    display: block;
}

.offcanvas-body ul .sub-menu {
    font-size: 13px;
}

#slideMenu::after {
    content: "";
    background: linear-gradient(#042b65, #051c3d 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pcy-tbl {
  display: flex;
  flex-direction: column;
  border: 1px solid #dee2e6;
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
}
.pcy-tbl p{
    display: none;
}
.pcy-tbl-row {
  display: flex;
  border-bottom: 1px solid #dee2e6;
}

.pcy-tbl-row:last-child {
  border-bottom: 0;
}

.pcy-tbl-cell {
  padding: 12px 15px;
  border-right: 1px solid #dee2e6;
  word-break: break-word;

}

.p-50-flex .pcy-tbl-cell {
    flex: 0 0 50%;
}

.p-30-flex .pcy-tbl-cell {
    flex: 0 0 30%;
}

.p-25-flex .pcy-tbl-cell {
    flex: 0 0 25%;
}

.pcy-tbl-cell:last-child {
  border-right: 0;
}

.pcy-tbl-row.header {
  font-weight: bold;
}

@media (max-width: 1200px) {
    .lottie-c {
        position: relative;
        transform: translateY(0);
        top: 0;
    }

    .inner-header {
        height: auto;
        padding-bottom: 50px;
    }

    .lottie-c {
        padding-top: 50px;
    }

    .contact-us-c {
        margin-top: -100px;
    }

    .pcy-tbl {
        font-size: 12px;
    }
}

@media (max-width: 789px) {
    .contact-form-c {
        margin: 0 -30px;
    }

    .wsp-container {
        padding: 0 20px;
    }
}

.gt-masonry {
  column-count: 3;
  /* number of masonry columns */
  column-gap: 20px;
  /* space between columns */
}

.masonry-item {
  display: inline-block;
  /* items flow into columns */
  margin-bottom: 20px;
  width: 100%;
  /* let it scale to column width */
}

.gt-masonry img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (max-width: 992px) {
  .gt-masonry {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gt-masonry {
    column-count: 1;
  }
}

.gt-epic-gallery-item {
  margin-bottom: 30px;
}

.gt-epic-gallery-item.gt-style-2 {
  margin-top: 30px;
}

.gt-epic-gallery-item .gt-gallery-iamge {
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.gt-epic-gallery-item .gt-gallery-iamge img {
  width: 100%;
  height: 100%;
}

.gt-epic-gallery-item .gt-gallery-iamge .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--gt-white);
  z-index: 999;
  font-size: 40px;
}

.gt-epic-gallery-item .gt-gallery-iamge:before,
.gt-epic-gallery-item .gt-gallery-iamge:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gt-epic-gallery-item .gt-gallery-iamge:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}

.gt-epic-gallery-item:hover .gt-gallery-iamge .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.gt-epic-gallery-item:hover .gt-gallery-iamge:before,
.gt-epic-gallery-item:hover .gt-gallery-iamge:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}