/*
Theme Name: Hinza
Author URI: https://hinzaco.com/
Version: 1.0
*/
/* ---------- add font -----------------*/

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/IranSans/Light/IRANSansWeb_Light.eot') format('eot'),
    url('assets/fonts/IranSans/Light/IRANSansWeb_Light.woff') format('woff'),
    url('assets/fonts/IranSans/Light/IRANSansWeb_Light.woff2') format('woff2'),
    url('assets/fonts/IranSans/Light/IRANSansWeb_Light.ttf') format('truetype');
}

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/IranSans/Regular/IRANSansWeb.eot') format('eot'),
    url('assets/fonts/IranSans/Regular/IRANSansWeb.woff') format('woff'),
    url('assets/fonts/IranSans/Regular/IRANSansWeb.woff2') format('woff2'),
    url('assets/fonts/IranSans/Regular/IRANSansWeb.ttf') format('truetype');
}

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.eot') format('eot'),
    url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.woff') format('woff'),
    url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.woff2') format('woff2'),
    url('assets/fonts/IranSans/Medium/IRANSansWeb_Medium.ttf') format('truetype');
}

@font-face {
    font-family: "IranSans";
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.eot') format('eot'),
    url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.woff') format('woff'),
    url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.woff2') format('woff2'),
    url('assets/fonts/IranSans/Bold/IRANSansWeb_Bold.ttf') format('truetype');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: normal;
    src: url('assets/fonts/shabnam/ttf/Shabnam-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-FD-WOL.woff2') format('woff2'),
    url('assets/fonts/shabnam/woff/Shabnam-FD-WOL.woff') format('woff');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: bold;
    src: url('assets/fonts/shabnam/ttf/Shabnam-Bold-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-Bold-FD-WOL.woff2') format('woff2'),
    url('assets/fonts/shabnam/woff/Shabnam-Bold-FD-WOL.woff') format('woff');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/shabnam/ttf/Shabnam-Light-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-Light-FD-WOL.woff2') format('woff2'),
    url('assets/fonts/shabnam/woff/Shabnam-Light-FD-WOL.woff') format('woff');
}

@font-face {
    font-family: shabnam-digits;
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/shabnam/ttf/Shabnam-Medium-FD-WOL.ttf') format("truetype"),
    url('assets/fonts/shabnam/woff2/Shabnam-FD-WOL.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('assets/fonts/shabnam/woff/Shabnam-FD-WOL.woff') format('woff');
}



:root {
    --primary-color: #0B5C52;
    --primary-color-light: #157567;
    --secondary-color: #C89A32;
    --accent-color: #E3B84A;
    --accent-color-dark: #A56D16;
    --text-color: #333333;
    --text-color-dark: #121212;
    --text-color-light: #7a7a7a;
    --border-color-light: #e6e6e6;
    --border-color-dark: #b7b7b7;
    --background-color: #f1f1f1;
    --background-color-secondary: #F9F4EB;
    --text-font-family: "IranSans";
    --digits-font-family: shabnam-digits;
}

input,
input::-webkit-input-placeholder {
    font-size: 14px !important;
    font-family: var(--text-font-family) !important;
}

body , p{
    font-size: 14px;
    font-family: var(--text-font-family);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
}

/* ------------- reset css ----------------*/
*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    color: var(--text-color-dark);
}

html {
    scroll-behaviour: smooth;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 0;
    background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* -------------- General / Start ------------- */
.btn {
    line-height: 1;
}
.btn .elementor-button-icon {
    background: var(--background-color);
    color:var(--primary-color);
    border-radius: 5px;
    padding: 0px 12px;
}

.button,
.btn .elementor-button {
    position: relative;
    background: var(--primary-color) !important;
    color: #fff;
    fill: #fff;
    font-size: 14px;
    padding: 5px 20px 5px 5px;
    line-height: 40px;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all .2s ease-in-out;
    display: inline-block;
}
.btn .elementor-button-text{
   padding-left: 12px;
    font-family: var(--text-font-family);
}
.btn .elementor-button * {
    line-height: 40px;
    color: #fff;
}
.btn .elementor-button-icon svg{
    color: var(--primary-color);
    fill:var(--primary-color);
}
.button:hover,
.btn .elementor-button:hover {
    background: var(--accent-color) !important;
}

.btn-border .elementor-button {
    position: relative;
    background: transparent !important;
    color: var(--text-color);
    fill: var(--text-color);
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--text-color);
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

.btn-border .elementor-button * {
    line-height: 40px;
    color: var(--text-color);
}

.btn-border .elementor-button .elementor-button-icon {
    transform: rotate(-45deg) translate(2px, -1px);
    transition: all .5s ease-in-out;
}

.btn-border .elementor-button:hover {
    color: #fff;
    fill: #fff;
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-border .elementor-button:hover * {
    color: #fff;
}

.btn-border .elementor-button:hover .elementor-button-icon {
    transform: rotate(0deg) translate(0, 0);
}

.section {
    padding: 80px 15px;
}

.section .section-subtitle .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 30px;
    position: relative;
    width:fit-content;
}

.section .section-title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 20px;
}

.section .desc * {
    font-size: 16px;
    font-family: var(--text-font-family);
    text-align: justify;
    font-weight: 300;
}

.section .desc {
    text-align: justify;
}

.section .desc strong,
.section .desc strong *,
.section .desc b,
.section .desc b * {
    font-weight: bold;
}

