/* Start General Rules */

:root {
    --main-color: #00adb5;
    --secondary-color: #222831;
    --tertiary-color: #393e46;
    --paragraph-color: #707070;
    --main-padding: 100px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 80px 40px 40px;
    background-color: #1f1f1f;
    font-family: "Raleway", sans-serif;
    position: relative;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #1f1f1f;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.loader h2 {
    color: #1f1f1f;
    max-width: 40%;
}

@media (max-width: 767px) {
    .loader h2 {
        max-width: 90%;
    }
}

.loader h2:first-child {
    font-family: "Cairo", sans-serif;
}

.loader.get-down {
    transform: translateY(25%);
    -webkit-transform: translateY(25%);
    -moz-transform: translateY(25%);
    -ms-transform: translateY(25%);
    -o-transform: translateY(25%);
}

.loader.get-up {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    opacity: 0;
}

.loader.none {
    display: none;
}

.loader div {
    padding: 4px 12px;
    border: 3px solid #1f1f1f;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    cursor: pointer;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.loader div span:first-child {
    font-family: "Cairo", sans-serif;
}

.loader div:hover {
    color: #fff;
    background-color: #1f1f1f;
}

@media (max-width: 991px) {
    body {
        padding: 80px 0 0;
    }
}
.fa-arrow-left-long {
    color: #fff;
    padding: 8px;
    background-color: #1f1f1f;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
    position: absolute;
    font-size: 20px;
    top: 30px;
    left: 40px;
}
.fa-arrow-left-long:hover {
    background-color: #ffffff1b;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Small Devices, Tablets (≥768px) */
@media (min-width: 768px) {
    /* Styles for small devices and up */
    .container {
        width: 750px;
    }
}

/* Medium Devices, Desktops (≥992px) */
@media (min-width: 992px) {
    /* Styles for medium devices and up */
    .container {
        width: 970px;
    }
}

/* Large Devices, Large Desktops (≥1200px) */
@media (min-width: 1200px) {
    /* Styles for large devices and up */
    .container {
        width: 1170px;
    }
}

/* End General Rules */

/* Start Components */

.special-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
}

.special-title::after {
    content: "";
    position: absolute;
    width: 12%;
    height: 3px;
    background-color: var(--main-color);
    left: 0;
    bottom: -8px;
}

@media (max-width: 991px) {
    .special-title::after {
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
    }
}

/* End Components */

/* Start Landing */

.landing {
    padding: 30px;
    background-image: url(../images/Background.png);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    position: relative;
}

.landing nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing nav .logo {
    max-width: 130px;
}

.landing nav .logo img {
    width: 100%;
}

.landing nav ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.landing nav ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;

    padding: 2px 8px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.landing nav ul li a:hover {
    opacity: 0.7;
    background-color: #ffffff2c;
}

.mobile-menu {
    display: none;
}

