.class {
    color: #3a1c71;
    color: #8960bc;
    color: #c72433;
    color: #e4323d;
    color: #212529;
    color : #3a3683;
    color : #5450a5;
    color: #2d2a6d;
}

:root {
    --black:#1d1d1d ;
    --black1:#0e0e0e;
    --black2:#111111 ;
    --white:#fff ;
    --background: rgba(0, 0, 0, 0.7);

    --blue: #3a3683;
    --blight : #5450a5;
    --bdark: #2d2a6d;
    --purple:#59327d ;
    --plight: #8960bc;
    --red:#c72433 ;
    --rlight: #e4323d;
    --white0:#fff ;
}

.light {
    --black1:#ffffff;
    --black:#f7f7f7 ;
    --white:#16181a ;
    --background: rgba(255, 255, 255, 0.7);
}

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    min-height: 1000px;
    overflow-x: hidden;
    background: var(--black);
    
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--blight);
}

.loader-bg {
    position: fixed;
    z-index: 999999;
    background: var(--black);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader::before,
.loader::after {
    content: '';
    border: 8px solid var(--blight);
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 1s linear infinite;
    opacity: 0;
}

.loader::before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.fb_dialog_content iframe:nth-child(1){
    animation: unset !important;
    bottom: 60px !important;
    right: -2px !important;
    margin: 0px !important;
}

.fb_dialog_content iframe:nth-child(2) {
    bottom: 50px !important;
    width: 1px !important;
    right: 0px !important;
}

div.welcomePageModalSheetContent {
    margin: 0px 24px !important;
}

.scroll-top {
    position: fixed;
    bottom: 800px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    background-size: 30px;
    cursor: pointer;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: .5s ;
}

.scroll-top i {
    position: absolute;
    color: var(--white0);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    cursor: pointer;
    transition: .2s ease ;
}

.scroll-top i:hover {
    transition: .2s ease ;
    opacity: .7;
}


.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}

.fabs {
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 100;
}

.fabs .action {
    background: var(--red);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
}

.fabs .action i {
    position: absolute;
    color: var(--white0);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    transition: .4s ease ;
}

.fabs .action i:hover {
    opacity: .7;
    transition: .4s ease ;
}

.fabs .btns {
    position: absolute;
    bottom: 0px;
    margin-bottom: 5px;
    height: 55px;
    width: 55px;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s all ease;
    z-index: -1;
}

.fabs .btns.open {
    bottom: 60px;
}

.fabs .btns .btn {
    position: absolute;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s all ease;
}

.fabs .btns .btn i {
    position: absolute;
    font-size: 40px;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-45%, -50%);
}

.fabs .whatsapp-container {
    position: absolute;
    background: #fff;
    right: 70px;
    bottom: 70px;
    width: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease;
}

.fabs .whatsapp-container.active {
    visibility: visible;
    opacity: 1;
    transition: .3s all ease;
}

.fabs .whatsapp-container .whatsapp-title {
    background: #25D366;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.fabs .whatsapp-container .whatsapp-title h3 {
    font-size: 23px;
    font-weight: 500;
}

.fabs .whatsapp-container .whatsapp-title i {
    font-size: 35px;
}

.fabs .whatsapp-container .whatsapp-content {
    padding: 15px;
}

.fabs .whatsapp-container .whatsapp-content p {
    color: #c0c0c0;
    font-size: 13px;
}

.fabs .whatsapp-container .whatsapp-content a {
    text-decoration: none;
}

.fabs .whatsapp-container .whatsapp-content .whatsapp-conv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding: 10px;
    background: #eeeded;
    border-radius: 5px;
    border-right: 2px solid #25D366;
}

.fabs .whatsapp-container .whatsapp-content .whatsapp-conv .cont {
    display: flex;
    align-items: center;
}

.fabs .whatsapp-container .whatsapp-content .whatsapp-conv .cont h3 {
    color: #585858;
    font-size: 17px;
}

