/* 
Theme Name: Quest IP
Theme URI: https://spiritnoise.com
Description: Quest IP is a child theme
Author: Shobhit Verma
Author URI: https://spiritnoise.com
Template: hello-elementor
Version: 2.0.0
*/

/* Add your custom styles here */
body{
    background-image: url("images/bg-image.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;
}
p{
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
}

main#content {
    min-height: 500px;
}
#content ul,
#content ol{
    margin-bottom: 15px;
}
/*Header*/
body.home #site-header{
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 9;
}
/* Push header down when admin bar is present */
body.home.admin-bar #site-header {
    top: 32px; /* Default admin bar height */
}
#menu-top-menu li{
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 1px;
	color: rgba(26, 26, 26, 1);
	text-transform: uppercase;
	font-family: "Lato", sans-serif;
}
#menu-top-menu li a{
	color: rgba(26, 26, 26, 1);
}
#menu-top-menu li.current-menu-item a{
	color: #286dbf;
}

h1.entry-title{
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 3px;
	text-align: center;
	margin-top: 30px;
}
/*Home Main*/
/* Scroll indicator in hero section */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(20px);
}

.scroll-indicator.visible {
    animation: fadeInUp 1s ease 2.5s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid #999999;
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: #999999;
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Animation for scroll wheel */
@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
    .scroll-indicator {
        margin-bottom: 0.5rem;
    }
}

/*Team Grid*/
.team-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    overflow: hidden;
    border: 1px solid rgba(248, 248, 248, 1);
    border-top: 1px solid #f8f8f8;
    background: #fff;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    overflow: hidden;
    line-height: 0px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.member-image img {
    width: 100%;
    height: auto;
    margin: 0px;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}
.member-image{
    position: relative;
    overflow: hidden;
}
.member-image .t-description{
    display: block;
    position: absolute;
    padding: 30px;
    bottom: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(235, 235, 236, 0);
    transition: bottom 0.4s, border-bottom 0.5s 0.85s;
}
.member-image .t-description .content-wrapper{
    opacity: 0;
    padding-top: 100px;
    height: 100%;
    transition: opacity 1s, padding-top 0.8s;
}
.team-member-card:hover .member-image .t-description {
    bottom: 0;
    border-bottom: 1px solid rgb(235, 235, 236);
}
.team-member-card:hover .member-image .t-description .content-wrapper {
    padding-top: 0;
    opacity: 1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.placeholder-image::before {
    content: "No Image";
}

.member-info {
    padding: 25px 20px;
    text-align: left;
}

.member-name,
.member-name a {
    font-size: 18px;
    font-weight: 600;
    color: #286dbf;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: "Montserrat", Sans-serif;
}

.member-designation {
    font-size: 14px;
    color: #111111;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.member-linkedin a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.member-linkedin a:hover {
    opacity: 0.8;
}

.linkedin-text {
    color: #0077b5;
    margin-right: 1px;
}

.linkedin-logo {
    background: #0077b5;
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .member-info {
        padding: 20px 15px;
    }

}

.breadcrumbs {
    font-size: 15px;
    font-weight: 400;
    margin: 15px 0;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    display: inline-block;
}

.breadcrumbs a {
    color: #286dbf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #1d4d8f;
    text-decoration: underline;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 600;
}

.breadcrumbs span,
.breadcrumbs a {
    margin: 0 4px;
}

.breadcrumbs .separator {
    color: #666;
}

@media(min-width: 1140px){
    .elementor-16 .elementor-element.elementor-element-33a2a0e:not(.elementor-motion-effects-element-type-background){
        background-position-x: calc((100vw - 1140px) / 2 + 40px) !important;
    }   
}
@media(max-width: 1140px){
    .elementor-16 .elementor-element.elementor-element-33a2a0e:not(.elementor-motion-effects-element-type-background){
        background-position: top center !important;
        background-attachment: scroll !important;
        padding-top: 200px;
    }
}
@media(max-width: 1140px){
    .elementor-16 .elementor-element.elementor-element-33a2a0e:not(.elementor-motion-effects-element-type-background){
        padding-top: 150px !important;;
        background-size: 150px !important;
    }   
}

/* Practices Grid Styles */
.practices-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-item {
    width: calc(25% - 30px);
    position: relative;
}

.practice-card {
    background: #ffffff;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    border: 1px solid #f8f8f8;
    background: #fff;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.practice-icon {
    margin-bottom: 20px;
}

.practice-icon a {
    display: block;
    transition: transform 0.3s ease;
}

.practice-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
}

