@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /**
    @font family declaration
    */
    --ft-montserrat-regular: "Montserrat", sans-serif;
    --ft-barlow-light: "Barlow", sans-serif;
    /**
    @color declaration
    */
    --color-primary: #03041C;
    --color-white: #FFFFFF;
    --color-blue: #3661fc;
    /*--color-red: #ef0963;*/
    --color-red: #DE1A32;
    --color-muted: #6c757d;
    --color-orange: #FF8000;
    --color-grey: #C7C7C7;
    --color-green: #06801C;
    --color-light-green: #9EB91B;
    --color-dark: #08090A;
    --light-gray-color: #EEEEEE;
}

/*montserrat*/
.montserrat-regular {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*raleway*/
.raleway-light {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.raleway-regular {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.raleway-bold {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

/*gilroy*/
.gilroy-regular {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.gilroy-medium {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.gilroy-semibold {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.gilroy-bold {
    font-family: "MyriadPro", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

/*barlow*/
.barlow-thin {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 100;
    font-style: normal;
}

.barlow-extralight {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 200;
    font-style: normal;
}

.barlow-light {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 300;
    font-style: normal;
}

.barlow-regular {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

.barlow-medium {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 500;
    font-style: normal;
}

.barlow-semibold {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 600;
    font-style: normal;
}

.barlow-bold {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 700;
    font-style: normal;
}

.barlow-extrabold {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 800;
    font-style: normal;
}

.barlow-black {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 900;
    font-style: normal;
}

.barlow-thin-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 100;
    font-style: italic;
}

.barlow-extralight-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 200;
    font-style: italic;
}

.barlow-light-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 300;
    font-style: italic;
}

.barlow-regular-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 400;
    font-style: italic;
}

.barlow-medium-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 500;
    font-style: italic;
}

.barlow-semibold-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 600;
    font-style: italic;
}

.barlow-bold-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 700;
    font-style: italic;
}

.barlow-extrabold-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 800;
    font-style: italic;
}

.barlow-black-italic {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 900;
    font-style: italic;
}

html,
body{
    height: 100%;
}

body{
    width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

.text-dark {
    color: var(--color-primary) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.bg-blue {
    background: var(--color-blue) !important;
}

.border-blue {
    border-color: var(--color-blue) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.bg-red {
    background: var(--color-red) !important;
}

.text-orange {
    color: var(--color-orange) !important;
}

.bg-orange {
    background: var(--color-orange) !important;
}

.text-green {
    color: var(--color-green) !important;
}

.bg-green {
    background: var(--color-green) !important;
}

.text-light-green {
    color: var(--color-light-green) !important;
}

.bg-light-green {
    background: var(--color-light-green) !important;
}

.bg-success{
    background-color: var(--color-green) !important;
}
.text-grey {
    color: var(--color-grey) !important;
}

.bg-grey {
    background: var(--color-grey) !important;
}

.invalid-feedback {
    display: block;
}

.border-green {
    border-color: var(--color-light-green) !important;
}

.margin-left {
    margin-left: var(--ml, 0);
    /* Default to 0 if --ml is not provided */
}

.clearfix {
    clear: both !important;
}

.hr-divider {
    height: 3px !important;
    width: 2rem;
    color: var(--color-red);
    opacity: 1;
}

.border-top {
    border-top: 2px solid #9da7b0 !important;
    z-index: -1;
    position: relative;
}

.section__title-5 {
    font-size: 33px;
    line-height: 1.3;
    letter-spacing: inherit;
    color: var(--tp-common-black);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: " . ";
    color: inherit;
    /* Use this to match the text color */
}

.mega-menu-wrapper{
    padding: inherit !important;
}

.main-menu-6 ul li a {
    color: var(--color-primary);
    padding: 25px 0;
    font-size: 12px;
    font-family: var(--ft-montserrat-regular), serif;
    font-weight: 600;
    text-transform: uppercase;
}

.main-menu ul li {
    margin-right: 30px;
}

.main-menu-6 ul li:hover>a,
.main-menu-6 ul li.active>a,
.header__sticky.header-sticky .main-menu-6 ul li.active>a {
    color: var(--color-red);
}

.main-menu ul li a.login,
.header__bottom-6.header-sticky .main-menu ul li a.login {
    padding: 5px 19px;
}

.main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 350px;
}

.header__sticky.header-sticky .main-menu-6 ul li .submenu li>a {
    padding-left: 43px;
}

.main-menu ul li .submenu li>a::before {
    width: 12px;
}

.main-menu ul li .submenu li a::before {
    content: "";
    left: 25px;
    top: 50%;
}

.main-menu ul li .submenu li a {
    font-size: 12px;
    padding-left: 43px;
}

.logo-1 {
    margin-left: 6rem;
}

.logo-2 {
    top: -36px;
}

.language-switcher {
    background: var(--color-primary);
    padding: 1px;
}

.language-switcher.dropdown-toggle::after {
    display: none;
}

.language-switcher .fi {
    line-height: 2em;
    width: 2em;
}

.header__bottom-6.header-sticky .logo-2 {
    /*display: none;*/
    width: 37% !important;
    top: -33px !important;
}

.header__bottom-6.header-sticky .logo-1 {
    margin-left: 4.5rem !important;
}

/*Carousel*/
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100%;
}

.carousel-item:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-caption {
    height: 35%;
    max-width: 54.14286%;
    left: 11%;
    text-align: left;
    z-index: 1;
}



.hero-bottom p.carousel-indicator-text {
    padding-top: 18px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-family: var(--ft-montserrat-regular), serif !important;
    letter-spacing: -0.3px;
}

.hero-bottom p.carousel-indicator-text:hover {
    padding-top: 18px;
    color: var(--color-red) !important;
    margin-top: -1px;
    cursor: auto;
}

.hero {
    background-color: var(--color-white);
    text-align: center;
}

.hero h1 {
    font-size: 54px !important;
    font-weight: 500 !important;
}

.hero p {
    color: var(--color-primary) !important;
    font-weight: 400 !important;
    font-size: 21px;
    line-height: 1.3;
}

.hero-fluid .form-control,
.hero-fluid .btn-hero {
    height: 65px;
    width: 100%;
    line-height: 54px;
    font-size: 20px;
    font-weight: 600;
}

.hero-fluid .form-control {
    border: 2px inset white;
}

.hero-fluid .btn-hero {
    background-color: var(--color-orange) !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border: 0;
    height: 65px;
    width: 100%;
    line-height: 54px;
    font-size: 14px;
    /* font-weight: 600; */
}

.hero-fluid .select2-container--default .select2-selection--single {
    height: 65px;
}

.hero-fluid .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 65px !important;
    font-size: 14px;
    font-weight: 700;
    background: #eff0f2 !important;
    color: #8d8d93;
    padding-left: 28px !important;
    padding-right: 18px !important;
    border:  1px inset gray;
}

.hero-fluid .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 65px;
}