.fabs .whatsapp-container .whatsapp-content .whatsapp-conv .cont img {
    width: 50px;
    background: #fff;
    border-radius: 100%;
    margin-left: 8px;
}

.fabs .whatsapp-container .whatsapp-content .whatsapp-conv i {
    font-size: 25px;
    color: #25D366;
}

header {
    background-image: url('../img/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

header #particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 1;
}

header .svg-up svg{
    position: absolute;
    background: none;
    right: 0;
    bottom: 0;
    fill: var(--black);
    transition: .3s;
}

header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 100px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

header nav.sticky {
    background: var(--blue);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    transition: ease-in-out .3s;
}

header nav .logo {
    position: relative;
    max-width: 70px;
}

header nav ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav ul li {
    list-style: none;
    display: flex;
    margin: 0 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 6px;
}

header nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--blight);
    bottom: 0;
    transform: scale(0,1);
    transition: .4s;
}
header nav ul li a:hover::before {
    transform: scale(1,1);
}

header nav ul li a:nth-last-child(1)::before {
    background: none;
}

header nav ul li a {
    display: inline-block;
    color: var(--white0);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

header nav ul li a:hover{
    margin-bottom: 8px;
    transition: .3s;
}

header nav ul li a.active {
    margin-bottom: 8px;
    text-shadow: 0px 10px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

header .content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .content .textBox {
    position: relative;
    max-width: 600px;
    z-index: 2;
    margin-right: 20px;
}

header .content .textBox h1 {
    font-size: 3em;
    color: #fff;
    line-height: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

header .content .textBox h1 span {
    font-size: .8em;
    font-weight: 400;
}

header .content .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--red);
    color: var(--white0);
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s ease;
}
header .content .textBox a:hover {
    background: var(--blight);
    transition: .4s ease;
}

header .content .imgBox {
    position: relative;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .content .imgBox img {
    position: relative;
    z-index: 1;
    max-width: 400px;
}



.about-section {
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .about {
    background: url('../img/background3.jpg') no-repeat right;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    padding: 100px 60px;
    z-index: 1;
}

.about-section .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.about-section .inner-container {
    position: relative;
    width: 80%;
    background-color: var(--black);
    padding: 65px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    margin: auto;
}

.about-section .inner-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    transform: skew(2deg, 2deg);
    z-index: -1;
    background: linear-gradient(315deg,var(--bdark),var(--blight));
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 900;
    color: var(--white);
}

.about-section h2 span {
    background: linear-gradient(to right,var(--bdark),var(--blight));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.about-section .text {
    font-size: 16px;
    color: var(--white);
    line-height: 30px;
    text-align: justify;
    margin-bottom: 20px;
}

.about-section .skills {
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    margin-right: 15px;
}

.about-section .skills li {
    margin-bottom: 8px;
}

.about-section .skills li::marker {
    color: var(--blight);
}

.services-section {
    padding-top: 70px;
}

.services-section .title {
    text-align: center;
    color: var(--white);
}

.services-section .title h2 {
    position: relative;
    font-size: 65px;
    margin: 10px;
    margin-top: 0;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.services-section .title h2::before {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    right: 35%;
    top: 60%;
    z-index: -2;
}
.services-section .title h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 35%;
    top: 60%;
    z-index: -2;
}

.services-section .title.t2 h2::before {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    right: 26%;
    top: 60%;
    z-index: -2;
}
.services-section .title.t2 h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 26%;
    top: 60%;
    z-index: -2;
}

.services-section .title h2 span {
    background: var(--black);
    padding: 0 8px;
}

.services-section .title p {
    margin: 10px;
    margin-top: 0;
    font-size: 20px;
}


.services-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-section .container .services {
    width: 1000px;
    position: relative;
    margin: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services-section .container .services .box {
    position: relative;
    height: 250px;
    width: 45%;
    display: flex;
    margin: 30px 0;
    background: #fff;
    border-radius: 10px;
}

.services-section .container .services .box .imgBx {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--blue), var(--blight));
    color: #fff;
    font-size: 80px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: .5s ease-in-out;
    border-radius: 8px;
}

.services-section .container .services .box:hover .imgBx {
    width: 150px;
    height: 150px;
    right: -75px;
    top: calc(50% - 75px);
    transition: .5s ease-in-out;
}

.services-section .container .services .box .imgBx::before {
    letter-spacing: 2px;
    content: attr(data-text);
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 50px;
}

.services-section .container .services .box:hover .imgBx {
    font-size: 60px;
}

.services-section .container .services .box .content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc (100% - 75px);
    height: 100%;
    padding: 20px;
    padding-right: 100px;
}