.practice-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.practice-title {
    font-size: 18px;
    font-weight: 700;
    color: #286dbf;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: "Montserrat", Sans-serif;
}

.practice-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.practice-title a:hover {
    color: #d4af37;
}

.practice-learn-more {
    margin-top: auto;
    padding-top: 10px;
}

.learn-more-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(153, 153, 153, 1);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.learn-more-link:hover {
    color: #d4af37;
}

.learn-more-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.learn-more-link:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .practice-item{
        width: calc(50% - 30px);
    }
}
@media (max-width: 768px) {
    .practices-grid-container {
        gap: 20px;
    }
    
    .practice-card {
        padding: 30px 25px;
    }
    
}

@media (max-width: 480px) {
    .practice-item{
        width: 100%;
    }
    .practice-card {
        padding: 25px 20px;
    }
}

/* individual practice page */
.practice-page-layout{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}
.practice-page-layout .practice-icon img{
    width: 110px;
    height: auto;
}
.practice-content .entry-title {
    text-align: left;
    margin-top: 0px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .practice-page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px;
    }
}

/*Single Team Member Layout*/
.team-member-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile-image {
    width: 100%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-image.placeholder {
    aspect-ratio: 3/4;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}
.member-content .entry-title{
    text-align: left;
    margin-top: 0px;
    margin-bottom: 10px;
}
.member-content .member-designation{
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .team-member-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px;
    }
}

/* Blog Cards Styles */
.blog-cards-container{
    margin: 0px auto;
}
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.blog-card-date svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #286dbf;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: "Montserrat", Sans-serif;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #3498db;
}

.blog-card-read-more {
    margin-top: auto;
}

.read-more-btn {
    display: inline-block;
    background: #286dbf;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #286dbf;
    font-family: "Montserrat", Sans-serif;
}

.read-more-btn:hover {
    background: transparent;
    color: #286dbf;
    transform: translateY(-2px);
}