.btn-outline-primary {
    border: 2px solid var(--color-blue) !important;
    color: var(--color-blue) !important;
}

.btn-outline-primary:hover {
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue) !important;
    color: var(--color-white) !important;
}





.pushing-limits .container {
    height: 100%;
}

.pushing-limits h1 {
    font-size: 54px !important;
    font-weight: 600 !important;
}

.pushing-limits p {
    color: var(--color-primary) !important;
    font-weight: 400 !important;
    font-size: 19.5px;
    line-height: 1.3;
}

.pushing-limit-card {
    width: 14rem;
}

.pushing-limits ul li {
    font-family: var(--ft-barlow-light), serif;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.pushing-limits .card .card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
}


.request-heading {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.highlight {
    color: #88b04b;
    /* Green color for highlighting */
}

.welcome-message {
    background-color: #88b04b;
    /* Green background */
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    margin-top: 20px;
}

.btn-submit {
    background-color: #f57c00;
    /* Orange button */
    color: white;
    font-size: 16px;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

.btn-submit:hover {
    background-color: #e65100;
    /* Darker orange on hover */
}

.form-control {
    border-radius: 8px;
    padding: 12px;
}

.form-select {
    border-radius: 8px;
    padding: 12px;
}

.mb-3 {
    margin-bottom: 1.5rem;
}



@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    /* Start and end at original position */
    20% {
        transform: translateX(5px);
    }

    /* Move to the right */
    40% {
        transform: translateX(0);
    }

    /* Back to original position */
    60% {
        transform: translateX(5px);
    }

    /* Move to the right again */
    80% {
        transform: translateX(-5px);
    }

    /* Move to the left */
}

.pushing-limits .card .shake-on-hover {
    transition: transform 0.2s;
}

.pushing-limits .card .shake-on-hover:hover {
    animation: shake 0.5s ease-in-out;
}

.offcanvas__social a {
    font-size: 1.5rem;
    padding-top: 8px;
    color: var(--color-primary);
}


/*Portfolio*/

.portfolio__slider-6 .swiper-wrapper .swiper-slide img {
    width: 100% !important;
}

.portfolio__shape-8 {
    position: absolute;
    left: 52.7%;
    top: 21.8%;
    z-index: -1;
}

.portfolio__item-8,
.portfolio__nav-8 button {
    border: 1px solid rgba(255, 255, 255, 1);
}

.portfolio__title-8 {
    font-size: 1.2rem;
}
.portfolio__meta-8 h2{
    font-weight: 800 !important;
}
.portfolio__content-8{
    padding: 40px 60px !important;
}

.portfolio__content-8::after {
    background: var(--color-orange) !important;
}

.section__title-wrapper-6>p {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--ft-barlow-light), serif !important;
}


