html , body {
    height : 100%;
}
* {
    box-sizing: border-box;
    direction: rtl;
    scroll-behavior: smooth;
}
.contentContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.Divider {
    height: 20px;
}
.navbar {
    height: 50px;
}
#myNavbar {
    display: flex;
    flex-direction: row;
    justify-content: right;
}
.linksContainer {
    display: flex;
    flex-direction: row;
    justify-content: right;

}
.logoContainer {
    width: auto;
    height: 50px;
}
.logoContainer img , .logoContainer a {
    height : 100%;
    width: auto;
    margin-left: 20px;
}
.linksContainer a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 20px;
}
.socialLinks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.socialLinks a {
    font-size: 30px;
    text-decoration: none;
}
.phoneNavbar a{
    display: flex!important;
    justify-content: right;
}
.phoneNavbarLinkContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
header {
    height : calc(100vh - 20px)
}
.headerContainer {
    background-position: center;
    background-size: cover;
    background-image: url("/public/images/mac.jpg");
}
.header {
    display: flex;
    flex-direction: column;
    justify-content: right;
    padding: 20px;
}
.header div {
    text-shadow: 2px 2px 0px rgba(0,0,0,0.6);
}
.headerText {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sectionsContainer {
    height: 100vh;
    display: flex;
    color: #000;
    background-color: #f1f1f1;
}
.sectionsContainerOdd {
    background-color: #ccc !important;
}
.sectionsDivs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.otherServices {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}
.gridText {
    text-align: center;
}
.gridText h3 {
    font-size: 40px;
}
.gridContainer {
    display: flex;
    flex-direction : row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
    margin: 50px 10px;
}
.grid {
    display: flex;
    flex-direction: column;
    height: 250px;
    flex-basis: 20%;
    border-radius : 10px;
    box-shadow: 0px 0px 30px 5px #000000
}
.grid:hover {
    transition: all 1s;
    transform: scale(1.2,1.2);
}

.imageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.imageContainer img {
    max-height: 100%;
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.infoContainer {
    height: 20%;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #ccc
}
.info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: black;
}
.info p {
    font-size: 15px;
    font-weight: 1000;
}


.contactContainer {
    display: flex;
    flex-direction: column;
}
.contactTitle {
    padding: 20px;
}
.contactTitle h3 {
    font-size: 35px;
    font-weight: 400;
}
.contactInfoMapContainer {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.contactInfoContainer , .contactMapContainer {
    flex-basis: 50%;
}
.contactInfoContainer p{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    font-size: 20px;
}
.contactMapContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gmap_canvas ,.gmap_canvas iframe {
    width: 100%;
    height: 100%;
}
.footerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.aboutUs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-basis: 60%;
    padding: 40px;
    text-align: justify;
    text-justify: inter-word;
}
.aboutUs h4 {
    font-weight: 500;
    font-size: 30px;
}
.aboutUs p {
    text-align: right;
    font-size: 20px;
    text-align: justify;
    text-justify: inter-word;
    padding-right : 25px;
}
.footerSocialsContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 30%;
    gap: 10px;
    padding-left: 120px;
}
.footerSocials {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 50px 50px;
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.footerSocials a {
    width: 100%;
    height : 100%;
    font-size: 40px;
}
.footerSocialsText {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 25px;
}

@media screen and (min-width: 1400px) {
    .gmap_canvas {
        width: 450px;
        height: 300px;
    }
}
@media screen and (max-width: 1400px) {
    .gmap_canvas {
        width: 450px;
        height: 300px;
    }
}
@media screen and (max-width: 800px) {
    .gmap_canvas {
        width: 300px;
        height: 200px;
    }
}
@media screen and (max-width: 750px) {
    .otherServices {
        height : 200vh!important;
    }
    .grid {
        flex-basis: 50%;
        height: 200px;
    }
    .gridText {
        display: none;
    }
}
@media screen and (max-width: 650px) {
    .gmap_canvas {
        width: 270px;
        height: 180px;
    }
    .headerTitle h1{
        font-size: 50px!important;
    }
}
@media screen and (max-width: 610px) {
    .contactContainer {
        height: 200vh;
        gap: 70px;
    }
    .contactInfoMapContainer {
        flex-direction: column;
    }
    .gmap_canvas {
        width: 450px;
        height: 300px;
    }
    .footerContainer {
        flex-direction: column;
    }
    .footerSocialsContainer {
        flex-basis: 60%;
        padding: 0;
    }
}
@media screen and (max-width: 450px) {
    .grid {
        flex-basis: 70% ;
    }
    .gmap_canvas {
        width: 270px;
        height: 180px;
    }
    .headerTitle h1{
        font-size: 40px!important;
    }
}
@media screen and (max-width: 400px) {
    .sectionsDivs {
        flex-direction: column;
    }
    .sectionsContainer {
        padding : 15px 15px!important;
    }
    .gmap_canvas {
        width: 270px;
        height: 180px;
    }
    .headerTitle h1{
        font-size: 40px!important;
    }
}