body{
    overflow-x: hidden !important;
}

.a-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.wpb-content-wrapper > .vc_row.wpb_row.vc_row-fluid {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

header .navbar-brand {
    position: relative;
    /* overflow: hidden; */
    /* display: inline-block; */
}

header .navbar-brand::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 140px;
    top: 0;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background-color: var(--base-color);
    z-index: -1;
    border-radius: 0 0 75px 75px;
}

header.sticky .navbar-brand::before {
    opacity: 0;
}
/* .a-section {
    margin-left: -15px;
    margin-right: -15px; 
} */

section {
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 1600px) {
    .a-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media (max-width: 991px) {
    section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    header .navbar-brand::before {
        content: "";
        position: absolute;
        width: 95px;
        height: 110px;
        top: 0;
        left: -10px;
        right: 10px;
        bottom: 10px;
        background-color: var(--base-color);
        z-index: -1;
        border-radius: 0 0 75px 75px;
    }
}


@media (max-width: 767px) {
    .a-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.bg-white-gradient {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); 
}

.bg-white-gradient-10 {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1); 
}

.bg-white-blur {
    backdrop-filter: blur(5px) saturate(175%);
    -webkit-backdrop-filter: blur(5px) saturate(175%);
    background-color: rgba(255, 255, 255, 0.4);
}

.bg-dark-blur {
    backdrop-filter: blur(5px) saturate(175%);
    -webkit-backdrop-filter: blur(5px) saturate(175%);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Icons ==================================================== */
.line-icon-webcode:before {
    content: "\e792";
}

.line-icon-adplan:before {
    content: "\eb3b";
}

.line-icon-shield-star:before {
    content: "\eb8f";
}

.line-icon-king-crown:before {
    content: "\ea05";
}




/* ====================================================================================================================
Site Custom CSS 
======================================================================================================================= */

.single-offering-form {
    background-color: #f9f9f9;
    padding: 30px;
    display: block;
    position: relative;
    border-radius: 10px;
}

.wpcf7-list-item input[type="checkbox"] {
    width: auto;
    display: inline-block;
}

.offering-form-checks {
    display: flex;
    gap: 12px;
    justify-content: start;
    flex-wrap: wrap;
    padding: 0 0 20px 0;
}

.offering-form-checks .wpcf7-list-item {
    display: inline-block;
    margin: 0px;
    padding: 10px 17px;
    line-height: 12px;
    background-color: #f9f9f9;
    border-radius: var(--bs-border-radius);
    border: 1px solid #ececec;
}

.offering-form-checks .wpcf7-list-item .wpcf7-list-item-label {
    color: var(--medium-gray);
    font-size: 15px;
    font-weight: 500;
    margin-left: 5px;
}

.feature-box .feature-box-icon {
    overflow: hidden;
	width: 100%;
}

.feature-box .feature-box-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.min-text-height-122px {
	min-height: 122px;
    max-height: 122px;
}

.min-text-height-150px {
	min-height: 150px;
    max-height: 150px;
}

.floating-catalog-button {
	position: fixed;
	z-index: 1;
	bottom: 20px;
	right: 20px;
	background-color: var(--base-color);
	color: #ffffff;
	padding: 10px 25px;
	border-radius: 50px;
	text-decoration: none;
	display: flex;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s;
}


.floating-catalog-button:hover {
	background-color: var(--dark-gray);
	color: #ffffff;
}


.catalog-icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

@media (max-width: 991px) {
    .cover-background {
        background-repeat: no-repeat !important;
        background-size: cover;
        overflow: hidden;
        position: relative;
        background-position: 73% center !important;
      }
}