.section .desc a {
    color: var(--accent-color);
}

.section .desc ul,
.section .desc ol {
    padding-right: 20px;
    margin-right: 0;
}

.section .desc ul li:not(:last-child),
.section .desc ol li:not(:last-child) {
    margin-bottom: 5px;
}

.section .desc ul {
    list-style: disc;
}

.section .desc ol {
    list-style: arabic-indic;
}

.absolute-link {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 30px;
    right: 0;
    z-index: 1;
    opacity: 0.5;
}


.swiper {
    position: relative;
}

.swiper .swiper-pagination {
    z-index: 1 !important;
}

.text-center {
    text-align: center;
}

.form-control {
    padding: 0 15px;
    line-height: 40px;
    border: 1px solid var(--border-color-dark);
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--text-font-family);
    color: var(--secondary-color);
    text-align: right;
}

textarea.form-control {
    padding: 10px 15px;
    line-height: 26px;
    height: 98px;
}

label.resume-upload {
    display: inline-block;
    text-align: center;
    width: 92px;
    padding: 0 5px;
    line-height: 33px;
    border-radius: 5px;
    border: 1px solid var(--text-color-dark);
    background: #fff;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.wpcf7-form-control-wrap[data-name="resume"] {
    margin-right: -92px;
}

.wpcf7-spinner {
    position: absolute;
    transform: translateX(250%);
    margin: 0;
}

@media (max-width: 991.98px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .section .section-subtitle .elementor-heading-title {
        font-size: 15px;
        line-height: 1.2;
    }
    .section .desc *{
        font-size:14px;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section .section-title .elementor-heading-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section .section-subtitle .elementor-heading-title {
        font-size: 13px;
    }
}

/* --------------General/End------------- */
/* -----------Header /Start--------------- */
.header {
    background:transparent;
    position: absolute !important;
    width: 100% !important;
    z-index: 100 !important;
    top: 0;
    right: 0;

}
.header .menu{
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    z-index: 9;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    padding: 7px 5px;
}
.header .menu .hfe-nav-menu> .current-menu-item{
background-color: var(--background-color);
    color: var(--primary-color);
    border-radius: 8px;
}

.header .menu .hfe-nav-menu .menu-item .hfe-menu-item{
    font-family: var(--text-font-family);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.header .menu .hfe-nav-menu> .menu-item.current-menu-item .hfe-menu-item{
    color: var(--primary-color);
}
.header .btn.btn-header .elementor-button {
    color: #fff;
    padding-right: 10px;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px;
    z-index: 9;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}
.header .btn.btn-header svg path:nth-child(2){
    animation: header-phone 1s infinite cubic-bezier(.1, .57, .5, 1);
}
.header .btn.btn-header svg path:nth-child(3) {
    -webkit-animation: header-phone2 1s infinite cubic-bezier(.1, .57, .5, 1);
    animation: header-phone2 1s infinite cubic-bezier(.1, .57, .5, 1);
}
.header .btn.btn-header svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;

}
.header .btn.btn-header .elementor-button-icon{
    transform: scale(-1, 1);
    padding: 0px 10px;

}
.header .btn.btn-header .elementor-button-text{
    font-size: 16px;
}
.header .navbar .elementor-icon-list-items {
    gap: 10px;
}

.header .navbar .elementor-icon-list-items .elementor-icon-list-item {
}

.header .navbar .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text {
    font-family: var(--text-font-family);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

/*
.header .logo {
    max-width: 150px !important;
    height: 60px;
}
*/

.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 150px !important;
}
@keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
    }
    70%, 90% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
@keyframes header-phone {
0%, 30% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
}
80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
100% {
    opacity: 0;
}
}

.header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    animation: headerDown .35s ease;
}

body.header-sticky {
    padding-top: 90px;
}
.header.sticky .menu .hfe-nav-menu .menu-item .hfe-menu-item{
color:var(--text-color);
}
.header.sticky .menu .hfe-nav-menu> .menu-item.current-menu-item .hfe-menu-item{
    color:var(--primary-color);
}
.header.sticky .btn.btn-header .elementor-button-text{
    color:var(--primary-color);
}
.header .sticky-logo{
    display: none;
}
.header.sticky .sticky-logo{
    display:block;
}
.header.sticky .logo{
    display: none;
}

.header.sticky  .sticky-logo img{
    max-width: 100% !important;
    height: 60px;
    width: auto;
}
@media (max-width: 1024.98px){
    .header .btn{
        height: 100%;
        display: flex;
        justify-content: center;
    }
    .header .menu{
        padding: 10px 5px;
        border-radius: 5px;
    }
    .header .menu .hfe-nav-menu> .current-menu-item{
        border-radius: 0px;
    }
    .header .menu .hfe-nav-menu .hfe-nav-menu-icon{
        padding: 0px;
        fill: var(--background-color-secondary);
    }
    .header.sticky .menu .hfe-nav-menu .hfe-nav-menu-icon{
        fill: var(--text-color-dark);
    }
    .header.sticky  .menu{
        border: 1px solid var(--border-color-light);
    }
    .header .menu .hfe-nav-menu .hfe-nav-menu__toggle{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 32px;
    }
}
@media (max-width: 575.98px) {
    .header .btn.btn-header .elementor-button-text {
        font-size: 14px;
    }
    .btn .elementor-button-text {
        padding-left: 5px;
    }
    .button, .btn .elementor-button{
        padding: 5px 10px 5px 5px;
    }
    .header .btn{
        height: 100%;
        display: flex;
        justify-content: center;
    }
    .header .menu{
        padding: 10px 5px;
    }
    .header .menu .hfe-nav-menu .hfe-nav-menu-icon{
        padding: 0px;
        fill: var(--background-color-secondary);
    }
    .btn .elementor-button * {
        line-height: 32px;
    }
    .header .menu {
        padding: 5px 5px;
    }
}
@media (max-width: 480px){
    .header .btn.btn-header .elementor-button-text {
        font-size: 12px;
    }
    .header .btn .elementor-button-text{
        font-size: 12px;
    }
    .header .btn .elementor-button-icon{
        padding: 0px 8px;
    }
}
@media (max-width: 380px){
    .header .btn.btn-header{
        display: none;
    }
    .header .btn-col{
        width:55%;
    }
}
@media (max-width: 340px){

    .header .btn-col{
        width:45%;
    }
}
/* -----------Header /End--------------- */
/*----------- Footer / Start --------------*/
.footer {
    background: var(--primary-color);
    padding-top: 100px;
    padding-bottom:0px;
}

