/* ---------------------------------- Fonts --------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

@font-face {
    font-family: bahn;
    src: url(./fonts/BAHNSCHRIFT.TTF);
}


@font-face {
    font-family: bahn-light;
    src: url(./fonts/BAHNSCHRIFT\ 14.TTF);
}


@font-face {
    font-family: constania;
    src: url(./fonts/constan.ttf);
}

/* -------------------------------- ScrollBar ------------------------------- */
::-webkit-scrollbar {
    width: 14px;
    height: 18px;
    transition: all 500ms ease;
}
::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 7px;

    background-color: #a3a3a3;
    box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05),
        inset 1px 1px 0px rgba(0, 0, 0, 0.05);
    transition: all 200ms ease;
}
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d7d7d;
    height: 6px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 7px;
    box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05),
        inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}



/* -------------------------------- No class -------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background: white;
    font-family: bahn;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;
    transition: all 500ms ease;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

ul {
    padding: 0;
}

.section {
    transition: background 1s ease-in-out;
}

::selection {
    color: white;
    background: #7E0018;
}

::-moz-selection {
    color: white;
    background: #7E0018;
}

/* ------------------------------- Back to Top ------------------------------ */
#button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #001B51;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    
}

#button:hover {
    background-color: #333;
}
#button:active {
    background-color: #555;
}
#button.show {
    opacity: 1;
    visibility: visible;
}


/* ----------------------------- Navigation Bar ----------------------------- */

.logo {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 9998;
    transition: all 500ms ease;
}


/* ------------------------------- Home / Pt-1 ------------------------------ */
.pt-1 {
    height: 100vh;
    width: 100vw;
    
    animation: image 8s ease infinite alternate;
    z-index: 9997;
    position: relative;
}

@keyframes image {
    0% {
        background: center url(./images/main-pt1.jpg) no-repeat fixed;
        background-size: cover;
    }

    50% {
        background: center url(./images/pt-5/projectmanagement.jpg) no-repeat fixed;
        background-size: cover;
    }

    100% {
        background: center url(./images/pt-5/restoration.jpg) no-repeat fixed;
        background-size: cover;
    }
}

.black-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.shaping-pt1 {
    color: white;
    font-weight: 100;
    font-size: 60px;
    width: 600px;
    text-align: center;
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    z-index: 9998;
    mix-blend-mode: difference;
    opacity: 1;
    transition: all 800ms ease;

}

.wrapper1-pt1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
}

.linetxt-pt1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtline{
    width: 60px;
    height: 1.5px;
    background: white;
}

.vtline-left {
    margin-right: 20px;
    margin-left: 90px;
    transition: all 500ms ease;
}

.vtline-right {
    margin-left: 20px;
    margin-right: 90px;
    transition: all 500ms ease;
}

.vt-txt {
    color: white;
    font-weight: 100;
    font-family: bahn-light;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.6px;

    transition: all 200ms ease;
}

.vt-txt:hover {
    letter-spacing: 1.3px;
}

.grey-vt {
    width: 1.2px;
    height: 125px;
    background: grey;
    position: absolute;
    top: 75%;
}

.white-vt {
    width: 1.2px;
    height: 0px;
    background: white;
    animation: vt-anim 3s ease infinite forwards ;
}


@keyframes vt-anim {
    0% {
        height: 0px;
    }

    50% {
        height: 125px;
        top: 0;
        margin-top: 0;
    }

    100% {
        margin-top: 125px;
        height: 0px;
    }
}


/* -------------------------- tripple image / pt-2 -------------------------- */
.pt-2 {
    background-color: white;
    height: 383vh;
}

@media (max-width: 1100px) {
}

.col-pt2 {
    width: 100%;
    height: 100vh;
    margin-top: -50px;
}

.villa-pt2 {
    margin-top: -50px;
}

