:root {
    --original-font: "Opensans-Regular", Arial, Helvetica, sans-serif;
    --secondary-font: "Opensans-Light", Arial, Helvetica, sans-serif;
    --secondary-font-bold: "Opensans-Bold", Arial, Helvetica, sans-serif;
    --original-font-fa: "Shabnam-Medium", Vazir;
    ----secondary-font-fa: "Shabnam-Light", Vazir;
    --secondary-font-bold-fa: "Shabnam-Bold", Vazir;
}


:root {
    --mair-color: rgb(91, 120, 246);
    --secondary-color: #5f85d8;
    --text-color: #ffffff;
    --bg-color: #222222;
    --body-bg-color: #2d2d33;
    --border-color: #1f1f1f;
    --gradient-start: rgb(26, 26, 26);
    --gradient-end: #0c0c0c;
    --bg-gradient-start: #2d2f31;
    --bg-gradient-end: #272a2e;
}


* {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
    font-family: var(--original-font-fa);
    direction: rtl;
}


::-webkit-scrollbar{
    width: .4vw;
}

::-webkit-scrollbar-track{
    background-color: rgba(36, 36, 36, 0.68);
    border-radius: 2rem;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(rgba(153, 153, 153, 0), rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0));
    border-radius: 5rem;
    transition: background-color .3s ease;

}
::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(rgb(38, 38, 38)10%, rgba(104, 100, 255, 0.71), rgb(38, 38, 38)90%);
    box-shadow:0 0 20px black;

}
*, *:after, *:before {
    box-sizing: inherit;
}

body {
    line-height: 1.6;
    font-size: 1.6rem;
    transition: all 0.5s ease-in-out;
    background-color: var(--gradient-end);
    color: var(--text-color);
}


/*

-- Reset Style --

*/

a {
    text-decoration: none;
}


/*

-- Helper Class --

*/

.bg-gradient {
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end));
}

.btn {
    width: 5rem;
    height: 5rem;
    margin: 0 2rem;
}

/*
============
---Loading---
============
 */

.loader {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    background-color: rgba(0, 0, 0, 0.22);    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.bar {
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 10px;
    animation: scale-up4 1s linear infinite;
}

.bar:nth-child(2) {
    height: 35px;
    margin: 0 5px;
    animation-delay: .25s;
}

.bar:nth-child(3) {
    animation-delay: .5s;
}

@keyframes scale-up4 {
    20% {
        background-color: #ffff;
        transform: scaleY(1.5);
    }

    40% {
        transform: scaleY(1);
    }
}
.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/*
============
---header---
============
 */


header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


header::after {
    content: '';
    position: absolute;
    bottom: 17rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: white;
    background: -o-linear-gradient(190deg, white 0%, rgba(255, 255, 255, 0.2) 100%);
    background: linear-gradient(260deg, white 0%, rgba(255, 255, 255, 0.21) 100%);
    -webkit-filter: blur(150px);
    filter: blur(150px);
    animation: after 1s ease-in-out;

}

@keyframes after {
    0% {
        transform: translateY(-30rem);
    }
    100% {
        transform: translateY(.5rem);
    }
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 118rem;
    width: 90%;
    padding: 3rem 0;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;

}
.menu a {
    margin: 0 2.5rem;
    color: var(--text-color);
    opacity: 0.5;
    transition: all ease 0.3s;
    cursor: pointer;
}

.menu a:hover {
    opacity: 1;
}


.logo,
.footer-logo {
    font-size: 2.6rem;
    color: var(--text-color);
    font-weight: 500;
}

.logo-img {
    margin-top: 1rem;
    width: 6rem;
    height: 4rem;
}

.mg-right {
    margin-right: 6rem;
}

.icon-contact {
    display: none;
    border-radius: 2rem;
}

.nav-contact {
    background-color: var(--bg-color);
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    color: var(--text-color);
    transition: all 0.4s ease;
}

.nav-contact:hover {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.23);
}


/*

======================
    Navigation Menu
======================

*/
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -26rem;
    bottom: 0;
    width: 25rem;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 0 10px black;
    background-color: rgba(17, 25, 40, 0.28);    padding: 2.5rem;
    transition: all 250ms ease-in-out;
    z-index: 500;
}

