@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    hyphens: auto;
}

body {
    font-family: "Merriweather", serif;
    margin: 0 auto;
    padding: 0 0 2rem;
    background-color: #f7f7f7;
    color: #3a3a3a;
}

.logo {
    padding: 1% 8%;
    background-color: #fff;
}
.logo img {
    width: 250px;
}
.header-mobile {
    display: none;
}
.header-desktop  {
    display: block;
    margin: 0 auto;
}
.header-desktop img {
    width: 100%;
}
.main-section {
    max-width: 1600px;
    margin: auto;
    padding: 2%;
}

h1 {
    color: #006EB7;
    padding: 8px;
    text-transform: uppercase;
    font-size: 34px;
    border-top: 1px solid #006EB7;
    border-bottom: 1px solid #006EB7;
    text-align: center;
}

h2 {
    color: #006EB7;
    border-top: 1px solid #006EB7;
    border-bottom: 1px solid #006EB7;
    padding: 0.5rem 0;
    margin: 0.8rem 0;
    font: 400 1.2rem "Merriweather", serif;
    text-transform: uppercase;
}

h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    margin: -1.4rem 0 0 0.4rem;
    color: #fff;
    text-transform: uppercase;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
    margin: 2rem auto;
}
.grid-item {
}
.grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.grid-item img:hover {
    box-shadow: 5px 5px 5px 0 #3a3a3a70;
    transition: 0.2s;
}

p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
}
a, a:link, a:visited, a:active, a:hover {
    text-decoration: none;
    color: #3a3a3a;
}

.center {
    display: flex;
    justify-content: center;
}
button {
    font: 400 1rem "Roboto", sans-serif;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.2s;
    cursor: pointer;
    background-color: #006EB7;
    padding: 0.6rem 3.5rem;
    border: 1px solid #006EB7;
    border-radius: 8px;
    margin: 2rem 0;
}
button:hover {
    background-color: #5b5b5b;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #006EB7;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #006EB799;
}
@media screen and (max-width:1360px) {
    .grid-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media screen and (max-width:1080px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .main-section {
        padding: 5%;
    }
}
@media screen and (max-width:932px) {
    h2 {
        hyphens: none;
    }
}
@media screen and (max-width:430px) {
    h2 {
        font-size: 1.4rem;
    }
    .logo {
        padding: 3%;
        background-color: #fff;
        display: flex;
        justify-content: center;
    }
    .logo img {
        width: 200px;
    }
    .header-desktop {
        display: none;
    }
    .header-mobile {
        display: block;
        margin: 0 auto;
    }
    .header-mobile img {
        width: 100%;
    }
    .grid-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}