.penthouse-pt2 {
    position: absolute;
    width: 33.33333%;
    right: -16.65%;
    transform: translateX(-50%);
    background: black;
    margin-top: -50px;
}

.overlaysky-pt2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 108vh;
    width: 33.333333%;
    background: white;
    margin-top: 0px;
    z-index: 100;
    transition: all 700ms ease;
}

.overlaypent-pt2 {
    position: absolute;
    left: 0;
    height: 150vh;
    width: 33.333333%;
    background: white;
    margin-top: 0px;
    z-index: 100;
    transition: all 1600ms ease;
}

.overlayvil-pt2 {
    position: absolute;
    right: 0;
    height: 130vh;
    width: 33.333333%;
    background: white;
    margin-top: 0px;
    z-index: 100;
}

#skyscraper {
    position: absolute;
    width: 33.333333%;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    background: url(./images/Twintower.jpg) center no-repeat;
    background-size: cover;
}

#villa {
    position: absolute;
    width: 66.66666%;
    left: 0;
    transform: translateX(-50%);
    height: 100vh;
    background: url(./images/penthouse.jpg) center no-repeat;
    background-size: cover;
}

#penthouse {
    background: url(./images/aa46f7be-9369-4a0b-9ec9-9747c71a18b8.jpeg) center no-repeat;
    background-size: cover;
    
}

.penthouseover-pt2 {
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
}

.skyover-pt2 {
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
}

.villaover-pt2 {
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
}

.alltxtwrapper-pt2 {
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: 8888;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.txtwarpper-pt2 {
    height: 25px;
    width: 33.333%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease;
}

.grey-pt2 {
    width: 1px;
    height: 70px;
    background: grey;
    transform: rotate(270deg);
    margin-left: 60px;
    mix-blend-mode: difference;
}

.white-pt2 {
    width: 1px;
    height: 0px;
    background: white;
    animation: hz-anim 3s ease infinite forwards;
    mix-blend-mode: difference;
}

@keyframes hz-anim {
    0% {
        height: 0px;
    }

    50% {
        height: 70px;
        top: 0;
        margin-top: 0;
    }

    100% {
        margin-top: 70px;
        height: 0px;
    }
}


.maintxt-pt2 {
    color: white;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.60px;
    mix-blend-mode: difference;
    transition: all 500ms ease;
}

.maintxt-pt2:hover {
    letter-spacing: 1.5px;
}

/* ---------------------------- Who we Are / pt-3 --------------------------- */
.pt-3 {
    height: 100vh;
    width: 100vw;
    background-color: white;
    z-index: 9997;
}

.title-pt3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180vw;
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    font-size: 100px;
    color: transparent;
    font-weight: 400;
    margin-bottom: 80px;
    transition: all 500ms ease;
    -webkit-text-stroke: 2px rgba(126, 0, 24, 0.4);
}

.horizontal {
    position: absolute;
    margin-top: 100px;
    left: -100%;
}

.text-pt3 {
    width: 800px;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 30px;
    z-index: 9998;
    margin-left: 50px;
}

.p-pt3 {
    margin-top: 20px;
}
.wrapper-pt3 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content:  space-between;

}

.imgwrap-pt3 {
    height: 100vh;
    width: 50%;
    background: url(./images/3Dberbaracrop.jpg) 10% 40% no-repeat fixed;
}

.img-pt3 {
    height: 100%;
}

/* ----------------------------- Projects / pt-4 ---------------------------- */
.pt-4 {
    background: #18191B;
    margin-top: 200px;
    width: 100vw;
    transition: all 500ms ease;
    margin-bottom: 70px;
}

.title-pt4 {
    color: transparent;
    font-size: 70px;
    margin-bottom: 30px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "Archivo Black", sans-serif;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
}

.items {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
}

.item {
    display: inline-block;
    width: 50vw;
    height: 75vh;
    background: red;
    color: white;
    font-size: 20px;
    margin-right: 50px;
    border-radius: 20px;

}

