/* Modify */
body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

input,
textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    outline: none;
}

input:focus,
textarea:focus {
    border: 1px solid #d3d3d3 !important;
}

textarea {
    height: 200px;
    resize: none;
}

button {
    padding: 3px 15px;
    border: none;
    background: none;
    border-radius: 15px;
}


/* Header */
/* header { */
/* position: relative; */
/* } */

header .top-header .welcome {
    /* position: relative; */
    width: 65%;
    height: 45px;
    padding: 10px 15px;
    color: #fff;
    background-color: #f24a00;
}

header .top-header .welcome::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 315px;
    height: 45px;
    background-color: #f24a00;
}

header .top-header .welcome a {
    display: flex;
}

header .top-header .welcome a>* {
    z-index: 1;
}

header .top-header .icons {
    position: relative;
    width: 35%;
    height: 60px;
    padding: 10px 15px;
    color: #fff;
    background-color: #272727;
}

header .top-header .icons::before {
    position: absolute;
    content: '';
    top: 0;
    left: -312px;
    width: 312px;
    height: 100%;
    background-color: #272727;
}

header .top-header .icons::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    border-left: 0 solid transparent;
    border-right: 30px solid transparent;
    border-top: 60px solid #272727;
    clear: both;
}

header .top-header .icons a {
    color: #fff;
    font-size: 19px;
    margin-left: 15px;
}

/* header .top-header .icons .social-medias a img {
    max-width: 15px;
} */

header .middle-header .logo img {
    max-width: 110px;
}

header .middle-header .location .icon,
header .middle-header .phone-number .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 30px;
    color: #fff;
    background-color: #f24a00;
    border-radius: 5px;
}

header .main-header {
    position: relative;
    height: 70px;
    color: #fff;
    background-color: #272727;
    z-index: 2;
}

header .main-header nav .nav-item.li {
    margin-left: 15px;
}

header .main-header a {
    color: #fff !important;
}

header .main-header nav .dropdown-menu a {
    color: #000 !important;
}

header .main-header .auth {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 400px;
    background-color: #f24a00;
}

header .main-header .auth::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    border-left: 0 solid transparent;
    border-right: 30px solid transparent;
    border-top: 70px solid #f24a00;
    clear: both;
}

header .dropdown-menu {
    padding: 0 0 10px 0;
    background-color: transparent;
    border: none;
}

header .dropdown-menu li {
    border-top: 1px solid #ffffff88;
}

header .dropdown-menu li a {
    padding: 4px;
    color: #ffffff88;
    font-size: 14px;
}

header .navbar-collapse .nav-item {
    position: relative;
}

header .navbar-collapse .nav-item .dropdown-item {
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    display: none;
    background-color: #000000ab;
    backdrop-filter: blur(15px);
    /* border-radius: 5px; */
    overflow: hidden;
    z-index: 2;
}

header .nav-item:hover .dropdown-item {
    display: block;
}

header .navbar-collapse ul {
    display: flex;
    list-style-type: none;
    padding: 0;
}

header .navbar-collapse ul>li {
    transition: all .1s ease-in-out;
}

header .navbar-collapse ul>li a {
    padding: 10px;
}

header .navbar-collapse ul>li:hover {
    color: #fff;
    background-color: #fe4e0223;
}

header .navbar-collapse .nav-item .dropdown-item li {
    list-style-type: none;
    margin-left: 0;
}

header .navbar-collapse .nav-item .dropdown-item li a {
    display: flex;
    padding: 10px 10px 10px 30px;
}

header .navbar-collapse .nav-item .dropdown-item li:hover {
    background-color: #fe4e0223;
}

header .navbar-collapse .nav-item .dropdown-item li:hover a {
    color: #000;
}


header #responsiveMenu .input {
    position: relative;
}

header #responsiveMenu .input input {
    padding: 10px 15px;
    border-radius: 0px;
}

header #responsiveMenu .input .button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    font-size: 19px;
    background-color: #fff;
}

header #responsiveMenu .title {
    /* color: #272727; */
    padding-bottom: 10px;
    border-bottom: 1px solid #b9b9b9;
}

header #responsiveMenu .menus>ul>li {
    position: relative;
    background-color: #27272760;
    padding: 3px 15px;
    margin-top: 5px;
    transition: all .3s ease-in-out;
}

header #responsiveMenu .menus>ul>li:hover {
    padding-right: 30px;
    background-color: #272727b0;
}

header #responsiveMenu .menus>ul>li::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    /* background-color: transparent; */
    background-color: #272727;
    transition: all .3s ease-in-out;
}

header #responsiveMenu .menus>ul>li:hover::before {
    width: 10px;
}

header #responsiveMenu .social-medias {
    border-top: 1px solid #b9b9b9;
    padding-top: 10px;
    margin-top: 10px;
}

header #responsiveMenu .social-medias a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 27px;
    color: #fff;
    background-color: #272727;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

header #responsiveMenu .social-medias a:hover {
    color: #272727;
    background-color: #fff;
}

