/*Reset*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto, "sans-serif";
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #595B37;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input {
    border: 0;
}

button:focus, input:focus {
    border: 0;
}

.header{
    height: 10rem;
    justify-content: space-around;
    display: flex;
    align-items: center;
}

.menu{
    justify-content: space-around;
    display: flex !important;
    align-items: center; 
}

.menu li{
    margin: 2rem;
}

.slider{
    justify-content: center;
    display:flex;
    align-items: center; 
    width:100%;
}

.cards{
    justify-content: space-between;
    display: flex;
    align-items: center; 
    padding: 4rem 8rem;
    flex-wrap: wrap;
    grid-row-gap: 2rem;
    grid-column-gap: 1rem;
}



.card{
    background-color: #009BDB;
    width: 25rem;
    height: 32rem;
    color: #FFFFFF;
    text-align: center;
    margin: 0 1rem;
}

.card h4{
    margin: 1.5rem 2rem;
}

.card p{
    margin: 1.5rem 2rem;
}

.card img{
    height: 70px;
    width: 70px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.card button{
    color: #FFFFFF;
    background-color: #009BDB;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    padding: 1rem 2rem;
}

.dropdown{
    position: relative;
    display: inline-block;
}

.topics{
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    background-color: #009BDB;
    color:#FFFFFF;
}

.topics a{
    padding: 12px 16px;
    display: block;
    color:#FFFFFF;
}

.dropdown:hover .topics {display: block;}

.menu li a:hover{
    color: #009BDB;
}

.contacts{
    background-color: #313131;
    color: #FFFFFF;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 2rem;
}

.entities h3{
    margin: 2rem 0;
}

.entities img{
    margin: 1rem 0;
}

.social-media h3{
    margin: 2rem 0;
}

.social{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1rem 0;
}

input, textarea{
    outline: none;
}

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #595959; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
    background-color: #434343;
}

input[type=submit] {
    background-color: #009BDB;
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-shadow: none;
}

.contact-us h3{
    margin: 2rem 0;
}

.contact-us{
    margin-bottom: 2rem;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
    width: 100%;
  }
  
/* Hide the images by default */
.mySlides {
    display: none;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 2s;
}
  
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


.header a.icon {
    display: none;
}




@media screen and (max-width: 1050px) {
    .entities{
        padding: 2rem;
    }
    .social-media{
        padding: 2rem;
    }
    .contact-us{
        padding: 2rem;
    }
}

@media screen and (max-width: 865px) {
    /* Style the hamburger menu */
    .header a.icon {
        background: transparent;
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        color: black;
        padding: 1.5rem 2rem;
        text-decoration: none;
        font-size: 36px;

    }

   

    .header a img{
        margin: 1.5rem 2rem;
    } 

    .header{
        flex-direction: column !important;
        padding: 0 !important;
        align-items: flex-start !important; 
        height: auto;
    }   
    .menu{
        overflow: hidden !important;
        height: 0 !important;
        text-align: center !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        justify-content: center;
        
    }   
    .menu li{
        margin: 2rem 0 !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 18px !important;
        height: auto;
        
    }
    .menu li a{
        margin: 0 !important;
    }
    .menu li:hover{
        border: none !important;
    }

    .menu li:focus{
        border: none !important;
    }



        
    
}

    /* width */
    ::-webkit-scrollbar {
        width: 5px;
    }
    
    /* Track */
    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;
        border-radius: 5px;
    }
    
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #009BDB;
        border-radius: 10px;
    }