*,
body {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body,
html,
head,
header,
footer,
p,
i,
span,
a,
object,
li,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
div,
section,
table,
thead,
th,
tbody,
tr,
td,
input,
label,
button,
textarea,
strong,
aside,
center,
dd,
dl,
dt,
em,
embed,
iframe,
big,
br,
link,
meta,
marquee,
ol,
option,
select,
small,
strike,
title,
tt,
u,
video {
    font-family: "Montserrat", sans-serif;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* VARIABLES */
:root {
    --black1: #262626;
    --white: #ffffff;
    --blue: #0398e6;
    --snow-flurry: #EFFCD1;
    --max-width--large: 80%;
    --max-width--small: 90%;
}

/* STYLES */
/**/
/**/
.hidden {
    visibility: hidden;
}

.header--inner,
.section1-inner,
.section3-inner,
.footer--section1-inner,
.footer--section2-inner {
    width: 100%;
    max-width: var(--max-width--large);
    margin: 0 auto;
}

hr {
    margin: 24px 0;
}

/* HEADER */
.header--wrapper {
    width: 100%;
    padding: 0.875rem 0rem;
    background-color: var(--black1);
}

.header--inner {
    display: flex;
    flex-wrap: wrap;
}

.header--logo,
.header--social {
    flex: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 12px;
}

.header--social {
    justify-content: flex-end;
}

.header--social {
    column-gap: 1.5rem;
}

.header--logo .logo-img img {
    height: 100%;
    width: 100%;
    max-width: 52px;
}

.header--logo .logo-text {
    text-decoration: none;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.header-social--icon {
    text-decoration: none;
    color: var(--white);
    font-size: 1.50rem;
}

.info-content h4 {
    color: var(--blue);
    width: 90%;
}

.info-content p {
    width: 90%;
    font-weight: 500;
    line-height: 2;
    margin: 12px 0 0 0;
}

/* SECTION1 */
.section1--wrapper {
    width: 100%;
    background-color: #c9fbff;
}

.section1-inner {
    display: flex;
    justify-content: flex-end;
}

.section1-inner img {
    height: 100%;
    width: 100%;
    max-width: 150px;
}

/* SECTION2 */
.section2-wrapper {
    width: 100%;
    background-image: url(images/banner1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.section2-wrapper img {
    width: 100%;
    height: auto;
}

/* SECTION3 */
.section3-wrapper {
    width: 100%;
    padding: 2rem 0rem;
}

.section3-inner {
    max-width: 70%;
}

.section3-inner p {
    line-height: 2;
}

.section3-inner h3 {
    color: var(--black);
}

.section3-information,
.section3-information2 {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-top: 24px;
}

.section3-information2 {
    margin-top: 0;
}

.section3-information .info-content {
    flex: 50%;
}

.section3-information2 .info-content {
    flex: 33.3333%;
}

/* FOOTER */
.footer--wrapper {
    width: 100%;
}

.footer--section1 {
    width: 100%;
    background-image: url(images/banner2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 1.5rem 0rem;
}

.footer--section1-inner {
    max-width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer--service-menu {
    display: flex;
    flex-direction: column;
}

.footer--service-menu strong {
    max-width: 50%;
    color: var(--white);
}

.footer--service-menu ul li {
    list-style: none;
    margin: 12px 0;
}

.footer--service-menu ul li a {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
}

.footer--section2 {
    width: 100%;
    background-color: var(--black1);
}

.footer--section2-inner {
    padding: 2rem 0rem;
    max-width: 70%;
}

.footer--sitemenu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 24px;
}

.footer--sitemenu .footer--nav-link {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
}

.footer--copyrightinfo {
    margin: 24px 0 0 0;
}

.footer--copyrightinfo p {
    color: var(--white);
}

/* RESP */
@media screen and (max-width:768px) {

    .header--inner,
    .section1-inner,
    .section3-inner,
    .footer--section1-inner,
    .footer--section2-inner {
        max-width: var(--max-width--small);
    }

    .info-content h4 {
        width: 100%;
    }

    .info-content p {
        width: 100%;
    }

    /* HEADER */
    .header--wrapper {
        padding: 0.875rem 0rem;
    }

    .header--inner {
        row-gap: 12px;
    }

    .header--logo,
    .header--social {
        flex: 100%;
    }

    .header--logo .logo-text {
        font-size: 1rem;
    }

    /* SECTION1 */
    .section1-inner {
        width: 100%;
    }

    /* SECTION2 */
    .section2-wrapper {
        height: 250px;
        background-size: cover;
    }

    /* SECTION3 */
    .section3-information {
        column-gap: 0;
    }

    .section3-information .info-content,
    .section3-information2 .info-content {
        flex: 100%;
    }

    /* FOOTER */
    .footer--section1 {
        background-size: cover;
    }

    .footer--sitemenu {
        flex-wrap: wrap;
        row-gap: 24px;
        column-gap: 0;
    }

    .footer--nav-link {
        width: 50%;
    }

    .footer--section1-inner {
        flex-wrap: wrap;
        row-gap: 24px;
    }

    .footer--service-menu {
        flex: 50%;
    }

}