@import url(../fonts/fonts.css);

/* COMMON */
.section {
    width: '100%';
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* overflow: hidden; */
}


.section-main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 50px 50px;
}

.section-main-container-inner {
    width: 100%;
    max-width: 1260px;
    height: auto;
}

.section-background-image {
    position: absolute;
    width: 90%;
    height: auto;
    object-fit: contain;
    object-position: center;
    z-index: -2;
}

.section-background-image .bottom {
    object-position: bottom;
}

ul {
    list-style: none;
}

li {
    padding-left: 1.0em;
}

li:before {
    content: "\f0da";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.0em;
    color: #f2781f;
    width: 1.0em;
}

.section-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

.section-title-container-inner {
    padding: 0 50px;
    position: relative;
    transition: 0.5s;
}

.section-title-container-inner h2 {
    color: #000000;
    transition: 0.5s;
    text-align: center;
}

.gallery-main-container .section-title-container-inner h2 {
    color: #dbdbdb;
    transition: 0.5s;
}

.title-bottom-border {
    width: 100%;
    height: 25px;
    bottom: 0px;
    z-index: -1;
    left: 0;
    position: absolute;
    background-color: #f2781f;
    border-radius: 100px;
    transition: 0.5s;
}

.section-title-container-inner:hover h2 {
    color: #fcfcfc;
}

.section-title-container-inner:hover {
    padding: 0 80px;
}

.section-title-container-inner:hover .title-bottom-border {
    height: 65px;
}

.desktop-flex {
    display: flex !important;
}

.mobile-flex {
    display: none !important;
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1000px) {}

@media screen and (max-width: 850px) {}

@media screen and (max-width: 750px) {}

@media screen and (max-width: 750px) {
    .section-main-container {
        padding: 20px 25px 30px;
    }
}

@media screen and (max-width: 560px) {}

@media screen and (max-width: 690px) {
    .desktop-flex {
        display: none !important;
    }

    .mobile-flex {
        display: flex !important;
    }
}

@media screen and (max-width: 600px) {
    .section-main-container {
        padding: 20px 25px 30px;
    }

    .section-title-container {
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .section-title-container-inner {
        padding: 0 20px;
    }

    .section-title-container-inner h2 {
        font-size: 30px;
    }

    .section-title-container-inner:hover {
        padding: 0 30px;
    }

    .title-bottom-border {
        height: 15px;
    }

    .section-title-container-inner:hover .title-bottom-border {
        height: 35px;
    }
}

@media screen and (max-width: 550px) {}

@media screen and (max-width: 400px) {}


/* ========================================================================= */
/* HEADER SECTION */
/* ========================================================================= */
#header-section {
    height: 100vh;
}

.header-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    z-index: -2;
    transition: 0.5s;
}

.header-background-image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-background-image-overlay-inner {
    width: 135%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    opacity: 0.8;
    padding-top: 100px;
}

.header-background-image-overlay-img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.left_image {
    animation: MoveLeft 10s 5s ease-in-out infinite;
}

.right_image {
    margin-bottom: -100px;
    animation: MoveRight 10s 3s ease-in-out infinite;
}

@keyframes MoveLeft {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-60px);
    }
}

@keyframes MoveRight {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(60px);
    }
}

.header-headline-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 600px;
}

.header-headline-container h1 {
    color: #000000;
    margin-bottom: 20px;
}

.header-headline-container ul {
    padding-left: 10px;
}

.header-headline-container li {
    font-size: 24px;
    margin-bottom: 10px;
}

.header-button-container {
    padding: 15px 30px;
    border-radius: 100px;
    background-color: #151515;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    overflow: hidden;
}

.header-button-container span {
    color: #FFFFFF;
    font-size: 24px;
    margin-right: 20px;
    transition: 0.5s;
}

.header-button-container i {
    color: #f2781f;
    font-size: 20px;
    margin-bottom: -2px;
    transition: 0.5s;
}

.header-button-container:hover {
    cursor: pointer;
}

.header-button-container:hover span {
    margin-right: 50px;
}

.header-button-container:hover i {
    transform: rotate(90deg);
}

.header-button-scroll-down {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: #FFFFFF;
    transition: 0.5s;
    animation: MoveUpDown 3s ease-in-out infinite;
}

.header-button-scroll-down i {
    color: #f2781f;
    font-size: 20px;
    transition: 0.5s;
}

@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.header-button-scroll-down:hover {
    cursor: pointer;
    background-color: #f2781f;
}