.artistree-overview .slider__title-6.overview-title {
    line-height: 1.2;
    font-size: 36px;
}

.testimonial-brand .brand__thumb img {
    width: 100% !important;
}

.brand__thumb img {
    opacity: 0.9;
}

.testimonial-slider-dot.tp-swiper-dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section__title-highlight svg {
    position: absolute;
    bottom: -26%;
    left: -50%;
    width: 100%;
}

.search__popup {
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: -20px;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px;
    background-color: var(--color-primary);
    z-index: 99;
}

.search__input .search-input-field~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-blue);
}

.service-1 h1 {
    font-size: 5rem;
}

.service-1 p {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 1.3px;
    margin-left: 5rem;
}

.service-1-bottom-info {
    margin-top: 6.5rem !important;
}

.hv-100 {
    height: 100vh !important;
}

.about__thumb-5 .about-play-btn {
    position: absolute !important;
    top: 48%;
    left: 59%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 84px !important;
    text-align: center;
    color: var(--tp-common-white);
    /*box-shadow: 0px 4px 10px rgba(91, 29, 8, 0.36);*/
}

.tp-pulse-border {
    border-radius: 50%;
    z-index: 1;
}

.about__thumb-5 .video-play-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, var(--color-white) 15%, var(--color-white) 85.5%);
    border-radius: 50%;
}

.about__thumb-5 .about-play-btn svg {
    color: var(--color-red);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tp-pulse-border::after,
.tp-pulse-border::before {
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
}

.service-3 .card-img-top {
    height: 300px;
    object-fit: cover;
}

.hr-vertical {
    height: 100% !important;
    width: 2px;
}

.hr-horizontal {
    height: 2px !important;
    width: 2em;
    margin: -2px 0 3rem;
    background-color: var(--color-red);
    opacity: 1;
    position: relative;
    z-index: 10;
}

.dot-separated-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.dot-separated-list li {
    position: relative;
    padding-right: 18px;
}

.dot-separated-list li::after {
    content: "•";
    position: absolute;
    right: 5px;
    color: inherit;
    /* Match the text color */
}

/* Remove the dot from the last item */
.dot-separated-list li:last-child::after {
    content: "";
}

.ticket__content p {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 0;
    margin-top: 6px;
    line-height: 1;
}

.about-button-next span i,
.about-button-prev span i {
    margin-top: 30px;
}

.team__action ul li a i {
    margin-top: 13px;
}

.portfolio-play-btn.popup-video svg {
    margin-top: 25px;
}

.expertise .card {
    height: 20em;
}

.expertise .card-container {
    position: relative;
    height: 23em;
    width: 100%;
    /*max-width: 400px; */
}

.expertise .card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.expertise .card-img-overlay {
    padding: 0;
}

.expertise .card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.1) 100%, rgba(0, 0, 0, 0) 80%);
    color: white;
    padding: 26px 10px 10px 10px;
    text-align: left;
}

.expertise .card-title-overlay h5  {
    font-size: 1.5rem;
}

.expertise .card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    transform: translate(5%, 5%);
    background: #37843FD4;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.expertise .card-container:hover .card-hover-overlay {
    opacity: 1;
}

.expertise .card-container:hover .card-title-overlay {
    opacity: 0;
}

.expertise .card-container-2:hover .card-title-overlay {
    opacity: 1;
}

.expertise .card-hover-overlay .hover-text{
    padding-top: 10px;
}
.expertise .card-hover-overlay .hover-text p {
    line-height: 1.4;
    color: var(--color-white) !important;
    font-size: 0.8rem;
    letter-spacing: 1.8px;
    font-weight: lighter !important;
}

.expertise .card-hover-overlay h5 {
    font-size: 1.5rem;
}
.expertise .card-hover-overlay .btn {
    font-size: 0.8rem;
    float: right;
}

.expertise .concepts p {
    font-size: 1.2rem;
}

.video__play-btn-8 .video-play-bg {
    background: var(--color-red) !important;
}

/*.testimonial__slider-8-thumb {*/
/*    top: -60px;*/
/*}*/

