/* Fonts */
/* BEGIN Bold */
/*@font-face {*/
/*    font-family: 'IranianSansBold';*/
/*    src: url('../fonts/IranianSansBold.ttf') format('truetype');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/
@font-face {
	font-family: Doran;
	font-style: normal;
	font-weight: bold;
	src: url('../fonts/woff/Doran-Bold.woff') format('woff'),
	url('../fonts/woff2/Doran-Bold.woff2') format('woff2');
}

/* END Bold */
/* BEGIN Regular */
/*@font-face {*/
/*    font-family: 'IranianSans';*/
/*    src: url('../fonts/IranianSansRegular.ttf') format('truetype'),*/
/*    url('../fonts/IRANSans-web.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/

/* END Regular */
:root {
    --default-font: "Doran", sans-serof;
    /*--default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
    /*--heading-font: "Nunito",  sans-serif;*/
    /*--nav-font: "Inter",  sans-serif;*/
}

:root {
    /* Primary brand colors */
    --primary-color: #293b59; /* Main brand color for headings, buttons, and emphasis */
    --secondary-color: #90b5ad; /* Supporting brand color for backgrounds and highlights */

    /* Neutral colors */
    --background-color: #F5F5F5; /* Light background for the overall site */

    /* Accent colors */
    --accent-color: #293b59; /* Accent color for links, icons, and interactive elements */
}

.dark-background {
    background-color: #293b59;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --contrast-color: #ffffff;
    color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 5px 5px 2px 2px #293b59;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: Doran;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: white;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: 'IranianSans';
}
a {
    color: #90b5ad;
    font-size: initial;
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: #293b59;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: IranianSans;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}


.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: white;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #90b5ad;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #293b59;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color(in srgb, var(--accent-color), transparent 20%);
    color: #293b59;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0ms !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color(in srgb, var(--default-color), transparent 70%);
}

/*!*--------------------------------------------------------------*/
/*# Global Sections*/
/*--------------------------------------------------------------*!*/
section,
.section {
    color: var(--default-color);
    background-color: #293b59 !important;
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*!*--------------------------------------------------------------*/
/*# Global Section Titles*/
/*--------------------------------------------------------------*!*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: white;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*!*--------------------------------------------------------------*/
/*# Service Details Section*/
/*--------------------------------------------------------------*!*/
.service-details .service-box {
    background-color: #293b59 !important;
    color: white;
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: white;
}

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}



/* done CTA */
/* Header of the content for title */
.call-to-action .container {
    background-color: #293b59 !important;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem;

}

.call-to-action .content h2,
.call-to-action .content p {
    color: var(--contrast-color);
    position: relative;
    z-index: 2;
}

.call-to-action .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}


@media (max-width: 992px) {
    .call-to-action .container {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .call-to-action .container {
        border-radius: 1rem;
        padding: 4rem 2rem;
    }
}

/*!* Preloader styles *!*/
/*#preloader {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #293b59;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 1000;*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transition: opacity 0.5s ease, visibility 0.5s ease;*/
/*}*/

/*#preloader img {*/
/*    max-width: 150px;*/
/*    animation: fadeIn 2s ease-in-out;*/
/*}*/

/*@keyframes fadeIn {*/
/*    0% {*/
/*        opacity: 0;*/
/*    }*/
/*    100% {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/*!* Hide preloader after loading *!*/
/*body.loaded #preloader {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/
/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #293b59;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 4.5s ease, visibility 3.5s ease;
}

#preloader img {
    max-width: 150px;
    /*animation: fadeIn 0.5s ease-in-out;*/
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Hide preloader when the page is loaded */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}