.nav-menu--open {
    right: 0;
}
.close-menu{
    display: none;
    position: absolute;
    left: 3rem;

}
.nav-menu__title {
    color: white;
    font-size: 2rem;
    font-family: var(----secondary-font-fa);
    border-bottom: 2px solid white;
    border-radius: 1rem;
    padding-bottom: 1rem;
    margin: 5rem 0 2rem 0;
    text-align: center;
}


/*

==============
  Mobile Menu
==============

*/


.mobile-menu {
    margin-bottom: 3rem;
}

.mobile-menu__item {
    margin-bottom: 1rem;
}

.mobile-menu__link {
    color: white;
    position: relative;
    transition: all 250ms ease-in-out;
}
.line-link::before,
.mobile-menu__link::before {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0.3rem;
    border-radius: 5rem;
    background-color:var(--secondary-color);
    transition: all 250ms ease-in-out;
}
.mobile-menu__link:hover {
    padding-right: 2.2rem;
}
.mobile-menu__link:hover::before {
    width: 1.6rem;
}

.line-link::before{
    width: 1.6rem;

}

.line-link{
    padding-right: 2.2rem;
    position: relative;
}

/*

=============
   Nav Btn
=============

*/
.nav__btn {
    width: 1.5rem;
    height: 5.5rem;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;

}

.nav__btn-line {
    display: block;
    width: 1.5rem;
    height: 0.3rem;
    border-radius: 5rem;
    background-color:white;
    position: relative;
    transition: all 150ms ease-in-out;
}

.nav__btn-line::before,
.nav__btn-line::after {
    content: ' ';
    position: absolute;
    width: 3rem;
    height: 0.3rem;
    border-radius: 5rem;
    background-color: white;
    transition: all 200ms ease-in-out;
}

.nav__btn-line::before {
    top: -0.8rem;
}

.nav__btn-line::after {
    top: 0.8rem;
}

.nav__btn--open .nav__btn-line {
    background-color: transparent;
}

.nav__btn--open .nav__btn-line::before {
    transform: translateY(8px) rotate(45deg);
}

.nav__btn--open .nav__btn-line::after {
    transform: translateY(-8px) rotate(-45deg);
}


/*
===================
-------main--------
===================
 */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 2rem;
    width: 90%;
    max-width: 118rem;
    margin: 7rem auto;
}

/*
===================
-------profile-----
===================
 */
.profile-grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 3rem;
    width: 100%;
    grid-column: 1/3;
    padding: 5rem;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.profile-box-img {
    width: 100%;
    height: 24rem;
    border-radius: 3rem 0 3rem 0;
    display: flex;
    overflow: hidden;
}

.profile-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-box-text {
    display: flex;
    flex-direction: column;
}

.profile-box-text span {
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 1.5rem;
    opacity: 0.4;
}

.profile-box-text h1 {
    color: var(--text-color);
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 4.1rem;
}

.profile-box-text p {
    color: var(--text-color);
    margin: 1.5rem 0;
    font-size: 1.5rem;
    opacity: 0.4;
}

.profile-box-text img {
    opacity: 0.5;
    margin-left: auto;
    position: absolute;
    left: 4rem;
    bottom: 3rem;
    transition: all ease 0.3s;
    transform: rotate(180deg);
}

.profile-grid-box:hover .profile-box-text img {
    opacity: 1;
}


/*
==================
--about project--
==================
 */

.about-project-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 5.5rem 1fr;
    grid-gap: 2rem;
    grid-column: 3/5;
}

.marquee-grid-box {
    grid-column: 1/3;
    height: 5.5rem;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 2rem;
    opacity: 0.5;
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
    opacity: 0.5;
}

@keyframes marquee {
    0%   { transform: translateX(-150%) }
    100% { transform: translateX(120%) }
}


/*
==================
------resume-----
==================
 */

.resume-container {
    max-width: 118rem;
    width: 90%;
    margin: auto;
    margin-bottom: -3rem;
}

.resume-box-container {
    display: flex;
    margin-top: 10rem;
}

.resume-profile {
    width: 40%;
    align-items: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
    height: 10%;
    margin-top: 7rem;
}

.resume-profile-box {
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 4rem;

}