header #responsiveMenu .contact-ways {
    border-top: 1px solid #b9b9b9;
    padding-top: 15px;
}

header #responsiveMenu .contact-ways svg {
    width: 30px;
}

/* Slider */
.main-slider .item {
    position: relative;
}

.main-slider .item .image img {
    filter: brightness(.5);
}

.main-slider .item .content-box {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.main-slider .item .content-box .description {
    margin-bottom: 20px;
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.main-slider .owl-dots button.owl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff66;
    transition: all .3s ease-in-out;
    margin: 0 3px;
}

.main-slider .owl-dots button.owl-dot.active {
    width: 10px;
    height: 10px;
    background-color: #e0e0e0;
}

.main-slider .owl-nav button {
    position: absolute;
    top: 45%;
    width: 35px;
    height: 35px;
    font-size: 25px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px !important;
    color: #fff !important;
    background-color: #d3d3d3aa !important;
    margin: 0 3px;
    border-radius: 50% !important;
    transition: all .3s ease-in-out;
}

.main-slider .owl-nav button.owl-next {
    left: 10px;
}

.main-slider .owl-nav button.owl-prev {
    right: 10px;
}



/* Intro */
.intro {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.intro::before {
    position: absolute;
    content: '';
    top: -135px;
    left: 24%;
    width: 200px;
    height: 1200px;
    background-color: #f24a00;
    transform: rotate(-30deg);
    z-index: -1;
}

.intro .content {
    padding: 100px;
}

.intro .details {
    background-color: #fff;
}

.intro .image {
    position: relative;
}

.intro .image .effect {
    position: absolute;
    inset: 0;
    z-index: -1;
}





/* Gallery */
.gallery {
    position: relative;
    color: #ddddddbe;
    /* margin-top: 130px; */
}

.gallery .details {
    background: linear-gradient(#272727, #444444)
}

.gallery .title {
    position: relative;
    padding: 70px 100px 40px 70px;
}

.gallery .title h4 {
    font-family: 'Iran-Sans-Black';
    font-size: 34px;
}

.gallery .title::before {
    position: absolute;
    content: '';
    top: 60px;
    right: 75px;
    bottom: 0;
    width: 5px;
    height: 70px;
    background-color: #ddddddbe;
    transform: rotate(15deg);
    border-radius: 5px;
}

.gallery .title::after {
    position: absolute;
    content: '';
    top: 60px;
    right: 85px;
    bottom: 0;
    width: 5px;
    height: 70px;
    background-color: #ddddddbe;
    transform: rotate(15deg);
    border-radius: 5px;
}

.gallery .summary {
    color: #ddddddbe;
    padding: 0 100px;
    text-align: justify;
}

.gallery .read-more {
    padding: 30px 100px;
}

.gallery .read-more button {
    display: flex;
    padding: 10px 70px;
    color: #ddddddbe;
    background-color: #f249001c;
    border: 2px solid #f24a00;
    border-radius: 0;
    transition: all .3s ease-in-out;
}

.gallery .read-more button:hover {
    background-color: #f2490062;
}

.gallery .item .image img,
.gallery .slider-buttons #images-dot img {
    aspect-ratio: 4/3;
}

.gallery .slider-buttons {
    position: absolute;
    background-color: #f24a00;
    left: 50%;
    right: 0;
    bottom: 0;
    height: 100px;
    z-index: 1;
}

.gallery .slider-buttons #images-dot {
    position: absolute;
    top: -50px;
    left: 30px;
}

.gallery .slider-buttons #images-dot button {
    padding: 0;
    border-radius: 0;
    overflow: hidden;
}

.gallery .slider-buttons #images-dot button img {
    max-width: 140px;
    max-height: 120px;
    width: 140px;
    height: 120px;
    aspect-ratio: 4/3;
}

.gallery .slider-buttons #images-dot button.active {
    border-top: 5px solid #f24a00;
}

.gallery .owl-nav {
    position: absolute;
    bottom: 160px;
    left: 53%;
    display: flex;
}

.gallery .owl-nav button {
    font-size: 35px !important;
    color: #f24a00 !important;
    margin-right: 25px;
    border-radius: 50% !important;
}

.gallery .owl-nav button.disabled {
    color: #b9b9b9 !important;
}

.gallery .owl-nav button.owl-next {
    left: 10px;
}

.gallery .owl-nav button.owl-prev {
    right: 10px;
}





/* Articles */
.articles {
    position: relative;
}

.articles .title h4 {
    font-family: 'Iran-Sans-Black';
}

.articles .item img {
    aspect-ratio: 3/4;
}

.articles .bg-image {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.articles .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles .bg-image .overlay {
    position: absolute;
    inset: 0;
    background-color: #272727e5;
}

.articles .content {
    color: #fff;
}

.articles .item a {
    display: flex;
    color: #fff;
    padding: 20px 20px;
    background-color: #ffffff2a;
    backdrop-filter: blur(5px);
    border: 3px solid #ffffff2a;
    transition: all .3s ease-in-out;
}

.articles .item a .article {
    width: 100%;
}

.articles .item a:hover {
    background-color: #ffffff48;
    backdrop-filter: blur(100px);
    border: 3px solid #ffffff75;
}

.articles .owl-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
}