.item1 {
    margin-left: 50px;
}

.wrapper {
    width: 100vw;
}

.slider-txt {
    user-select: none;
    position: absolute;
    bottom: 30px;
    margin-left: 30px;
    color: white;
    font-family: bahn-light, sans-serif;
    font-weight: 100;
    text-transform: uppercase;
}


.blackoverlay-slider {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

@media (min-width: 3000px) {
    .item {
        width: 20%;
    }

    .items {
        cursor: default;
    }

    .items.active {
        cursor: default;
    }
}

.projects-wrap {
    width: 100vw;
    height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7E0018;
    margin-top: 20px;
}

.projects-txt {
    color: white;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 22px;
}

.projects-line {
    width: 80px;
    height: 2px;
    background: white;
    margin-left: 20px;
}

/* ----------------------------- Services / pt-5 ---------------------------- */
.pt-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title-pt5 {
    color: transparent;
    font-size: 100px;
    margin-bottom: 30px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "Archivo Black", sans-serif;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
}

.services-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -65px;
} 

.services-img {
    margin-left: 20px;
    width: 50%;
    height: 70vh;
}

.services-1 {
    background:url(./images/pt-5/services1.jpg) no-repeat center;
    background-size: cover;
}

.services-2 {
    background:url(./images/pt-3/fadelvilla.jpeg) no-repeat center;
    background-size: cover;
}

.services-3 {
    background:url(./images/pt-5/restoration.jpg) no-repeat center;
    background-size: cover;
}

.services-4 {
    background:url(./images/pt-5/projectmanagement.jpg) no-repeat center;
    background-size: cover;
}


.services-txtwrap {
    margin-right: 100px;
}

.services-title {
    font-size: 35px;
    margin-bottom: 48px;
    text-transform: uppercase;
    width: 700px;
    letter-spacing: 1px;
    color: white;
}

.servicesparagraph {
    font-size: 18px;
    font-weight: 100;
    font-family: bahn-light;
    margin-bottom: 25px;
    text-transform: uppercase;
    width: 680px;
    color: white;
}
/* ---------------------------- Our vision / pt-6 --------------------------- */
.pt-6 {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 200px;
}

.title-pt6 {
    color: transparent;
    font-size: 70px;
    margin-bottom: 30px;
    font-weight: 100;
    text-transform: uppercase;
    font-family: "Archivo Black", sans-serif;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
}

.paragraph-pt6 {
    width: 800px;
    font-size: 1.4rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 30px;
    z-index: 9998;
    line-height: 40px;
    color: white;
    text-align: center;
}

