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

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    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: #000C12;
    background-color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* header -------------------------*/
.bg-img {
    background-image: url(../images/05.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

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

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

.logo span {
    /* color: #1CD985; */
    font-weight: 700;
}

.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;
    /* font-weight: 700; */
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header__contact a:hover {
    color: #1CD985;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header__contact p {
    font-size: 11px;
    color: #433996;
}

.pulse {
    width: 7px;
    height: 7px;
    background-color: #433996;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
    -webkit-animation: animate 1.5s linear infinite;
            animation: animate 1.5s linear infinite
}
@-webkit-keyframes animate {0% {-webkit-box-shadow: 0 0 0 0 #433996, 0 0 0 0 #433996;box-shadow: 0 0 0 0 #433996, 0 0 0 0 #433996 }40% {-webkit-box-shadow: 0 0 0 10px rgb(255, 109, 74, 0), 0 0 0 0 #433996;box-shadow: 0 0 0 10px rgb(255, 109, 74, 0), 0 0 0 0 #433996 }}@keyframes animate {0% {-webkit-box-shadow: 0 0 0 0 #433996, 0 0 0 0 #433996;box-shadow: 0 0 0 0 #433996, 0 0 0 0 #433996 }40% {-webkit-box-shadow: 0 0 0 10px rgb(255, 109, 74, 0), 0 0 0 0 #433996;box-shadow: 0 0 0 10px rgb(255, 109, 74, 0), 0 0 0 0 #433996 }}

/* about ---------------------------------------*/
.about__content {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.about__content h3 {
    font-size: 16px;
    font-weight: 400;
    color: #8A7DF8;
}

.about__content h1 {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4em;
}

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

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

.callback-form {
    margin-top: 50px;
    background-color: #fff;
    box-shadow: 0px 4px 75px rgba(32, 78, 119, 0.07);
    border-radius: 5px;
    padding: 30px;
}

.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;
    /* width: 250px; */
    height: 45px;
    padding-left: 50px;
    margin-left: 10px;
    margin-right: 0;
    background-image: url(../img/clarity_phone-handset-solid.png);
    background-repeat: no-repeat;
    background-position: 10px center;
}

.custom-button {
    position: relative;
    color: #fff;
    background: #1CD985;
    padding: 9px 15px;
    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;
}

.phone-button {
    display: block;
    width: fit-content !important;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 60px;
    margin-top: 40px;
    border-radius: 25px;
}

.custom-button:hover {
    color: #fff;
    -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 #1CD985;
    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;}}

.g-recaptcha {
    padding: 10px 0;
}

/* bottom-block --------------------------------------------------*/
.bottom-block {
    padding-top: 50px;
}

.bottom-block h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.bottom-block__card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 60px;
}

.bottom-block__card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* about__content_blocks -----------------------------------------*/
.about__content_blocks div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
}

.about__content_blocks h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

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

.about__content_blocks_center {
    border-left: 2px solid #A4A4A4;
    border-right: 2px solid #A4A4A4;
}

.about__content_right > div {
    width: 160px;
    margin: 0 0 0 auto;
    padding: 25px;
    background-color: #fff;
}

.about__content_right h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

/* about-cards__blocks ----------------------------------*/
.about-cards__blocks {
    /* background-color: #fff;
    box-shadow: 0px 4px 75px rgba(32, 78, 119, 0.07);
    border-radius: 5px; */
    margin-top: -60px;
    padding: 0;
}

.about-cards__blocks > div {
    padding: 30px 50px;
}

.about-cards__blocks h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-cards__blocks p {
    font-size: 18px;
}

.about-cards__blocks img {
    width: 2px;
    height: 80px;
}

/* text-block -------------------------------------*/
.text-block {
    margin-top: 50px;
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-block p {
    font-size: 18px;
    line-height: 1.3em;
    text-indent: 20px;
}

/* section-1 --------------------------------------*/
.section-1 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-1 img {
    width: 16%;
}

/* section-2 --------------------------------------*/
.section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* section-3 ----------------------------------------------------*/
.section-3 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/bg-footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

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

.footer_logo h2 {
    color: #fff;
}

/* .footer_logo span {
    color: #fff;
} */

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