.landing nav .mobile-menu .icon {
    display: block;
    width: 45px;
    margin: 0px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.landing nav .mobile-menu .icon:hover {
    opacity: 0.7;
    background-color: #ffffff2c;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.mobile-menu .icon span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.mobile-menu .icon span:not(:last-child) {
    margin-bottom: 7.3px;
}
.mobile-menu .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    top: 50%;
    left: 50%;
    transform: translateX(200%) translateY(-200%);
    z-index: 100;
    -webkit-transform: translateX(200%) translateY(-200%);
    -moz-transform: translateX(200%) translateY(-200%);
    -ms-transform: translateX(200%) translateY(-200%);
    -o-transform: translateX(200%) translateY(-200%);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.landing nav .mobile-menu .menu .icon span:nth-of-type(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
    -webkit-transform: rotate(-45deg) translate(-7px, 7px);
    -moz-transform: rotate(-45deg) translate(-7px, 7px);
    -ms-transform: rotate(-45deg) translate(-7px, 7px);
    -o-transform: rotate(-45deg) translate(-7px, 7px);
}

.landing nav .mobile-menu .menu .icon span:nth-of-type(2) {
    opacity: 0;
}

.landing nav .mobile-menu .menu .icon span:nth-of-type(3) {
    transform: rotate(45deg) translate(-7px, -7px);
    -webkit-transform: rotate(45deg) translate(-7px, -7px);
    -moz-transform: rotate(45deg) translate(-7px, -7px);
    -ms-transform: rotate(45deg) translate(-7px, -7px);
    -o-transform: rotate(45deg) translate(-7px, -7px);
}

.mobile-menu .menu ul {
    flex-direction: column;
    text-align: center;
    gap: 50px;
}

.mobile-menu .menu .icon {
    position: absolute;
    top: 30px;
    right: 45px;
}

.landing nav .mobile-menu > .menu.active {
    opacity: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    nav > ul.menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
}

.landing .center-heading {
    width: 100%;
    height: calc(100vh - 85px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.landing .center-heading h1 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.landing .center-heading p {
    color: #fff;
}

@media (min-width: 768px) {
    .landing .center-heading h1 {
        max-width: 100%;
        font-size: 35px;
    }

    .landing .center-heading p {
        font-size: 15px;
        max-width: 70%;
    }
}

/* Medium Devices, Desktops (≥992px) */
@media (min-width: 992px) {
    .landing .center-heading h1 {
        max-width: 80%;
        font-size: 40px;
    }

    .landing .center-heading p {
        font-size: 18px;
        max-width: 60%;
    }
}

/* Large Devices, Large Desktops (≥1200px) */
@media (min-width: 1200px) {
    .landing .center-heading h1 {
        max-width: 50%;
        font-size: 60px;
    }

    .landing .center-heading p {
        font-size: 20px;
        max-width: 50%;
    }
}

.landing .scroll-down {
    position: absolute;

    left: 50%;
    bottom: 30px;
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    transform: translateX(-50%);
}

.landing .scroll-down a {
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.landing .scroll-down i {
    animation: 1s scroll-down infinite;
    -webkit-animation: 1s scroll-down infinite;
}

@keyframes scroll-down {
    0%,
    100% {
        transform: translateY(0) scale(1);
        -webkit-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(10px) scale(1.1);
        -webkit-transform: translateY(10px) scale(1.1);
        -moz-transform: translateY(10px) scale(1.1);
        -ms-transform: translateY(10px) scale(1.1);
        -o-transform: translateY(10px) scale(1.1);
    }
}

/* End Landing */

/* Start About Us */

.about-us {
    padding: var(--main-padding) 0;
    background-color: #fff;
}

.about-us .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-us .col:first-child {
    flex: 3;
}

.about-us .col:nth-child(2) {
    flex: 1;
}

.about-us .col p {
    font-size: 18px;
    color: var(--paragraph-color);
    line-height: 1.8;
    max-width: 80%;
}

.about-us .col .contact-btn {
    display: block;
    padding: 10px 20px;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    margin-top: 30px;
    width: fit-content;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.about-us .col .contact-btn:hover {
    opacity: 0.7;
}

.about-us .col .contact-btn i {
    margin-left: 20px;
}

.about-us .col .image {
    max-width: 300px;
    text-align: center;
    position: relative;
}

.about-us .col .image::after {
    content: "";
    height: 110%;
    width: 60px;
    background-color: var(--tertiary-color);
    position: absolute;
    top: -6.5%;
    right: -5px;
    z-index: -1;
    box-shadow: 0 0 20px #00000048;
}

.about-us .col .image img {
    width: 100%;
}

@media (max-width: 991px) {
    .about-us .col .image {
        display: none;
    }
    .about-us .container {
        text-align: center;
        justify-content: center;
    }
    .about-us .col p {
        max-width: 100%;
    }
    .about-us .col:first-child {
        flex: auto;
    }

    .about-us .col .contact-btn {
        margin: 30px auto;
    }
}

/* End About Us */

/* Start Services */

.services {
    padding: var(--main-padding) 0;
    background-color: #f7f7f7;
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.services .service {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 300px;
}

.services .service i {
    color: var(--main-color);
    font-size: 50px;
}

.services .service h3 {
    color: var(--secondary-color);
}

.services .service p {
    color: var(--paragraph-color);
    line-height: 1.8;
}

/* End Services */

/* Start Our Team */

.our-team {
    padding: var(--main-padding) 0;
    background-color: #fff;
}

.our-team .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.our-team .member img {
    width: 100%;
}

.our-team .member h3 {
    color: var(--secondary-color);
}

.our-team .member p:first-of-type {
    color: var(--main-color);
    margin: 5px 0;
    font-size: 14px;
}

.our-team .member p:nth-of-type(2) {
    color: var(--paragraph-color);
    font-size: 15px;
    line-height: 1.6;
}
.our-team .member i {
    font-size: 20px;
    color: var(--paragraph-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
}

.our-team .member i:hover {
    color: var(--main-color);
}

.our-team .member i:not(:first-of-type) {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .our-team .member {
        text-align: center;
    }
    .our-team .member img {
        width: 70%;
    }
}

/* End Our Team */

/* Start Contact Us */

.contact-us {
    padding: var(--main-padding) 0;
    background-color: #f7f7f7;
}

.contact-us .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contact-us .col {
    flex: 1;
}

.contact-us .col:first-child {
    display: flex;
    justify-content: center;
}

.contact-us .container .image {
    max-width: 300px;
    text-align: center;
    position: relative;
}

.contact-us .container .image::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 180px;
    background-color: var(--main-color);
    bottom: -40px;
    right: -25px;
    box-shadow: 0 0 20px #00000040;
    z-index: 3;
}

.contact-us .container .image::before {
    content: "";
    position: absolute;
    height: 120%;
    width: 60px;
    background-color: var(--tertiary-color);
    top: -10%;
    left: -30px;
    z-index: 1;
}

.contact-us .container .image img {
    width: 100%;
    box-shadow: 0 0 20px #00000040;
    z-index: 2;
    position: relative;
}

.contact-us .container .col form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us .container .col form input {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #393e46;
    padding: 15px;
}

::placeholder {
    color: var(--paragraph-color);
    font-size: 14px;
}

.contact-us .container .col form button {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 15px;
    color: #fff;
    background-color: var(--main-color);
    border: none;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
}

.contact-us .container .col form button:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .contact-us .col:first-child {
        display: none;
    }
    .contact-us .container .col form {
        max-width: 80%;
        margin: auto;
    }
    .contact-us .container .col:nth-child(2) {
        text-align: center;
    }
}

/* End Contact Us */

/* Start Footer */

footer .information {
    padding: 50px;
    background-color: var(--tertiary-color);
}

footer .information .container {
    display: flex;
    gap: 50px;
}

footer .col-one {
    flex: 1;
}

footer .col-one h2 {
    color: var(--main-color);
}

footer .col-one p {
    color: #fff;
    /* max-width: 70%; */
    line-height: 1.8;
    font-weight: 500;
}

footer .col-one p span {
    color: var(--main-color);
    text-decoration: underline;
    cursor: pointer;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

footer .col-one p span:hover {
    opacity: 0.7;
}

footer .col-two {
    flex: 1;
}

footer .information .container .links {
    display: flex;
    justify-content: space-between;
}

footer .information .container .links h4 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #fff;
}

footer .information .container .links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .information .container .links ul li {
    color: #949494;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    cursor: pointer;
}

footer .information .container .links ul li:hover {
    color: #fff;
}

footer .copy-rights {
    background-color: var(--secondary-color);
    padding: 20px;
    color: #fff;
    font-size: 16px;
}

footer .copy-rights .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copy-rights .container div:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .copy-rights .container img {
    max-width: 100px;
}

@media (max-width: 767px) {
    footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* End Footer */

/* Start Animations */

.hidden {
    opacity: 0;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.left.hidden {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

.right.hidden {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
}

.down.hidden {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}

.up.hidden {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.dl-2.hidden {
    transition-delay: 200ms;
}

.dl-4.hidden {
    transition-delay: 400ms;
}

.dl-6.hidden {
    transition-delay: 600ms;
}

.dl-8.hidden {
    transition-delay: 800ms;
}

.show {
    opacity: 1;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
    -moz-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
}

/* End Animations */
