@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/eot/IRANSansWeb_Black.eot?#iefix") format("embedded-opentype"),
        url("../fonts/woff2/IRANSansWeb_Black.woff2") format("woff2"),
        url("../fonts/woff/IRANSansWeb_Black.woff") format("woff"),
        url("../fonts/ttf/IRANSansWeb_Black.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/eot/IRANSansWeb_Bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/woff2/IRANSansWeb_Bold.woff2") format("woff2"),
        url("../fonts/woff/IRANSansWeb_Bold.woff") format("woff"),
        url("../fonts/ttf/IRANSansWeb_Bold.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/eot/IRANSansWeb_Medium.eot?#iefix") format("embedded-opentype"),
        url("../fonts/woff2/IRANSansWeb_Medium.woff2") format("woff2"),
        url("../fonts/woff/IRANSansWeb_Medium.woff") format("woff"),
        url("../fonts/ttf/IRANSansWeb_Medium.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/eot/IRANSansWeb_Light.eot?#iefix") format("embedded-opentype"),
        url("../fonts/woff2/IRANSansWeb_Light.woff2") format("woff2"),
        url("../fonts/woff/IRANSansWeb_Light.woff") format("woff"),
        url("../fonts/ttf/IRANSansWeb_Light.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/eot/IRANSansWeb_UltraLight.eot?#iefix") format("embedded-opentype"),
        url("../fonts/woff2/IRANSansWeb_UltraLight.woff2") format("woff2"),
        url("../fonts/woff/IRANSansWeb_UltraLight.woff") format("woff"),
        url("../fonts/ttf/IRANSansWeb_UltraLight.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/eot/IRANSansWeb.eot?#iefix") format("embedded-opentype"),
        url("../fonts/woff2/IRANSansWeb.woff2") format("woff2"),
        url("../fonts/woff/IRANSansWeb.woff") format("woff"),
        url("../fonts/ttf/IRANSansWeb.ttf") format("truetype");
}

body {
    font-family: IRANsans;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --first-color: #03b162;
    --second-color: #031829;
    --text-gray: #888888;
    --radius: 10px;
}

/* general code */

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: unset;
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: unset;
}

a:focus {
    outline: none;
}

p {
    text-align: justify;
    line-height: 1.75;
    color: var(--text-gray);
}

.text-center p {
    text-align: center;
}

ul {
    padding: 0;
    list-style: none;
}

section {
    /* margin: 50px 0; */
}

.fas {
    font-family: "FontAwesome" !important;
    font-style: normal;
    font-weight: 500;
}

/* navbar */

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    border: none !important;
    outline: none;
}

.animated-icon1 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.animated-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.animated-icon1 span {
    background: black;
}

.animated-icon1 span:nth-child(1) {
    top: 0px;
}

.animated-icon1 span:nth-child(2) {
    top: 10px;
}

.animated-icon1 span:nth-child(3) {
    top: 20px;
}

.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* custom style */

.Navbar-class {
    background-color: white;
    color: black;
    padding: 10px 0;
}

nav.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.navbar .nav-link {
    transition: 0.4s;
    padding: 10px 15px !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--first-color);
}

.sm-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sm-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    padding-top: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--first-color);
    color: white;
    border-radius: 50%;
    transition: 0.4s;
    font-size: 20px;
}

.sm-list li:hover {
    background-color: var(--second-color);
}

.logo-header img:nth-child(1) {
    display: none;
}

.fixed-top {
    background-color: var(--second-color);
    color: white;
}

.fixed-top .logo-header img:nth-child(1) {
    display: block;
}

.fixed-top .logo-header img:nth-child(2) {
    display: none;
}

.fixed-top .animated-icon1 span {
    background-color: white;
}

@media (max-width: 990px) {
    nav.navbar {
        justify-content: flex-start;
    }

    .navbar-nav {
        padding-top: 15px;
    }
}

/* Top-header */

.Top-header {
    background-color: var(--first-color);
    color: white;
    padding: 10px 0;
}

.Top-header-box {
    display: flex;
    justify-content: space-between;
}

.Top-header-box-item {
    padding: 0 20px;
}

.Top-header-box-item a {
    direction: ltr;
}
.Top-header-box-item.box-phone {
    background: #fff;
    border-radius: 13px;
    padding:3px 10px;
    color:var(--first-color);
    font-weight: 600;
}.Top-header-box-item.box-phone a{
   
}
/* homepage */

.SubTitr {
    color: var(--first-color);
    font-weight: 600;
    font-size: 20px;
}

.Titr {
    font-weight: 600;
    line-height: 1.5;
    margin: 20px 0;
}

/* Slider */

.carousel-caption {
    bottom: 20%;
    text-align: left;
    right: unset;
    left: 10%;
}