.footer .logo {
    max-width: 130px !important;
    height: 40px;
}

.footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .footer-title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: #fff;
}
.form-footer.row{
    display: flex;
    flex-direction: row;
    gap:0px;
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 8px;
    margin: 0px auto;
}
.footer .info-col .elementor-icon-box-wrapper{
    display: flex;
    align-items: flex-start;
}
.form-footer.row p:nth-child(1){
    width: 80%;
    margin: 0px;
    padding: 0px;
}
.form-footer.row p:nth-child(1) .form-control{
    border:none;
    background-color: transparent;
}
.form-footer.row p:nth-child(1) .form-control:focus-visible{
    outline: none !important;
}
.form-footer.row p:nth-child(2){
    width: 20%;
    margin: 0px;
    padding: 0px;
    text-align: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 7px;
}
.form-footer.row p:nth-child(2) .button{
    padding: 0;
    font-size: 18px;
    background: var(--accent-color) !important;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.form-footer.row p:nth-child(2) .button br{
    display: none;
}
.form-footer.row p:nth-child(2) .button i{
    transform: scale(-1, 1);
    fill:#fff;
    color:#fff;
}
.footer .desc * {
    color: #fff;
    opacity: 0.7;
    font-size:14px;
}

.footer .footer-nav .hfe-nav-menu .hfe-menu-item {
    font-family: var(--text-font-family);
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    opacity: 0.8;
    padding-right: 0 !important;
}

.footer .footer-nav .hfe-nav-menu .hfe-menu-item:hover {
    opacity: 1;
    color: #fff;
}
.footer .contact-info .elementor-icon-box-icon{
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: var(--accent-color);
    DISPLAY: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    line-height: 40px;
}
.footer .contact-info .elementor-icon-box-icon svg{
    width: 16px;
    height: 16px;
}
.footer .socials .elementor-social-icons-wrapper .elementor-social-icon {
    background: transparent !important;
    width: auto;
    height: auto;
}

.footer .socials .elementor-social-icons-wrapper .elementor-grid-item:not(:last-child) {
    margin-left: 15px;
}

.footer .socials .elementor-social-icons-wrapper .elementor-social-icon svg {
    font-size: 24px;
    color: var(--accent-color);
    fill: var(--accent-color);
    transition: all 0.5s;
}

.footer .socials .elementor-social-icons-wrapper .elementor-social-icon:hover svg {
    fill: #fff;
}


.footer .contact-info .elementor-icon-box-title , .footer .contact-info .elementor-icon-box-title a{
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    margin-top:0px;
    margin-bottom:0px;
}
.footer .contact-info .elementor-icon-box-description{
    font-family: var(--text-font-family);
    font-size: 14px;
    opacity: 0.8;
}
.footer-info-time .elementor-widget-text-editor p{
    margin: 5px 0px !important;
}
.copyright {
    background: var(--background-color);
    padding: 0px 5px;
    font-size: 12px;
    font-family: var(--text-font-family);
    border-radius: 30px 30px 0px 0px;

}
.copyright p{
    font-size: 12px;
    margin:5px;
}
.copyright:before{
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 30px;
    bottom: -39px;
    right: -13px;
    box-shadow: inset -38px -39px 0 0 var(--background-color);
    transform: rotate(-270deg);
}
.copyright:after{
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 30px;
    bottom: -39px;
    left: -19px;
    box-shadow: inset -33px -39px 0 0 var(--background-color);
    transform: rotate(2deg);
}
.copyright p{
    text-align: center;
}
.marquee {
    overflow: hidden !important;
    width: 100% !important;
    justify-content: flex-start !important;
}

.marquee .marquee-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    max-width: none !important;
    gap: 2rem !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
    animation: marquee 150s linear infinite !important;
    margin-right: -1000px;
}

.marquee .marquee-content > * {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.marquee .elementor-heading-title {
    color: #fff !important;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.footer-nav .hfe-nav-menu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer-nav .hfe-nav-menu li.menu-item{
    flex: 0 0 50%;
    width:50%;
}
@media(max-width:767px){
    .footer{
        padding-top:40px;
    }
}
@media(max-width: 580px){
    .copyright:after{
        content: none;
    }
    .copyright:before{
        content: none;
    }
}
/*----------- Footer / End --------------*/
/*----------- Blog cart / Start --------------*/
.blog-cart {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color-light);
}

