:root {
    --primary: #008F8C;
    --secondary: #16335D;
    --light-grey: #F7F7F7;
    --cream: #FCF7F3;
    --navbar-margin: 101px;
    --navbar-height-mobile: 123px;
    --scroll: 0;
}

section {
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-feature-settings: 'clig' off, 'liga', off;
    font-weight: 300;
    color: var(--secondary);
    padding-top: var(--navbar-margin);
    scroll-behavior: smooth;
}

strong,
b {
    font-weight: 700 !important;
}

h1,
.h1 {
    font-size: 66px;
    font-weight: 300;
    line-height: 77px;
}

h2.xl,
.h2.xl {
    font-size: 48px;
    font-weight: 600;
    line-height: 61px;
}

h2,
.h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 600;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

b {
    font-weight: 600;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.t-primary {
    color: var(--primary);
}

.t-secondary {
    color: var(--secondary);
}

.t-light-grey {
    color: var(--light-grey);
}

.t-cream {
    color: var(--cream);
}

.b-primary {
    border: 1px solid var(--primary);
}

.btn {
    border-radius: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    width: fit-content;
    height: fit-content;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}

.btn.outline-dark {
    border: 1px solid var(--secondary);
    background: transparent;
}

.btn.outline-dark:hover {
    background: var(--secondary);
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.btn.outline-light {
    border: 1px solid #fff;
    color: white;
    background: transparent;
}

.btn.outline-light:hover {
    background: white;
    color: var(--secondary);
    transition: all 0.2s ease-in-out;
}

.btn.primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.btn.primary:hover {
    background: transparent;
    color: var(--primary);
    transition: all 0.2s ease-in-out;
}

.btn.secondary {
    background: var(--secondary);
    color: #fff;
}

.btn.secondary:hover {
    background: var(--primary);
    transition: all 0.2s ease-in-out;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

.bg-light-grey {
    background-color: var(--light-grey) !important;
}

.arrows-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    pointer-events: none;
}

.arrows-wrapper button {
    background-color: transparent;
    border: none;
    pointer-events: all;
}

ul.no-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in.active {
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.loader {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.414);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.loading {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.section-services.news {
    background: white !important;
    padding-top: 0px !important;
}

.section-services.news .services-wrapper {
    margin: 0px !important;
}

.section-services.news .service {
    color: var(--secondary) !important;
    border-top: 1px solid rgba(22, 51, 93, 0.4);
    ;
    border-bottom: 1px solid rgba(22, 51, 93, 0.4);
    ;
}

.section-services.news .service:hover {
    color: white !important;
}

.posts-loader {
    height: 6px;
    border-radius: 10px;
    width: 130px;
    --c: no-repeat linear-gradient(var(--primary) 0 0);
    background: var(--c), var(--c), var(--secondary);
    background-size: 60% 100%;
    animation: l16 3s infinite;
    display: none;
    transition: all 0.2s ease-in-out;
    margin: 50px auto 0px;
}

.posts-loader.show {
    display: block;
    transition: all 0.2s ease-in-out;
}


@keyframes l16 {
    0%   {background-position:-150% 0,-150% 0}
    66%  {background-position: 250% 0,-150% 0}
    100% {background-position: 250% 0, 250% 0}
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        transform: translateY(40px);
    }

    to {
        transform: translateY(0px);
    }
}

@media screen and (max-width: 992px) {

    h1,
    .h1 {
        font-size: 38px;
        line-height: 45px;
    }

    h2.xl,
    .h2.xl {
        font-size: 48px;
        line-height: 61px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 40px;
    }

    h3,
    .h3 {
        font-size: 30px;
        line-height: 100%;
    }

    h4,
    .h4 {
        font-size: 24px;
        line-height: 34px;
    }
}