/* fonts */
@font-face {
    font-family: 'MerriRegular';
    src: url(../fonts/MerriweatherSans-Regular.ttf);
}

@font-face {
    font-family: 'MerriBold';
    src: url(../fonts/MerriweatherSans-Bold.ttf);
}

/* styles */

* {
    margin: 0;
    padding: 0;
    font-family: 'MerriRegular', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 64px 0;
}














.landing-page {
    color: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../images/abouts/shore_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    min-height: 100vh;
}

.landing-page .container {
    /* background-color: red; */
}

.landing-page h2 {
    margin: 25px 7%;
    text-align: center;
    padding-bottom: 8px;

    font-size: 38px;
    font-family: 'MerriBold';
    text-transform: uppercase;
    border-bottom: 2px solid white;
}
















.details {
    width: 70%;
    /* min-height: 75vh; */
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    border-radius: 8px;
    padding: 10px;

    transform: translateX(-200%);
    opacity: 0;
    transition: 1.4s all ease-in-out;
}

.details.active {
    transform: translateX(0);
    opacity: 1;
}

.details .my-img {
    display: block;
    text-align: center;
    padding: 15px;
    /* background-color: red; */
}

.details .my-img img {
    width: 250px;
    border: 1px inset #fff;
    border-radius: 50%;
    box-shadow: 0 0 1px white;
    cursor: pointer;
}

.details h3 {
    font-size: 35px;
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
}

.details .msg {
    padding: 0 30px;
    text-align: center;
    font-size: 18px;
    line-height: 25px;

    margin-bottom: 15px;
}
















footer {
    height: 75px;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 75px;
}