@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

html[dir="rtl"] {
    text-align: right;
}

:root {
    --background-color: #ffffff;
    --main-color: #12223B;
    --second-color: #e29e38;
    --second-hover: #eba843;
    --paragraph-color: #667282;
    --section-color: #e9f7fe;
    --text-color: #ffffff;
}

.lightmode {
    --main-color: #13191D;
    --second-color: #cc8e32;
}

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style: none;
}

input {
    caret-color: var(--items-color);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--main-color);
}

::-webkit-scrollbar-thumb {
    background: var(--second-color);
    border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--second-hover);
}

::selection {
    background-color: var(--second-hover);
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

section{
    padding-block: 80px;
}

/* Start Scroll Up */

.scroll {
    position: fixed;
    bottom: 20px;
    right: -50px;
    background-color: var(--second-color);
    color: white;
    padding: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    transition: 0.6s;
    cursor: pointer;
    animation: up 1s linear alternate infinite;
}

.scroll.show {
    right: 20px;
}

.scroll:hover {
    background-color: var(--second-hover);
    animation-play-state: paused;
}

@keyframes up {
    to {
        /* opacity: 0.7; */
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
    }
}

/* End Scroll Up */

/* Start Loading */

.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000 !important;
    background-color: #ffb703;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    height: 100px;
    position: relative;
    width: 100px;
    margin: 40px auto;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
    height: 100px;
    position: relative;
    width: 100px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.loading-img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

.loading-img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

/* End Loading */

/* Start Section Heading */

.section-heading p:first-of-type {
    color: var(--second-color);
    font-weight: bold;
}

.section-heading h2 {
    color: var(--main-color);
    font-size: 48px;
    margin-block: 5px 20px;
}

.section-heading p:last-of-type {
    color: var(--paragraph-color);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.section-heading.center {
    text-align: center;
    width: 70%;
    margin: 0 auto 60px;
}

@media screen and (max-width: 991px) {
    .section-heading.center {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .section-heading h2 {
        font-size: 42px;
    }

    .section-heading p:last-of-type {
        font-size: 14px;
    }

    .section-heading.center {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .section-heading h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .section-heading p:first-of-type {
        font-size: 14px;
    }

    .section-heading p:last-of-type {
        font-size: 12px;
    }

    .section-heading.center {
        width: 100%;
    }
}

/* End Section Heading */

/* Start Image */

.main {
    position: relative;
    padding: 40px;
    overflow: hidden;
    background-color: var(--background-color);
}

.main .content {
    position: relative;
    z-index: 1;
}

.container.image {
    background-image: url(../Images/services-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    overflow: hidden;
    z-index: -1;
}

.container.image .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    background-color: #081f41;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

/* End Image */

/* Start Header */

header {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #ffffff25;
    z-index: 5;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
}

header img {
    width: 40px;
    color: var(--second-color);
}

header ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

header ul li a {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    /* font-size: 18px; */
}

header ul li:hover a,
header ul li.active a {
    color: var(--second-hover);
}

header button {
    border: none;
    outline: none;
    padding: 7px 14px;
    background-color: var(--second-color);
    color: #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

header button:hover {
    background-color: var(--second-hover);
}

header .menu-bar {
    display: none;
}
.getSettings {
    position: absolute;
    bottom: -192%;
    opacity: 0;
    padding: 30px;
    min-width: 200px;
    width: fit-content;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--main-color);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

html[dir="ltr"] .getSettings {
    right: -300px;
}

html[dir="ltr"] .getSettings.show {
    right: 20px;
    opacity: 1;
}

html[dir="rtl"] .getSettings {
    left: -300%;
}

html[dir="rtl"] .getSettings.show {
    left: 20px;
    opacity: 1;
}

.settings button,
.settings a {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    padding: 7px 14px;
    background-color: var(--second-color);
    color: #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
}

.settings button:hover,
.settings a:hover {
    background-color: var(--second-hover);
}

.settings a:first-child {
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    header .menu-bar{
        display: block;
        font-size: 32px;
        color: var(--second-color);
        transition: 0.4s;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
        cursor: pointer;
    }

    header .menu-bar:hover{
        color: var(--second-hover);
    }

    header .set,
    header ul{
        display: none;
    }
}

/* End Header */

/* Start Responsive Nav */

.responsive-nav {
    position: fixed;
    top: 0;
    z-index: 1000000;
    background-color: var(--main-color);
    padding: 40px;
    box-shadow: -12px 8px 20px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

html[dir="ltr"] .responsive-nav {
    right: -100%;
}

html[dir="rtl"] .responsive-nav {
    left: -100%;
}

html[dir="ltr"] .responsive-nav.show {
    right: 0;
}

html[dir="rtl"] .responsive-nav.show {
    left: 0;
}

html[dir="ltr"] .responsive-nav .content {
    padding-right: 80px;
}

html[dir="rtl"] .responsive-nav .content {
    padding-left: 80px;
}

.responsive-nav .settings {
    position: static !important;
    opacity: 1 !important;
    padding: 0 !important;
    width: 100% !important;
}

.responsive-nav .settings button,
.responsive-nav .settings a {
    width: 100% !important;
    padding: 8px 16px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: var(--section-color);
    color: var(--main-color);
    border: none;
    outline: none;
}

.responsive-nav .settings button i,
.responsive-nav .settings a i {
    color: var(--second-color);
    font-size: 20px;
}

.responsive-nav .settings button span,
.responsive-nav .settings a span {
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.responsive-nav .settings button:hover span,
.responsive-nav .settings a:hover span {
    color: var(--second-color);
}

.responsive-nav>i {
    position: absolute;
    top: 40px;
    color: white;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    cursor: pointer;
}

html[dir="ltr"] .responsive-nav>i {
    right: 40px;
}

html[dir="rtl"] .responsive-nav>i {
    left: 40px;
}

.responsive-nav>i:hover {
    color: var(--second-color);
}

.responsive-nav .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.responsive-nav .logo img {
    width: 45px;
}

.responsive-nav .logo p {
    color: var(--second-color);
    font-size: 18px;
    font-weight: bold;
}

.responsive-nav .logo p span {
    color: var(--text-color);
    display: block;
}

.responsive-nav .link {
    margin-top: 30px;
    text-transform: capitalize;
    transition: 0.6s;
    width: fit-content;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

.responsive-nav .link:hover {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.responsive-nav .link a {
    transition: 0.3s;
    line-height: 1.6;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.responsive-nav .link a:hover {
    color: var(--second-color);
}

html[dir="ltr"] .responsive-nav .link i {
    color: var(--second-color);
    margin-right: 10px;
}

html[dir="rtl"] .responsive-nav .link i {
    color: var(--second-color);
    margin-left: 10px;
}

/* End Responsive Nav */

/* Start Landing Page */

.landing-page {
    position: relative;
    z-index: 2;
    padding-block: 90px !important;
}

.landing-page .container {
    text-align: center;
    width: 50%;
}

.landing-page p:first-of-type {
    color: var(--second-color);
}


.landing-page h1 {
    font-size: 46px;
    margin-block: 20px;
    color: #ffffff;
}

.fade-group {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.landing-page .path{
    display: flex;
    justify-content: center;
    gap: 7px;
}

.landing-page .path span{
    color: var(--text-color);
}

.landing-page .path p{
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .landing-page .container {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .landing-page .container {
        width: 90%;
    }

    .landing-page h1 {
        font-size: 40px;
    }

    .landing-page p:first-of-type {
        font-size: 14px;
    }

    .landing-page .btns a {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* End Landing Page */

/* Start Services */

.services{
    padding-block: 40px 80px;
}

.services .container{
    width: 80%;
}

.services .boxs{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.services .boxs .box{
    flex-basis: calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.services .boxs .box .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.8));
}

.services .boxs .box img{
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.services .boxs .box:hover img{
    transform: scale(1.1);
}

.services .boxs .box .text{
    position: absolute;
    bottom: 25px;
    right: 30px;
    left: 30px;
    z-index: 2;
    transform: translateY(70%);
    color: #ffffff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

html[dir="ltr"] .services .boxs .box .text {
    text-align: left;
}

html[dir="rtl"] .services .boxs .box .text{
    text-align: right;
}

.services .boxs .box:hover .text{
    transform: translateY(0%);
    bottom: 20px;
}

.services .boxs .box .text h3{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3em;
}

.services .boxs .box .text p{
    margin-block: 20px;
    opacity: 0;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.services .boxs .box:hover .text p{
    opacity: 1;
}

.services .boxs .box .text a{
    color: var(--second-color);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

html[dir="ltr"] .services .boxs .box .text a span i{
    margin-left: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

html[dir="rtl"] .services .boxs .box .text a span i{
    margin-right: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.services .boxs .box .text a:hover{
    color: var(--second-hover);
}

html[dir="ltr"] .services .boxs .box .text a:hover i{
    margin-left: 10px;
}

html[dir="rtl"] .services .boxs .box .text a:hover i{
    margin-right: 10px;
}

.services .container>a{
    position: relative;
    padding: 12px 24px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    border: 1px solid #fff;
    background-color: var(--second-color);
    overflow: hidden;
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

.services .container>a::before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    background-color: var(--main-color);
}

html[dir="ltr"] .services .container>a::before{
    left: -100%;
}

html[dir="rtl"] .services .container>a::before{
    right: -100%;
}

.services .container>a span{
    position: relative;
    z-index: 2;
}

html[dir="ltr"] .services .container>a span i{
    margin-left: 10px;
}

html[dir="rtl"] .services .container>a span i{
    margin-right: 10px;
}

html[dir="ltr"] .services .container>a:hover::before{
    left: 0;
}

html[dir="rtl"] .services .container>a:hover::before{
    right: 0;
}

@media screen and (max-width: 991px) {
    .services .boxs .box{
        flex-basis: 40%;
    }
}

@media screen and (max-width: 767px) {
    .services .boxs .box{
        flex-basis: calc(50% - 15px);
    }

    .services .boxs .box .text p{
        margin-block: 15px;
    }
}

@media screen and (max-width: 480px) {
    .services .boxs .box{
        flex-basis: 90%;
    }

    .services .container>a{
        padding: 9px 18px;
        font-size: 14px;
    }
}

/* End Services */

/* Start What We Do */

.what-we-do{
    background-color: var(--section-color);
    background-image: url(../Images/service.png);
    background-position: top right;
    background-repeat: no-repeat;
    padding-block: 80px;
}

.what-we-do .container{
    width: 80%;
}

.what-we-do .boxs{
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-do .boxs .box{
    flex-basis: calc(25% - 22.5px);
    background-color: var(--main-color);
    padding: 40px 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-align: center;
}

.what-we-do .boxs .box .num{
    font-size: 40px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

.what-we-do .boxs .box p{
    color: var(--paragraph-color);
    font-weight: bold;
    font-size: 14px;
}

@media screen and (max-width: 950px) {
    .what-we-do .container{
        width: 90%;
    }
}

@media screen and (max-width: 830px) {
    .what-we-do .boxs .box .num{
        font-size: 32px;
    }
    .what-we-do .boxs .box p{
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .what-we-do .boxs .box {
        flex-basis: 40%;
    }
}

@media screen and (max-width: 580px) {
    .what-we-do .boxs .box {
        flex-basis: calc(50% - 15px);
    }
}

@media screen and (max-width: 400px) {
    .what-we-do .boxs .box {
        flex-basis: 70%;
    }
}

/* End What We Do */

/* Start progress */

.progress .boxs{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
}

.progress .boxs .box{
    flex-basis: calc(33.33% - 26.66px);
    border: 1px solid #0000002c;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 30px;
}

.progress .boxs .box h3{
    color: var(--second-color);
    font-size: 36px;
}

.progress .boxs .box h4{
    color: var(--main-color);
    font-size: 24px;
    margin-block: 20px;
}

.progress .boxs .box p{
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.6px;
    word-spacing: 1px;
    color: var(--paragraph-color);
}

@media screen and (max-width: 991px) {
    .progress .boxs .box{
        flex-basis: calc(50% - 20px);
    }
}

@media screen and (max-width: 650px) {
    .progress .boxs .box{
        flex-basis: 100%;
    }
}

/* End progress */

/* Start Footer */
.footer {
    background-color: var(--main-color);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 40px;
}

.footer .container .about {
    flex-basis: 24%;
}

.footer .container .newsletter {
    flex-basis: 30%;
}

.footer .container .about {
    background-color: transparent;
}

.footer .container .box {
    flex-basis: 38%;
    display: flex;
    justify-content: space-between;
}

.footer .container .box .quick-links,
.footer .container .box .useful-links {
    flex-basis: 45%;
}

.footer .container .about .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .container .about .logo img {
    width: 50px;
}

.footer .container .about .logo p {
    color: var(--second-color);
    font-size: 24px;
    font-weight: bold;
}

.footer .container .about .logo p span {
    color: var(--text-color);
    display: block;
}

.footer .container .about .info>p {
    margin-block: 30px;
}

.footer .container .about .info p,
.footer .container .newsletter p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

html[dir="ltr"] .footer i {
    color: var(--second-color);
    margin-right: 10px;
}

html[dir="rtl"] .footer i {
    color: var(--second-color);
    margin-left: 10px;
}

.footer .useful-links .link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .useful-links i {
    margin-right: 0;
    font-size: 20px;
}

.footer h3 {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
    color: var(--second-color);
}

.footer .container .about .info>div {
    display: flex;
    margin-top: 15px;
}

.footer .container .about .info>div p {
    color: white;
    margin-left: 5px;
    letter-spacing: 0.7px;
}

.footer .container .link {
    margin-top: 20px;
    text-transform: capitalize;
    transition: 0.6s;
    width: fit-content;
}

html[dir="ltr"] .footer .container .link:hover {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

html[dir="rtl"] .footer .container .link:hover {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
}

.footer .container .link a {
    font-size: 14px;
    transition: 0.3s;
    line-height: 1.6;
}

.footer .container .link a:hover {
    color: var(--second-color);
}

.footer .container .newsletter input {
    padding: 8px 16px;
    width: 100%;
    margin: 15px 0;
    color: var(--main-color);
    border: none;
    background-color: var(--section-color);
}

.footer .container .newsletter input[type='submit'] {
    text-align: center;
    background-color: var(--second-color);
    padding: 8px 16px;
    border: none;
    color: white;
    width: 100%;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.footer .container .newsletter input[type='submit']:hover {
    background-color: var(--second-hover);
}

.footer footer {
    border-top: 1px solid #ffffff30;
    border-bottom: 1px solid #ffffff30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.footer footer .copyright p {
    color: var(--text-color);
    font-size: 14px;
}

.footer footer .social i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--second-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.footer footer .social i:hover {
    color: var(--second-hover);
    border-color: var(--second-hover);
}

@media (max-width:991px) {
    .footer .container {
        justify-content: center;
    }

    .footer .container .about,
    .footer .container .newsletter,
    .footer .container .box {
        flex-basis: 70%;
    }

    .footer .container .quick-links,
    .footer .container .useful-links {
        flex-basis: 35%;
        margin-block: 50px;
    }

    .footer .container h3 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer footer {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

@media (max-width: 524px) {

    .footer .container .about,
    .footer .container .newsletter,
    .footer .container .box {
        flex-basis: 90%;
    }

    .footer h3 {
        font-size: 18px;
    }

    .footer a,
    .footer p {
        font-size: 12px !important;
    }

    .footer .container .about .logo p {
        font-size: 24px !important;
    }
}

/* End Footer */