.resume-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 3rem;
}

.resume-profile-text {
    display: flex;
    align-items: center;
    flex-direction: column;

}

.resume-profile-text h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-top: 4rem;
}

.resume-profile-text p {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0.5;
}

.resume-profile-Social {
    margin-top: 3rem;
}

.resume-profile-icon {
    width: 5.2rem;
    height: 5.2rem;
    padding: 1rem;
    border: 2px solid white;
    border-radius: 5rem;
    background: linear-gradient(320deg, rgba(255, 179, 0, 0) -3%, rgba(255, 0, 68, 0) 63%, rgba(98, 0, 255, 0) 95%);
    transition: all 0.4s ease;
}

@keyframes icon {

    100% {
        filter: hue-rotate(360deg);
    }
}

.resume-profile-icon:hover.icon-1 {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #ff53d4 60%, #62c2fe 90%);
    animation: icon 5s ease;
}


.resume-profile-icon:hover.icon-2 {
    background-color: rgb(0, 183, 255);
    border: 2px solid rgba(0, 183, 255, 0);


}


.resume-profile-icon:hover.icon-3 {
    background-color: rgb(0, 0, 0);
    border: 2px solid rgba(0, 0, 0, 0);
    fill: white;


}


.resume-profile-icon:hover.icon-4 {
    background-color: rgb(0, 119, 255);
    border: 2px solid rgba(0, 0, 0, 0);
    fill: white;


}

.resume-profile-submit {
    width: 100%;
    background-color: var(--bg-color);
    text-align: center;
    border-radius: 3rem;
    padding: 1rem;
    margin-top: 2rem;
    color: var(--text-color);
    transition: all 0.4s ease;
}

.resume-profile-submit:hover {
    background-color: var(--gradient-start);
    box-shadow: 0 0 15px rgb(0, 0, 0);
}

.resume-information {
    margin-right: 5rem;
    line-height: 2;

}


.eduction-title {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.eduction-years {
    opacity: .4;
    line-height: 2;
}

.eduction-certificate {
    color: var(--secondary-color);
    font-family: var(--secondary-font-bold-fa), sans-serif;
}

.eduction-university {
    opacity: .4;
}

.eduction-caption {
    margin-top: 2rem;
    margin-bottom: 5rem;
    line-height: inherit;
}


.resume-container-skills {
    margin-bottom: 3rem;
}


.resumes-skills-box h2 {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.info1 span {
    opacity: 0.7;
}

.line {
    width: 100%;
    height: 7px;
    position: relative;
    background-color: #232323;
    border-radius: 5rem;
}

.line::before {
    content: '';
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.77), rgba(102, 102, 102, 0.71));
    border-radius: 4rem;
}

.line.one::before {
    width: 100%;
    animation: line1 1s ease-in-out;
}

.line.two::before {
    width: 100%;
    animation: line2 2s ease-in-out;
}

.line.three::before {
    width: 30%;
    animation: line3 3s ease-in-out;
}

.line.four::before {
    width: 20%;
    animation: line4 4s ease-in-out;
}

.line.five::before {
    width: 8%;
    animation: line5 5s ease-in-out;
}

@keyframes line1 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes line2 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes line3 {
    0% {
        width: 0;
    }
    100% {
        width: 30%;
    }
}

@keyframes line4 {
    0% {
        width: 0;
    }
    100% {
        width: 20%;
    }
}


.resume-container-eduction-box{
}
.resume-container-eduction-box-info{

}
.resume-container-eduction-box-img{

}
.resume-container-eduction-box-img img{
    width: 23rem;
    height: 15rem;
    border-radius: .7rem;
}
/*
====================
---Services Offer---
====================
 */
.box-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
    height: 100%;
}

.box-grid .grid-box-img {
    height: 55%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    margin: auto;
}
.blog-grid-img{
    width: 70%;
    object-fit: cover;
    display: block;
    border-radius: 3rem;
}
.grid-text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.grid-text {
    display: flex;
    flex-direction: column;
}

.grid-icon {
    display: flex;
    flex-direction: column;
    opacity: 0.5;
    left: 4rem;
    bottom: 3rem;
    transition: all ease 0.3s;
    transform: rotate(180deg);
}