/* --------------------------- Contact Form / pt-7 -------------------------- */
.pt-7 {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.wrapper1-pt7 {
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

.touch-pt7 {
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 33px;
}

.small-input {
    width: 30%;
    border: none;
    border-bottom: #8B8989 3px solid;
    color: #EB3323;
    font-size: 16px;
    transition: all 500ms ease;
}

.small-input1 {
    margin-right: 30px;
}

.small-input:focus {
    border-bottom: #EB3323 3px solid;
}

input {
    outline: none;
    border: none;
    background: none;
    padding-bottom: 15px;
    font-size: 16px;
}


::placeholder {
    color: #8B8989;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.long-input {
    margin-top: 50px;
    width: calc(60% + 30px);
    color: #EB3323;
    border-bottom: #8B8989 3px solid;
    transition: all 500ms ease;
}
.long-input:focus {
    border-bottom: #EB3323 3px solid;
}

.submit {
    color: white;
    background: none;
    outline: none;
    border: none;
    text-transform: uppercase;
    font-size: 20px;
    height: 50px;
    width: 100vw;
    border-radius: 100rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100rem;
    font-weight: 100;
}

.submit-txtwrap {
    background-color: #7E0018;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    border-radius: 100rem;
    transition: all 500ms ease;
}

.submit-txtwrap:hover {
    width: 250px;
}



.submit-p {
    color: white;
    transition: all 500ms ease;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.submit-arrow {
    transition: all 500ms ease;
}

.submit-txtwrap:hover > .submit-arrow {
    margin-left: 10px;
}

.addressmenu-wrapper {
    color: white;
    display: flex;
    align-items:flex-start;
    text-align: left;
    flex-direction: column;
    width: 270px; 
    margin-left: 30px;
}

.addressh1-pt7 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.address-wrapper {
    font-size: 22px;
    font-weight: 100;
    width: 300px;
    margin-top: 50px;
    margin-bottom: -15px;
}

.location-wrapper {
    width: 100vw;
    display: flex; 
    justify-content: center;
    margin-top: 70px;
}

.monday-friday {
    width: 400px;
}

.embed-responsive-item {
    width: 880px;
    height: 500px;
    border: 0 none;
}

.country-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    flex-direction: row;
}

.addressh2-pt7 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lebanon-wrap {
    margin-right: 50px;
    width: 550px;
}

.cyprus-wrap {
    width: 550px;
}

/* --------------------------------- Footer --------------------------------- */
footer {
    margin-top: 150px;
    background: #BFBFBF;
    color: black;
    display: flex;
    width: 100.4vw;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-ul {
    display: flex;
    color: black;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 0.5px;
    margin-bottom: -20px;
}

.footer-li {
    margin-left: 20px;
}

.tos-wrapper {
    display: flex;
    margin-top: 40px;
    color: black;
    font-weight: 100;
    font-size: 13px;
}

.cookies-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    color: black;
    font-size: 13px;
}

.privacy {
    margin-left: 20px;
}

.footer-redlogo {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 20px;
}

.footer-mainlogo {
    position:absolute;
    left: 50%; transform:
    translateX(-50%);
}


/* --------------------------------- Loader --------------------------------- */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100vw;
    height:100vh;
    z-index: 10001;
}
.loader-wrapper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}


#loader path {
    stroke-dasharray: 611.987px;
    stroke-dashoffset: 611.987px;
    animation: line-anim 5s linear forwards infinite;
}

@keyframes line-anim {
    0% {
        stroke-dashoffset: 611.987px;
    }

    5% {
        stroke-dashoffset: 611.987px;
    }

    50% {
        stroke-dasharray: 611px;
        stroke-dashoffset: 0;
    }

    55% {
        stroke-dasharray: 611px;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 611.987px;
    }
}



/* ----------------------------- Responsiveness ----------------------------- */

@media (max-width: 1919px), (max-height: 936px) {
    .pt-2 {
        display: none;
    }
}

@media (min-width: 1919px), (min-height: 936px) {
    .cb-tagreel {
        display: none;
    }
}

@media (min-width: 1100px) {
    .menu-wrapper {
        display: none;
    }
}

@media (max-width: 1350px) {
    .vtline-left {
        margin-left: 50px;
    }

    .vtline-right {
        margin-right: 50px;
    }

    .logo {
        left: 10%;
    }
}


@media (max-width: 700px) {
    .shaping-pt1 {
        font-size: 40px;
        width: 400px;
    }

}

@media (max-width: 1600px) {
    .title-pt3 {
        font-size: 70px;
    }

    .text-pt3 {
        font-size: 20px;
        width: 40vw;
    }
    
    .title-pt5  {
        font-size: 70px;
    }

    .title-pt4  {
        font-size: 70px;
    }

    .services-txtwrap {
        margin-right: 0;
    }
}


