/****************************************
 ***** global
 ****************************************/
body {
    background-color: #f9f9f9;
    font-family: "shabnam", sans-serif;
    font-size: var(--fs-16);
}
input:focus,
button:focus {
    outline: rgb(15 171 198 / 30%) solid medium;
}
/****************************************
 ***** :root
 ****************************************/
:root {
    --first: #f2385a;
    --second: #f5A503;
    --third: #e9f1df;
    --fourth: #4ad9d9;
    --fifth: #36b1bf;
    --white: #ffffff;
    --black: #000000;
    --lightgreen: #45BF55;
    --green: #168039;
    --darkgreen: #044D29;
    --whitesmoke: #f5f5f5;
    --whitesmoke-dark: #eeeeee;
    --gainsboro: #dcdcdc;
    --lightgray: #d3d3d3;
    --silver: #c0c0c0;
    --gray: #808080;
    --dimgray: #696969;
    --gray-dark: #555555;
    --navy: #263157;
    --fs-30: 1.875rem;
    --fs-29: 1.813rem;
    --fs-28: 1.75rem;
    --fs-27: 1.688rem;
    --fs-26: 1.625rem;
    --fs-25: 1.563rem;
    --fs-24: 1.5rem;
    --fs-22: 1.375rem;
    --fs-20: 1.25rem;
    --fs-18: 1.125rem;
    --fs-16: 1rem;
    --fs-15: 0.938rem;
    --fs-14: 0.875rem;
    --fs-13: 0.813rem;
    --fs-12: 0.75rem;
    --fs-11: 0.688rem;
    --fs-10: 0.625rem;
    --fs-9: 0.563rem;
    --transition-2: all 0.2s ease 0s;
    --transition-5: all 0.5s ease 0s;
    --transition-10: all 1s ease 0s;
}
/****************************************
 ***** general
 ****************************************/
.general-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 6;
}
.general-overlay.open {
    display: block;
}
/****************************************
 ***** header
 ****************************************/
.header-wrap {
    background-color: var(--white);
    margin-bottom: 24px;
}
.header-right {
    align-items: center;
    display: flex;
    gap: 10px;
    min-height: 100px;
}
.header-center {
    align-items: center;
    display: flex;
    min-height: 100px;
}
.header-left {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: left;
    min-height: 100px;
}
.logo-cont {}
.logo-cont .lnk-logo {
    display: block;
    max-width: 130px;
}
.logo-cont .img-logo {}
/****************************************
 ***** footer
 ****************************************/
.footer-wrap {}
.footer-1 {
    background-color: var(--white);
    padding: 20px 0 0;
}
.footer-2 {
    background-color: var(--whitesmoke-dark);
    padding: 20px 0;
}
.footer-3 {
    background-color: var(--whitesmoke-dark);
}
.footer-4 {
    background-color: var(--whitesmoke-dark);
}
.footer-5 {
    background-color: var(--lightgray);
}
/********** .block-footer-cont **********/
.block-footer-cont {
    padding: 20px 0;
}
.block-footer-cont .block-title {
    color: var(--black);
    font-size: var(--fs-16);
    margin-bottom: 10px;
    position: relative;
}
.block-footer-cont .block-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.block-footer-cont.close .block-content {
    display: none;
    margin-bottom: 14px;
}
.block-footer-cont .lnk-block {
    color: var(--dimgray);
    text-decoration: none;
}
.block-footer-cont .btn-open-block-content {
    background-color: transparent;
    border: medium none;
    color: #555555;
    display: none;
    height: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    width: 100%;
}
.block-footer-cont .btn-open-block-content.open i:before {
    content: "\f068";
}
/********** .trust-block-cont **********/
.block-trust-cont .item-cont {
    align-items: center;
    background-color: var(--whitesmoke);
    border-radius: 5px;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
}
.block-trust-cont .item-image {}
.block-trust-cont .lnk-item {}
.block-trust-cont .item-content {}
.block-trust-cont .item-title {
    font-size: var(--fs-14);
}
/********** .block-contact-cont **********/
.block-contact-cont .footer-row {
    align-items: center;
    display: flex;
    gap: 20px;
}
.block-contact-cont .footer-logo {}
.block-contact-cont .lnk-logo {
    display: block;
    max-width: 130px;
}
.block-contact-cont .footer-phone {
    display: flex;
    font-size: var(--fs-13);
    gap: 10px;
}
.block-contact-cont .footer-phone .item-work-phone {
    display: flex;
    gap: 10px;
}
.block-contact-cont .footer-phone .item-title {}
.block-contact-cont .footer-phone .item-number {
    direction: ltr;
}
.block-contact-cont .footer-phone .item-work-time {
    display: flex;
}
.block-contact-cont .footer-phone .item-work-time::before {
    background-color: var(--gray);
    content: "";
    display: block;
    height: 10px;
    margin: 3px 10px 0 20px;
    width: 2px;
}
/********** .footer-social-cont **********/
.footer-social-cont {
    display: flex;
    gap: 10px;
}
.footer-social-cont .lnk-social {
    align-items: center;
    background-color: var(--gray);
    border-radius: 5px;
    color: var(--white);
    display: flex;
    height: 34px;
    justify-content: center;
    text-decoration: none;
    width: 34px;
}
.footer-social-cont .lnk-twitter {
    background-color: #1da1f2;
}
.footer-social-cont .lnk-telegram {
    background-color: #2aabee;
}
.footer-social-cont .lnk-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.footer-social-cont .lnk-linkedin {
    background-color: #0077b5;
}
/********** .trust-logo-cont **********/
.trust-logo-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trust-logo-cont .item-cont {
    align-items: center;
    background-color: var(--white);
    border-radius: 5px;
    display: flex;
    max-width: 120px;
    padding: 10px;
}
/********** .footer-about-cont **********/
.footer-about-cont {
    padding-bottom: 24px;
}
.footer-about-cont .item-text {}
.footer-about-cont .item-title {
    color: var(--bs-gray-700);
    font-size: var(--fs-14);
    margin-bottom: 0;
    padding-bottom: 6px;
}
.footer-about-cont .item-desc {
    color: var(--gray);
    font-size: var(--fs-12);
    padding-bottom: 12px;
}
/********** .copyright-cont **********/
.copyright-cont {
    align-items: center;
    color: var(--dimgray);
    display: flex;
    flex-direction: column;
    font-size: var(--fs-12);
    justify-content: center;
    min-height: 50px;
}
.copyright-cont .copyright-text {}
.copyright-cont .copyright-credit {}
.copyright-cont .copyright-credit a{
    text-decoration: none;
    color: var(--navy);
}
.copyright-cont .copyright-credit a:hover{
    color: var(--navy);
}
/****************************************
 ***** animations
 ****************************************/
.spinner-1 {
    animation-name: animate-rotate-360;
    animation-duration: 500ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes animate-rotate-360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/****************************************
 ***** font-face
 ****************************************/
@font-face {
    font-display: fallback;
    font-family: "shabnam";
    font-size: 1rem;
    src: url(../fonts/shabnam/fd/Shabnam-FD.woff2) format("woff2"),
         url(../fonts/shabnam/fd/Shabnam-FD.ttf) format("truetype")
}