@font-face {
    font-family: 'Capsmall';
    src: url('/static/fonts/Capsmall.ttf');
    src:
        local('Capsmall'),
        local('Capsmall'),
        url('/static/fonts/Capsmall.ttf')
        format('truetype');
}
@font-face {
    font-family: 'Avenir';
    src: url('/static/fonts/Avenir-Next-Condensed.otf');
    src:
        local('Avenir'),
        local('Avenir'),
        url('/static/fonts/Avenir-Next-Condensed.otf')
        format('opentype');
}
@font-face {
    font-family: 'Avenir';
    src: url('/static/fonts/Avenir-Next-Regular.otf');
    src:
        local('AvenirRegular'),
        local('AvenirRegular'),
        url('/static/fonts/Avenir-Next-Regular.otf')
        format('opentype');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    font-family: "Avenir", sans-serif;
    font-weight: 300;
}

a {
    color: #ffffff;
}
a:hover {
    color: #ffed00;
    text-decoration: none;
}
html {
    min-height: 100%;
}

body {
    background-image: url("/static/img/gindetropez/bg.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    color: #FFFFFF;
}
.block {
    border: 10px solid #ffee00;
    height: 90vh;
}
.contact {
    font-family: "Avenir", sans-serif;
    font-size: 35px;
    color: #3c99a7;
    margin: 50px 0;
}
.logo img {
    margin: 0 0 30px 0;
    width: 100%;
}

.bannertop {
    padding: 0 !important;
    min-height: 800px;
    width: 100%;
    background-image: url("/static/img/gindetropez/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bannerbottom {
    padding: 0 !important;
    min-height: 400px;
    width: 100%;
    background-image: url("/static/img/gindetropez/banner-bottom.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hometext {
    margin: 100px auto;
    font-size:30px;
    line-height: 50px;
    text-align: center;
}
.hometext .text {
    padding: 0 50px;
}
strong {
    color: #ffed00;
}
.hometext img {
    width: 100%;
    margin-bottom: 30px;
}
.footertext {
    margin: 100px auto;
    font-size:18px;
    line-height: 24px;
    text-align: center;
}
.footerlogo img {
    width: 300px;
}
.footermenu {
    margin: 100px auto;
}
.footermenu h3, .footertext h3 {
    margin-bottom: 50px;
}
.footermenu ul {
    list-style-type: none;
    font-size:18px;
    line-height: 24px;
}
.footermenu ul li {
    margin-bottom: 20px;
}
.mainbutton {
    border-radius: 20px;
    background-color: #96d5dc;
    display: block;
    padding: 10px 0px;
    margin: 30px 0;
    position: absolute;
    right: 25%;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    top: 20px;
    width: 180px;
    text-align: center;
    border: 1px #86C5Cc solid;
}
.contactbutton {
    top: 120px;
}
.mainbutton:hover {
    border: 1px #ffed00 solid;

}
.contactmodal {
    background-color: #96d5dc;
}
.btn-primary {
    background-color: #ffed00;
    border: none;
    color: #000;
    width: 100%;
    padding: 15px;
}
.contactmodal textarea {
    height: 300px;
}
@media (max-width: 1200px) {
    .hometext {
        font-size:24px;
        line-height: 30px;
    }
    .footerlogo img {
        width: 150px;
    }
    .footertext {
        margin: 50px auto;
        font-size:18px;
        line-height: 24px;
        text-align: center;
    }
    .footermenu {
        margin: 50px auto;
    }
}
@media (max-width: 960px) {

    .logo {
        margin: 0 50px;
    }
    .contact {
        font-size: 25px;
        margin: 25px 0 100px 0;

    }
}
@media (max-width: 767px) {
    .footertext , .footermenu{
        text-align: center;
    }
    .footermenu h3, .footertext h3 {
        margin-bottom: 20px;
    }
    .footermenu, .footertext {
        margin-bottom: 20px;
    }
    .footermenu ul li {
        margin-bottom: 15px;
    }
    .footermenu ul {
        font-size: 14px;
        line-height: 20px;
    }
    .footertext {
        font-size: 14px;
        line-height: 20px;
    }
    .bannertop {
        min-height: 400px;
    }
    .hometext img {
        width: 60%;
    }
}