@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../font/Gilroy-Regular.woff2') format('woff2'),
        url('../font/Gilroy-Regular.woff') format('woff'),
        url('../font/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../font/Gilroy-Bold.woff2') format('woff2'),
        url('../font/Gilroy-Bold.woff') format('woff'),
        url('../font/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
        url('../font/Gilroy-Extrabold.woff2') format('woff2'),
        url('../font/Gilroy-Extrabold.woff') format('woff'),
        url('../font/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:focus {
    outline: -webkit-focus-ring-color auto 0;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #262D2E;
    background-color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* header -------------------------*/
.logo img {
    width: 40px;
    margin-right: 10px;
}

.logo h2 {
    font-size: 18px;
    font-weight: 700;
}

.logo span {
    color: #FFD62C;
}

.header__contact {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
            text-align: right;
}

.header__contact img {
    width: 25px;
    margin-right: 10px;
}

.header__contact h2 {
    font-size: 16px;
}

.header__contact a {
    font-size: 18px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header__contact a:hover {
    color: #7F60F8;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
/* about ---------------------------------------*/
.about {
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.about__content {
    padding-top: 150px;
    padding-bottom: 250px;
}

.about__content > * {
    margin-bottom: 10px;
}

.about__content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #7F60F8;
}

.about__content h1 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 40px;
}

.about__content img {
    width: 50px;
    margin-right: 10px;
}

.about__content p {
    font-size: 16px;
}

.callback-form h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.callback-form input[type=tel] {
    font-size: 16px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px 0 0 3px;
    padding: 15px;
    padding-left: 60px;
    margin-left: 10px;
    margin-right: 0;
    background-image: url(../img/clarity_phone-handset-solid.png);
    background-repeat: no-repeat;
    background-position: 20px center;
}

.custom-button {
    position: relative;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    background: #FFD62C;
    padding: 15px 0;
    border: none;
    border-radius: 0 3px 3px 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    z-index: 1;
}

.custom-button:hover {
    color: #000;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.custom-button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}
  
.custom-button::after {
    content: '';
    width: 10px; height: 10px;
    border-radius: 100%;
    border: 3px solid #FFD62C;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: wave 1.5s infinite;
            animation: wave 1.5s infinite;
}
  
.custom-button:hover::after {
    -webkit-animation: none;
            animation: none;
    display: none;
}
@-webkit-keyframes wave {0% {width: 30px;height: 30px;opacity: 1;}100% {width: 200px;height: 200px;opacity: 0;}}@keyframes wave {0% {width: 30px;height: 30px;opacity: 1;}100% {width: 200px;height: 200px;opacity: 0;}}

/* block -----------------------------------------*/
.block {
    padding-top: 100px;
    text-align: center;
}

.block h4 {
    position: relative;
    font-size: 20px;
    color: #7F60F8;
    width: fit-content;
    margin: 0 auto;
}

.block h4::after,
.block h4::before {
    content: '•';
    position: absolute;
    top: -6px;
    left: -25px;
    font-size: 30px;
    color: #FFD62C;
}

.block h4::after {
    left: unset;
    right: -25px;
}

.block h2 {
   font-size: 30px;
   font-weight: 800;
   padding: 20px;
}

.block h2 span {
    color: #FFD62C;
}

.block p {
    max-width: 800px;
    margin: 0 auto 40px;
}

/* block-cards -----------------------------------*/
.block-cards__card {
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 0px 4px 60px rgba(14, 0, 70, 0.05);
}

.block-cards__card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

/* block-windows --------------------------------*/
.block-windows__window {
    background: #FFFFFF;
    box-shadow: 0px 4px 60px rgba(14, 0, 70, 0.05);
}

.window__block {
    padding: 10px 20px;
}

.window__btn-link {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #262D2E;
    padding: 10px 20px;
    border: 1px solid #E3E3E3;
    transition: .3s;
}

.window__btn-link:hover {
    color: #FFFFFF;
    background: #262D2E;
    transition: .3s;
}

.window__block_center p {
    font-size: 14px;
    margin: 0;
    text-align-last: left;
}

.window__block_center p span {
    font-size: 20px;
    font-weight: 700;
    color: #FFC632;
}

.window__block_center h5 {
    font-size: 16px;
    color: #7F60F8;
}

.window__block_bottom a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #262D2E;
    background: #FFD62C;
    border-radius: 3px;
    padding: 15px;
    width: 100%;
}

/* reviews ------------------------------*/
.reviews__card {
    align-items: center;
    padding: 30px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    min-height: 280px;
}

.reviews__card img {
    width: 50px;
    margin-right: 20px;
}

.reviews__card h3 {
    font-size: 14px;
    color: #7C8BA1;
}

.reviews__card h3 span {
    font-size: 16px;
    color: #FFFFFF;
    padding: 5px;
    background: #7AEB58;
    margin-left: 20px;
}

.reviews__card p {
    margin: 0;
}

/* contacts -----------------------------*/
.contacts {
    padding-bottom: 100px;
}

.contacts__block {
    padding: 30px;
}

.contacts__block > div {
    margin-bottom: 30px;
}

.contacts__block h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
}

.contacts__block img {
    width: 25px;
    margin-right: 15px;
}

.contacts__block h5 {
    font-size: 18px;
    text-align: left;
    line-height: 1.5em;
}

.contacts__block h5 span {
    font-weight: 700;
}

/* footer -------------------------------*/
.footer {
    background-color: #000;
}

.footer_logo h2 {
    color: #fff;
}

.footer__copy {
    font-size: 14px;
    color: #fff;
}