.carousel-caption h2 {
    font-size: 39px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 3px #000000;
    background: var(--first-color);
    display: inline-block;
    padding: 2px 10px;
}

.carousel-caption p {
    font-size: 20px;
    color: white;
    text-align: left;];
    background: var(--second-color);
    padding: 10px;
}

/* About */

.About-img {
    text-align: left;
    background-color: var(--first-color);
    border-radius: var(--radius);
}

.About-img img {
    border-radius: var(--radius);
    width: calc(100% - 30px);
}

.About-img-content {
    position: absolute;
    bottom: 10%;
    left: 6%;
    background-color: var(--first-color);
    padding: 14px;
    border-radius: var(--radius);
}

.About-img-content p {
    color: white;
    margin: 0;
    font-size: 17px;
    text-align: center;
}

.About-img-content p:nth-child(1) {
    font-size: 36px;
    font-weight: 600;
}

.About-box ul {
    display: flex;
    flex-wrap: wrap;
}

.About-box ul li {
    margin: 10px 0;
    color: var(--text-gray);
    font-weight: 500;
    width: 45%;
}

.About-box ul i {
    background: var(--first-color);
    color: white;
    padding: 5px;
    margin-left: 10px;
    border-radius: 2px;
}

/* Services */

.Services {
    padding: 100px 0 0;
    position: relative;
}

.Services::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background-image: url(../Image/Services/ServicesBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.Services::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background-color: rgb(0, 0, 0, 0.73);
}

.Services .Titr,
.Services .SubTitr {
    color: white;
}

.Services-carousel {
    margin: 90px 0;
}

.Services-box {
    background-color: white;
    text-align: center;
    position: relative;
    border-radius: var(--radius);
}

.Services-box img,
.Services-box h5,
.Services-box p {
    padding: 0 25px;
}

.Services-box span {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 40px;
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.3;
}

.Services-box img {
    margin: 15px 0;
}

.Services-box h5 {
    font-weight: 600;
}

.Services-box p {
    margin-top: 15px;
    text-align: center;
}

.Services .overlay {
    width: 100%;
    min-height: 50px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: 1px solid #8888884d;
    margin-top: 20px;
    position: relative;
    transition: 0.4s;
}

.Services .overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    z-index: 99;
    background-color: var(--first-color);
    border-radius: 0 0 var(--radius) var(--radius);
    transition: 0.4s;
}

.Services-box:hover .overlay::before {
    height: 50px;
}

.Services .video-play {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 70px;
    height: 70px;
    background-color: var(--first-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Services .video-play .fas {
    background-color: var(--first-color);
    color: white;
    z-index: 999;
}

.Services .video-play::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--first-color);
    border-radius: 50%;
    animation-fill-mode: both;
    animation: witr_squares 1.5s ease-in-out infinite;
}

@keyframes witr_squares {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        transform: scale(1.24);
        opacity: 1;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

.Services .video-modal img {
    border-radius: var(--radius);
}

.Services .modal-content .modal-body {
    padding: 0;
    background-color: black;
}



/* Project */

.Project-carousel {
    margin: 30px 0;
}

.Project-carousel .owl-dots {
    margin: 50px 0 30px;
    text-align: center;
}

.Project-carousel .owl-dot {
    width: 15px;
    height: 15px;
    background-color: var(--first-color) !important;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
}

.Project-carousel .owl-dot.active {
    opacity: 1;
}

.Project-box {
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.Project-box::before {
    content: "";
    position: absolute;
    left: 45%;
    top: 45%;
    width: 0%;
    height: 0%;
    background-color: rgb(0, 0, 0, 0.43);
    transition: 0.4s;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 9;
}

.Project-box img {
    border-radius: var(--radius);
    transition: 0.4s;
}

.Project-box-content {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    background: white;
    text-align: center;
    padding-bottom: 20px;
    transition: 0.4s;
    z-index: 99;
}

.Project-box-content span {
    width: 40px;
    height: 40px;
    background-color: var(--first-color);
    display: block;
    margin: -20px auto 10px;
    border-radius: 5px;
}

.Project-box-content h5 {
    font-weight: 600;
}

.Project-box-content p {
    text-align: center;
}

.Project-box:hover::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Project-box:hover img {
    scale: 1.2;
}

.Project-box:hover .Project-box-content {
    bottom: 0;
}

/* Contact */

.Contact {
    background-image: url(../Image/ContactBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.Contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--first-color);
    opacity: 0.5;
}

.Contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.Contact-box .fas {
    background-color: white;
    color: var(--first-color);
    font-size: 40px;
    padding: 15px 20px;
    border-radius: 50%;
    margin-left: 15px;
}

.Contact-box-item {
    text-align: center;
}

.Contact-box-item p {
    color: white;
    font-size: 24px;
    text-align: center;
}

.Contact-box-item a {
    color: white;
    font-size: 20px;
    font-weight: 600;
    direction: ltr;
    padding: 0 10px;
}

/* ReadMore */

.ReadMore .accordion .card {
    border: none;
    overflow: hidden;
    padding: 0 10px;
}

.ReadMore .accordion .card-header {
    margin-top: 20px;
    margin-bottom: 1px;
    border: none;
    background-color: white;
    padding: 0;
}

.ReadMore .accordion .card-header .btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 500;
    color: var(--second-color);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius) !important;
    overflow: hidden;
}
.ReadMore .accordion .card-header .collapsed::after{
    position:absolute;
    content:'\f067';
    font-family: "FontAwesome";
    z-index:2;
    top:25px;
    left: 30px;
    color:var(--first-color)
}
.btn::after{
        position:absolute;
        content:'\f068';
        font-family: "FontAwesome";
        z-index:2;
        top:25px;
        left: 30px;
     color:var(--first-color)
}
.ReadMore .accordion .card-header .btn.collapsed {
    color: black;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    text-align: right !important;
    border-radius: var(--radius) !important;
}