.header-button-scroll-down:hover i {
    color: #FFFFFF;
}

.header-devider {
    width: 100%;
    height: 20px;
    background-color: #f3781f;
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width: 1200px) {
    .header-background-image {
        object-position: 70% center;
    }
}

@media screen and (max-width: 800px) {
    .header-background-image-overlay-inner {
        width: 100%;
        justify-content: center;
    }

    .left_image {
        display: none !important;
    }

    .right_image {
        width: 150% !important;
    }
}

@media screen and (max-width: 600px) {
    .header-headline-container {
        align-items: center;
    }

    .header-headline-container h1 {
        font-size: 50px;
    }

    .header-headline-container li {
        font-size: 20px;
    }

    .header-button-container {
        padding: 10px 15px;
    }

    .header-button-container span {
        font-size: 18px;
        margin-right: 15px;
    }

    .header-button-container i {
        font-size: 16px;
    }

    .header-button-container:hover span {
        margin-right: 20px;
    }
}

/* ========================================================================= */
/* ABOUT US */
/* ========================================================================= */
.about-us-desctiption-main-container {
    width: 100%;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
    margin-bottom: 80px;
}

.about-us-desctiption-main-container.reverse {
    margin-bottom: 0;
}

.about-us-text {
    width: 100%;
    padding: 20px 0 20px 00px;
}

.about-us-text p {
    color: #666666;
    font-size: 18px;
}

