:root{
    --blue: #07a5d2;
    --pink: #f02a65;
    --grayColor: #404040;
}

@font-face {
    font-family: 'MYRIADPRO-REGULAR';
    src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('otf');
}

@font-face {
    font-family: 'MYRIADPRO-BOLD';
    src: url('../fonts/MYRIADPRO-BOLD.OTF') format('otf');
    font-weight: bold;
}

@font-face {
    font-family: 'MYRIADPRO-SEMIBOLD';
    src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('otf');
    font-weight: 600; /* Adjust the numeric value based on the font-weight of your semibold variant */
}

body {
    background-image: url(../images/homepage/homepage-banner.jpg);
    background-position: initial;
    background-repeat: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    transition-duration: 0s;
    background-size: cover !important;
    background-attachment: fixed !important;
    overflow-x: hidden;
}
body,p,.regular-text {
    font-family: 'MYRIADPRO-REGULAR', Arial, sans-serif;
}

.bold-text {
    font-family: 'MYRIADPRO-BOLD', Arial, sans-serif;
    font-weight: bold;
}

.semibold-text {
    font-family: 'MYRIADPRO-SEMIBOLD', Arial, sans-serif;
    font-weight: 600; /* Match the numeric value you set in @font-face for semibold variant */
}

span.text-bold-underline {
    color: var(--blue);
}

.service_container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px auto;
    column-gap: 10px;
    row-gap: 10px;
    padding: 23px;
    flex: 60%;
}

.service_container .service_item {
    flex: 30%;
    column-gap: 10px;
    row-gap: 10px;
    max-height: 250px;
    overflow: hidden;
    border-radius: 5px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.service_item img.service_img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire box */
}

.service_wrapper.inner {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    background: #f6f7fa4a;
}

.service_container .service_item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Text color */
    background-color: rgb(0 0 0 / 29%); /* Overlay background color with opacity */
    opacity: 1; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition for the overlay */
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Text color */
    background-color: rgba(0, 0, 0, 0.7); /* Overlay background color with opacity */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition for the overlay */
};
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Text color */
    background-color: rgba(0, 0, 0, 0.7); /* Overlay background color with opacity */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition for the overlay */
};


.service_container .service_item .overlay .overlay_item {
    background: rgb(255 255 255);
    border-radius: 4px;
    padding: 0px 10px;
    color: #404040 !important;
    font-size: 16px;
}

.overlay_item h4 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    color: #404040 !important;
    line-height: 20px;
}

.bg-blue {
    background: var(--bs-gray);
}

.text-pink {
    color: var(--pink);
}
.navbar-white{background:white}

.parallax-container {
    background-image: url('../images/homepage/bg14.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Create the parallax effect */
    color: #fff; /* Text color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 0px;
}
.parallax-container:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.parallax-container .title {
    font-size: 1.7em;
    position: relative;
    z-index: 22;
    color: var(--bs-gray-100);
    margin: auto;
    padding: 0;
}
.parallax-container .description {
    font-size: 1.5em;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 22;
    line-height: 1.5em;
    color: var(--bs-body-bg);
    width: 100%;
}
.service_wrapper .service_text {
    flex: 30%;
}

.service_title .section-title {
    color: var(--grayColor);
    font-size: 3.5em;
}

.service_title b {
    color: var(--blue);
    font-weight: normal;
}

.service_text p {
    font-size: 1.5em;
    padding: 23px;
    line-height: 35px;
    color: var(--bs-body-color);
}

.parallax-container .sub-title {
    font-size: 3em;
    color: white;
    position: relative;
    z-index: 9;
    line-height: 1.2em;
}

.parallax-container .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    row-gap: 20px;
    background: #16151554;
    position: relative;
    z-index: 9;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 7px;
}

.portfolio_section .title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    line-height: 1.2em;
    color: var(--blue);
}
#text_typing {

    overflow: hidden;
}

/* Apply a blinking cursor animation */
.cursor {
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 30px;
    background-color: var(--blue);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }

}
.overlay_item {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 4px;
    opacity: 0.5;
    transition: opacity 2s ease;
    cursor: pointer;
}
.overlay:hover .overlay_item {opacity: 1;}
.portfolio-hover-box span {
    color: var(--blue);
    margin-bottom: 20px;
}
.portfolio-hover-box p {
    color: var(--pink);
    margin-top: 20px;
}
.text-blue {
    color: var(--blue);
}
footer li:nth-child(odd) a {
    color: var(--blue);
}

footer li:nth-child(even) a {
    color: var(--pink);
}
blockquote.title:before {
    display: block;
    margin-top: 30px;
    vertical-align: bottom;
}
blockquote.title:before {
    font-family: 'Slimicons';
    content: "\201C";
    color: white;
    font-size: 120px;
}
span.icon-bg {
    background: var(--blue);
}
.text-center .icon-bg {
    margin: 0 auto;
}
.bg-default {
    background-color: #1abb9c!important;
}
.bg-default {
    background-color: #4c86e5!important;
}
.icon-bg {
    color: #FFF;
    width: 66px;
    height: 66px;
    max-width: 66px;
    max-height: 66px;
    border-radius: 50%;
    display: table;
}
.icon .number {
    font-weight: 700;
    font-size: 24px;
    display: table-cell;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
}

#partner-section {
    width: 100%;
    position: relative;
    cursor: grab;
    background: white;
}

#partner-list {
    display: flex;
    overflow-x:scroll;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
    align-content: center;
    row-gap: 30px;
}

.partner-item {
    flex: 0 0 16%; /* 5 items on large screens */
    box-sizing: border-box;
    margin-right: 20px; /* Adjust the spacing between items */
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

@media screen and (max-width: 1200px) {
    .partner-item {
        flex: 0 0 33.33%; /* 3 items on medium screens */
    }
}

@media screen and (max-width: 768px) {
    .partner-item {
        flex: 0 0 40%; /* 2 items on small screens */
    }
    .main_category{
        flex-direction: column !important;
    }
    .main_category .filter_item {
        min-width:50%;
        text-align:center;
        margin: 10px auto;
    }
}

.partner-item img {
    width: auto;
    height: 180px;
    object-fit: contain;
    border-radius: 18px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

a.check_portfolio {
    text-align: center;
    border: 1px solid;
    width: auto;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    padding: 10px 30px;
    color: var(--pink);
    font-size: 1.3em;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 1px #d2cfcfba;
    transition: background 1s ease;
    font-weight: 600;
}
a.check_portfolio:hover{
    background:var(--pink);
    color:white;
}

.row_check_portfolio {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
}


.main_category {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 1.3em;
    font-weight: 600;
}

.filter_link {
    background: white;
    padding: 10px;
    border-radius: 5px;
    color: var(--pink);
    border: 1px solid;
    border-color: var(--pink);
    cursor: pointer;
    transition: 1s;
}

.filter_item a {
    color: var(--pink);
}

.portfolio-wrapper {
    transition: opacity 1s;
}

.filter_link.active , .filter_link:hover {
    background: var(--pink);
    color: white;
    border: none;
}