.grid-text span {
    color: var(--text-color);
    opacity: 0.6;
    letter-spacing: 0.4px;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.grid-text strong {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.grid-icon {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.box-grid:hover .grid-icon {
    opacity: 1;
}


.services-grid {
    grid-column: 2/4;

}

.services-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 400rem;
    margin: auto;
    margin-top: 4rem;
}


.icon-code {
    margin-top: 10px;
}

.icon-design {
    margin-top: 10px;
}

.icon-motion {
    fill: none;
    margin-top: 10px;
}

.icon-branding {
    margin-top: 10px;

}

.grid-text-container {
    color: var(--text-color);
    font-size: 1.8rem;
    opacity: 0.9;
}


/*
===================
------social-------
===================
 */


.social-container {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    grid-gap: 2rem;
    margin-bottom: 1.5rem;
}


.social-container a {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: #1b1b1b;
    color: var(--text-color);
    font-size: 2.6rem;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.06);
    font-weight: 300;
    transition: all 0.3s ease;
}

.box-btn:hover {
    color: var(--text-color);
    background-color: var(--text-color);
    border: 1px solid transparent;
}


.box-btn:hover .icon-btn {
    fill: #000;
}

.cls-1 {
    stroke-width: 2px;

}

.box-btn:hover .cls-2 {
    stroke: black;
}

.icon-btn {
    margin: 1.7rem;
    width: 4.5rem;
}


/*
===================
---project-count---
===================
 */
.project-count-grid {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

.grid-project-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
}

.grid-project-box span {
    color: var(--text-color);
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.grid-project-box strong {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-color);
    opacity: 0.5;
    font-weight: 300;
    line-height: 1.8rem;
    max-width: 10rem;
}


/*
==================
-----contact------
==================
 */
.contact-grid {
    grid-column: 3/5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    position: relative;
    font-family: var(--secondary-font-bold-fa), sans-serif;
}

.contact-grid h2 {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 500;
    line-height: 3.1rem;
}

.contact-grid h2 span {
    color: var(--mair-color);
}

.contact-grid img {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.contact-grid:hover img {
    opacity: 1;

}

.contact-grid-top-icon {
    position: absolute;
    left: 3rem;
    top: 0;
}

.contact-grid-top-icon{
    opacity: 0.5;
    margin-left: auto;
    position: absolute;
    right: 4rem;
    bottom: 3rem;
    transition: all ease 0.3s;
}

.contact-img-icon{
    opacity: 0.5;
    margin-left: auto;
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    transition: all ease 0.3s;
    transform: rotate(180deg);
}
/*
==================
------footer------
==================
 */
footer {
    display: flex;
    flex-direction: column;
    width: 98%;
    margin: auto;
    justify-content: center;
    align-items: center;

}

footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    grid-gap: 5px;
}

footer ul li a {
    color: var(--text-color);
    opacity: 0.7;
    margin: 0 2rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    opacity: 1;
}


footer span {
    color: var(--text-color);
    font-size: 1.5rem;
    opacity: 0.4;
    margin: 2rem 0 4rem 0;
}


/*
====================================
-------------about------------------
====================================
 */

.about-main-grid .contact-grid {
    grid-column: 2/4;
}

.about-heading {
    font-size: 3.5rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 1.5rem;
}

.about-img-text {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-gap: 2rem;
    max-width: 118rem;
    align-items: flex-end;
    margin:7rem auto;
    width: 90%;

}

.about-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    border-radius: 4rem;
}

.about-img {
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 4rem;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    padding: 2rem;
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.about-text img {
    height: 80px;
    object-fit: contain;
    object-position: center left;
    margin-bottom: 7px;
}

.about-text h1 {
    color: var(--text-color);
    font-size: 2.6rem;
    font-weight: bold;
}

.about-text p {
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 5px;
}

.edu-work-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    max-width: 118rem;
    width: 90%;
    margin: 2rem auto -3rem auto;
}

.edu-grid,
.work-grid {
    align-items: flex-start;

}

