:root {
    --text-white: #ffffff;
    --text-black: #000000;
    --light-green: #a9db93;
    --dark-blue: #162E67;
    --green: #3b9813;
    --bg-green: #3b9813;
    --bg-white: #ffffff;
    --light-gray: #d1d1d1;
    --gray: #cccccc;
    --dark-gray: #a9a9a9;
    --text-color: #F5F5F0;
    --dark-blue: #0E202C;
    --light-antiquewhite: #fff7e1;
    --dark-yellow :#e6b938;
}

body {
    font-family: 'Montserrat' !important;
    font-weight: 400 !important;
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/FontAwesome6Brands-Regular.woff") format("woff"),
        url("../fonts/FontAwesome6Brands-Regular.woff2") format("woff2"),
        url("../fonts/FontAwesome6Brands-Regular.eot") format("eot"),
        url("../fonts/FontAwesome6Brands-Regular.ttf") format("ttf"),
        url("../fonts/FontAwesome6Brands-Regular.svg") format("svg");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../fonts/FontAwesome6Free-Solid.woff") format("woff"),
        url("../fonts/FontAwesome6Free-Solid.woff2") format("woff2"),
        url("../fonts/FontAwesome6Free-Solid.eot") format("eot"),
        url("../fonts/FontAwesome6Free-Solid.ttf") format("ttf"),
        url("../fonts/FontAwesome6Free-Solid.svg") format("svg");
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Montserrat-Regular.woff") format("woff"),
        url("../fonts/Montserrat-Regular.woff2") format("woff2"),
        url("../fonts/Montserrat-Regular.eot") format("eot"),
        url("../fonts/Montserrat-Regular.ttf") format("ttf"),
        url("../fonts/Montserrat-Regular.svg") format("svg");
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Montserrat-Bold.woff") format("woff"),
        url("../fonts/Montserrat-Bold.woff2") format("woff2"),
        url("../fonts/Montserrat-Bold.eot") format("eot"),
        url("../fonts/Montserrat-Bold.ttf") format("ttf"),
        url("../fonts/Montserrat-Bold.svg") format("svg");
}

@font-face {
    font-family: 'Geologica Roman';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Geologica-Regular.woff") format("woff"),
        url("../fonts/Geologica-Regular.woff2") format("woff2"),
        url("../fonts/Geologica-Regular.eot") format("eot"),
        url("../fonts/Geologica-Regular.ttf") format("ttf"),
        url("../fonts/Geologica-Regular.svg") format("svg");
}

h1, h2, h3, h4, h5, h6 {
    word-break: break-all;
}

.mtb-12 {
    margin: 12rem 0;
}

.mtb-9 {
    margin: 9rem 0;
}

.mt-84 {
    margin-top: 3rem;
}

.mb-8_imp {
    margin-bottom: 8rem;
}

.mb-12_imp {
    margin-bottom: 12rem;
}

.ptb-9 {
    padding: 9rem 0;
}

.p-2_imp {
    padding: 2rem;
}

.pt-20_imp {
    padding-top: 20rem !important;
}

.p-tb_20 {
    /* padding: 20rem 0; */
    padding: 20rem 0 16rem 0;
}

.font-2-75 {
    font-size: 2.75rem;
}

.font-2-5 {
    font-size: 2.5rem;
}

.font-family-geologica {
    font-family: 'Geologica Roman' !important;
    font-weight: 400 !important;
}

.theme_btn {
    color: var(--text-white) !important;
    border-color: var(--text-black) !important;
    max-width: fit-content;
    background: linear-gradient(180deg, var(--bg-green), var(--light-green)) !important;
    border: 0px !important;
    padding: 8px 8px;
    font-weight: 600;
}

.text-color {
    color: var(--text-color);
}

.text-black_imp {
    color: var(--text-black) !important;
}

.bg_dark-blue {
    background-color: var(--dark-blue);
}

.bg_light-antiquewhite {
    background-color: var(--light-antiquewhite);
}

.icon-width {
    width: 100px;
}

.icon-width:hover {
    animation: topBottomAnimation 1.5s infinite linear;
}

@keyframes topBottomAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.redactor-content_font {
    font-size: 28px;
    line-height: 40px;
}

/** START OF : Header **/
.off-canvas .off-canvas-nav .nav-col .top-level-heading a {
    font-size: 5rem;
}
/** END OF : Header **/