/*.testimonial__avater-8 {*/
/*    padding-bottom: 0;*/
/*    padding-top: 13px;*/
/*    z-index: 1032;*/
/*}*/

/*.testimonial__slider-arrow-8 button {*/
/*    top: 35%;*/
/*}*/

/*.testimonial__avater-designation-8 {*/
/*    line-height: 17px;*/
/*}*/


/*Blog wraper*/
.blog-wrapper {
    height: 30vh;
}

.blog-wrapper .blog-item:not(:first-child) {
    border-left: 1px solid var(--color-primary);
}

.blog-wrapper .blog-item img {
    height: 175px;
}

.blog-wrapper .blog-item .card-title {
    line-height: 1.5;
}

.footer__top-6 .col-md-3:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer__copyright-6 {
    text-align: center !important;
}

.footer-icons.align-items-end {
    align-items: flex-end !important;
}

.footer-icons.justify-content-center {
    justify-content: center !important;
}

[data-bg-color=footer-bg-black] {
    background: var(--color-primary);
}

.footer__top-6 {
    position: relative;
    padding-top: 60px;
    padding-bottom: 0;
    z-index: 1;
}

.footer__bottom-inner-6 {
    padding-top: 25px;
    padding-bottom: 25px;
    border: 0;
}

.footer__top-6 .footer-icons a {
    padding: 7px 5px;
    background: #353739;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
}

.footer__top-6 .footer-icons a:not(:first-child) {
    margin-left: 15px !important;
}

.footer__link-6 a {
    color: var(--color-white) !important;
}

.footer__link-6 a::after {
    content: "";
    display: none;
}

.back-to-top-btn {
    display: inline-block;
    width: 30%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #000;
    box-shadow: none;
    color: var(--tp-common-white);
    border-radius: 0;
}

.back-to-top-btn i {
    font-size: 1.5rem;
}

.back-to-top-wrapper{
    right: 25px !important;
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 30px !important;
    text-align: right;
    width: 30% !important;
}

.testimonial__area {
    padding-bottom: 230px;
}


.blog-container {
    top: -315px;
    left: 50%;
    transform: translate(-50%);
}


.page-banner-main-block {
    width: 100%;
    height: 50vh;
    padding: 104px 78px 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.page-banner-main-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /*background: linear-gradient(*/
    /*    to top,*/
    /*    rgba(0, 0, 0, 0.9) 0%,*/
    /*    rgba(0, 0, 0, 0.1) 51%,*/
    /*    rgba(0, 0, 0, 0) 58%*/
    /*);*/
    z-index: 1;
}

.page-banner-heading {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumb-block {
    box-shadow: 0.5px 0.9px 3px 0 #EEE;
}

.page-banner-main-block-2 {
    width: 100%;
    height: 30vh;
}

.breadcrumb-block .breadcrumb li,
.breadcrumb-block .breadcrumb li a {
    font-family: var(--ft-montserrat-regular), serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: #555;
}

.breadcrumb-block .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    list-style: none;
    padding: 17px 8px 15px;
}

.breadcrumb-block .breadcrumb>li+li:before {
    font: normal normal normal 14px / 1 FontAwesome;
    color: #555;
    content: "\f105";
    padding: 0 5px;
}

.breadcrumb-btn {
    text-align: right;
}

.breadcrumb-btn .btn-default {
    border-radius: 0;
    font-weight: 500;
    padding: 17px 18px;
}

.btn-default {
    background-color: var(--color-light-green) !important;
    color: var(--color-white) !important;
    border-radius: 0;
}

.solution-block .p1 {
    font-size: 2.3rem;
    line-height: 1.2;
}

/*Arch services*/
.arch-service-1 {
    position: relative;
    background: url('../images/services/DDI Services template-03.jpg') no-repeat center center/cover;
    padding-bottom: 200px;
    background-attachment: fixed;
}

.arch-service-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


.arch-service-3 {
    position: relative;
    background: url('../images/services/DDI Services template-07.jpg') no-repeat center center/cover;
    padding-bottom: 200px;
    background-attachment: fixed;
}

.arch-service-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


/*structure*/
.structure-service-1 {
    position: relative;
    background: url('../images/services/DDI Services - Structural Drafting Solutions-03.jpg') no-repeat center center/cover;
    padding-bottom: 200px;
    background-attachment: fixed;
}

.structure-service-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.structure-service-4 {
    position: relative;
    background: url('../images/services/Structural Drafting Solutions-11.jpg') no-repeat center center/cover;
    padding-bottom: 200px;
    background-attachment: fixed;
}

.structure-service-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/*mep services*/
.mep-service-1 {
    position: relative;
    background: url('../images/services/DDI Services - MEP Drafting Solutions-03.jpg') no-repeat center center/cover;
    padding-bottom: 200px;
    background-attachment: fixed;
}

