@font-face {
    font-family: 'Gotham-Medium';
    src: url('Gotham-Medium.otf');
}

body {
    font-family: 'Gotham-Medium';
    margin: 0 auto;
    max-width: 1280px;
    /*min-width: 1280px;*/
    text-align: center;
    width: 95%;
}

ul {
    list-style-type: none;
    -webkit-padding-start: 0;
}

li {
    cursor: pointer;
    display: block;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid black;
}

li:hover {
    background-color: #8AC73E;
    color: white;
}

input {
    height: 25px;
}

.selected {
    background-color: #8AC73E;
    color: white;
}

.hidden {
    display: none;
}

.header {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    height: 60px;
    background-color: #8AC73E;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, .5);
}

.header-full {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1280px;
    text-align: center;
}

.header-menu {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.header-full div {
    line-height: 60px;
    cursor: pointer;
}

.header-menu div {
    line-height: 60px;
    cursor: pointer;
}

.about-container {
    padding-top: 130px;
    padding-bottom: 70px;
    border-bottom: solid #8AC73E;
}

.about-container img {
    width: 100%;
}

.main-container {
    padding-top: 40px;
    padding-bottom: 70px;
}

.left-content {
    /*width: 35%;*/
}

.search {
    display: none;
}

.search input {
    height: 40px;
    font-size: 18px;
}

.search .search-img {
    vertical-align: middle;
}

.search .search-text {
    width: 75%;
}

.main-view {
    width: 100%;
}

.main-view img {
    max-width: 100%;
    margin-top: 20px;
}

.main-view p {
    margin: 0 50px;
}

.treatments-list {
    /*display: flex;*/
}

.foto-container {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #8AC73E;
}

.thumbnails {
    margin: 50px;
}

.preview img {
    border: 4px solid #444;
    padding: 1px;
    width: 800px;
}

.fotos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 300px;
}

.main-img {
    width: 70%;
    height: 100%;
}

.main-img .top {
    max-height: 100%;
    max-width: 100%;
}

.main-img .bottom {
    max-height: 100%;
    max-width: 100%;
}

.nav-img {
    display: none;
}

.nav-arrow {
    display: block;
    width: 10%;
}

.nav-arrow img {
    display: block;
    width: 100%;
}

.nav-img img {
    height: 80px;
    border: 4px solid #8AC73E;
    padding: 1px;
    margin: 10px;
}

.nav-img img:hover {
    border: 4px solid rgba(44, 42, 43, 1);
    cursor: pointer;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}

.footer .element {
    width: 50%;
    margin-bottom: 20px;
}

.footer .element img {
    height: 40px;
}

.footer .element div {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 20px;
}

.footer .element .email {
    word-break: break-all;
}

/**
TABLET
**/

@media (min-width: 665px) AND (min-device-width: 768px) {
    .fotos {
        height: 450px;
    }
}


/**
DESKTOP
**/

@media (min-width: 1000px) AND (min-device-width: 1000px) {
    .header-full {
        display: flex;
        justify-content: space-around;
    }

    .main-text {
        margin: 0 50px;
    }

    .nav-img {
        display: block;
        width: 10%;
    }

    .nav-arrow {
        display: none;
    }

    .about-container img {
        width: auto;
    }

    .fotos {
        height: 600px;
    }

    .treatments-container {
        display: flex;
        justify-content: center;
    }

    .treatments-list {
        display: block;
    }

    .search {
        display: block;
        margin-top: 20px;
    }

    .main-view {
        width: 70%;
    }

    .main-view img {
        margin-top: 20px;
        max-height: 500px;
        max-width: 800px;
    }

    .footer {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .footer .element {
        width: 33%;
    }

    .left-content {
        width: 35%;
    }
}


/**
BIG DESKTOP
**/

@media (min-width: 1280px) AND (min-device-width: 1280px) {
    .footer {
        justify-content: space-between;
    }

    .footer .element {
        width: 18%;
    }
}