* {
    padding: 0;
    margin: 0;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #E6E6E6;

    margin: 0 0 100px;
}
.navbar button:hover {
    cursor:pointer;
    font-weight: bold;
}

















.navbar {
    z-index: 100;

    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;

    padding-top: 10px;
    padding-bottom: 7.5px;

    background-color: rgba(0, 0, 0, 1.0);

    /* border: 1px blue solid; */

    height: clamp(50px, 10%, 75px);
}
.navbar .left {

    padding-left: clamp(10px, 1%, 200px);

    display: flex;
    justify-content: left;
    align-items: center;

    width: 50%;
}
.navbar .right {

    display: flex;
    justify-content: right;
    align-items: center;

    width: 50%;
    padding-right: 8px;
    margin-top: -5px;
}
.navbar .navbuttons {

    width: auto;

    display: flex;
    align-items: center;
    justify-content: right;

    width: 100%;
    height: 100%;
}
.navbar .right button {
    height: 32px;
    width: clamp(75px, 20vw, 150px);

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 25px;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0);
    color: white;

    font-family: 'Inter', sans-serif;
    font-variant: small-caps;
    text-transform: uppercase;
    font-size: clamp(12px, 1.8vw, 15px);

    text-decoration: none;
}
.navbar .right button:hover {
    background-color: white;
    color: black;
}
#navbarabout {
    margin-right: 1vw;
}
@media only screen and (min-width: 375px) {

    .navbar .left {

        padding-left: clamp(10px, 6%, 200px);
    
    }

    .navbar .right {

        padding-right: clamp(10px, 4%, 50px);

    }

}

main {
    display: block;

    text-align: center;

    background-color: #E6E6E6;

    margin-top: clamp(50px, 50%, 100px);
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    /* background-color: yellow; */

    padding-top: 2.5%;
    padding-left: 5%;
    padding-right: 5%;
    
}
.card {

    background-color: white;

    padding: clamp(20px, 3%, 100px);

    width: min(80%, 700px);

    margin-top: 15px;
    margin-bottom: 15px;

    border-radius: 15px;

    text-align: center;

}
.title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    max-width: 600px;
    margin-bottom: 15px;
}
.description, ul, li {
    text-align: left;
    margin-top: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    width: 100%;
    overflow-wrap: break-word;

    /* background-color: green; */
}
ul {
    margin-left: 10%;
}

h3 {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    margin-top: clamp(30px, 5%, 100px);
}
#servicescontact {
    display: inline-block;
    text-align: center;
    width: clamp(30px, 90vw, 500px);
    margin-top: 25px;

    padding: 10px;

    border-radius: 25px;

    background-color: black;
    color: white;
    border: none;

    text-transform: none;
    font-weight: normal;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
} #servicescontact:hover {
    font-weight: bold;
    cursor: pointer;
}

.container img {
    width: 30%;
    min-width: 200px;
    max-width: 500px;

    border-radius: 15px;

    margin-top: 35px;
}
















#footer {

    position: absolute;
    bottom: 0px;
    left: 0px;

    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 50px;
    
    text-align: center;
    color: white;
    background-color: black;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    
}

::-webkit-scrollbar {
        width: 8px;
}
    
::-webkit-scrollbar-track {
        background-color: #e6e6e6;
}
    
::-webkit-scrollbar-thumb {
        background-color: black;
        border-radius: 20px;
}
    
::-webkit-scrollbar-thumb:hover {
        background-color: black;
}

.backgroundvideo {

    width: 100%;
    height: auto;

}

.navbarbackgroundvideo {

    width: auto;
    height: 130px;
    overflow: hidden;

}