.blog-cart .img-wrapper {
    display: block;
    aspect-ratio: 5/3;
    height: 100%;
}

.blog-cart .img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    max-width: inherit !important;
    object-fit: cover;
    display: block;
}

.blog-cart .info-wrapper {
    padding: 30px;
    background:#fff;
    position: relative;

}


.blog-cart .info-wrapper .blog-title {
    font-family: var(--text-font-family);
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    height: 60px;
}

.blog-cart:hover .info-wrapper .blog-title {
    color: var(--secondary-color);
}

.blog-cart .info-wrapper .blog-date {
    font-family: var(--digits-font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 10px 0;
    position: absolute;
    top: -45px;
    background-color: #fff;
    padding: 5px 15px;
    right:0px;
    border-radius: 15px 0px 0px 0px;

}

.blog-cart .info-wrapper .blog-desc {
    font-family: var(--text-font-family);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-color);
}

/*----------- Blog cart / End --------------*/
/* ----------- Home page /Start--------------- */
.main-slider .bdt-slideshow-items{
    border-radius: 0px 0px 35px 35px;
}
.main-slider .bdt-slideshow-item .bdt-ps-slide-img:after {
    content: "";
    background: linear-gradient(86deg, #001a1e00 50%, #001a1e8a 70%, #001a1e),
    linear-gradient(359deg, #001a1e00 55%, #001a1e33 83%, #001a1eb5),
    linear-gradient(#001a1e00 47%, #001a1e33);
    width: 100%;
    height: 100%;
    display: block;
}

.main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-wrapper {
    margin-right: 0px;
}
.main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-wrapper .bdt-prime-slider-desc{
padding-right:10px;
}
.main-slider .bdt-slideshow-item .bdt-ps-sub-title{
    display: inline-flex !important;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 7px 10px 7px 10px;
    clip-path: circle(75% at 50% 50%);
    font-size: 18px;
    font-weight: 400;
}
.main-slider .bdt-main-title{
    padding-top: 35px;
}
.main-slider  .bdt-slideshow-item .bdt-main-title .bdt-title-tag{
    font-size: 90px;
    line-height: 110px;
    font-weight: 400;
}
.main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper{
    display: flex;
    justify-content: space-between;
}
.main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-prime-slider-content{
    width:45%;
    padding-top:60px;
}
.main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-slider-excerpt-content{
    width:45%;
    max-width: 352px;
    overflow: hidden;
    background-color: #FFFFFFE3;
    padding: 54px 40px 47px;
    margin-top: 200px;
    -webkit-clip-path: polygon(100% 3.158%, 100% 3.158%, 99.955% 2.646%, 99.826% 2.16%, 99.619% 1.707%, 99.342% 1.293%, 99.001% 0.925%, 98.604% 0.609%, 98.158% 0.352%, 97.668% 0.161%, 97.144% 0.041%, 96.591% 0%, 3.409% 0%, 3.409% 0%, 2.856% 0.041%, 2.332% 0.161%, 1.842% 0.352%, 1.396% 0.609%, 0.998% 0.925%, 0.658% 1.293%, 0.381% 1.707%, 0.174% 2.16%, 0.045% 2.646%, 0% 3.158%, 0% 96.842%, 0% 96.842%, 0.045% 97.354%, 0.174% 97.84%, 0.381% 98.293%, 0.658% 98.707%, 0.998% 99.075%, 1.396% 99.391%, 1.842% 99.648%, 2.332% 99.839%, 2.856% 99.959%, 3.409% 100%, 82.083% 100%, 82.083% 100%, 82.358% 99.99%, 82.629% 99.959%, 82.895% 99.909%, 83.156% 99.84%, 83.409% 99.751%, 83.654% 99.645%, 83.89% 99.52%, 84.114% 99.378%, 84.327% 99.219%, 84.527% 99.044%, 94.195% 89.84%, 98.953% 85.607%, 98.953% 85.607%, 99.144% 85.421%, 99.318% 85.224%, 99.474% 85.014%, 99.61% 84.795%, 99.727% 84.567%, 99.824% 84.331%, 99.9% 84.088%, 99.955% 83.839%, 99.989% 83.586%, 100% 83.329%, 100% 3.158%);
    clip-path: polygon(
            0% 3.158%,
            0% 3.158%,
            0.045% 2.646%,
            0.174% 2.16%,
            0.381% 1.707%,
            0.658% 1.293%,
            0.999% 0.925%,
            1.396% 0.609%,
            1.842% 0.352%,
            2.332% 0.161%,
            2.856% 0.041%,
            3.409% 0%,

            96.591% 0%,
            96.591% 0%,
            97.144% 0.041%,
            97.668% 0.161%,
            98.158% 0.352%,
            98.604% 0.609%,
            99.002% 0.925%,
            99.342% 1.293%,
            99.619% 1.707%,
            99.826% 2.16%,
            99.955% 2.646%,
            100% 3.158%,

            100% 96.842%,
            100% 96.842%,
            99.955% 97.354%,
            99.826% 97.84%,
            99.619% 98.293%,
            99.342% 98.707%,
            99.002% 99.075%,
            98.604% 99.391%,
            98.158% 99.648%,
            97.668% 99.839%,
            97.144% 99.959%,
            96.591% 100%,

            17.917% 100%,
            17.917% 100%,
            17.642% 99.99%,
            17.371% 99.959%,
            17.105% 99.909%,
            16.844% 99.84%,
            16.591% 99.751%,
            16.346% 99.645%,
            16.11% 99.52%,
            15.886% 99.378%,
            15.673% 99.219%,
            15.473% 99.044%,

            5.805% 89.84%,
            1.047% 85.607%,
            1.047% 85.607%,
            0.856% 85.421%,
            0.682% 85.224%,
            0.526% 85.014%,
            0.39% 84.795%,
            0.273% 84.567%,
            0.176% 84.331%,
            0.1% 84.088%,
            0.045% 83.839%,
            0.011% 83.586%,
            0% 83.329%,

            0% 3.158%
    );
}
.main-slider .bdt-slideshow-item  .bdt-slider-excerpt-content .bdt-slider-excerpt p {
    max-width: 100%;
    text-align: justify;
}

.main-slider .bdt-slideshow-item .bdt-slide-btn{
    background-color: var(--primary-color);
    color:#fff;
    display: inline-flex;
    gap: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 4px;
    padding-right: 20px;
}
.main-slider .bdt-slideshow-item .bdt-prime-slider-button-wrapper .bdt-slide-btn-icon{
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 45px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    width: 45px;
    z-index: 1;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 22px;
    line-height: 1;
    position: relative;
}
.main-slider .bdt-slideshow-item .bdt-prime-slider-button-wrapper .bdt-prime-slider-button-text{
    min-width: 120px;
    justify-content: space-between;
}
.main-slider .bdt-slideshow-item .bdt-prime-slider-button-wrapper .bdt-slide-btn-icon svg{
    transform: scale(-1, 1);
}
.main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-social-icon{
    width: 100%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    position: relative !important;
    margin-top: -99px;
    text-align: left;
    justify-content: flex-end;
    left: unset;
}
.main-slider .bdt-navigation-arrows{
    transform: rotate(-90deg);
    position: absolute !important;
    bottom: 40%;
    background-color: #fff;
    z-index: 1;
    width: 115px;
    height: 51px;
    border-radius: 22px 20px 0px 0px;
    right: -36px !important;
    margin-right:0px;
    padding: 10px;
}
.main-slider .bdt-navigation-arrows .bdt-prime-slider-previous{
    filter: drop-shadow(0 20px 17.5px rgba(8, 29, 82, .13));
    border-radius: 14px;
    position: inherit;
    width: 40px;
    height: 40px;
    background: #fff;
    line-height: 40px;
    bottom: 6px !important;
    top: inherit;
}
.main-slider .bdt-navigation-arrows .bdt-prime-slider-next{
    filter: drop-shadow(0 20px 17.5px rgba(8, 29, 82, .13));
    border-radius: 14px;
    position: inherit;
    width: 40px;
    height: 40px;
    background: #fff;
    line-height: 40px;
    bottom: 6px !important;
    top: inherit;
    left: inherit !important;
    right: 62px !important;
}
.main-slider .bdt-ps-counternav{
    display: none;
}
.main-slider  .bdt-prime-slider-skin-crelly .bdt-prime-slider-next svg, .main-slider  .bdt-prime-slider-skin-crelly .bdt-prime-slider-previous svg{
    color:#000;
}
.main-slider .bdt-navigation-arrows:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 20px;
    bottom: -34px;
    right: -26px;
    box-shadow: inset -34px -34px 0 0 #fff;
    transform: rotate(-270deg);
}
.main-slider .bdt-navigation-arrows:after{
content: "";
display: block;
width: 60px;
height: 60px;
position: absolute;
border-radius: 20px;
bottom: -34px;
left: -26px;
box-shadow: inset -34px -34px 0 0 #fff;
transform: rotate(2deg);
}
.section.about .footer-info-time *{
    font-family: var(--text-font-family);
}
.section.about .footer-info-time .elementor-widget-text-editor p {
   color:#fff;
}
.pic-about::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 0px !important;
    border-top-left-radius: 30px !important;
    box-shadow: -15px -15px 0 15px var(--background-color-secondary);
}
.pic-about::after {
    content: "";
    position: absolute;
    top: 0px;
    left:300px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -15px -15px 0 15px var(--background-color-secondary);
}
.opening-hours{
    z-index: 2;
}
.image-text .elementor-heading-title {
    background-image: url('assets/img/back-num.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.main-marquee .marquee-content .elementor-heading-title{
    color: transparent !important;
    font-size: 70px;
    -webkit-text-stroke: 1px var(--primary-color);
    font-family: 'IranSans';
}
.main-marquee .marquee-content:nth-child(2n+2) .elementor-heading-title {
    color: transparent !important;
    font-size: 70px;
    -webkit-text-stroke: 1px var(--accent-color-dark);
}
.service-item{
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    padding: 48px 36px 38px 35px;
    background-color: var(--background-color-secondary);
    transition: all .3s linear 0ms;
}

.service-item:hover, .active .service-item {
    transform: translateY(calc(var(--x) * -1));
    filter: drop-shadow(0 20px 17.5px rgba(8, 29, 82, .13));
    border-color: transparent;

}
.service-item .service-img-wrap {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
}
.service-item .service-image {
    width: 100%;
    height: 100%;
}
.service-item .service-icon {
    top: 0;
    right: 0;
    z-index: 1;
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    border-radius: 15px;
    background-color: var(--primary-color);
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    font-size: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-color);
}
.service-item .service-icon .elementor-icon-wrapper{
    align-items: center;
    justify-content: center;
    display: flex;
}
.service-item .service-icon .elementor-icon-wrapper svg{
    fill:#fff !important;
}

.service-item .service-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: right;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    object-position: center center;
}
.service-item:hover .service-image img {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.service-item .service-desc p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    }
.service-item .link-btn{
    display: none;
}
.service-item .elementor-divider-separator{
    display: none;
}
.service-item .link-btn .elementor-button {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--text-color);
    gap: 6px;
    font-weight: 500;
    background-color: transparent !important;
    padding: 0px;
}
.service-item .link-btn .elementor-button svg{
    fill:var(--accent-color-dark);
}
.service-item .link-btn .elementor-button .elementor-button-text{
    font-family: var(--text-font-family);
    color:var(--primary-color);
}
.service-item .service-desc .service-title .elementor-heading-title{
     font-family: var(--text-font-family);
}
.section.fetal-ultrasound{
    padding: 80px 0px;
}
.section.fetal-ultrasound .section-title .elementor-heading-title{
    color:#fff;
}
.section.fetal-ultrasound .desc p{
color:#f1f7f3;
    margin-top:0px;
}
.section.fetal-ultrasound .item .elementor-image-box-img {
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    width: 60px !important;
    height: 60px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
}
.section.fetal-ultrasound .item .elementor-image-box-img img{
    filter: brightness(0) saturate(100%) invert(85%) sepia(97%) saturate(819%) hue-rotate(319deg) brightness(93%) contrast(90%);
    width: 35px;
    height: 35px;
}
.section.fetal-ultrasound .col-fetal{
 max-width:912px;
}
.section.fetal-ultrasound  .elementor-widget-video{
    height: 100%;
}
.section.fetal-ultrasound  .elementor-widget-video .elementor-wrapper{
    height: 100%;
}
.section.fetal-ultrasound .item .elementor-image-box-content .elementor-image-box-title{
    color: var(--background-color-secondary);
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--text-font-family);
}
.section .count-item .elementor-counter-number-wrapper .elementor-counter-number{
    font-family: var(--digits-font-family);
    color: transparent !important;
    -webkit-text-stroke: 1px var(--primary-color);
    font-size: 160px;
}
.section .count-item .elementor-counter-number-wrapper .elementor-counter-number-suffix{
    color: transparent !important;
    -webkit-text-stroke: 1px var(--primary-color);
    font-size: 160px;
}
.section .count-item .elementor-counter .elementor-counter-title{
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 17px;
    font-weight: bold;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
    margin-top: -97px;
    padding: 0px 20px;
    background-color: #ffffffe3;
}
.section .count-item .elementor-counter-number-wrapper .elementor-counter-number-prefix{
    color: transparent !important;
    -webkit-text-stroke: 1px var(--primary-color);
    font-size: 160px;
}
.blog-cart .blog-desc *, .blog-cart-minimal .blog-desc * {
    font-family: var(--text-font-family);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
}
.blog-cart .blog-desc, .blog-cart-minimal .blog-desc {
    font-family: var(--text-font-family);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.info-call .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title,
.info-call .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title a{
font-family: var(--text-font-family);
}
.info-call .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description{
    font-family: var(--digits-font-family);
}
.insurance-logo .swiper-slide .swiper-slide-inner img{
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.5s;
    max-width:100px;
}
.insurance-logo .swiper-slide .swiper-slide-inner img:hover {
    filter: grayscale(0);
    opacity: 1;
}
/* Home page responsive
 */
@media(max-width: 1320px){
    .main-slider .bdt-slideshow-item .bdt-main-title .bdt-title-tag {
        font-size: 72px;
        line-height: 100px;
    }
    .main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-wrapper .bdt-prime-slider-desc {
        padding-right: 20px;
    }
    .main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-wrapper{
        margin-left: 0px;
        width: calc(100% - 60px);
    }
    .main-slider .bdt-navigation-arrows{
        bottom: 36%;
    }
}
@media(max-width: 1023.98px){
    .main-slider .bdt-slideshow-item .bdt-main-title .bdt-title-tag {
        font-size: 64px;
        line-height: 88px;
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-slider-excerpt-content {
        width: 40%;
        max-width: 300px;
        padding: 35px 30px 40px;
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-prime-slider-content {
        width: 60%;
    }
    .image-text .elementor-heading-title{
        font-size: 170px !important;
    }
    .section .count-item .elementor-counter-number-wrapper .elementor-counter-number-prefix{
        font-size: 110px;
    }
    .section .count-item .elementor-counter-number-wrapper .elementor-counter-number-suffix{
        font-size: 110px;
    }
    .section .count-item .elementor-counter-number-wrapper .elementor-counter-number{
        font-size: 110px;
    }
    .section .count-item .elementor-counter .elementor-counter-title{
        font-size: 16px;
        margin-top: -77px;
    }
    .main-marquee .marquee-content .elementor-heading-title{
        font-size: 56px;
    }
    .pic-about::before{
        top: 155px;
    }
}
@media(max-width: 991.98px){
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-slider-excerpt-content {
        width: 100%;
        margin-top: 20px;
        margin-right: auto;
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-prime-slider-content {
        width: 100%;
        max-width: fit-content;
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper{
        flex-direction:column;
    }
    .main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-social-icon{
        left: 30px;
        margin-top: -65px;
    }
    .main-slider .bdt-main-title {
        padding-top: 20px;
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-prime-slider-content{
        padding-top: 150px;
    }
    .service-item{
        padding: 20px;
    }
    .service-item .service-icon{
        width: 90px;
        height: 90px;
    }
    .service-item .service-img-wrap{
        height: 90px;
        margin-bottom: 20px;
    }
    .service-item .service-desc .service-title .elementor-heading-title{
        font-size: 18px;
    }

}
@media (max-width: 767.98px) {
    .main-slider .bdt-slideshow-item .bdt-main-title .bdt-title-tag {
        font-size: 50px;
        line-height: 64px;
    }
    .main-slider .bdt-navigation-arrows {
        bottom: 10%;
    }
    .pic-about::before{
        content: none;
    }
    .pic-about::after{
        content: none;
    }
    .work-time-col{
        background-color: transparent !important;
    }
    .image-text .elementor-heading-title {
        font-size: 150px !important;
    }
    .section.about .footer-info-time *{
        font-size: 16px !important;
    }
    .section.about .footer-info-time .elementor-widget-text-editor p{
        font-size: 14px !important;
    }
    .section.about .work-time-col .opening-hours{
      padding: 12px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 30px;

    }
    .main-marquee .marquee-content .elementor-heading-title {
        font-size: 46px;
    }
    .section.fetal-ultrasound .item .elementor-image-box-wrapper{
        display: flex;
        gap:7px;
    }
    .section .count-item .elementor-counter-number-wrapper .elementor-counter-number-prefix{
        font-size: 80px;
    }
    .section .count-item .elementor-counter-number-wrapper .elementor-counter-number-suffix{
        font-size: 80px;
    }
    .section .count-item .elementor-counter-number-wrapper .elementor-counter-number{
        font-size: 80px;
    }
    .section .count-item .elementor-counter .elementor-counter-title{
        font-size: 14px;
        margin-top: -59px;
    }
}

@media (max-width: 575.98px) {
    .main-slider .bdt-slideshow-item .bdt-main-title .bdt-title-tag {
        font-size: 42px;
        line-height: 60px;
    }
    .main-slider .bdt-slideshow-item .bdt-main-title .bdt-title-tag br{
        display: none;
    }
    .main-slider .bdt-slideshow-item .bdt-ps-sub-title{
        font-size: 16px;
    }
    .main-slider .bdt-main-title{
        max-width: fit-content;
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-slider-excerpt-content {
        width: 90%;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        border-radius: 10px;
    }
    .main-slider .bdt-navigation-arrows {
        bottom: 4%;
    }
    .main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-wrapper {
        margin-left: 0px;
        width: calc(100% - 15px);
    }
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-prime-slider-content {
        padding-top: 50px;
    }
    .main-slider .bdt-prime-slider-skin-crelly .bdt-prime-slider-social-icon {
        left: 20px;
    }
    .work-time-col{
        width:100% !important;
    }
    .section.about .work-time-col .opening-hours{
        border-top-right-radius: 0px;
        border-bottom-right-radius: 30px;
    }
    .main-marquee .marquee-content .elementor-heading-title {
        font-size: 40px;
    }
    .service-item .service-desc .service-title .elementor-heading-title {
        font-size: 16px;
    }
    .service-item .service-icon {
        width: 80px;
        height: 80px;
    }
    .service-item .service-img-wrap{
        height: 80px;
        margin-bottom: 15px;
    }
    .section.fetal-ultrasound .item-col{
        --e-con-grid-template-columns: repeat(1, 1fr);
    }
    .section .count-item{
        width: 49%;
        padding-bottom: 30px;
    }
    .info-call .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title, .info-call .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-title a{
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-slider .bdt-slideshow-item .bdt-prime-slider-wrapper .bdt-slider-excerpt-content{
     padding: 20px;
    }
    .main-slider .bdt-slideshow-item .bdt-main-title .bdt-title-tag {
        font-size: 36px;
        line-height: 54px;
    }
    .main-slider .bdt-slideshow-item .bdt-ps-sub-title {
        font-size: 14px;
    }
    .section.about .about-col-one{
        width:100%
    }
    .section.about .about-col-two{
        width:100%
    }
    .section.about .about-col-two .image-text{
        display:none
    }
    .service-item{
        width:100%
    }
    .main-marquee .marquee-content .elementor-heading-title {
        font-size: 30px;
    }
    .section.fetal-ultrasound .item .elementor-image-box-content .elementor-image-box-title{
        margin: 0px;
        font-size: 14px;
    }

}


/* ----------- Home page /End --------------- */
/* ----------- booking page /Start --------------- */
.single-idy_service .header .btn{
    box-shadow: none;
    padding: 0px;
    background: transparent;
}
.single-idy_service .entry-header{
   height: 400px;
    background-image: url("assets/img/back-herosection.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position:relative ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-idy_service .entry-header:before{
    content: '';
    background: linear-gradient(86deg, #001a1e00 50%, #001a1e8a 70%, #001a1e), linear-gradient(359deg, #001a1e00 55%, #001a1e33 83%, #001a1eb5), linear-gradient(#001a1e00 47%, #001a1e33);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.5;
}
.single-idy_service .hentry{
    margin-top: -40px;
}
.single-idy_service .hentry .entry-title{
   font-family: var(--text-font-family);
    color:#fff;
    font-size: 26px;
}
.single-idy_service .hentry .entry-content{
    padding-top: 40px;
}
.single-idy_service .hentry .entry-content .service-details *{
    font-family: var(--digits-font-family) !important;
}
.single-idy_service .hentry .entry-content .service-details .idy-step-title{
color:var(--primary-color);
    font-family: var(--text-font-family) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    display: none;

}
.single-idy_service .hentry .innerTab.mainPlanParent{
    display: none !important;
}
.single-idy_service .confirmation-header{
    background: linear-gradient(135deg, #C89A32 0%, #0B5C52 100%);
}
.single-idy_service .confirmation-body .detail-row .detail-icon i{
    font-family: 'Font Awesome 5 Free' !important;
}
.single-idy_service .service-details .confirmation-card .top.confirmation-header i{
    font-family: 'Font Awesome 5 Free' !important;
}
.single-idy_service   .userSubmittedControls .idyRecompleteForm:visited {
    background-color:var(--primary-color) !important;
}
.single-idy_service   .parentBtn #nextBtn{
    background-color:var(--primary-color) !important;
}
@media (max-width: 767.98px) {
    .single-idy_service .hentry .entry-title{
        font-size:22px;
    }
    .single-idy_service .confirmation-header h4 {
        font-size: 20px;}
    .single-idy_service .entry-header {
        height: 300px;}
    .single-idy_service .hentry .entry-content .service-details .idy-step-title{
        font-size:18px;
    }
}
/* ----------- booking page /End --------------- */
/* ----------- About page /Start --------------- */
.hero-section .title .elementor-heading-title {
    font-family: var(--text-font-family);
    font-size:22px;
    color:var(--background-color-secondary);
}

/* ----------- About page /End --------------- */
/* ----------- Contact page /Start --------------- */
.section.contact-section .title .elementor-heading-title{
    font-family: var(--text-font-family);
    font-size:18px;
    color:var(--primary-color);
}
.form-contact .wpcf7-submit.button{
    padding: 5px 30px 5px 30px;
}
.section.contact-section .title.main .elementor-heading-title{
    font-size:22px;
    color: var(--text-color);
}
.technical-quotes.section .section-title .elementor-heading-title{
    font-size:26px;
    position: relative;
}
.technical-quotes .section-title .elementor-heading-title:before {
    content: '”';
    font-size: 60px !important;
    line-height: 1rem;
    height: 1rem;
    color: var(--background-color-secondary);
    font-variation-settings: "wght" 300;
    position: absolute;
    top: 22px;
    right: -30px;
}
.technical-quotes .section-title .elementor-heading-title:after {
    content: '“';
    font-size: 60px !important;
    line-height: 1rem;
    height: 1rem;
    color: var(--background-color-secondary);
    font-variation-settings: "wght" 300;
    position: absolute;
    bottom: -10px;
    left: -30px;
}
@media(max-width:1023.98px){
    .technical-quotes.section .section-title .elementor-heading-title{
        font-size:20px;
    }
    .technical-quotes .section-title .elementor-heading-title:after{
        left: -22px;
        font-size: 40px !important;
        bottom: -12px;
    }
    .technical-quotes .section-title .elementor-heading-title:before{
        font-size: 40px !important;
        right: -22px;
        top: 11px;
    }
    .section.contact-section .form-contact  p{
        margin: 5px 0px;
    }
}
@media(max-width:991.98px){
    .technical-quotes.section .section-title .elementor-heading-title{
        font-size:18px;
    }
    .section.contact-section .title.main .elementor-heading-title {
        font-size: 20px;
    }
}
@media(max-width:767.98px){
    .technical-quotes.section .section-title .elementor-heading-title{
        font-size:16px;
    }
    .technical-quotes .section-title .elementor-heading-title:after{
        left: -16px;
        font-size: 30px !important;
        bottom: -12px;
    }
    .technical-quotes .section-title .elementor-heading-title:before{
        font-size: 30px !important;
        right: -16px;
        top: 11px;
    }
    .section.contact-section .title.main .elementor-heading-title {
        font-size: 18px;
    }
    .section.technical-quotes .section-title .elementor-heading-title{
        margin-bottom: 0px;
    }

}
@media (max-width: 580px){
.section.contact-section .title .elementor-heading-title {
    font-size: 16px;
}
}
@media (max-width: 480px) {
    .technical-quotes.section .section-title .elementor-heading-title {
        font-size: 14px;
    }
    .technical-quotes .section-title .elementor-heading-title:after{
        left: -8px;
        font-size: 25px !important;

    }
    .technical-quotes .section-title .elementor-heading-title:before{
        font-size: 25px !important;
        right: -8px;

    }
}
/* ----------- Contact page /End --------------- */
/* ----------- Service page /Start --------------- */


/* ----------- Service page /End --------------- */
/*------------ 404 page / Start --------------*/
.txt-404 * {
    font-family: var(--text-font-family) !important;
}

.img-404 {
    transform: scale(1.2);
    animation: scale 3s infinite;
}

@keyframes scale {
    50% {
        transform: scale(.5);
    }
    100% {
        transform: scale(1.2);
    }
}

/*------------ 404 page / End ---------------*/
/*------------ Blog list / Start ---------------*/

/*------------ Blog list / End ---------------*/
/*------------ Blog single / Start ---------------*/

/*------------ Blog single / End ---------------*/
/*------------ responsive / start ---------------*/
@media (max-width: 1023.98px) {

}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {

}

@media (max-width: 480px) {

}

/*------------ responsive / End ---------------*/
.hfe-skip-link{
    position: fixed !important;
    left: -9999px !important;
    top: 0 !important;
}