@media (max-width: 1450px) {
    .services-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .services-img {
        margin-bottom: 50px;
        width: 70%;
        height: 600px;
        margin-left: 0;
    }

    .services-txtwrap {
        margin-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .value-txt {
        text-align: start;
    }
}



@media (max-width: 1100px) {
    /* -------------------------------- No class -------------------------------- */

    *{
        cursor: default;
    }

    /* -------------------------- Responsiveness addons ------------------------- */
    .frame {
        display: none;
    }

    .wrapper1-pt1 {
        display: none;
    }

    .shaping-pt1 {
        z-index: 9998;
    }

    .cursor {
        display: none;
    }

    .cursor-follower {
        display: none;
    }

    .follower {
        display: none;
        opacity: 0;
    }

    .logo {
        display: none;
    }

    .pt-2 {
        display: none;
    }

    /* ---------------------------------- Pt-3 ---------------------------------- */

    .pt-3 {
        margin-top: 50px;
    }

    .wrapper-pt3 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .imgwrap-pt3 {
        background: url(./images/3Dberbaracrop.jpg) center no-repeat;
        width: 746px;
        height: 395px;
        margin-top: 20px;
    }

    .title-pt3 {
        text-align: center;
        margin-bottom: 50px;
        width: 530px;
    }

    .text-pt3 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-left: 0;
        text-align: center;
        width: 700px;
    }

    /* ---------------------------------- pt-4 ---------------------------------- */
    .services-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .services-img {
        margin-bottom: 50px;
        width: 700px;
        height: 400px;
    }

    .services-txtwrap {
        margin-right: 0;
        text-align: center;
        margin-bottom: 50px;
        margin-left: 0;
    }

    .services-title {
        font-size: 32px;
    }

    .services-paragraph {
        font-size: 15px;
    }

    .value-txt {
        text-align: start;
    }

    /* ---------------------------------- pt-5 ---------------------------------- */
    .paragraph-pt6 {
        font-size: 20px;
    }

    /* -------------------------------- projects -------------------------------- */
    .items {
        margin-left: 0;
    }

    .item {
        width: 80vw;
        height: 49.58vh;
        margin-right: 20px;
    }

    .item1 {
        margin-left: 20px;
    }
}


@media (max-width: 800px) {
    /* ---------------------------------- pt-3 ---------------------------------- */
    .imgwrap-pt3{
        width: 500px;
        height: 400px;
    }

    .title-pt3 {
        font-size: 55px;
        width: 411.5px;
    }

    .text-pt3 {
        font-size: 16px;
        width: 400px;
    }

    /* ---------------------------------- pt-5 ---------------------------------- */
    .title-pt6 {
        font-size: 55px;
    }

    .paragraph-pt6 {
        width: 400px;
        font-size: 16px;
        margin-bottom: -40px;
    }

    /* ---------------------------------- pt-7 ---------------------------------- */
    .pt-7 {
        padding-top: 450px;
    }

    .touch-pt7 {
        margin-top: 100px;
    }

    .wrapper1-pt7 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .small-input {
        margin-left: 0;
        margin-right: 0;
        width: calc(80% + 30px);
    }

    .long-input {
        width: calc(80% + 30px);
    }

    .small-input1 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .location-wrapper {
        flex-direction: column-reverse;
    }

    .addressh1-pt7 {
        text-align: center;
        margin-top: -5px;
    }

    .monday-friday {
        width: 300px;
    }

    .addressmenu-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100vw - 80px);
        padding-right: 100px;
    }
    
    .embed-responsive-item {
        width: 100vw;
        height: 40vh;
        margin-top: 70px;
    }

    .submit {
        margin-bottom: 70px;
    }

    .country-wrap {
        flex-direction:column;
        margin: 0;
        width: auto;
        width: auto;
    }

    .lebanon-wrap {
        margin-right: 0;
        margin-bottom: 30px;
        width: auto;
    }

    .country-wrap {
        align-items: center;
        text-align: center;
    }

    footer {
        margin-top: 9000px;
    }
}


/* ---------------------------------- pt-4 ---------------------------------- */
@media (max-width: 1550px) {
    .services-txtwrap {
        margin-left: 50px;
    }

    .tos-wrapper {
        flex-direction: column;
    }

    .privacy {
        margin-left: 0;
    }
}


