@font-face {
    font-family: "utm-cafeta";
    src: url("/fonts/UTM_Cafeta.ttf");
}
@font-face {
    font-family: "DINRoundOT";
    src: url("/fonts/DINRoundOT.otf");
}
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    border-width: 0;
    background-color: #B8E2FF;
    font-family: DINRoundOT,sans-serif;
}
.main {
    font-size: 16px;
}
.container {
    padding: 0px 80px;
}
/* header */
header img {
    max-width: 100%;
}
.header-wrapper {
    margin: 40px 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-wrapper .img-heading,
.header-wrapper .img-heading-mb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header-wrapper .img-heading {
    width: 50%;
}

.header-wrapper .img-heading-mb {
    display: none;
    width: 30%;
}
.img-header-mb {
    display: none;
}
/* banner */
.banner {
    margin: 40px 0px;
}
.banner .banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
.banner .banner-info{
    max-width: 650px;
    background-color: #F0F0F0;
    border: 15px solid #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    position: relative;
}
.banner-icon-cloud-left,
.banner-icon-cloud-right {
    position: absolute;
    z-index: -1;
}
.banner-icon-cloud-right {
    right: -90px;
    bottom: 40px;
}
.banner-icon-cloud-left {
    left: -90px;
    top: 40px;
}
.banner-icon-bell {
    position: absolute;
    left: 50%;
    top: -50px;
    width: 80px;
    height: 80px;
    transform: translateX(-50%);
}
.banner .banner-content {
    height: 100%;
}
.banner .banner-content p{
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #173D6E;
}
.banner .banner-content p.highlight {
    color: #E73227;
}
.banner-mb {
    display: none;
}
/* cloud */
.cloud img{
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}
/* footer */
footer .footer {
    text-align: center;
    margin-bottom: 40px;
}
footer .footer p {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    color: #173D6E;
    font-weight: 700;
}
@media only screen and (max-width: 1440px) {
    .banner .banner-info{
        max-width: 450px;
    }
    .banner .banner-content p{
        font-size: 1.8rem;
    }
    .banner-icon-bell {
        top: -35px;
        width: 60px;
        height: 60px;
    }
    .banner .banner-wrapper {
        gap: 30px;
    }
    footer .footer p {
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .banner .banner-info{
        max-width: 400px;
        padding: 20px 10px 10px;
    }
    .banner .banner-content p{
        font-size: 1.6rem;
    }
    .banner-icon-cloud-right {
        display: none;
    }
    .banner-icon-cloud-left {
        display: none;
    }
    .banner .banner-wrapper {
        gap: 0;
    }
    .banner-icon-bell {
        top: -35px;
        width: 45px;
        height: 45px;
    }
    footer .footer p {
        font-size: 1.6rem;
    }
}
@media only screen and (max-width: 820px) {
    .header-wrapper .img-heading {
        display: none;
    }
    .header-wrapper .img-heading-mb {
        display: block;
    }
    .banner .banner-info{
        max-width: 350px;
        padding: 20px 10px 10px;
    }
    .banner .banner-content p{
        font-size: 1.4rem;
    }
    footer .footer{
        margin-bottom: 20px;
    }
    footer .footer p {
        font-size: 1.4rem;
    }
}
@media only screen and (max-width: 770px) {
    .banner .banner-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .banner .banner-info{
        max-width: 400px;
    }
    .container {
        padding: 0 20px;
    }
    .cloud img{
        min-height: 200px;
    }
}
@media screen and (max-width: 480px) {
    footer .footer p {
        font-size: 1.2rem;
    }
    .header-wrapper .img-header-left,
    .header-wrapper .img-header-right {
        display: none;
    }
    .header-wrapper .img-heading-mb {
        display: none;
    }
    .img-header-mb {
        display: block;
    }
    .banner-destop {
        display: none;
    }
    .banner-mb {
        display: block;
    }
    .banner {
        margin: 0px;
    }
    .banner .banner-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .cloud img{
        margin-top: 10px;
        min-height: 150px;
    }
}
