/* General */
.main-container {
    width: 1250px;
    margin: auto;
    padding-top: 125px;
}
/* End of General */

/* Break Point */
.break-point-horizontal {
    margin: auto;
    width: 1030px;
}

.break-point-horizontal hr {
    margin: 25px 0 50px 0;
    height: 0.1px;
    background-color: rgba(0, 0, 0, 0.35);
}
/* End of Breakpoint */

/* About */
.about {
    width: 1030px;
    display: flex;
    justify-content: space-between;
    margin: auto auto 50px auto;
}

.about-img-wrapper {
    position: relative;
    width: 413px;
    height: 519px;
    margin-top: 60px;
}

.img-about {
    width: 100%;
    height: 100%;
}

.img-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

.img-about img:hover {
    scale: 1.15;
}

.about-img-wrapper .pos-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.about-img-wrapper .pos-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-img-wrapper .pos-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.about-img-wrapper .pos-4 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.about-img-wrapper .pos-1:hover,
.about-img-wrapper .pos-2:hover,
.about-img-wrapper .pos-3:hover,
.about-img-wrapper .pos-4:hover {
    z-index: 2;
}

.about-info-wrapper {
    display: flex;
    width: 550px;
    align-items: center;
}

.about-info .title {
    font-size: 50px;
    margin-bottom: 10px;
}

.about-info p {
    font-size: 16px;
    text-align: justify;
}

.about-info .title-1 {
    display: flex;
    justify-content: flex-end;
}
/* End of About */

/* Documentation Video */
.header {
    width: 1030px;
    margin: auto;
}

.header-title {
    display: flex;
    justify-content: flex-start;
    font-size: 50px;
    margin-top: -15px;
    margin-bottom: 30px;
}

.hero {
    width: 1030px;
    height: 400px;
    margin: auto auto 50px auto;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

iframe:hover {
    scale: 1.05;
}
/* End of Documentation Video */

/* Photos */
.photos {
    position: relative;
    width: 1030px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin: auto;
}

.photos-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
}

.photos-slider {
    margin: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -999;
    opacity: 0;
    transition: all 0.75s ease-in-out;
    overflow: hidden;
    border-radius: 10px;
}

.photos-selected {
    opacity: 1;
    z-index: 0;
}

.photos-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
}

.photos-slider img:hover {
    scale: 1.05;
}

.photos-button {
    cursor: pointer;
}

.photos-button .photos-nav-left,
.photos-nav-right {
    position: absolute;
    font-size: 40px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.photos-button .photos-nav-left:hover,
.photos-button .photos-nav-right:hover {
    background-color: rgba(0, 0, 0, 1);
    scale: 1.5;
}

.photos-button .photos-nav-left {
    bottom: 145px;
    left: 15px;
}

.photos-button .photos-nav-right {
    bottom: 145px;
    right: 15px;
}

.photos-info-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: -15px;
}

.photos-info {
    margin-bottom: 20px;
}

.photos-info .title {
    font-size: 50px;
    margin-bottom: 10px;
}

.photos-info p {
    font-size: 16px;
    text-align: justify;
}
/* End of Photos */