.services-section .container .services .box .content h2 {
    margin-bottom: 5px;
    font-size: 24px;
}

.services-section .container .services .box .content span {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: var(--blight);
    text-decoration: none;
    color: #fff;
    transition: .2s;
}

.services-section .container .services .box .content span:hover {
    background: var(--blue);
    transition: .2s;
    cursor: pointer;
}


.services-section .pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.services-section .pricing .card {
    position: relative;
    min-width: 320px;
    height: 500px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3),
    -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 30px;
}

.services-section .pricing .card .box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--black);
    border-radius: 15px;
    border: 2px solid var(--black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s, box-shadow 0.4s;
}

.services-section .pricing .card:hover .box {
    transform: translateY(-50px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5);
}

.services-section .pricing .card .box .content {
    padding: 20px;
    text-align: center;
}

.services-section .pricing .card .box .content .icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(to right,var(--bdark),var(--blight));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

.services-section .pricing .card .box .content .icon .fas {
    color: var(--white0);
    font-size: 2em;
}

.services-section .pricing .card .box .content h3 {
    font-size: 1.9em;
    color: var(--white);
    font-weight: 300;
}

.services-section .pricing .card .box .content h4 {
    font-size: 2em;
    color: var(--white);
    font-weight: 700;
}

.services-section .pricing .card .box .content h4 sup {
    font-size: 0.75em;
    font-weight: 300;
}

.services-section .pricing .card .box .content p {
    color: var(--white);
}

.services-section .pricing .card .box .content ul {
    position: relative;
}

.services-section .pricing .card .box .content ul li {
    list-style: none;
    color: var(--white);
    margin: 5px 0;
}

.services-section .pricing .card .box .content ul li .fa-check {
    color: var(--blight);
    margin-left: 5px;
}

.services-section .pricing .card .box .content ul li .fa-times {
    color:var(--red);
    margin-left: 5px;
}

.services-section .pricing .card .box .content span {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(to left,var(--bdark),var(--blight));;
    margin-top: 15px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--white0);
    font-weight: 400;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.services-section .modal-bg,
.services-section .host-modal-bg {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200000;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}
.services-section .bg-active {
    visibility: visible;
    opacity: 1;
    transition: .5s;
}

.services-section .modal {
    position: relative;
    background-color: var(--black);
    width: 50%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
}

.services-section .modal h2 {
    margin-bottom: 25px;
    color: var(--white);
}

.services-section .modal .txtb {
    position: relative;
    margin-bottom: 35px;
    width: 100%;
}

.services-section .modal .txtb input,
.services-section .modal .txtb textarea {
    width: 100%;
    resize: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    background: var(--black);
}

.services-section .modal .txtb span {
    position: absolute;
    right: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: .3s;
    color: var(--white);
}

.services-section .modal .txtb input:focus ~ span,
.services-section .modal .txtb input:valid ~ span,
.services-section .modal .txtb textarea:focus ~ span,
.services-section .modal .txtb textarea:valid ~ span {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    font-weight: 500;
}