.about-us-image {
    width: 100%;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-us-image-inner {
    width: 100%;
    height: 100%;
    position: absolute;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    /* object-fit: fill; */
    object-fit: cover;
    /* object-fit: contain; */
    object-position: center center;
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width: 690px) {
    .about-us-desctiption-main-container {
        grid-template-columns: 100%;
        gap: 0%;
        margin-bottom: 30px;
    }

    .about-us-text {
        width: 100%;
        padding: 10px 0 10px 0px;
    }

    .about-us-text p {
        font-size: 14px;
    }

    .about-us-image {
        margin-bottom: 10px;
        height: 250px;
    }
}

/* ========================================================================= */
/* SERVICES */
/* ========================================================================= */
.services-main-container {
    width: 100%;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
}

.services-container {
    width: 100%;
    padding: 30px;
    border: 3px solid #ececec;
    border-radius: 30px;
}

.services-container li {
    color: #666666;
    font-size: 18px;
    margin-bottom: 5px;
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width: 690px) {
    .services-main-container {
        grid-template-columns: 100%;
        gap: 0%;
    }

    .services-container {
        padding: 20px;

        margin: 5px 0;
    }

    .services-container li {
        font-size: 14px;
    }
}


/* ========================================================================= */
/* REFERENCES */
/* ========================================================================= */
.references-links-main-container {
    width: 100%;
    margin-bottom: 50px;
}

.references-link-container {
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.references-link-container.odd {
    background-color: #ececec;
}

.references-link-container.even {
    background-color: #f8f8f8;
}

.references-link-container-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 140px;
}

.references-link-container span {
    color: #161616;
    font-size: 45px;
    max-width: 70%;
    transition: 0.5s;
}

.references-link-button-scroll-down {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: #FFFFFF;
    transition: 0.5s;
}

.references-link-button-scroll-down i {
    color: #f2781f;
    font-size: 20px;
    transition: 0.5;
}

.references-link-button-scroll-down:hover {
    cursor: pointer;
    background-color: #f2781f;
}

.references-link-button-scroll-down:hover i {
    color: #FFFFFF;
}

.references-button-container {
    padding: 10px 30px;
    border-radius: 100px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.references-button-container span {
    color: #666666;
    font-size: 16px;
    margin-right: 20px;
    transition: 0.5s;
}

.references-button-container i {
    color: #f2781f;
    font-size: 16px;
    margin-bottom: -2px;
    transition: 0.5s;
}

.references-button-container:hover {
    cursor: pointer;
}

.references-button-container:hover span {
    margin-right: 50px;
}

.references-button-container:hover i {
    transform: rotate(90deg);
}

.references-lists-container {
    width: 100%;
    display: grid;
    grid-template-columns: 54% 42%;
    gap: 4%;
}

.references-lists-container.reverse {
    grid-template-columns: 42% 54%;
}

.references-lists-left {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.references-lists-right {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.references-lists-single {
    margin-bottom: 40px;
}

.references-lists-single.padding {
    margin: auto;
}

.references-lists-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3781f;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    width: 100%;
    height: 80px;
    transition: 0.5s;
    position: relative;
}

.references-lists-title-container h5 {
    color: #FFFFFF;
    font-size: 24px;
    transition: 0.5s;
}

.references-lists-title-container-dropdown-icon {
    position: absolute;
    right: 30px;
}

.references-lists-title-container-dropdown-icon i {
    font-size: 14px;
    color: #FFFFFF;
    transition: 0.5s;
    transform: rotate(-90deg);
}

.closed .references-lists-title-container-dropdown-icon i {
    transform: rotate(0deg);
}

.references-lists-text-container {
    border: 3px solid #ececec;
    border-top-width: 0px;
    background-color: #FFFFFF;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 30px;
}

.references-lists-text-container .list-single-text {
    margin-bottom: 15px;
}

.references-lists-text-container .list-single-subtext {
    padding-left: 30px;
    margin-bottom: 15px;
}

.references-lists-text-container p {
    font-size: 18px;
    color: #666666;
    transition: 0.5s;
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width:980px) {
    .references-link-container span {
        font-size: 40px;
    }

    .references-link-button-scroll-down i {
        font-size: 20px;
    }

    .references-button-container span {
        font-size: 16px;
    }

    .references-lists-title-container {
        height: 70px;
    }

    .references-lists-title-container h5 {
        font-size: 20px;
    }

    .references-lists-text-container {
        padding: 20px;
    }

    .references-lists-text-container .list-single-text {
        margin-bottom: 15px;
    }

    .references-lists-text-container .list-single-subtext {
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .references-lists-text-container p {
        font-size: 16px;
    }
}

@media screen and (max-width:850px) {
    .references-lists-title-container {
        height: 60px;
    }

    .references-lists-title-container h5 {
        font-size: 18px;
    }

    .references-lists-text-container {
        padding: 20px;
    }

    .references-lists-text-container .list-single-text {
        margin-bottom: 15px;
    }

    .references-lists-text-container .list-single-subtext {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .references-lists-text-container p {
        font-size: 14px;
    }
}

@media screen and (max-width:800px) {
    .references-link-container span {
        font-size: 35px;
    }

    .references-link-button-scroll-down i {
        font-size: 20px;
    }

    .references-button-container span {
        font-size: 16px;
    }
}

@media screen and (max-width:700px) {
    .references-link-container-inner {
        height: 100px;
    }

    .references-link-container span {
        font-size: 25px;
    }

    .references-link-button-scroll-down i {
        font-size: 20px;
    }

    .references-button-container span {
        font-size: 16px;
        margin-right: 10px;
    }

    .references-button-container:hover span {
        margin-right: 20px;
    }
}

@media screen and (max-width:650px) {
    .references-lists-title-container {
        height: 50px;
    }

    .references-lists-title-container h5 {
        font-size: 16px;
    }

    .references-lists-text-container {
        padding: 10px;
    }

    .references-lists-text-container .list-single-text {
        margin-bottom: 15px;
    }

    .references-lists-text-container .list-single-subtext {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .references-lists-text-container p {
        font-size: 13px;
    }
}

@media screen and (max-width:600px) {

    .references-link-container span {
        font-size: 20px;
    }

    .references-link-button-scroll-down i {
        font-size: 16px;
    }

    .references-button-container {
        padding: 10px 15px;
    }

    .references-button-container span {
        font-size: 14px;
    }

    .references-button-container i {
        font-size: 14px;
    }

    .references-links-main-container {
        margin-bottom: 20px;
    }

    #references-section .section-main-container {
        padding-bottom: 20px;
    }

    .references-lists-title-container {
        cursor: pointer;
    }

    .references-lists-container {
        grid-template-columns: 100%;
        gap: 0%;
    }

    .references-lists-container.reverse {
        grid-template-columns: 100%;
    }

    .references-lists-text-container {
        padding: 20px;
        height: auto;
        overflow: hidden;
    }

    .closed .references-lists-text-container {
        padding: 0px;
        height: 0;
        overflow: hidden;
        border-width: 0;
    }

    .closed .references-lists-title-container {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        transition: 0.5s;
    }
}

@media screen and (max-width:520px) {

    .references-link-container span {
        font-size: 16px;
    }

    .references-link-button-scroll-down i {
        font-size: 14px;
    }

    .references-button-container {
        padding: 10px 10px;
    }

    .references-button-container span {
        font-size: 12px;
    }

    .references-button-container i {
        font-size: 12px;
    }
}



/* ========================================================================= */
/* CONTACT */
/* ========================================================================= */
#contact-section .section-main-container {
    background-color: #f3781f;
}

.conctact-main-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 60px 0 50px 0;
}

.contact-info {
    width: 50%;
    padding-left: 100px;
}

.contact-info-top-line {
    width: 40%;
    height: 5px;
    background-color: #FFFFFF;
}

.contact-info-title {
    margin: 20px 0 30px 0;
}

.contact-info-title h4 {
    font-size: 40px;
    color: #161616;
}

.contact-info-section {
    margin-bottom: 20px;
}



.contact-info-section p {
    color: #FFFFFF;
    font-size: 18px;
}

.contact-info-section a:hover p {
    color: #000000;
}

.contact-info-section .contact-info-section-title {
    font-weight: bold;
}



.contact-form {
    width: 50%;
}


.formContainer {
    height: auto;
    padding: 20px 40px;
}

.formContainer form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.formContainer form .col50 {
    width: 48%;
    transition: 0.5s;
}

.formContainer form .col100 {
    width: 100%
}

.inputBx {
    position: relative;
    margin: 0 0 30px 0
}

.inputBx input,
.inputBx textarea {
    width: 100%;
    padding: 10px;
    padding-left: 2px;
    outline: none;
    border: none;
    border-bottom: 2px solid #FFFFFF;
    background-color: #f3781f;
    color: #FFFFFF;
}

.inputBx textarea {
    min-height: 70px;
    resize: none;
}

.inputBx input[type="submit"] {
    width: auto;
    padding: 10px 30px;
    border: 0px solid #151515;
    font-weight: 800;
    background-color: #151515;
    color: #fff;
    border-radius: 25px;
    transition: 0.3s;
    cursor: pointer;
}

.inputBx input[type="submit"]:hover {
    background-color: #fff;
    color: #f3781f
}

.inputBx span {
    position: absolute;
    left: 0;
    bottom: 5px;
    transition: 0.5s;
    pointer-events: none;
    color: #ffdcdc;
}

form .inputBx input:focus~span,
form .inputBx input:valid~span {
    transform: translateY(-25px);

    color: #FFFFFF
}

form .inputBx textarea:focus~span,
form .inputBx textarea:valid~span {
    transform: translateY(-70px);
    color: #FFFFFF
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width: 950px) {
    .contact-info-title {
        margin: 20px 0 30px 0;
    }

    .contact-info-title h4 {
        font-size: 35px;
    }

    .contact-info-section {
        margin-bottom: 20px;
    }

    .contact-info-section p {
        font-size: 18px;
    }
}

@media screen and (max-width: 850px) {
    .contact-info-title {
        margin: 20px 0 20px 0;
    }

    .contact-info-title h4 {
        font-size: 30px;
    }

    .contact-info-section {
        margin-bottom: 15px;
    }

    .contact-info-section p {
        font-size: 16px;
    }
}

@media screen and (max-width: 750px) {
    .contact-info {
        padding-left: 50px;
    }
}

@media screen and (max-width: 600px) {
    .conctact-main-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 60px 0 50px 0;
    }

    .contact-form {
        width: 100%
    }

    .contact-info {
        width: 100%;
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info-title {
        margin: 20px 0 20px 0;
    }

    .contact-info-title h4 {
        font-size: 20px;
    }

    .contact-info-section p {
        font-size: 14px;
    }

    .formContainer form .col50 {
        width: 100%;
    }
}


/* ========================================================================= */
/* FOOTER */
/* ========================================================================= */
#footer-section .section-main-container {
    background-color: #000000;
    padding: 50px 50px 70px;
}

.footer-container {
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-logo-container {
    width: 50%;
    height: 80%;
    transition: 0.5s;
}

.footer-logo-container:hover {
    cursor: pointer;
}

.footer-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer-nav-container {
    width: 50%;
    height: 100%;
}

.footer-nav-container .footer-nav-link {
    margin-bottom: 8px;
}

.footer-nav-container .footer-nav-link span {
    color: #FFFFFF;
    font-size: 16px;
    transition: 0.5s;
}

.footer-nav-container .footer-nav-link span:hover {
    cursor: pointer;
    color: #f2781f;
}

.footer-nav-container h3 {
    color: #f2781f;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-right {
    width: 55%;
    height: 100%;
}


.footer-copyright-main-container {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright-wrapper {
    max-width: 1550px;
    width: 100%;
    border-top: 1px solid #707070;
    margin: auto;
    display: flex;
    padding: 15px;
    justify-content: center;
    align-items: center;
    color: #000;
}

.footer-copyright {
    font-size: 16px;
    font-weight: 200;
    color: #FFFFFF;
    margin: 0 5px;
}

/********************* RESPONSIVE  *********************/

@media screen and (max-width: 980px) {
    .footer-logo-container {
        height: 70%;
    }

    .footer-nav-container .footer-nav-link span {
        font-size: 16px;
    }

    .footer-nav-container h3 {
        font-size: 28px;
    }
}


@media screen and (max-width: 850px) {
    .footer-logo-container {
        height: 60%;
    }

    .footer-nav-container .footer-nav-link span {
        font-size: 14px;
    }

    .footer-nav-container h3 {
        font-size: 24px;
    }
}


@media screen and (max-width: 750px) {
    .footer-container {
        height: 200px;
    }

    .footer-logo-container {
        height: 50%;
    }

    .footer-nav-container .footer-nav-link span {
        font-size: 12px;
    }

    .footer-nav-container h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .footer-container {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-right {
        width: 100%;
        height: 200px;
    }

    .footer-left {
        width: 100%;
        height: 200px;
    }

    .footer-nav-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-logo-container {
        height: 50%;
    }

    .footer-nav-container .footer-nav-link span {
        font-size: 12px;
    }

    .footer-nav-container h3 {
        font-size: 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }

}


/* ========================================================================= */
/* GALLERY */
/* ========================================================================= */
#gallery1 {
    display: none;
}

#gallery2 {
    display: none;
}

#gallery3 {
    display: none;
}

.gallery-main-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000000e1;
    z-index: 20;
    top: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

.gallery-main-container-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.gallery-main-container-inner img {
    width: 18%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 10px;
    transition: 0.5s;
}

.gallery-main-container-inner img:hover {
    transform: scale(1.1);
}

.gallery-button-close {
    position: fixed;
    z-index: 999;
    top: 20px;
    right: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: #FFFFFF;
    transition: 0.5s;
}

.gallery-button-close i {
    color: #f2781f;
    font-size: 28px;
    transition: 0.5;
}

.gallery-button-close:hover {
    cursor: pointer;
    background-color: #f2781f;
}

.gallery-button-close:hover i {
    color: #FFFFFF;
}

/********************* RESPONSIVE  *********************/


@media screen and (max-width: 1260px) {
    .gallery-main-container-inner img {
        width: 22%;
        height: 200px;
    }
}

@media screen and (max-width: 879px) {
    .gallery-main-container-inner img {
        width: 30%;
        height: 160px;
    }
}

@media screen and (max-width: 780px) {
    .gallery-main-container-inner img {
        width: 29%;
        height: 160px;
    }
}

@media screen and (max-width: 580px) {
    .gallery-main-container-inner img {
        width: 45%;
        height: 160px;
    }
}

@media screen and (max-width: 580px) {
    .gallery-main-container-inner img {
        width: 42%;
        height: 160px;
    }
}

/* ========================================================================= */
/* THANK YOU SECTION */
/* ========================================================================= */
.thank_you-main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank_you-top-component {
    width: 100%;
    flex-grow: 1;
    display: flex;
}

.thank_you-top-component-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 40px;
}

.thank_you-top-component img {
    width: 35vw;
    max-width: 300px;
    object-fit: contain;
    object-position: center center;
    margin-bottom: 20px;
}

.thank_you-top-component h2 {
    color: #000000;
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
    transition: 0.5s;
    font-weight: bold;
}

.thank_you-top-component p {
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    transition: 0.5s;
}

.thank_you-bottom-component {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.thank_you-bottom-component-inner {
    width: 100%;
    max-width: 1200px;
    height: 30vh;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #f2781f;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.thank_you-button-container {
    padding: 15px 30px;
    border-radius: 100px;
    background-color: #151515;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    overflow: hidden;
}

.thank_you-button-container span {
    color: #FFFFFF;
    font-size: 24px;
    margin-right: 20px;
    transition: 0.5s;
}

.thank_you-button-container i {
    color: #f2781f;
    font-size: 20px;
    margin-bottom: -2px;
    transition: 0.5s;
}

.thank_you-button-container:hover {
    cursor: pointer;
}

.thank_you-button-container:hover span {
    margin-right: 50px;
}

.thank_you-bottom-devider {
    width: 300px;
    height: 6px;
    background-color: #FFFFFF;
    margin: 40px 0;
    transition: 0.5s;
}

.thank_you-bottom-component-inner img {
    width: 160px;
    height: 50px;
    object-fit: contain;
    object-position: center center;
}

.thank_you-background-image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank_you-background-image-overlay-inner {
    width: 160%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    padding-top: 100px;
}

.thank_you-background-image-overlay-img {
    width: 40%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}


/********************* RESPONSIVE  *********************/

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 800px) {
    .thank_you-top-component h2 {
        font-size: 30px;
    }

    .thank_you-top-component p {
        font-size: 16px;
    }

    .thank_you-background-image-overlay-img.right_image {
        width: 100% !important;
    }

    .thank_you-button-container span {
        font-size: 24px;
        margin-right: 10px;
    }

    .thank_you-button-container i {
        font-size: 16px;
    }

    .thank_you-button-container:hover span {
        margin-right: 30px;
    }

    .thank_you-bottom-devider {
        width: 160px;
        height: 3px;
        margin: 20px 0;
    }

    .thank_you-bottom-component-inner img {
        width: 120px;
        height: 30px;
    }
}

@media screen and (max-width: 600px) {
    .thank_you-top-component h2 {
        font-size: 26px;
    }

    .thank_you-top-component p {
        font-size: 15px;
    }

    .thank_you-button-container span {
        font-size: 16px;
    }
}

/* ========================================================================= */
/* 404 SECTION */
/* ========================================================================= */
.error-page-main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-page-top-component {
    width: 100%;
    flex-grow: 1;
    display: flex;
}

.error-page-top-component-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 40px;
}