@media (max-width: 1800px) {
    .services-txtwrap {
        margin-right: 50px;
        margin-left: 50px;
    }
}

@media (max-width: 1700px) {
    .services-txtwrap {
        margin-right: 30px;
    }
}


@media (max-width: 750px) {
    .title-pt5 {
        font-size: 50px;
    }

    .title-pt4 {
        font-size: 50px;
    }

    .services-img {
        width: 500px;
        height: 300px;
    }

    .services-txtwrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 0;
    }

    .services-title {
        font-size: 30px;
        width: 500px;
    }

    .servicesparagraph {
        font-size: 17px;
        width: 550px;
    }
}


@media (max-width: 530px) {
    .services-title {
        font-size: 25px;
        width: 450px;
    }

    .servicesparagraph{
        font-size: 15px;
        width: 450px;
    }
}

@media (max-width: 1367px){
    .monday-friday {
        width: 300px;
    }

    .pt-7 {
        margin-top: 350px;
    }

    .touch-pt7 {
        margin-top: 100px;
    }

    .wrapper1-pt7 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .small-input {
        margin-left: 0;
        margin-right: 0;
        width: calc(80% + 30px);
    }

    .long-input {
        width: calc(80% + 30px);
    }

    .small-input1 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .location-wrapper {
        flex-direction: column-reverse;
    }

    .addressh1-pt7 {
        margin-top: -5px;
    }

    .addressmenu-wrapper {
        margin-left: 100px;
    }

    .monday-friday {
        width: 300px;
    }

    
    .embed-responsive-item {
        width: 100vw;
        height: 40vh;
        margin-top: 70px;
    }

    .submit {
        margin-bottom: 70px;
    }

    footer {
        margin-top: 350px;
    }

}


@media (max-width: 1270px) {
    .footer-ul {
        display: none;
    }
}

@media (max-width: 1100px) {
    .cookies-wrapper {
        display: none;
    }

    .footer-redlogo {
        margin-bottom: 0;
    }
}

@media (max-width: 870px) {
    .tos-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        width: 100vw;
        margin-top: 120px;
    }

    .privacy {
        margin-left: 20px;
    }
    
    .copyright {
        margin-left: -80px;
    }

    .footer-redlogo {
        display: none;
    }

    .footer-mainlogo {
        margin-top: -20px;
    }

    footer {
        margin-top: 650px;
    }
}


@media (max-width: 500px) {
    /* ---------------------------------- pt-1 ---------------------------------- */
    .shaping-pt1 {
        font-size: 32px;
        width: 300px;
    }

    /* ---------------------------------- pt-3 ---------------------------------- */
    .title-pt3 {
        font-size: 45px;
        width: 340px;
    }

    .p-pt3 {
        width: 340px;
    }

    /* ---------------------------------- pt-5 ---------------------------------- */
    .title-pt5 {
        font-size: 42px;
        width: 351.58px;
    }

    .services-img {
        width: 375px;
        height: 240px;
    }

    .services-title {
        width: 350px;
        font-size: 20px;
    }

    .servicesparagraph {
        width: 350px;
    }

    /* ---------------------------------- pt-6 ---------------------------------- */
    .title-pt6 {
        font-size: 42px;
    }

    .paragraph-pt6 {
        width: 340px;
    }
    
    /* -------------------------------- projects -------------------------------- */
    .title-pt4 {
        font-size: 42px;
        width: 250px;
    }

    /* ---------------------------------- pt-7 ---------------------------------- */
    .addressmenu-wrapper {
        width: calc(100vw - 200px);
    }
    

    /* --------------------------------- footer --------------------------------- */
    footer {
        margin-top: 650px;
    }

    .tos-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100vw;
        margin-top: 120px;
    }

    .privacy {
        margin-left: -80px;
    }
    
    .copyright {
        margin-left: -80px;
    }
}