.mep-service-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}


.mep-service-3 {
    position: relative;
    background: url('../images/services/DDI Services - MEP Drafting Solutions-06.jpg') no-repeat center center/cover;
    padding-bottom: 200px;
    background-attachment: fixed;
}

.mep-service-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}



.service-cards {
    top: -230px;
    left: 50%;
    transform: translate(-50%);
}

.sub-card {
    height: 35em;
    background: #F4F4F4;
    border: none;
}

.sub-card img {
    height: 250px;
    object-fit: unset;
    transition: transform 0.3s ease;
}


.sub-card-2 {
    height: 25em;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, .125);
    padding: 20px;
}

.sub-reference {
    height: 80vh;
}

.sub-reference img {
    height: 100%;
    object-fit: unset;
    transition: transform 0.3s ease;
}

.sub-reference img:hover,
.sub-card img:hover,
.blog-item img:hover,
.img-hover:hover {
    transform: scale(1.02);
}

.img-area img {
    transition: transform 0.3s ease;
}

.h-15 {
    height: 15%;
}

.solution-block .p2 {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.6;
}


.studio-1 .card {
    height: 24.5em;
}

.img-col {
    overflow: hidden;
}

.studio-1 img {
    height: 24.5em;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.studio-1 img:hover {
    filter: grayscale(100%);
}


.service-5 .step-card {
    padding: 20px;
    border: 1px solid var(--color-white);
}

.service-5 .step-card ul li {
    font-family: "MyriadPro", sans-serif !important;
    font-size: 13px;
    margin-left: 1rem;
}

.service-5 .step-card {
    position: relative;
    background: transparent;
    height: 42vh;
}

.service-5 .step-number {
    font-family: "MyriadPro", sans-serif !important;
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-white);
    position: absolute;
    top: -18px;
}

.service-5 .title {
    font-family: "MyriadPro", sans-serif !important;
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 20px 0;
}

.service-5 .step-card:hover {
    border: 1px solid var(--color-orange);
}

.service-5 .step-card:hover .step-number {
    color: var(--color-green);
}

ul.pagination {
    margin-left: 1rem;
}

.text-hover-blue {
    font-size: 1.2rem;
}
.text-hover-blue:hover {
    color: var(--color-orange) !important;
}

.services__item:hover .services__item-inner h3,
.services__item:hover .services__item-inner h5,
.services__item:hover .services__item-inner span {
    color: var(--color-white) !important;
}

.services__item:hover .services__content.border-top {
    border-top: 2px solid var(--color-white) !important;
}

.services__item:hover .services__btn .tp-btn-border {
    background-color: var(--color-red) !important;
    color: var(--color-white) !important;
    border-color: var(--color-red) !important;
}

.services__item .services__content {
    height: 32vh;
}

.services__item-inner small {
    color: #6364db;
}

.services__item:hover .services__item-inner small {
    color: var(--color-white);
}

/*Contact*/

.contact-map {
    width: 100%;
    height: 550px;
    background-color: #E4E4E4;
}

.contact-page-main-block {
    padding: 68px 0 83px;
}

.address-block {
    margin-top: -131px;
}

.address-top-block {
    width: 100%;
    padding-left: 40px;
    border-bottom: 1px solid rgba(35, 35, 35, 0.3);
}

.address-dtl-block {
    padding: 32px 60px 20px 40px;
}

.address-dtl-heading {
    line-height: 1.28;
    color: var(--color-white) !important;
    margin-bottom: 20px;
}

.address-dtl-block ul li,
.address-dtl-block ul li a {
    font-size: 13px;
    line-height: 1.69;
    letter-spacing: 0.4px;
    color: var(--color-white);
    padding-top: 6px;
    text-decoration: none;
}

.address-dtl-block a {
    color: var(--color-white);
    text-decoration: underline;
    line-height: 5;
}

.contact-page-main-block .contact-heading {
    font-size: 28px;
    font-weight: 900;
    line-height: 2.21;
    color: var(--color-primary);
}

.contact-page-main-block .contact-section p {
    line-height: 1.86;
    letter-spacing: 0.4px;
    color: var(--color-primary);
}

.contact-form {
    margin-top: 20px;
}

.form-control {
    height: 45px;
    border-radius: 3px;
    border: solid 1px #E8E8E8;
}

.form-group label {
    margin-bottom: 10px;
}

.contact-form textarea.form-control {
    height: 150px;
    border-radius: 3px;
    background-color: #eff0f2;
}


/*
Products
 */
