@import url('https://fonts.googleapis.com/css?family=Radley:300,400,600,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Carlito:300,400,600,700&subset=latin-ext');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Radley', sans-serif;
}


html {
    font-size: 10px;
}

.container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

#first-section {
    text-align: center;
    position: relative;
    height: 750px;
    width: 100%;
    display: flex;
}

#first-section::before {
    content: "";
    background-image: url(./images/background.jpg);
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.3;
}

#first-section .logo {
    position: relative;
}

#first-section .logo img {
    margin-top: 24px;
    width: 150px;
}

#first-section h1 {
    position: relative;
    font-size: 90px;
    font-weight: 500;
    color: #9b4819;
    margin-top: 15vh;
}

#first-section h3 {
    position: relative;
    font-size: 28px;
    font-family: 'Carlito', sans-serif;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 100px;
}

#first-section a {
    position: relative;
    font-size: 32px;
    font-family: 'Carlito', sans-serif;
    text-decoration: none;
    color: #9b4819;
    font-weight: 600;
}

#first-section a:hover {
    color: #c75c20;
}

#second-section {
    padding: 90px 0;
    background-color: #9b4819;
}

#second-section p {
    font-size: 55px;
    color: #f4f1e8;
    font-family: 'Radley', sans-serif;
    font-weight: 300;
    width: 55%;
    letter-spacing: 1px;
}

#second-section .line {
    margin-top: 24px;
    width: 60%;
    border-bottom: solid 2px #bd8f53;
}

#second-section .iconsWrapper {
    margin-top: 24px;
    display: flex;
}

#second-section .icon {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

#second-section .icon a img {
    width: 100%;
    height: 100%;
}

#second-section .emailWrapper {
    margin-top: 200px;
    display: flex;
    justify-content: flex-end;
}

#second-section .emailWrapper div {
    width: 70px;
    height: 100%;
}

#second-section .emailWrapper div img {
    width: 100%;
    height: 100%;
}

#second-section .emailWrapper {
    display: flex;
    align-items: center;
    margin-right: 170px;
}

#second-section .emailWrapper .emails {
    margin-left: 14px;
}

#second-section .emailWrapper p {
    font-size: 18px;
    font-family: 'Carlito', sans-serif;
}

#second-section .emailWrapper a {
    display: block;
    margin-top: 6px;
    font-size: 24px;
    font-family: 'Radley', sans-serif;
    text-decoration: none;
    color: #f4f1e8;
    font-weight: 300;
}

#third-section {
    background-color: #f4f1e8;
    padding: 70px 0;
}

#third-section h4 {
    font-size: 52px;
    color: #9b4819;
    font-family: 'Radley', sans-serif;
    margin-bottom: 24px;
}

#third-section div .textWrapper {
    width: 60%;
}

#third-section div div p {
    font-size: 24px;
    font-family: 'Carlito', sans-serif;
    font-weight: 300;
}

#third-section .aboutUsWrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
}

#third-section .aboutUsWrapper img {
    width: 100%;
}

#third-section .mask {
    mask-image: url("images/frame.png");
    mask-repeat: round;
    width: 40%;
    height: 100%;
}

@media only screen and (max-device-width: 1060px) {
    .container {
        padding: 0 24px
    }
}

@media only screen and (max-device-width: 768px) {
    #first-section {
        height: 1000px;
    }

    #first-section .logo img {
        width: 250px;
    }

    #first-section h3 {
        font-size: 35px;
    }

    #first-section a {
        font-size: 62px;
    }

    #second-section p {
        width: 100%;
        text-align: center;
    }

    #second-section .line {
        width: 100%;
    }

    #second-section .iconsWrapper {
        display: flex;
        justify-content: center;
    }

    #second-section .icon {
        width: 100px;
        height: 100px;
    }

    #second-section .emailWrapper {
        justify-content: center;
        margin-right: 300px;
    }

    #second-section .emailWrapper p {
        font-size: 24px;
    }

    #second-section .emailWrapper a {
        font-size: 35px;
    }

    #third-section {
        text-align: center;
    }

    #third-section .aboutUsWrapper {
        flex-direction: column;
    }

    #third-section div .textWrapper {
        padding: 0 24px;
        width: 100%;
    }

    #third-section .aboutUsWrapper .mask {
        margin-top: 34px;
    }
}