/* Card without image */
.blog-card:not(:has(.blog-card-image)) .blog-card-content {
    padding: 30px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-cards-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* Featured card highlighting */
.blog-card.featured {
    border: 2px solid #3498db;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.blog-card.featured .blog-card-title a {
    color: #3498db;
}

.blog-card.featured .read-more-btn {
    background: #3498db;
    border-color: #3498db;
}

/* No image variant */
.blog-card.no-image .blog-card-content {
    padding: 40px 25px;
}

.blog-card.no-image {
    min-height: 280px;
}

/* Contact Form 7 - Internship Form Styles */
.cf7-custom-form {
    max-width: 700px;
    margin: 0 auto;
}

.cf7-custom-form .form-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

/* Main Form Layout */
.cf7-custom-form .form-main-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.cf7-custom-form .form-column {
    flex: 1;
}

.cf7-custom-form .form-field {
    position: relative;
    margin-bottom: 25px;
}

/* Column 1 - Input fields */
.cf7-custom-form .column-1 .form-field {
    margin-bottom: 25px;
}

/* Column 2 - Checkboxes and message */
.cf7-custom-form .column-2 .message-field {
    flex: 1;
}

/* Full-width file upload row */
.cf7-custom-form .form-file-row {
    width: 100%;
    margin-bottom: 30px;
}

/* Input Field Styles */
.cf7-custom-form input[type="text"],
.cf7-custom-form input[type="email"],
.cf7-custom-form input[type="tel"],
.cf7-custom-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 4px;
    font-size: 14px;
    color: rgba(153, 153, 153, 1);
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cf7-custom-form input[type="text"]:focus,
.cf7-custom-form input[type="email"]:focus,
.cf7-custom-form input[type="tel"]:focus,
.cf7-custom-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Placeholder Styles */
.cf7-custom-form input::placeholder,
.cf7-custom-form textarea::placeholder {
    color: #bdc3c7;
    font-size: 15px;
}

/* Labels */
.cf7-custom-form label,
.cf7-custom-form .checkbox-item .wpcf7-list-item-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(17, 17, 17, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Message Field */
.cf7-custom-form .message-field textarea {
    height: 130px;
    min-height: 130px;
    resize: vertical;
}

/* Checkbox Styles */
.cf7-custom-form .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.cf7-custom-form .checkbox-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.cf7-custom-form .checkbox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.cf7-custom-form .checkbox-item p{
    margin-bottom: 0px;
    line-height: 0px;
}
.cf7-custom-form .checkbox-item .wpcf7-list-item{
    margin: 0px;
}
.cf7-custom-form .checkbox-item input[type="checkbox"] {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    display: block;
}

.cf7-custom-form .checkbox-item input[type="checkbox"]:checked {
    background: #3498db;
    border-color: #3498db;
}

.cf7-custom-form .checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}
.cf7-custom-form .checkbox-item .wpcf7-list-item-label{
    min-height: 11px;
    line-height: 100%;
}

/* File Upload Styles */
.cf7-custom-form .file-field {
    position: relative;
}

.cf7-custom-form input[type="file"] {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    transition: all 0.3s ease;
    background-image: url("images/upload-icon.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.cf7-custom-form input[type="file"]:hover {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.cf7-custom-form .file-label {
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    pointer-events: none;
    font-size: 11px;
    font-weight: 600;
    color: rgba(17, 17, 17, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0px;
    padding-top: 10px;
}

.cf7-custom-form input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    width: 0;
    height: 0;
}

/* Submit Button */
.cf7-custom-form .form-submit {
    text-align: right;
    margin-top: 30px;
}

.cf7-custom-form .submit-btn {
    min-width: 180px;
    background: #286dbf;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #286dbf;
    font-family: "Montserrat", Sans-serif;
}

.cf7-custom-form .submit-btn:hover {
    background: transparent;
    color: #286dbf;
    transform: translateY(-2px);
}

/* Error and Success Messages */
.cf7-custom-form .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.cf7-custom-form .wpcf7-validation-errors {
    background: #fdf2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    color: #dc2626;
    padding: 12px;
    margin: 15px 0;
    font-size: 14px;
}

.cf7-custom-form .wpcf7-mail-sent-ok {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    color: #166534;
    padding: 12px;
    margin: 15px 0;
    font-size: 14px;
}
.cf7-custom-form .wpcf7-spinner{
    display: block;
}
/* Responsive Design */
@media (max-width: 768px) {
    .cf7-custom-form.internship-form {
        padding: 30px 20px;
    }
    
    .cf7-custom-form .form-main-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cf7-custom-form .checkbox-row {
        justify-content: center;
        gap: 40px;
    }
    
    .cf7-custom-form .form-header h3 {
        font-size: 16px;
        text-align: center;
    }
    
    .cf7-custom-form .form-submit {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cf7-custom-form.internship-form {
        padding: 25px 15px;
    }
    
    .cf7-custom-form .checkbox-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cf7-custom-form .submit-btn {
        width: 100%;
        padding: 18px;
    }
}

/* Custom styling for WPCF7 wrapper */
.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    margin: 0;
}

/* Hide WPCF7 default response output */
.wpcf7 .wpcf7-response-output {
    border: none;
    margin: 15px 0 0 0;
    padding: 0;
}

/*Contact us page*/
.elementor-element-ea165d4 p,
.elementor-element-bd4cae6 p,
.elementor-element-dbee40e p{
    margin-bottom: 5px;
}
.elementor-element-bd4cae6{
    padding-top: 30px;
}


#site-disclaimer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 80px 20px;
    display: flex;
    overflow: auto;
}
#site-disclaimer .wrapper{
    max-width: 940px;
    padding-left: 335px;
    position: relative;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
#site-disclaimer .logo-wrap{
    width: 335px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-right: 1px solid #197fc3;
    overflow: hidden;
}
#site-disclaimer .logo-wrap .logo{
    width: 230px;
    height: 80px;
    position: absolute;
    top: -50%;
    bottom: -50%;
    right: 70px;
    margin: auto 0px;
    background-image: url("images/quest-ip-logo.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    text-indent: -9999px;
}
#site-disclaimer .terms-wrap{
    width: 100%;
    padding-left: 70px;
}
#site-disclaimer .terms {
    padding:0px 0px 20px 0px;
}
#site-disclaimer .terms h3{
    margin-top: 0px;
    text-transform: uppercase;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    letter-spacing: var(--e-global-typography-primary-letter-spacing);
    color: var(--e-global-color-primary);
}
#site-disclaimer .terms ul{
    padding-left: 20px; 
    margin-bottom: 15px;
}
#site-disclaimer p,
#site-disclaimer ul li{
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
}
#site-disclaimer .terms p:last-child{
    margin-bottom: 0px;
}
#site-disclaimer .agreemen-tab {
    margin-top: 10px;
}
#site-disclaimer .agreemen-tab a{
    min-width: 135px;
    margin-right: 50px;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