.articles .owl-dots button.owl-dot {
    width: 25px;
    height: 10px;
    margin: 0 3px;
    border-radius: 10px;
    background-color: #838383;
    transition: all .3s ease-in-out;
}

.articles .owl-dots button.owl-dot.active {
    width: 10px;
    background-color: #fff;
}





/* Teaser */
.teaser .video video {
    width: 100%;
}

.teaser .title {
    font-family: 'Iran-Sans-Black';
    border-bottom: 3px solid #272727;
}

.teaser .title h4 {
    font-size: 34px;
}





/* Other companies */
.other-companies {
    color: #fff;
    background: linear-gradient(45deg, #f24a00, #272727);
}

.other-companies .companies-slider .item {
    background-color: #ffffffda;
    border-radius: 5px;
    transition: all .2s ease-in-out;
}

.other-companies .companies-slider .item a {
    padding: 40px;
}

.other-companies .companies-slider .item:hover {
    background-color: #fff;
}

.other-companies .companies-slider .company a img {
    max-width: 120px;
}








/* Useful links */
.useful-links .card {
    transition: all .3s ease-in-out;
    background-color: #f249000e;
}

.useful-links .card ul li {
    position: relative;
    padding-right: 13px;
    line-height: 30px;
}

.useful-links .card ul li::before {
    position: absolute;
    content: '';
    top: 12px;
    right: 0;
    width: 7px;
    height: 7px;
    background-color: rgb(34, 34, 155);
    border-radius: 5px;
}

.useful-links .card:hover {
    background-color: #27272718;
}

.useful-links .card a {
    color: rgb(34, 34, 155);
}

.useful-links .card a:hover {
    text-decoration: underline;
}











/* footer */
footer {
    margin-top: 120px;
    color: #fff;
    background-color: #272727;
}

footer .links {
    height: 100%;
    background-color: #272727;
}

footer .map {
    position: relative;
    height: 100%;
    background-color: #f24a00;
}

footer .map::before {
    position: absolute;
    content: '';
    top: -40px;
    right: 0;
    bottom: 0;
    width: 692px;
    height: 40px;
    background-color: #f24a00;
    border-radius: 0 20px 0 0;
}

footer .map::after {
    position: absolute;
    content: '';
    top: 0;
    left: -312px;
    bottom: 0;
    width: 312px;
    background-color: #f24a00;
}

footer input {
    text-align: end;
}

footer .links li {
    margin-top: 7px;
}

footer .links li a {
    color: #fff;
}

footer .links li a:hover {
    color: #838383 !important;
}

footer .copyright {
    color: rgb(221, 221, 221);
}

footer .copyright a {
    color: #f24a00 !important;
}

footer .copyright a:hover {
    text-decoration: underline;
}

footer iframe {
    width: 100%;
    height: 200px;
}

footer iframe {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 15px;
}












/* Contact us page */
.contact-us-page .content>.title {
    position: relative;
}

.contact-us-page .content>.title h2 {
    display: inline;
    font-family: 'IOr';
    padding: 0 25px;
    background-color: #fff;
    z-index: 2;
}

.contact-us-page .content>.title::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    left: 0;
    height: 3px;
    background-color: red;
    z-index: -1;
}

.contact-us-page .details {
    padding-right: 15px;
}

.contact-us-page .details>div {
    display: flex;
    align-items: center;
}

.contact-us-page .details .svg {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f24a00;
    margin-left: 10px;
    border-radius: 5px;
}

.contact-us-page .details .icon svg {
    color: #fff;
    font-size: 18px;
}

.contact-us-page .details .phone .text {
    display: flex;
    align-items: center;
}

.contact-us-page .details .phone .text .number-2 {
    border-right: 2px solid #f24a00;
    padding-right: 10px;
    margin-right: 10px;
}

.contact-us-page .item {
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}






/* Articles */
.articles-list .card img {
    width: 100%;
    aspect-ratio: 4/3;
}




/* Gallery */
.galleries-list .card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}







/* About us page */
.about-us-page {
    position: relative;
}

.about-us-page .banner {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.about-us-page .first-content,
.about-us-page .first-content a,
.about-us-page .first-content li {
    color: #fff !important;
}

.about-us-page .banner::after {
    position: absolute;
    content: '';
    inset: 0;
    background-color: rgba(0, 0, 0, 0.555);
}

.about-us-page>.first-content {
    position: absolute;
    top: 0;
    width: 100%;
}

.about-us-page .title-bar {
    padding: 10px 15PX;
    background-color: #5555557a;
    border: 2px solid #9797973b;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.about-us-page .breadcrumb-item::before {
    color: #fff !important;
}