/** START OF : Index **/
.builder-block_title {
    font-weight: 600;
    background: linear-gradient(to right, var(--bg-green) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.builder-block_list-group {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.builder-block_list-group li {
    display: flex;
    margin-bottom: 8px;
}

.builder-block_list-group li strong {
    font-weight: 600;
}

.builder-block_list-group li .builder-block_item {
    margin-left: 4px;
}

.builder-block_list-group_inner {
    /* list-style: disc; */
    font-size: 20px;
    width: 100%;
    max-width: 839px;
    margin: 0 0 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
}

.builder-block_list-group_inner li strong {
    position: relative;
    display: block;
}

.builder-block_list-group_inner li {
    padding-left: 21px;
}

.builder-block_list-group_inner li strong::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 10px;
    left: -13px;
    background-color: var(--text-black);
    border-radius: 50%;
}
/** END OF : Index **/

/** START OF : About **/
.about .h1 {
    color: var(--text-color);
}
/** END OF : About **/

/** START OF : Project Enquiry **/
.fui-checkbox_design input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.fui-checkbox_design label {
    position: relative;
    cursor: pointer;
}

.fui-checkbox_design label:before {
    content:'';
}

.fui-checkbox_design input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: 13px;
    width: 8px;
    height: 16px;
    border: solid var(--text-white);
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

.builder-block--contact-form .fui-checkbox input:checked+label:before {
    background: linear-gradient(180deg, var(--bg-green), var(--light-green)) !important;
}
/** END OF : Project Enquiry **/

/* STATR OF : About */
.our-expertise-include {
    border: 1px solid var(--gray);
    height: 100%;
}

.our-expertise-include .rack-card__title,
.our-expertise-include .rack-card__body {
    color: var(--text-color);
}

.our-approach_img {
    border-radius: 15px;
}

.our-approach_list .our-approach_ltem {
    position: relative;
    color: var(--text-color);
    display: flex;
    padding-left: 28px;
}

.our-approach_list .our-approach_ltem::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 6px;
    left: -8px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.our-approach_list .our-approach_ltem::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 8px;
    left: 0;
    background-color: var(--text-color);
}

.our-approach_list .our-approach_ltem:last-child::after {
    background-color: transparent;
}

.our-approach_list .our-approach_ltem .our-approach_ltem_number {
    margin-right: 40px;
    font-size: 3rem;
    font-weight: 600;
}

.accordion_inner .accordion_title {
    font-size: 1.75rem;
    line-height: 1.5;
}

.accordion_inner .accordion_content {
    display: none;
}

.accordion_inner .expanded .accordion_title-none {
    display: none;
}

.accordion_inner .accordion_title .accordion_arrow {
    cursor: pointer;
    display: inline-block;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 4px;
    padding: 4px 12px;
}

.accordion_inner .accordion_title .accordion_btn {
    display: block;
    text-align: center;
    margin-top: 16px;
}
/* END OF : About */

/* START OF : Web Design Development */
.team-developer_heading {
    position: relative;
    z-index: 9;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.team-developer_heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    border-radius: 50%;
    background-color: var(--dark-yellow);
    z-index: -1;
    padding: 440px 0;
}

.team-developer_heading h2 {
    max-width: 600px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 4.25rem;
}

.framework_content {
    position: relative;
    z-index: 9;
}

.our-expertise-include img,
.web-design-development_inner .web-design-development_inner_des img {
    margin: 0 auto;
}

.our-expertise-include h3,
.web-design-development_inner .web-design-development_inner_des h3 {
    font-size: 2.4rem;
}

.web-design-development_inner .web-design-development_inner_des p {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.web-design-development_accordion .accordion_title .accordion_btn .accordion_arrow {
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
}
/* END OF : Web Design Development */

/** START OF : Footer **/
.site-footer {
    background: linear-gradient(174deg, var(--text-white), var(--light-green)) !important;
}

.footer-col h3 {
    font-size: 5rem;
}

.quick-link {
    text-align: center;
}

.quick-link .quick-link_list .quick-link_item {
    display: inline-block;
}

.quick-link .quick-link_list .quick-link_list_pipe {
    display: inline-block;
    margin: 0 8px;
    color: var(--text-black);
}

.quick-link .quick-link_list .quick-link_item .quick-link_link_font {
    font-size: 1.6rem;
    color: var(--text-black) !important;
}

.footer-bottom_heading .footer-bottom_text {
    display: inline-block;
}
/** END OF : Footer **/

/* @media (min-width: 1601px) and (max-width: 1919px) {
    .team-developer_heading::before {
        padding: 0;
        width: 720px;
        height: 720px;
    }

    .team-developer_heading {
        max-width: 720px;
        padding: 0 56px;
    }
} */

@media (min-width: 1366px) and (max-width: 1919px) {
    .team-developer_heading::before {
        padding: 0;
        width: 620px;
        height: 620px;
    }

    .team-developer_heading {
        max-width: 620px;
        padding: 0 56px;
    }
}

@media (min-width: 1200px) and (max-width: 1365px) {
    .team-developer_heading::before {
        padding: 0;
        width: 540px;
        height: 540px;
    }

    .team-developer_heading {
        max-width: 540px;
        padding: 0 56px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-developer_heading::before {
        border-radius: 240px;
        padding: 300px 0;
    }

    .team-developer_heading h2 {
        padding: 0 36px;
    }

    .footer-bottom_heading {
        font-size: 2.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .h1, .h1-mega, h1 {
        /* font-size: 6rem; */
        font-size: 6.4rem;
    }

    .builder-block--contact-form .fui-legend, .builder-block--rack .rack-card__title, .h2, .redactor-content blockquote, h2 {
        font-size: 2.9rem;
    }

    .our-expertise-include h3, 
    .web-design-development_inner .web-design-development_inner_des h3 {
        font-size: 2.2rem;
    }

    .team-developer_heading::before {
        border-radius: 100px;
        padding: 300px 0;
    }

    .team-developer_heading h2 {
        padding: 0 30px;
    }

    .footer-bottom_heading .footer-bottom_text {
        display: block;
    }

    .footer-bottom_heading .footer-bottom_text .footer-pipe {
        display: none;
    }
}

@media (min-width: 568px) and (max-width: 767px) {
    .h1-mega {
        font-size: 4.75rem;
    }

    .team-developer_heading h2 {
        font-size: 3.75rem;
    }
}

@media (min-width: 320px) and (max-width: 567px) {
    .h1-mega {
        font-size: 4rem;
    }

    .xxs-font {
        font-size: 27px;
    }

    .theme_btn {
        padding: 8px 0;
        font-size: 15px;
    }

    .footer-bottom_heading {
        font-size: 1.8rem;
    }

    .responsive-text.font-2-75 {
        font-size: 2.25rem;
    }

    .responsive-text.font-2-5 {
        font-size: 2rem;
    }

    .site-footer__copyright p {
        font-size: 1.48rem;
    }
}

@media (min-width: 280px) and (max-width: 319px) {
    .h1-mega {
        font-size: 3.7rem;
    }

    h2 {
        /* font-size: 2.4rem; */
        font-size: 2.3rem;
    }

    .theme_btn {
        /* font-size: 2rem; */
        padding: 8px 0;
        font-size: 15px;
    }

    .footer-bottom_heading {
        font-size: 1.8rem;
    }

    .responsive-text.font-2-75 {
        font-size: 2rem;
    }

    .responsive-text.font-2-5 {
        font-size: 1.75rem;
    }

    .site-footer__copyright p {
        font-size: 1.35rem;
    }
}

@media (min-width: 1272px) {
    .xl:mt-[2.25rem] {
        margin-top: 2.25rem !important;
    }
}

@media (min-width: 768px) {
    .h_title {
        font-size: 4rem;
    }

    /* .sm_w-22 {
        width: 22% !important;
        margin: 0 8px;
    } */
}

/* @media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
} */
 
@media (max-width: 767px) {
    .ptb-9 {
        padding: 6rem 0;
    }

    .p-tb_20 {
        padding: 14rem 0 8rem 0;
    }

    .pt-96 {
        padding-top: 14rem !important;
    }

    .xs-pr-24 {
        padding-right: 0 !important;
    }

    .xs-mt-0 {
        margin-top: 0 !important;
    }

    .xs-mb-2 {
        margin-bottom: 2rem;
    }

    .xs-mb-36 {
        margin-bottom: 6rem !important;
    }

    .mtb-9 {
        margin: 5rem 0;
    }

    .h1-mega {
        margin-bottom: 2rem !important;
    }

    .mtb-12 {
        margin: 6rem 0;
    }

    .mb-48 {
        margin-bottom: 6rem !important;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .builder-block_pb {
        padding-bottom: 0 !important;
    }

    .builder-block_img {
        margin-bottom: 0 !important;
    }

    .our-approach_list .our-approach_ltem {
        padding-left: 20px;
    }

    .our-approach_list .our-approach_ltem .our-approach_ltem_number {
        margin-right: 20px;
    }

    .team-developer_heading::before {
        display: none;
    }

    .team-developer_heading h2 {
        padding: 16px 16px;
        margin: 0;
        background-color: var(--dark-yellow);
        border-radius: 16px;
    }

    .footer-bottom_heading .footer-bottom_text,
    .footer-bottom_heading .footer-bottom_link {
        display: block;
    }

    .footer-bottom_heading .footer-bottom_text .footer-pipe,
    .footer-bottom_heading .footer-bottom_link .footer-pipe {
        display: none;
    }

    /* .footer-bottom_heading .footer-bottom_link {
        display: block;
    } */

    .footer-bottom_heading {
        margin-bottom: 3rem !important;
    }

    .footer-bottom_heading .footer-bottom_text,
    .footer-bottom_heading .footer-bottom_link {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    /* .xs-mb-36 {
        margin-bottom: 0 !important;
    } */

    .xxs-3b-36 {
        margin-bottom: 0 !important;
    }

    .gap-xxs {
        row-gap: 3.2rem !important;
    }

    .xxs-text-center {
        text-align: center;
    }

    .builder-block_mb-0 {
        margin-bottom: 0 !important;
    }

    
}

@media (max-width: 567px) {
    .builder-block_list-group_inner {
        /* padding-left: 32px; */
        grid-template-columns: 1fr;
    }

    .team-developer_heading h2 {
        font-size: 3rem;
    }

    .footer-bottom_heading {
        font-weight: 600;
        /* margin-bottom: 3rem !important; */
    }

    .footer-bottom_heading .footer-bottom_text,
    .footer-bottom_heading .footer-bottom_link {
        /* margin-bottom: 1.5rem !important; */
    }

    .quick-link .quick-link_list .quick-link_item {
        display: block;
    }

    .quick-link .quick-link_list .quick-link_list_pipe {
        display: none;
    }

    .site-footer__copyright p {
        font-weight: 600;
        text-align: center;
    }
}