@font-face {
    font-family: 'Open Sans Reguler';
    src: url('fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'Open Sans Light';
    src: url('fonts/OpenSans-Light.ttf');
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Regular.ttf');
}

body {
    font-family: 'Open Sans Reguler';
}

.open-sans-bold {
    font-family: 'Open Sans Bold';
}

.lato {
    font-family: 'Lato';
}

.bg-cyan {
    background-color: #75E2E8;
}

.bg-blue {
    background-color: #3684BA;
}

.text-cyan {
    color: #75E2E8;
}

.text-blue {
    color: #3684BA;
}

.content {
    border-radius: 20px;
}

.item {
    /* height: 300px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.item.first {
    border-right: 1px solid rgb(218, 218, 218);
}

.btn {
    background-color: #3684BA;
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    width: 150px;
    font-size: 14px;
}

.btn:hover {
    background-color: #25577b;
    color: #fff;
}

p {
    color: rgb(144, 144, 144);
    font-size: 14px;
}

h3 {
    color: #3684BA;
    font-weight: bold;
}

.sk {
    text-decoration: none;
}

.logo {
    width: 160px;
}

@media screen and (max-width: 767.98px) {
    .item.first {
        border-right: none;
        border-bottom: 1px solid rgb(218, 218, 218);
    }
    .logo {
        width: 120px;
    }
    h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 575.98px) {
    .logo {
        width: 100px;
    }
    h1 {
        font-size: 28px;
    }
    h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 500px) {
    .logo {
        width: 80px;
    }
    h1 {
        font-size: 26px;
    }
    h4 {
        font-size: 14px;
    }
}

@media screen and (max-width: 385px) {
    .logo {
        width: 80px;
    }
    h1 {
        font-size: 22px;
    }
    h4 {
        font-size: 10px;
    }
}