.error-page-top-component img {
    width: 35vw;
    max-width: 300px;
    object-fit: contain;
    object-position: center center;
    margin-bottom: 20px;
}

.error-page-top-component h2 {
    color: #000000;
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
    transition: 0.5s;
    font-weight: bold;
}

.error-page-top-component p {
    color: #000000;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    transition: 0.5s;
}

.error-page-bottom-component {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.error-page-bottom-component-inner {
    width: 100%;
    max-width: 1200px;
    height: 30vh;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #f2781f;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.error-page-button-container {
    padding: 15px 30px;
    border-radius: 100px;
    background-color: #151515;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    overflow: hidden;
}

.error-page-button-container span {
    color: #FFFFFF;
    font-size: 24px;
    margin-right: 20px;
    transition: 0.5s;
}

.error-page-button-container i {
    color: #f2781f;
    font-size: 20px;
    margin-bottom: -2px;
    transition: 0.5s;
}

.error-page-button-container:hover {
    cursor: pointer;
}

.error-page-button-container:hover span {
    margin-right: 50px;
}

.error-page-bottom-devider {
    width: 300px;
    height: 6px;
    background-color: #ededed;
    margin: 40px 0;
    transition: 0.5s;
}

.error-page-bottom-component-inner img {
    width: 160px;
    height: 50px;
    object-fit: contain;
    object-position: center center;
}

.error-page-background-image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-page-background-image-overlay-inner {
    width: 100%;
    height: 160%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: absolute;
}

.error-page-background-image-overlay-img {
    width: 50%;
    height: 40%;
    object-fit: contain;
    object-position: center center;
}

.image-top {
    align-self: flex-end;
    display: block !important;
}

.image-bottom {
    align-self: flex-start;
    display: block !important;
}


/********************* RESPONSIVE  *********************/

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 800px) {
    .error-page-top-component h2 {
        font-size: 30px;
    }

    .error-page-top-component p {
        font-size: 16px;
    }

    .error-page-background-image-overlay-img {
        width: 100%;
        height: 50%;
    }

    .error-page-button-container span {
        font-size: 24px;
        margin-right: 10px;
    }

    .error-page-button-container i {
        font-size: 16px;
    }

    .error-page-button-container:hover span {
        margin-right: 30px;
    }

    .error-page-bottom-devider {
        width: 160px;
        height: 3px;
        margin: 20px 0;
    }

    .error-page-bottom-component-inner img {
        width: 120px;
        height: 30px;
    }
}

@media screen and (max-width: 600px) {
    .error-page-top-component h2 {
        font-size: 26px;
    }

    .error-page-top-component p {
        font-size: 15px;
    }

    .error-page-button-container span {
        font-size: 16px;
    }
}