.product__title{
    margin-top: 1rem;
    font-size: 1.1rem;
}
.product__tab .nav-tabs .nav-item .nav-link{
    font-size: 17px;
}

.product-area .category-list .active {
    background-color: var(--color-green);
    color: white;
}
.product-area .btn-outline-secondary:hover {
    color: var(--color-white);
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
}
.product-area .category-list button {
    width: 100%;
    text-align: left;
}
.product-area .product-card {
    position: relative;
    color: white;
}
.product-area .product-card img {
    width: 100%;
    height: auto;
    border-radius: 0;
}
.product-area .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.1) 100%, rgba(0, 0, 0, 0) 80%);
    padding: 3rem;
    border-radius: 5px;
}

.small-image:hover{
    cursor: pointer;
}
.small-image.active {
    border: 2px solid var(--color-light-green);  /* Blue border for active thumbnail */
}

.figure-with{
    float: right !important;
    width: 50% !important;
    height: 25rem !important;
    object-fit: cover;
    padding-left: 3rem !important;
}

figcaption .attachment__caption{
    display: none !important;
}

.box-shadow-0:focus{
    box-shadow: none !important;
}

.services__title-4 {
    font-family: MyriadPro, serif !important;
    font-size: 2rem !important;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    transition-duration: 0.4s;
    transition-delay: 0.1s;
}
.services__item-4:hover {
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
}

.services__item-4 img{
    height: 80px;
    width: 100%;
    object-fit: cover;
}

.ventures-1 p.display-6{
    font-size: 1.8rem !important;
    line-height: 1.5 !important;
}