#site-disclaimer .agreemen-tab a:last-child{
    margin-right: 0px;
}
/*Footer*/
#site-footer{
    padding: 80px 0px 0px 0px;
}
.footer-headline{
    font-size: 18px;
    color: #286dbf;
    text-align: center;
    padding: 0px 10px;
}
#site-footer .footer-inner{
    max-width: 1170px;
    padding: 50px 15px;
}
.footer-col .f-heading{
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
#site-footer .copyright{
    padding: 20px 10px;
    text-align: center;
    background-color: #286dbf;
}
#site-footer .copyright p{
    color: #ffffff;
    font-size: 14px;
    line-height: 100%;
    margin: 0px;
}

/*Responsive*/
@media(max-width: 991px){
    .site-navigation-dropdown ul.menu li{
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 1px;
        color: rgba(26, 26, 26, 1);
        text-transform: uppercase;
        font-family: "Lato", sans-serif;
    }
    .site-navigation-dropdown ul.menu li.current-menu-item a{
        background: #286dbf;
    }
}
@media(max-width: 768px){
    #site-disclaimer{
        padding:40px 0px;
        display: flex;
    }
    #site-disclaimer .wrapper{
        padding-left: 0px;
        padding: 0px 15px;
    }
    #site-disclaimer .logo-wrap{
        position: relative;
        width: 100%;
        top: 0px;
        overflow: visible;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #197fc3;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    #site-disclaimer .logo-wrap .logo{
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        bottom: auto;
        display: inline-block;
    }
    #site-disclaimer .terms-wrap{
        padding-left: 0px;
    }
    #site-disclaimer .terms{
        max-height: inherit;
    }
    
    #site-disclaimer .agreemen-tab {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    #site-disclaimer .agreemen-tab a{
        margin-right: 0px;
    }

    body .elementor-12 .elementor-element.elementor-element-01a9040 .elementor-heading-title {
        font-size: 42px;
        line-height: 46px;
    }
    .elementor-element-9a52dec{
        text-align: center;
        padding-bottom: 15px;
    }
    .footer-col{
        width: 50%;
    }
}
@media(max-width: 480px){
    body .elementor-12 .elementor-element.elementor-element-01a9040 .elementor-heading-title {
        font-size: 28px;
        line-height: 34px;
    }
    #site-footer .footer-inner{
        gap: 10px;
    }
    .footer-col{
        width: 100%;
    }
    .footer-col .site-logo {
        margin-bottom: 15px;
    }
}