.services-section .modal button {
    padding: 10px 30px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

.services-section .modal span.alert {
    color: #8581d8;
    position: relative;
    margin-right: 5px;
    display: none;
}

.services-section .modal-close,
.services-section .host-modal-close{
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: bold;
    cursor: pointer;
    color: var(--white);
}

.work-section {
    padding-top: 80px;
}

.work-section .title {
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.work-section .title h2 {
    font-size: 65px;
    margin: 10px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.work-section .title h2::before {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    right: 36%;
    top: 60%;
    z-index: -2;
}
.work-section .title h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 36%;
    top: 60%;
    z-index: -2;
}

.work-section .title h2 span {
    background: var(--black);
    padding: 0 8px;
}

.work-section .analyses {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
    margin-bottom: 90px;
    background: url('../img/background1.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.work-section .analyses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.work-section .analyses .card {
    background-color: var(--background);
    position: relative;
    min-width: 190px;
    height: 180px;
    border-radius: 15px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
}

.work-section .analyses .card i {
    font-size: 45px;
    margin-bottom: 20px;
}

.work-section .analyses .card .counter {
    font-size: 45px;
    margin-bottom: 5px;
}
.work-section .analyses .card .counter1 {
    font-size: 45px;
    display: flex;
}

.work-section .projects {
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-section .projects .swiper-container {
    width: 75%;
    padding-bottom: 50px;
}

.work-section .projects .swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 450px;
    background: linear-gradient(to top, var(--blight), var(--blue));
    border-radius: 50px;
}

.work-section .projects .swiper-container-3d .swiper-slide-shadow-left,
.work-section .projects .swiper-container-3d .swiper-slide-shadow-right {
    border-radius: 50px;
}

.work-section .projects .swiper-slide .imgBx {
    position: relative;
    width: 250px;
    min-height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.work-section .projects .swiper-slide .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-section .projects .swiper-slide .contentBx h3 {
    margin-top: 35px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.work-section .projects .swiper-slide .contentBx p {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: .3s;
}

.work-section .projects .swiper-slide .contentBx p:hover {
    background: #dddcdc;
    transition: .3s;
}

.work-section .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: var(--blight);
}

.work-section .work-modal-bg {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200000;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}

.work-section .work-bg-active {
    visibility: visible;
    opacity: 1;
    transition: .5s;
}

.work-section .work-modal {
    position: relative;
    display: flex;
    background-color: var(--black);
    width: 95%;
    max-height: 95%;
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    overflow-y: scroll;
}

.work-section .work-modal .img-container {
    width: 50%;
}

.work-section .work-modal .img-container .big-img {
    height: 80%;
    width: 100%;
    padding: 15px;
}

.work-section .work-modal .img-container .big-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.work-section .work-modal .img-container .small-img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.work-section .work-modal .img-container .small-img img {
    border: 2px solid var(--white);
    padding: 5px;
    margin-bottom: 10px;
    height: 100%;
    width: 20%;
    object-fit: contain;
    cursor: pointer;
}

.work-section .work-modal .content {
    width: 50%;
    margin-right: 20px;
}

.work-section .work-modal .content h2 {
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    width: fit-content;
    width: -moz-fit-content;
}
.work-section .work-modal .content h2::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    height: 5px;
    background: var(--blight);
    width: 100%;
}

.work-section .work-modal .content span {
    color: var(--white);
}

.work-section .work-modal .content p {
    color: var(--white);
    margin-top: 50px;
}

.work-section .work-modal .content h3 {
    margin-top: 50px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    width: fit-content;
    width: -moz-fit-content;
}

.work-section .work-modal .content h3::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    height: 5px;
    background: var(--blight);
    width: 100%;
}

.work-section .work-modal .content .download-link {
    display: flex;
    margin-bottom: 15px;
}

.work-section .work-modal .content .download-link a {
    text-decoration: none;
    margin-left: 15px;
    border: 3px solid var(--blight);
    border-radius: 10px;
    padding: 5px;
    color: var(--white);
}

.work-section .work-modal .work-modal-close{
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: bold;
    cursor: pointer;
    color: var(--white);
}

.contacts-section {
    padding-top: 70px;
}

.contacts-section .title {
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.contacts-section .title h2 {
    font-size: 65px;
    margin: 10px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.contacts-section .title h2::before {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    right: 31%;
    top: 60%;
    z-index: -2;
}
.contacts-section .title h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 31%;
    top: 60%;
    z-index: -2;
}

.contacts-section .title h2 span {
    background: var(--black);
    padding: 0 8px;
}

.contacts-section .contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contacts-section .contacts .container {
    position: relative;
    min-width: 1100px;
    min-height: 550px;
    display: flex;
    z-index: 1000;
}

.contacts-section .contacts .container .contact-info {
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background: var(--blue);
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
}

.contacts-section .contacts .container .contact-info h2 {
    color: var(--white0);
    font-size: 24px;
    font-weight: 500;
}

.contacts-section .contacts .container .contact-info ul.info {
    position: relative;
    margin: 20px 0;
}

.contacts-section .contacts .container .contact-info ul.info li {
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}

.contacts-section .contacts .container .contact-info ul.info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

.contacts-section .contacts .container .contact-info ul.info li span:nth-child(1) i {
    max-width: 100%;
    font-size: 30px;
    filter: invert(1);
}

.contacts-section .contacts .container .contact-info ul.info li span:nth-child(2) {
    color: var(--white0);
    margin-right: 10px;
    font-weight: 300;
}
.contacts-section .contacts .container .contact-info ul.info li span:nth-child(2) a{
    text-decoration: none;
    color: var(--white0);
}

.contacts-section .contacts .container .contact-info ul.info li span.number {
    direction: ltr;
}

.contacts-section .contacts .container .contact-info ul.sci {
    position: relative;
    display: flex;
}

.contacts-section .contacts .container .contact-info ul.sci li {
    list-style: none;
    margin-left: 25px;
}

.contacts-section .contacts .container .contact-info ul.sci li a {
    text-decoration: none;
}

.contacts-section .contacts .container .contact-info ul.sci li a:hover
i.fa-facebook {
    color: #2e5fa0;
}

.contacts-section .contacts .container .contact-info ul.sci li a:hover
i.fa-twitter {
    color: #3b8efa;
}

.contacts-section .contacts .container .contact-info ul.sci li a:hover
i.fa-instagram {
    color: #E1306C;
}

.contacts-section .contacts .container .contact-info ul.sci li a i {
    max-width: 100%;
    font-size: 30px;
    color: #fff;
    transition: .3s;
}

.contacts-section .contacts .container .contact-form {
    position: absolute;
    padding: 70px 50px;
    padding-right: 250px;
    margin-right: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: var(--black1);
    box-shadow: -1px 0px 15px;
}

.contacts-section .contacts .container .contact-form h2 {
    color: var(--white0);
    font-size: 24px;
    font-weight: 500;
}

.contacts-section .contacts .container .contact-form .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox {
    position: relative;
    margin-bottom: 35px;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox.w50 {
    width: 47%;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox.w100 {
    width: 100%;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox input,
.contacts-section .contacts .container .contact-form .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
    background: var(--black1);
}

.contacts-section .contacts .container .contact-form .formBox .inputBox textarea {
    height: 120px;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox span {
    position: absolute;
    right: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: .3s;
    color: var(--white);
}

.contacts-section .contacts .container .contact-form .formBox .inputBox span.alert {
    position: relative;
    margin-right: 5px;
    display: none;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox input:focus ~ span,
.contacts-section .contacts .container .contact-form .formBox .inputBox input:valid ~ span,
.contacts-section .contacts .container .contact-form .formBox .inputBox textarea:focus ~ span,
.contacts-section .contacts .container .contact-form .formBox .inputBox textarea:valid ~ span {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    font-weight: 500;
}

.contacts-section .contacts .container .contact-form .formBox .inputBox button {
    position: relative;
    cursor: pointer;
    color: #fff;
    background: var(--blue);
    border: none;
    max-width: 150px;
    padding: 12px 20px;
    transition: .3s;
    font-size: 18px;
    font-weight: 300;

}

.contacts-section .contacts .container .contact-form .formBox .inputBox button:hover {
    background: var(--blight);
    transition: .3s;
}

footer {
    width: 100%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

footer .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    padding: 10px;
}

footer .content p {
    font-size: 15px;
    color: var(--white);
}

footer .content p a {
    font-weight: 700;
    text-decoration: none;
    color: var(--blue);
    transition: .2s ease;
}

footer .content p a:hover {
    text-decoration: none;
    color: var(--blight);
    transition: .2s ease;
}















.themeSwitch {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.themeSwitch::before {
    content: '\f185';
    font-family: 'font awesome 5 free';
    color: var(--black);
}
.themeSwitch.active::before {
    content: '\f186';
}

/*responsive*/

@media (max-width: 1200px) {
    .contacts-section .contacts .container {
        width: 90%;
        min-width: auto;
        margin: 20px;
    }
}

@media (max-width: 991px) {

    body.disableScroll {
        overflow: hidden;
    }

    header {
        padding: 50px;
    }

    header .navigation {
        display: none;
    }
    header .navigation.active {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        background: var(--black);
        flex-direction: column;
        transition: .5s;
    }

    header nav .logo {
        margin-top: 6px;
    }

    header nav ul li {
        margin: 6px 0;
        font-size: 15px;
    }

    header nav ul li a {
        color: var(--white);
        font-size: 1.5em;
        font-weight: 400;
    }

    .toggle {
        position: relative;
        width: 30px;
        height: 30px;
        background: url(../img/menu.png);
        filter: invert(0);
        background-size: 30px;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 10000;
        transition: .2s linear;
    }
    .toggle:hover {
        opacity: .8;
        transform: scale(1.1);
    }
    .toggle.active {
        background: url(../img/close.png);
        background-size: 25px;
        background-position: center;
        background-repeat: no-repeat;
    }
    .light .toggle.active {
        filter: invert(1);
    }

    header nav {
        padding: 0 15px;
    }

    header .content {
        flex-direction: column-reverse;
    }

    header .content .textBox,
    header .content .imgBox {
        max-width: 100%;
        margin-right: 0px;
    }

    header .content .textBox h1 {
        font-size: 45px;
        margin-bottom: 0;
    }

    header .content .textBox a {
        margin-right: 110px;
    }

    header .content .imgBox img {
        max-width: 300px;
    }

    header .content .imgBox::before {
        clip-path: circle(111px at center);
    }

    .about-section .about {
        padding: 40px 40px;
    }

    .about-section .inner-container {
        width: 100%;
    }

    .services-section .container .services {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .services-section .container .services .box {
        width: 400px;
    }

    .services-section .container .services .box .imgBx::before {
        font-size: 40px;
        letter-spacing: 1.6;
    }

    .contacts-section .contacts .container {
        z-index: 0;
        display: flex;
        flex-direction: column-reverse;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .contacts-section .contacts .container .contact-form {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: none;
        border-radius: 0;
        margin-right: 0;
        padding: 25px;
    }

    .contacts-section .contacts .container .contact-form .formBox .inputBox.w50 {
        width: 100%;
    }

    .contacts-section .contacts .container .contact-info {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: none;
        border-radius: 0;
        top: 0;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contacts-section .contacts .container .contact-info ul.sci {
        margin-top: 40px;
    }


}

@media (max-width: 767px) {

    #fbchat {
        display: none !important;
    }

    .services-section .title h2 {
        font-size: 45px;
    }

    .services-section .title h2::before {
        right: 25%;
    }

    .services-section .title h2::after {
        left: 25%;
    }

    .services-section .title p {
        font-size: 17px;
    }

    .services-section .title.t2 h2 {
        font-size: 35px;
    }

    .services-section .title.t2 h2::before {
        right: 15%;
    }

    .services-section .title.t2 h2::after {
        left: 15%;
    }

    .services-section .title.t2 p {
        font-size: 14px;
    }

    .services-section .container .services .box {
        width: 300px;
        flex-direction: column;
        height: auto;
    }

    .services-section .container .services .box .imgBx {
        position: relative;
    }

    .services-section .container .services .box .imgBx::before {
        font-size: 55px;
        bottom: 40px;
        letter-spacing: 2.5px;
    }

    .services-section .container .services .box .imgBx,
    .services-section .container .services .box:hover .imgBx {
        width: 100%;
        height: 200px;
        right: 0;
    }

    .services-section .container .services .box .imgBx i {
        font-size: 100px;
    }

    .services-section .container .services .box .content {
        position: relative;
        width: 100%;
        padding: 20px;
    }

    .services-section .pricing {
        flex-direction: column;
    }

    .services-section .pricing .card {
        height: 450px;
    }

    .services-section .pricing .card .box .content .icon {
        width: 60px;
        height: 60px;
    }

    .services-section .modal {
        width: 90%;
    }

    .work-section .title h2 {
        font-size: 45px;
    }

    .work-section .title h2::before {
        right: 25%;
    }

    .work-section .title h2::after {
        left: 25%;
    }

    .work-section .analyses {
        flex-direction: column;
    }
    
    .work-section .work-modal .content .download-link a img {
        width: 110px;
    }

    .work-section .work-modal .content .download-link a img.small {
        width: 100px;
    }

    .contacts-section .contacts .container .contact-info ul.info li span:nth-child(1) i {
        font-size: 20px;
        margin-top: 3px;
    }

    .contacts-section .contacts .container .contact-info ul.sci li a i {
        font-size: 20px;
    }
}

@media (max-width: 577px) {
    header .content .imgBox{
        margin-bottom: 50px;
    }

    header .content .imgBox img {
        max-width: 200px;
    }

    header .content .textBox h1 {
        font-size: 35px;
    }

    header .content .textBox a {
        margin-right: 75px;
    }

    .fabs {
        right: 10px;
    }

    .fabs .whatsapp-container {
        width: 300px;
        right: 40px;
    }

    .scroll-top {
        left: 10px;
    }

    .services-section .title h2 {
        font-size: 45px;
    }

    .services-section .title h2::before {
        right: 5%;
    }

    .services-section .title h2::after {
        left: 5%;
    }

    .services-section .title.t2 h2 {
        font-size: 30px;
    }

    .services-section .title.t2 h2::before {
        right: 5%;
    }

    .services-section .title.t2 h2::after {
        left: 5%;
    }

    .services-section .title p {
        margin: 20px;
        font-size: 17px;
    }

    .services-section .pricing .card {
        height: 450px;
    }

    .services-section .pricing .card .box .content .icon {
        width: 60px;
        height: 60px;
    }

    .work-section .title h2 {
        font-size: 45px;
    }

    .work-section .title h2::before {
        right: 5%;
    }

    .work-section .title h2::after {
        left: 5%;
    }

    .work-section .work-modal {
        flex-direction: column;
        max-height: 85%;
    }

    .work-section .work-modal .img-container {
        width: unset;
    }

    .work-section .work-modal .img-container .big-img {
        display: flex;
        justify-content: center;
    }

    .work-section .work-modal .img-container .big-img img {
        width: 60%;
    }

    .work-section .work-modal .content {
        width: unset;
        margin-right: 0;
    }

    footer .content p {
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    body {
        min-width: 350px;
    }

    header .content .imgBox img {
        max-width: 170px;
    }

    header .content .textBox h1 {
        font-size: 30px;
    }

    header .content .textBox a {
        margin-right: 63px;
    }
}