@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;
}

: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: #000;
    background-color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

.logo span {
    color: #F35150;
    font-weight: 700;
}

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

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

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

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

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

.custom-button {
    position: relative;
    color: #fff;
    background-color: #43B2F0;
    -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: #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 #43B2F0;
    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;}}

/* about ---------------------------------------*/
.about {
    background-image: url(../img/01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-box-shadow: inset 0px 4px 25px rgba(67, 58, 149, 0.07);
            box-shadow: inset 0px 4px 25px rgba(67, 58, 149, 0.07);
}

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

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

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

.about__content h1 {
    font-size: 35px;
    font-weight: 700;
}

.about__content p {
    font-size: 18px;
    font-weight: 400;
}

.about .custom-button {
    margin-top: 20px;
}

/* about-cards -----------------------*/
.about-cards {
    margin-top: -100px;
    padding-bottom: 50px;
}

.about-cards__content {
    cursor: pointer;
    -webkit-box-shadow: 0px 4px 75px rgba(32, 78, 119, 0.15);
            box-shadow: 0px 4px 75px rgba(32, 78, 119, 0.15);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.about-cards__content:hover {
    -webkit-box-shadow: 0 0 15px #999;
            box-shadow: 0 0 15px #999;
}

.about-cards__content img {
    width: 50px;
    margin-bottom: 20px;
}

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

.about-cards__content p {
    font-size: 16px;
    line-height: 1.3em;
}

/* text-block -------------------------------------*/
.text-block {
    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 .col > div {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 35px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.section-1 .col > div:hover {
    -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
            box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.section-1 ul {
    padding-left: 20px;
}

.section-1 li {
    list-style: disc;
    font-size: 16px;
    margin-bottom: 10px;
}

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

.section-2 .col > div {
    min-height: 200px;
}

/* section-3 --------------------------------*/
.section-3 {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #F2F7FD;
}

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

.footer_logo h2 {
    color: #fff;
}

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

.form-check-input:checked {
    background-color: #43B2F0;
    border-color: #43B2F0;
}

@media(max-width: 1023px) {
    .about {
        background-position: top left 30%;
    }
}

@media(max-width: 767px) {
    .logo {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 15px;
    }

    .header__contact > * {
        margin-bottom: 15px;
    }

    .header__contact {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}