:root {
    --color-green: #00AE44;
    --color-green-main: #00993C;
    --color-green-dark: #046E2E;
    --color-green-alt: #3BBD56;
    --color-black: #000000;
    --color-white: #fff;
    --color-grey: #F3F3F3;
    --base-transition: all .2s ease-in-out;
    --base-green-gradient:  linear-gradient(270deg, #00993C 43.03%, rgba(255, 255, 255, 0) 99.08%);
}

body{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-black);
}
img{
    max-width: 100%;
}
.pos-relative{
    position: relative;
}

section{
    margin-bottom: 45px;
}
.mb-0{margin-bottom: 0}
.mt-20{margin-top: 20px}
.mb-20{margin-bottom: 20px}
.mb-30{margin-bottom: 30px}
.row-gap{row-gap: 30px;}
.row-gap-20{row-gap: 20px;}
.align-center{align-items: center;}
ol, ul {
    padding-left: 25px;
}

.h1, h1{
    font-weight: 700;
    font-size: 38px;
    line-height: 43px;
}
.h3, h3,
.h2, h2{
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
}
.btn{
    display: flex;
    padding: 24px;
    background: var(--color-white);
    text-align: center;
    justify-content: center;
    border-radius: 19px;
    color: var(--color-green-main);
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    text-decoration: none;
    transition: var(--base-transition);
}
.btn:hover{
    background: var(--color-green-dark);
    color: var(--color-white);
}
.text-center{text-align: center}
a.link-more{
    color: var(--color-black);
    text-decoration: underline;
    text-align: center;
}
a{

}
a:hover{

}
@media only screen and (min-width: 992px){
    .h3, h3{
        font-size: 20px;
        line-height: 24px;
    }
}
@media only screen and (min-width: 1280px){
    .h1, h1, .h2, h2{
        font-size: 48px;
        line-height: 60px;
    }
    body{
        font-size: 16px;
        line-height: 22px;
    }
    .btn{
        padding: 32px 89px;

    }
}
@media only screen and (min-width: 1537px){
    .h3, h3{
        font-size: 32px;
        line-height: 36px;
    }
}