@media screen and (max-width: 991px) {

    .carousel-item {
        height: auto !important;
    }

    .carousel-caption h2 {
        font-size: 1.35rem;
    }

    .carousel-caption {
        display: block !important;
        height: 50% !important;
        max-width: 100%;
        left: 3%;
        text-align: left;
        z-index: 1;
    }

    .hero-bottom p.carousel-indicator-text.last-2 {
        padding-top: 0 !important;
    }

    .ventures-1 .container{
        padding-right: 25px;
        padding-left: 25px;
    }
    .ventures-1 .container .display-6{
        font-size: 1.2rem !important;
    }
    .ventures-1 .container .ps-5{
        padding-left: 1rem !important;
    }
    .ventures-1 .container .pe-5{
        padding-right: 1rem !important;
    }

    .product__tab .nav-tabs .nav-item:not(:last-child) {
        margin-right: 17px !important;
    }

    .flex-column-2 {
        display: flex;
        flex-wrap: wrap;
        max-height: 100%;
        /* Adjust as needed */
    }

    .flex-item {
        flex: 1 1 50% !important;
        /* Each item takes up 50% of the column */
        box-sizing: border-box !important;
        padding: 10px !important;
        /* Adjust padding as needed */
    }

    .carousel-indicators {
        padding-left: 0;
        padding-right: 0;
    }

    .carousel-indicators .indicator-content p {
        margin-bottom: 0 !important;
    }

    .carousel-indicators .last-2 {
        padding-top: 0 !important;
    }

    .blog-wrapper {
        height: 100vh;
        margin-bottom: 25rem;
    }

    .blog-wrapper .blog-item {
        border-left: 0 !important;
    }

    .offcanvas__logo.logo img {
        width: 45% !important;
    }

    .hero .my-auto {
        text-align: center;
    }

    .hero h1 {
        font-size: 45px !important;
        font-weight: 500 !important;
    }

    .pt-110 {
        padding-top: 65px;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .hero .hero-info-img {
        width: 35px;
    }

    .hero .d-flex.justify-content-end .my-auto {
        text-align: left;
    }

    .pushing-limits .offset-2 {
        margin-left: auto;
    }

    .pushing-limit-items {
        flex-flow: wrap;
        justify-content: center;
    }

    .pushing-limit-card {
        width: 10rem;
    }

    .pushing-limit-card:nth-child(even) {
        margin-right: 0 !important;
    }

    .pushing-limits .card .card-img-top {
        height: 150px;
        width: 100%;
        object-fit: cover;
    }

    .service-5 .col-md-3 {
        margin-bottom: 5rem;
    }

    .service-5 .step-card {
        height: 100% !important;
    }

    .page-banner-main-block {
        padding: 130px 0 65px;
        height: 20vh;
    }

    .page-banner-main-block.farmers-depo-block {
        padding: 85px 0 65px !important;
        height: 40vh !important;
    }

    .breadcrumb-btn {
        text-align: center;
    }

    .solution-block .p1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .service-4 .text-end {
        text-align: center !important;
    }

    .arch-service-2 {
        height: 100% !important;
        margin-bottom: 46rem !important;
    }

    .arch-service-5.mb-50 {
        margin-bottom: -35px;
    }

    .arch-service-4.h-15,
    .structure-service-5.h-15,
    .mep-service-4.h-15 {
        height: 100% !important;
        margin-bottom: 20rem !important;
    }

    .mep-service-2.h-75 {
        height: 100% !important;
        margin-bottom: 13rem !important;
    }

    .back-to-top-btn span {
        display: none;
    }

    .login-btn {
        display: flex !important;
        width: 11em !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-weight: 400 !important;
        margin-top: 1rem !important;
    }

    .login-btn i {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
    }

    .header__bottom-6.header-sticky .logo-2 {
        width: 38.5% !important;
        top: -33px !important;
    }

    .product__details-thumb-nav.tp-tab .nav-tabs{
        flex-wrap: nowrap;
    }
    .product__details-thumb-nav .nav-link{
        height: 65px;
    }
    .product__details-thumb-nav .nav-link:last-child{
        margin-right: 0 !important;
    }

    .product__details-thumb-tab .tab-content .tab-pane.show img{
        height: 350px !important;
    }

    .figure-width-small {
        float: none !important;
        width: 100% !important;
        height: 25rem !important;
        object-fit: cover;
        padding-left: 0 !important;
        margin-top: 2rem;
    }

    .portfolio_area_down h4{
        font-size: 1rem;
    }

    .product-area .product-overlay{
        position: relative;
        bottom: 135px;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.1) 100%, rgba(0, 0, 0, 0) 80%);
        padding: 2rem;
        border-radius: 5px;
    }

    .product-card.mb-4{
        max-height: 24rem
    }

    .product-area.pb-80{
        padding-bottom: 0 !important;
    }

    .studio-1 .card-body.p-5{
        padding: 2em 1rem !important;
    }

    .studio-1 .card-body .pe-5 {
        padding-right: 1rem !important
    }
    .studio-1 .card-body .ps-5 {
        padding-left: 1rem !important
    }

    .portfolio__masonary-btn button{
        margin-right: 11px;
    }

    .shop__sort-item .shop__sort-select{
        margin-top: -16px;
    }

    .shop__sort-item.shop__sort-item-filter{
        display: block !important;
    }
    .shop__sort-item .filter-button {
        margin-top: -13px !important;
    }

    .ventures-1 .pt-100{
        padding-top: 60px;
    }
    .ventures-1 .pb-100{
        padding-bottom: 60px;
    }

    .shop__main_sidebar{
        display: none;
        position: absolute;
        top: 0;
        background: #fff;
        z-index: 1;
        padding-top: 1rem;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }

    .shop__area.pb-60{
        padding-bottom: 0 !important;
    }

    .cta__inner-13 {
        padding: 0 !important;
    }

    .page-banner-main-block img{
        width: 100% !important;
    }

    .footer__bottom-inner-6 .col-sm-6 .text-start,
    .footer__bottom-inner-6 .col-sm-6 .text-end{
        text-align: center !important;
    }

    .footer__bottom-inner-6 .col-sm-6 .text-end{
        margin-top: 1rem !important;
    }

    .testimonial__avater-title-4 {
        font-size: 15px !important;
    }
    .about__area.pt-80 {
        padding-top: 30px !important;
    }

    .about__area .card-img-overlay.mt-30 {
        margin-top: 5px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .section__title-6 {
        font-size: 47px;
    }

    .slider__title-6 {
        font-size: 28px;
    }

    .slider__title-5 {
        font-size: 60px;
    }
}


@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .about__thumb-5 .about-play-btn {
        left: 50%;
    }
}


.cookie-consent{
    background: var(--color-light-green) !important;
    border: 1px solid var(--color-light-green) !important;
}


.services__widget-tab .nav-tabs .nav-item .nav-link.active{
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: var(--tp-common-white);
}
.services__widget-tab .nav-tabs .nav-item .nav-link:hover{
    background-color: var(--color-light-green);
    border-color: var(--color-light-green);
    color: var(--tp-common-white);
}

.product__title a:hover{
    color: var(--color-light-green);
}

.testimonial-slider-dot-14 {
    position: absolute;
    bottom: 0;
    /*top: 50%;*/
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial__avater-thumb-4 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
    margin-right: 35px;
}

.testimonial__avater-title-4 {
    font-size: 20px;
}
.testimonial__avater-designation-4{
    margin-left: 33px;
}

.video__inner-8 .section__title-8{
    font-size: 2.5rem;
    margin-top: 4rem;
}

