* {
    margin: 0px;
    padding: 0px;
}

button > a {
    color: white;
    text-decoration: none;
}

p > a {
    color: cornflowerblue;
    margin-left: 3px;
}

.container {
    height: 100dvh;
    width: auto;
    background-color: #333131;
}

.header {
    position: relative;
    display: flex;
    background-color: black;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 3px solid white;
}

.headL {
    margin-right: 4%;
}

.headR {
    display:flex;
    align-items: center;
}

.body {
    position: relative;
    background-color: #333131;
    padding: 5% 0px 5% 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

img {
    width: 50%;
}

button {
    border-radius: 15px;
    padding: 10px;
    margin: 5px;
    word-wrap: normal;
    color: white;
    background-image: linear-gradient(155deg, #C085D7, #2F39BC);
}

button:hover {
    cursor: pointer;
}

.textlogo {
    min-height: 54px;
    min-width: 158px;
}

.imglogo {
    min-height: 54px;
    min-width: 158px;
}

.slides {
    position:relative;
    max-width: 750px;
    height: auto;
    margin: 0px -20% 10px -20%;
    border: 3px solid white;
    display: none;
}

.slider {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    height: auto;
    width: fit-content;
    margin-bottom: 3%;
    overflow: hidden;
}

.slider_btn {
    position: relative;
    z-index: 1;
    margin-top: 20%;
    min-height: 15px;
    width: auto;
}

.services {
    font-family: Arial, Helvetica, sans-serif ;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #4C4A4A;
    width: 100%;
    color: white;
}

.service_column {
    margin: 35px;
    font-size: min(max(3vw, 16px), 25px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    margin: auto;
    padding: 15px;
    border: 3px solid white;
    background-color: #333131;
    width: 50%;
}

.close {
    color: white;
    float: right;
    font-size: 20px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: white;
    cursor: pointer;
}

@media screen and (orientation:portrait) {
    .headL {
        display: none;
    }
    .services {
        flex-direction: column;
    }
    div > .service_column {
        margin: 15px 0px -15px 0px;
    }
    div > .services {
        background-color: #333131;
    }
}