.ReadMore .accordion .card-header .btn .fas {
    transform: rotate(180deg);
    transition: 0.4s;
}

.ReadMore .accordion .card-header .btn.collapsed .fas {
    transform: rotate(0deg);
}

.ReadMore .accordion .card-body {
    border: 1px solid rgba(139, 139, 139, 0.1);
    background-color: white;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    margin-top: -1px;
    padding: 20px 40px;
}

.ReadMore-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 40px;
    border-radius: var(--radius);
}

.ReadMore-box::before {
    content: "";
    position: absolute;
    right: -10px;
    width: 20px;
    height: 100px;
    background-color: var(--first-color);
}

.ReadMore-box img {
    width: 80px;
    padding-left: 10px;
}

.ReadMore-box h5 {
    margin: 0;
}

.ReadMore-box-content {
    display: flex;
}

.ReadMore-box-content img {
    border-radius: var(--radius);
    margin-left: 30px;
    width: 100%;
    height: 100%;
}

/* Customers */

.Customers {
    position: relative;
    padding: 100px 0 40px;
}

.Customers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(../Image/Customers/CustomersBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.Customers .Titr,
.Customers .SubTitr {
    color: white;
}

.Customers-carousel {
    margin-top: 40px;
}

.Customers-carousel .item {
    margin: 40px 0;
}

.Customers-box {
    background-color: white;
    padding: 40px;
    min-height: 400px;
    border-radius: var(--radius);
    box-shadow: 0 10px 29px 0 rgb(33 43 70 / 15%);
}

.Customers-box h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.Customers-box p {
    text-align: right;
}

.Customers-brands-carousel .item {
    text-align: center;
}
.color-logo {
    display: none;
    transition:.4s
}

.black-logo {
    display: block;
        transition:.4s
}

.Customers-brands-carousel .item:hover .color-logo {
    display:block
}
.Customers-brands-carousel .item:hover .black-logo  {
    display:none
}
.Customers-brands-carousel .owl-nav {
    position:relative
}

.Customers-brands-carousel .owl-nav button {
    position:absolute;
    bottom:50px;



}
.Customers-brands-carousel .owl-nav button i{
        font-size:20px;
        font-weight:700
}
.Customers-brands-carousel .owl-nav button i:focus-visible , .Customers-brands-carousel .owl-nav button{
    border:0!important;
}
.Customers-brands-carousel .owl-nav  .owl-next {
    right:0
}

.Customers-brands-carousel .owl-nav .owl-prev {
    left:0
}
/* footer */

footer {
    background-image: url(../Image/Footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0 0;
    position: relative;
    color: white;
    font-size: 14px;
}

footer p {
    color: white;
}

footer h5 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 40px;
}

footer h5 span {
    color: var(--first-color);
    font-weight: 600;
    font-size: 22px;
}

footer li {
    line-height: 2.4;
}

footer i {
    color: var(--first-color);
    padding-left: 4px;
    font-weight: 600;
}

footer a {
    direction: ltr;
}

.footer-address p {
    margin-top: 15px;
}
footer .sm-list a i {
    color: #fff;
}

footer .sm-list {
    justify-content: flex-start;
}

/* Responsive */

@media (max-width: 768px) {
    .Top-header-box {
        flex-direction: column-reverse;
        text-align: center;
    }

    .Navbar-class .row {
        flex-direction: row-reverse;
    }

    .Contact-box {
        flex-direction: column;
    }

    .ReadMore-box-content {
        flex-direction: column;
    }

    .ReadMore-box-content img {
        margin-bottom: 40px;
    }

    .Customers-box {
        padding: 15px;
    }
}
#About, #Project, .ReadMore {
    padding: 50px 0;
}