@media screen and (max-width: 991px) {
    .video__inner-8.pb-155{
        padding-bottom: 35px !important;
    }

    .video__inner-8.pt-185 {
        padding-top: 100px;
    }

    .video__inner-8 .section__title-8{
        font-size: 1.5rem;
    }

    .testimonial__item-4.swiper-slide{
        text-align: center;
    }

    .testimonial__avater-thumb-4 img{
        margin-right: 0;
    }
    .testimonial__avater-designation-4 {
        margin-left: 0;
    }

    .expertise .card-hover-overlay h5 {
        font-size: 1.2rem;
    }
}


.z-index-1 {
    z-index: 1 !important;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--color-green);
    border-color: var(--color-green);
}

.page-link:hover {
    z-index: 2;
    color: var(--color-green);
    background-color: #e9ecef;
    border-color:   #dee2e6;
}
.request-for{
    padding-left: 1rem;
}

.video__overlay::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #000 !important;
    z-index: -1;
}
/* ----------------------------------------------------------------------------------------
* 08. START EVENT DESIGN
    * ----------------------------------------------------------------------------------------
    */
/*
* ----------------------------------------------------------------------------------------
* 06.START PORTFOLIO DESIGN
* ----------------------------------------------------------------------------------------
*/
.news-tab{
    list-style: none;
}
.z-index-11{
    z-index: 11 !important;
}
.news-tab li.active {
    background: var(--light-gray-color);
    padding: 0.5rem;
    border-radius: 5px;
}
.news-stories .img-box, .atf-post-img, .gallery-tile {
    overflow: hidden;
}

.news-stories img:hover, .atf-post-img img:hover, .gallery-tile img:hover {
    transform: scale(1.1);
    transition: all 3s ease;
}

#portfolio {
    position: relative;
    overflow: hidden;
}
#portfolio .atf-section-title {
    margin-bottom: 50px;
}
#portfolio .atf-portfolio-nav {
    text-align: center;
}
#portfolio .atf-portfolio-nav .nav {
    display: inline-block;
    margin: 0;
    border-radius: 10px;
}
#portfolio .atf-portfolio-nav .nav li {
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    text-transform: capitalize;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    padding: 5px 13px;
    margin: 2px 7px;
    color: var(--color-dark);
    border: 1px solid var(--color-red);
    font-weight: 700;
}
#portfolio .atf-portfolio-nav .nav li:hover,
#portfolio .atf-portfolio-nav .nav li.filter-active {
    color: var(--color-white);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background: var(--color-red);
}
#portfolio .atf-main-portfolio {
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
}
.atf-grid-portfolio img {
    width: 100%;
}
.atf-single-portfolio div .image-box{
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.atf-grid-portfolio {
    width:50%;
    position:relative;
}
.atf-grid-portfolio .atf-single-portfolio {
    display: block;
    overflow: hidden;
}
.atf-single-portfolio .atf-hover-portfolio {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    -webkit-transition: all .4s;
    opacity: 0;
    background-color: rgba(34, 36, 36, 0.85);
    transition: 0.3s ease-out 0s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}
.atf-single-portfolio .atf-hover-portfolio:hover {
    opacity: 1;
    transition: 0.5s ease-out 0.2s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.atf-single-portfolio .atf-hover-portfolio:hover .atf-portfolio-content  {
    opacity: 1;
}
.atf-portfolio-content .atf-hover-portfolio:hover h3,
.atf-portfolio-content .atf-hover-portfolio:hover p{
    color: var(--color-white);
}
.atf-single-portfolio .atf-hover-portfolio .atf-portfolio-content i {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity:0;
}
.atf-single-portfolio:hover .atf-hover-portfolio .atf-portfolio-content i {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -ms-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 1;
}
.atf-single-portfolio .atf-hover-portfolio .atf-portfolio-content {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}
.atf-portfolio-content i {
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid var(--color-white);
    color:var(--color-white);
    border-radius: 50%;
    margin: auto;
    margin-bottom: 25px;
    transition: all 0.5s ease-in-out 0s;
    line-height: 50px;
}
.atf-portfolio-content i:hover {
    background:var(--color-red);
    color:var(--color-white);
    border: 1px solid var(--color-red);
}
.atf-portfolio-content p {
    color: var(--color-white) !important;
    font-size: 14px;
}
.atf-portfolio-content h3 {
    padding: 0px 0 10px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
}


.atf-grid-portfolio .video__content-8{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    padding-left: 0;
    padding-right: 0;
}

.atf-grid-portfolio video{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}


.popup-video.video__play-btn i{
    border: 3px solid white;
    border-radius: 50%;
}
