@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap');

.fwb-ensans {
    font-family: "Encode Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.fwn-inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #F24654;
    --custom-black: #161C2D;
    --color-white: #fff;
    --light-background: #F9F7EC;
}

a {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-optical-sizing: auto;
    color: var(--primary-color);
    font-family: "Inter", sans-serif;
}

dl,
ol,
ul {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Encode Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

hr {
    border-color: #161C2D33;
}

:focus-visible,
select:focus {
    outline: none;
}

.secondary-container {
    margin: 0 100px;
}

.container {
    max-width: 80%;
}

@media (max-width: 1140px) {
    .container {
        width: 80%;
        padding: 0 15px !important;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        width: auto !important;
        margin: 0 25px;
        padding: 0 !important;
    }

    .secondary-container{
        margin: 0 25px;
    }

    .row{
        margin: 0;
    }
    
}

.text-default {
    opacity: 0.7;
    color: var(--custom-black);
}

.c-ps-30 {
    padding-left: 1.875rem;
}

.c-pe-30 {
    padding-right: 1.875rem;
}

.c-gap-80 {
    gap: 80px;
}

/* logo */
header.header .dark-logo,
header.header .white-logo,
footer .footer-top .footer-logo {
    width: 250px;
    height: 40px;
}

/* Common button styles */
.button-primary {
    height: 60px;
    display: flex;
    font-size: 18px;
    overflow: hidden;
    line-height: 18px;
    padding: 8px 30px;
    border-radius: 8px;
    position: relative;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
}

.button-primary span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.button-primary i {
    margin-top: 3px;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.button-primary:hover {
    background-color: var(--color-white);
    color: var(--custom-black);
    border-color: var(--primary-color);
    animation-timing-function: ease-out;
    animation-duration: 200ms;
}

.button-primary:hover span {
    transform: translateX(-5px);
}

.button-primary:hover i {
    transform: translateX(5px);
}

.button-secondary {
    color: var(--color-white);
    display: flex;
    overflow: hidden;
    padding: 8px 20px;
    border-radius: 8px;
    position: relative;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: var(--custom-black);
    border: 2px solid var(--custom-black);
}

/* SECTION BACGROUND COLORS START*/
.cat_partners,
.breadcrumb-sec,
.service-catList__,
.news-blog-section,
.related_areas_nearby,
.discover_hire-service,
.ContactUs_afh .col-left,
.category__content .content__right {
    background-color: var(--light-background);
}

.section-faq_cta,
.footer-top {
    background-color: var(--custom-black);
}

i.fa-circle-check {
    color: #00B67A;
}

/* FOOTER STLES */
.footer-top {
    padding: 80px 0;
}

.footer-top img {
    width: 100%;
}

.footer-top .footer-logo_division {
    margin-bottom: 40px;
}

.footer-top .social_icons {
    display: flex;
    margin-top: 40px;
    justify-content: space-evenly;
}

.social_icons img {
    width: 24px;
    height: auto;
}

.social_icons a {
    width: 40px;
    height: 40px;
    display: flex;
    margin-right: 10px;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background-color: #FFFFFF1A;
}

.social_icons a:hover {
    background-color: #FF22661A;
}

.social_icons a:hover svg path {
    fill: var(--primary-color);
}

.social_icons div:last-of-type {
    margin-right: 0;
}

.footer-top p {
    font-size: 16px;
    line-height: 22.4px;
}

.footer-top h4 {
    font-size: 16px;
    line-height: 17.6px;
    margin-bottom: 40px;
}

.footer-top .footer_links a {
    display: block;
    font-size: 16px;
    line-height: 22.4px;
    margin-bottom: 12px;
}

.footer-top .footer_links a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    opacity: 0.9;
    padding: 20px 0;
    background-color: var(--custom-black);
}

.footer-bottom div a {
    margin: 15px;
}

/* Table Design */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    caption-side: top;
    display: block;
    overflow: auto;
    height: unset !important;
}
  
table th, td {
    padding: 16px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

table th {
    background-color: var(--light-background);
    font-weight: bold;
}

table th[colspan="3"] {   /* Style the title and subtitle (optional) */
    text-align: center;
    font-size: 1.1em;
    padding: 16px;
}

table caption {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    color: var(--custom-black);
    border: 1px solid #D9D9D9;
}

table tr {
    border: 1px solid #D9D9D9;
}