@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,700&display=swap');

/* CSS Document */
body {
    background-image: url(../images/bg.jpg);
    background-size: auto;
    background-color: #009965;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}


img,
object {
    max-width: 100%;
}

a {
    color: #0089c2;
    text-decoration: none;
}
a:hover {
    color: #009965;
    text-decoration: none;
}

.main {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 15%);
}

.box1 {
    background: #fff;
    padding: 50px;
    text-align: center;
}

.box1 .logo {
    text-align: center;
}

.box1 .logo img {
    width: auto;
    height: 100px;
}

.box1 .title {
    font-size: 28px;
    color: #003523;
    line-height: 1.2;
}

.box1 p {
    font-size: 20px;
    color: #003523;
    line-height: 1.2;
}

.box2 {
    background: #003523;
    padding: 50px;
    text-align: center;
}

.box2 p {
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
}

.box2 img {
    width: auto;
    height: 340px;
}



.footer {
    position: absolute;
    margin: auto;
    position: absolute;
    bottom: -1080px;
    background: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer .top-icon {
    font-size: 48px;
    color: #011710;
    display: inherit;
}

.footer .logo {
    margin: 20px;
}

.footer .logo img {
    width: auto;
    height: 60px;
}

.footer p {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
}






@media(max-width:991px) {

    .main {
        position: absolute;
        top: 15%;
        transform: translate(-50%, 15%);
    }

    .footer {
        position: absolute;
        bottom: -1240px;
    }

}

@media(max-width:768px) {

    .main {
        position: relative;
        top: 0;
        transform: translate(-50%, 0%);
    }

    .footer {
        position: relative;
        bottom: 0;
    }

}




