* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F6F6F6;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    color: #126873;
    overflow-x: hidden;
}

body.hidden {
    overflow: hidden;
}

.container {
    max-width: 1680px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 40px;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 84px;
    line-height: 130%;
    font-weight: 600;
}

h2 {
    font-size: 48px;
    line-height: 130%;
    font-weight: 500;
}

h2 span {
    display: block;
    color: #80C315;
}

h3 {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    color: #024149;
}

h3 span {
    display: block;
    color: #80C315;
}

h4 {
    font-size: 20px;
    line-height: 140%;
    font-weight: 500;
}

h5 {
    font-size: 28px;
    line-height: 140%;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    line-height: 120%;
    font-weight: 500;
}

p {
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
}

figure {
    margin: 0;
}

img {
    object-fit: cover;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 36px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 24px;
    }
    h1 span,
    h2 span {
        padding: 0 20px;
    }
    p {
        font-size: 18px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1200px;
    }
    h1 {
        font-size: 72px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 768px;
    }
    h1 {
        font-size: 52px;
    }
    h4 {
        font-size: 16px;
    }
    h1 span,
    h2 span {
        padding: 0 12px;
    }
    p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 16px;
    }
    h1 span,
    h2 span {
        padding: 0 12px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 0 0 0 24px;
    border: 6px solid transparent;
    border-radius: 40px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-dark {
    background: #063338;
    color: #FFFFFF;
}

.btn-primary {
    background: #C2F96E;
    border: 8px solid transparent;
    color: #024149;
}

.btn-large {
    max-width: max-content;
    width: 100%;
    height: 68px;
    font-size: 20px;
    padding: 0 0 0 32px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-dark .btn-icon {
    background: #FFFFFF;
    color: #063338;
}

.btn-primary .btn-icon {
    background: #063338;
    color: #FFFFFF;
}

.btn-large .btn-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
}

.btn-icon svg {
    width: 24px;
    height: 24px;
}

.btn-large .btn-icon svg {
    width: 28px;
    height: 28px;
}

.btn:hover .btn-icon {
    transform: rotate(45deg);
}

.btn-primary:hover {
    background: #063338;
    border: 8px solid #C2F96E;
    border-radius: 400px;
    color: #FFFFFF;
}

.btn-dark:hover {
    background: #FFFFFF;
    border: 8px solid #063338;
    border-radius: 400px;
    color: #024149;
}

@media (max-width: 1440px) {
    .btn {
        font-size: 16px;
    }
    .btn span {
        font-size: 16px;
    }
    .btn-large {
        padding: 0 0 0 25px;
        font-size: 18px;
    }
    .btn-large span {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .btn {
        padding: 0 0 0 16px;
    }
    .btn-large {
        padding: 0 0 0 24px;
    }
}


.breadcrumbs-container{
    padding-bottom: 20px;
}

.breadcrumbs-container .breadcrumbs{
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #94A3B8;
}

.breadcrumbs-container .breadcrumbs a{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #94A3B8;
}

.breadcrumbs-container .breadcrumbs .breadcrumb-current{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #80C315;
}

@media (max-width: 1440px){
    .breadcrumbs-container .breadcrumbs{
        font-size: 18px;
    }

    .breadcrumbs-container .breadcrumbs a{
        font-size: 18px;
    }

    .breadcrumbs-container .breadcrumbs .breadcrumb-current{
        font-size: 18px;
    }
}