.edu-grid h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.edu-box {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.edu-box strong {
    color: var(--text-color);
    font-weight: bold;
    margin: 3px 0 2px 0;
}

.edu-box span {
    color: var(--text-color);
    opacity: 0.5;
    font-weight: 500;
    letter-spacing: 0.4px;
    font-size: 1.5rem;
}

/*
====================================
-----------services-----------------
====================================
 */
.services-container,
.project-container {
    max-width: 118rem;
    width: 90%;
    margin:7rem auto -3rem auto;
}


.services-container h1,
.project-container h1 {
    color: var(--text-color);
    font-size: 4rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0 2rem;
}

.services-container h1 span,
.project-container h1 span {
    color: var(--mair-color);
}

.services-box-container {
    display: flex;
    margin-top: 8rem;
}

.services-container div h1 {
    text-align: center;
    font-size: 5rem;
    font-family: var(----secondary-font-fa), sans-serif;
    position: relative;
}

.services-box-two {
    width: 98%;
    display: flex;
    padding: 3rem;
    flex-direction: column;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
    margin-right: 2rem;
}

.services-box {
    width: 40%;
    align-items: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
}

.services-box h3 {
    color: var(--text-color);
    font-size: 1.6rem;
    letter-spacing: 1px;
    opacity: .5;
    font-weight: bold;
    text-transform: uppercase;
}

.services-box p {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-top: 5px;
    opacity: 0.9;
}

.services-offering-box {
    display: flex;
    flex-direction: column;


}

.icon-box-two {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: var(----secondary-font-fa), sans-serif;
    font-size: 1.6rem;
}

.btn-offering {
    width: 4rem;
    height: 4rem;
    margin: 5.5rem 1rem 5.5rem 3rem;

}

.services-text-box {
    margin-top: 2rem;
    padding: 3rem;
    border-radius: 3rem;
    background-color: #232323;
    transition: all 0.4s ease;
    position: relative;
}

.services-text-box:hover {
    box-shadow: 0 0 40px #000000;
    transform: translateY(-10px);
}

.services-box-title {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.42);
}

.services-box-caption {
    font-family: var(--secondary-font), sans-serif;
    color: rgba(255, 255, 255, 0.81);
    margin-top: 1rem;
}

/*
====================================
-------------WORK------------------
====================================
 */
.project-box-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

.project-box {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 3rem;
    border: 1px solid var(--border-color);
}

.project-box-img {
    border-radius: 3rem;
    display: flex;
    overflow: hidden;
    height: 30rem;
    width: 100%;
}

.project-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-box-text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-box-text {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.project-box-text span {
    color: var(--text-color);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.project-box-text strong {
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: .2px;
}

.project-box-text-container img {
    opacity: 0.3;
    transition: all ease 0.3s;
    transform: rotate(180deg);
}

.project-box:hover .project-box-text-container img {
    opacity: 1;
}


/*
====================================
-----------CONTACT------------------
====================================
 */
.contact-heading {
    font-size: 3.6rem;
    color: var(--text-color);
    max-width: 118rem;
    width: 90%;
    margin: 8rem auto 4rem auto;
    font-weight: 600;
    text-align: center;
}

.contact-heading span {
    color: var(--mair-color);

}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 2rem;
    margin:auto;
    max-width: 118rem;
    width: 90%;
}
.container-box{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background:linear-gradient(35deg, rgba(28, 27, 27, 0.12), rgba(17, 17, 17, 0.58)) ;
    padding: 2rem 0;
    height: 52rem;
    border: 1px solid var(--border-color);
    border-radius: 2rem;

}
.contact-box {
    padding: 1rem 6rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 5rem 1fr;
    grid-gap: 2rem;
    align-items: center;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 1.9rem;
}

.contact-text {
    display: flex;
    flex-direction: column;

}

.contact-text strong {
    color: var(--text-color);
    opacity: 0.5;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-text span {
    color: var(--text-color);
    font-weight: 600;
}


.box-input{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: var(--original-font-fa),sans-serif;
    background:linear-gradient(200deg, rgba(0, 0, 0, 0.17), rgba(76, 76, 76, 0.11));
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
}
.box-input label{
    color:var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.box-text-email{
    display: flex;
    justify-content: space-between;

}

.box-subject-budget{
    display: flex;
    justify-content: space-between;

}
input:nth-of-type(2){
    margin-right: 1rem;
}
.input{
    width: 100%;
    padding:2rem 3rem;
    margin:.8rem 0;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background:linear-gradient(200deg, var(--gradient-start),var(--gradient-end));
    outline: none;
    color: var(--text-color);
    box-shadow:  0 0 1rem black;
    font-family: var(--original-font-fa);

}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow:inset 0 0 0 100px rgb(23, 23, 23);
    -webkit-text-fill-color:var(--text-color) !important;
    caret-color: #ffffff;
}

input:focus{
    box-shadow: inset 0 0 2rem black;

}
.textarea{
    resize: vertical;
    max-height: 18rem;
    min-height: 8rem;
    font-family: var(--original-font-fa),sans-serif;

}
.submit{
    cursor: pointer;
}
.submit:active{
    color: #00ff5b;
}
.card {
    position: relative;
    width: 200px;
    height: 200px;
    background: rgba(211, 211, 211, 0);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    transition: all 1s ease-in-out;
}

.background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 107%, var(--bg-gradient-end) 0%, var(--bg-gradient-end) 30%, var(--gradient-start) 60%, var(--gradient-end) 100%);
}

