@font-face {
    font-family: 'Cera Pro';
    src: url('../media/fonts/CeraPro-Regular.eot');
    src: local('Cera Pro Regular'), local('CeraPro-Regular'), url('../media/fonts/CeraPro-Regular.eot?#iefix') format('embedded-opentype'), url('../media/fonts/CeraPro-Regular.woff') format('woff'), url('../media/fonts/CeraPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

body,
input,
button,
textarea {
    font-family: Cera Pro, Arial, Helvetica, sans-serif;
}

ul,
ol,
li,
a {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: inherit;
}

h2 {
    flex-basis: 100%;

    font-size: 35px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.container {
    max-width: 1130px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

a.btn {
    display: inline-block;
    padding: 5px 14px 7px;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 23px;
    text-transform: lowercase;
    color: #FFFFFF;
    background-color: #00A276;
    border-radius: 4px;
    transition: background-color ease .4s;
}

a.btn:hover {
    background-color: var(--color-main-hover);
    color: #fff;
}

.slick-dots {
    width: 100%;
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li {
    width: 13px;
    height: 13px;
    margin: 0 7px;
    cursor: pointer;
    list-style: none;
    flex-shrink: 0;
}

.slick-dots button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 13px;
    height: 13px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    content: '';
    background-color: #E5E5E5;
}

.slick-dots li.slick-active button:before {
    background-color: #4FA9B6;
}

.uppercase {
    display: inline-block;
    text-transform: uppercase;

}

.underline {
    position: relative;
}

.underline::after {
    position: absolute;
    content: "";
    width: 100%;
    background-color: #000000;
    height: 1px;
    bottom: 0px;
    left: 0;
}

.title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
}

.buttons {
    margin-bottom: 37px;
}

.buttons .container {

}

.buttons__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 540px;
    margin: 0 auto 50px;
    clear: both;
}

.button__item {
    width: 48%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 18px;
    height: 100%;
}


.button__item a {
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
}
.button__item:nth-of-type(3) a {
    line-height: 18px;
    padding-bottom: 5px;
    padding-top: 8px;
}

a.btn-white {
    background: #FFFFFF;
    border: 1px solid #000000;
    color: #000000;
}

a.btn-white:hover {
    background-color: #dcdcdc;
    color: #014380;
}