/* Responsive */
@media screen and (max-width: 767px) {
    /* General */
    .main-container {
        width: 95%;
        margin: auto;
        padding-top: 50px;
    }
    /* End of General */

    /* Break Point */
    .break-point-horizontal {
        margin: auto;
        width: 100%;
    }

    .break-point-horizontal hr {
        margin: 25px 0 50px 0;
        height: 0.1px;
        background-color: rgba(0, 0, 0, 0.35);
    }
    /* End of Breakpoint */

    /* About */
    .about {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        align-items: center;
        margin: auto auto 50px auto;
    }

    .about-2 {
        flex-direction: column-reverse;
    }

    .about-img-wrapper {
        position: relative;
        width: 100%;
        height: 450px;
    }

    .img-about {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .img-about img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .about-img-wrapper .pos-1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .about-img-wrapper .pos-2 {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
    }

    .about-img-wrapper .pos-3 {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .about-img-wrapper .pos-4 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
    }

    .about-info-wrapper {
        display: flex;
        width: 100%;
        align-items: center;
        margin-top: 20px;
    }

    .about-info .title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .about-info .title-1 {
        display: flex;
        justify-content: flex-start;
    }

    .about-info .title-2 {
        display: flex;
        justify-content: flex-end;
    }

    .about-info p {
        font-size: 16px;
        text-align: justify;
    }
    /* End of About */

    /* Documentation Video */
    .header {
        width: 100%;
        margin: auto;
    }

    .header-title {
        display: flex;
        justify-content: flex-start;
        font-size: 40px;
        margin-top: -15px;
        margin-bottom: 30px;
    }

    .hero {
        width: 100%;
        height: 400px;
        margin: auto auto 50px auto;
    }

    iframe {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    /* End of Documentation Video */

    /* Photos */
    .photos {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        justify-items: center;
        align-items: center;
        margin: auto;
    }

    .photos-wrapper {
        width: 100%;
        height: 300px;
    }

    .photos-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        transition: 0.5s all ease-in-out;
    }

    .photos-slider img:hover {
        scale: 1.05;
    }

    .photos-selected {
        opacity: 1;
        z-index: 0;
    }

    .photos-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .photos-button {
        cursor: pointer;
    }

    .photos-button .photos-nav-left,
    .photos-nav-right {
        position: absolute;
        font-size: 40px;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }

    .photos-button .photos-nav-left {
        bottom: 125px;
        left: 10px;
    }

    .photos-button .photos-nav-right {
        bottom: 125px;
        right: 10px;
    }

    .photos-info-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: -15px;
    }

    .photos-info {
        margin-bottom: 20px;
    }

    .photos-info .title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .photos-info p {
        font-size: 16px;
        text-align: justify;
    }
    /* End of Photos */
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* General */
    .main-container {
        width: 95%;
        margin: auto;
        padding-top: 50px;
    }
    /* End of General */

    /* Break Point */
    .break-point-horizontal {
        margin: auto;
        width: 100%;
    }

    .break-point-horizontal hr {
        margin: 25px 0 50px 0;
        height: 0.1px;
        background-color: rgba(0, 0, 0, 0.35);
    }
    /* End of Breakpoint */

    /* About */
    .about {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        align-items: center;
        margin: auto auto 50px auto;
    }

    .about-2 {
        flex-direction: column-reverse;
    }

    .about-img-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .img-about {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .img-about img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .about-img-wrapper .pos-1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .about-img-wrapper .pos-2 {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
    }

    .about-img-wrapper .pos-3 {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .about-img-wrapper .pos-4 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
    }

    .about-info-wrapper {
        display: flex;
        width: 100%;
        align-items: center;
        margin-top: 20px;
    }

    .about-info .title {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .about-info .title-2 {
        display: flex;
        justify-content: flex-end;
    }

    .about-info p {
        font-size: 16px;
        text-align: justify;
    }
    /* End of About */

    /* Documentation Video */
    .header {
        width: 100%;
        margin: auto;
    }

    .header-title {
        display: flex;
        justify-content: flex-start;
        font-size: 50px;
        margin-top: -15px;
        margin-bottom: 30px;
    }

    .hero {
        width: 100%;
        height: 400px;
        margin: auto auto 50px auto;
    }

    iframe {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    /* End of Documentation Video */

    /* Photos */
    .photos {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        justify-items: center;
        align-items: center;
        margin: auto;
    }

    .photos-wrapper {
        width: 100%;
        height: 300px;
    }

    .photos-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        transition: 0.5s all ease-in-out;
    }

    .photos-slider img:hover {
        scale: 1.05;
    }

    .photos-selected {
        opacity: 1;
        z-index: 0;
    }

    .photos-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .photos-button {
        cursor: pointer;
    }

    .photos-button .photos-nav-left,
    .photos-nav-right {
        position: absolute;
        font-size: 40px;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }

    .photos-button .photos-nav-left {
        bottom: 125px;
        left: 10px;
    }

    .photos-button .photos-nav-right {
        bottom: 125px;
        right: 10px;
    }

    .photos-info-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: -15px;
    }

    .photos-info {
        margin-bottom: 20px;
    }

    .photos-info .title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .photos-info p {
        font-size: 16px;
        text-align: justify;
    }
    /* End of Photos */
}
/* End of Responsive */