.logo-icon {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    transition: all 0.6s ease-in-out;
}

.logo-icon h1 {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
}

.logo-icon h1 ::before {
    content: '';
    position: absolute;
    width: 3rem;
    height: .2rem;
    background-color: var(--text-color);
    border-radius: 2rem;
}

.logo-icon .logo-svg {
    fill: white;
    width: 30px;
    height: 30px;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.icon .svg {
    fill: rgba(255, 255, 255, 0.797);
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.box {
    position: absolute;
    padding: 10px;
    text-align: right;
    background: rgba(255, 255, 255, 0.389);
    border-top: 2px solid rgb(255, 255, 255);
    border-right: 1px solid white;
    border-radius: 10% 13% 42% 0 /10% 12% 75% 0;
    box-shadow: rgba(100, 100, 111, 0.364) -7px 7px 29px 0;
    transform-origin: bottom left;
    transition: all 1s ease-in-out;
}

.box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.box:hover .svg {
    fill: white;
}

.box1 {
    width: 70%;
    height: 70%;
    bottom: -70%;
    left: -70%;
}

.box1::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #ff53d4 60%, #62c2fe 90%);
}

.box1:hover::before {
    opacity: 1;
}

.box1:hover .icon .svg {
    filter: drop-shadow(0 0 5px white);
}

.box2 {
    width: 50%;
    height: 50%;
    bottom: -50%;
    left: -50%;
    transition-delay: 0.2s;
}

.box2::before {
    background: radial-gradient(circle at 30% 107%, #91e9ff 0%, #00ACEE 90%);
}

.box2:hover::before {
    opacity: 1;
}

.box2:hover .icon .svg {
    filter: drop-shadow(0 0 5px white);
}

.box3 {
    width: 30%;
    height: 30%;
    bottom: -30%;
    left: -30%;
    transition-delay: 0.4s;
}

.box3::before {
    background: radial-gradient(circle at 30% 107%, #b9ffc4 0%, #00ff5b 90%);
}

.box3:hover::before {
    opacity: 1;
}

.box3:hover .icon .svg {
    filter: drop-shadow(0 0 5px white);
}

.box4 {
    width: 10%;
    height: 10%;
    bottom: -10%;
    left: -10%;
    transition-delay: 0.6s;
}

.card:hover {
    transform: scale(1.1);
}

.card:hover .box {
    bottom: -1px;
    left: -1px;
}

.card:hover .logo-icon {
    transform: translate(0, 0);
    bottom: 20px;
    right: 20px;
}
#alertMessage {
    position: fixed;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    opacity: 0;
    transition: all 0.5s ease;
    display: none;
    z-index: 9999;
}
.alert-error {
    background: #f44336 !important;
}
/*
================
----language---
================
*/
.language-box {
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    left: 0rem;
    bottom: 30rem;
    width: 10rem;
    height: 5rem;
    align-items: center;
    border-radius: 6rem;
    background-color: #1b1b1b;
}

.language {
    display: flex;
    align-items: center;

}

.language-icon {
    margin: 0 1rem;
    width: 2.3rem;
    height: 2.3rem;
}



