 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: #f5f5f5;
     min-height: 100vh;
     padding: 0;
     margin: 0;
 }

 /* Reading Progress Bar */
 .reading-progress {
     position: fixed;
     top: 0;
     left: 0;
     height: 4px;
     background: linear-gradient(90deg, #ff8c42 0%, #ff8a00 100%);
     width: 0%;
     z-index: 10000;
     transition: width 0.1s ease;
 }

 /* Main Container */
 .main-container {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px 20px;
     position: relative;
 }

 /* Orange Dots Background - Left Side */
 .main-container::before {
     content: '';
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 380px;
     height: 520px;
     background-image: url(../img/sk-images/apply-page-imgs/dotted2.png);
     background-size: cover;
     opacity: 0.8;
     pointer-events: none;
 }

 /* Orange Dots Background - Right Side */
 .main-container::after {
     content: '';
     position: absolute;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 350px;
     height: 520px;
     background-image: url(../img/sk-images/apply-page-imgs/dotted3.png);
     background-size: cover;
     opacity: 0.9;
     z-index: -1;
     pointer-events: none;
 }

 .content-wrapper {
     max-width: 1200px;
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     background: white;
     border-radius: 30px;
     box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
     padding: 20px 40px;
     overflow: hidden;
     position: relative;
 }

 /* Left Section - Image */
 .right-section {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     order: 1;
     padding: 20px;
 }

 .hero-image {
     width: 100%;
     max-width: 450px;
     height: auto;
     object-fit: contain;
 }

 @keyframes floatAnimation {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 /* Right Section - Form */
 .left-section {
     order: 2;
     padding: 20px;
 }

 .form-card {
     background: #ffffff;
     border-radius: 24px;
     padding: 15px 20px;
     border: 1px solid #ff8a00;
     position: relative;
 }

 .form-card h1 {
     font-size: 30px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 8px;
     line-height: 1.3;
 }

 .form-card h1 span {
     display: block;
 }

 .subtitle {
     color: #6c757d;
     font-size: 15px;
     margin-bottom: 28px;
     font-weight: 500;
 }

 /* Mobile Input with Country Code */
 .mb-3.position-relative {
     position: relative;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .country-code {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: white;
     border: 2px solid #ff8a00;
     border-radius: 12px;
     padding: 13px 16px;
     font-weight: 600;
     color: #333;
     font-size: 15px;
     min-width: 95px;
     justify-content: center;
     position: relative;
 }

 .country-code::before {
     content: '';
     display: inline-block;
     width: 24px;
     height: 18px;
     background-image: url('../img/sk-images/contact-page-images/ind-flg.png');
     background-size: contain;
     background-repeat: no-repeat;
     margin-right: 4px;
 }

 .form-control {
     /* border: 2px solid #e0e0e0; */
     border: 2px solid #ff8a00;
     border-radius: 12px;
     padding: 13px 18px;
     font-size: 15px;
     transition: all 0.3s ease;
     flex: 1;
     font-weight: 500;
 }

 .form-control:focus {
     border-color: #ff8c42;
     box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
     outline: none;
 }

 .form-control::placeholder {
     color: #adb5bd;
     font-weight: 400;
 }

 .form-control.input-error {
     border-color: #dc3545;
 }

 .form-control.input-success {
     border-color: #ff8c42;
 }

 .text-danger {
     font-size: 13px;
     margin-top: 6px;
     font-weight: 500;
 }

 .otp-note {
     font-size: 13px;
     color: #6c757d;
     margin: 10px 0 22px 0;
     font-weight: 500;
 }

 /* Checkboxes */
 .form-check {
     margin-bottom: 14px;
     padding-left: 0;
     gap: 10px;
 }

 .form-check-input {
     width: 18px;
     height: 18px;
     border: 2px solid #ffa726;
     border-radius: 4px;
     cursor: pointer;
     margin-top: 3px;
     flex-shrink: 0;
     background-color: white;
 }

 .form-check-input:checked {
     background-color: #ff8c42;
     border-color: #ff8c42;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
 }

 .form-check-label {
     font-size: 12.5px;
     color: #495057;
     line-height: 1.5;
     cursor: pointer;
     font-weight: 500;
 }

 .form-check-label a {
     color: #1a1a1a;
     text-decoration: none;
     font-weight: 600;
 }

 .form-check-label a:hover {
     text-decoration: underline;
     color: #ff8c42;
 }

 /* Apply Button */
 .btn-apply {
     width: 100%;
     padding: 15px;
     background: linear-gradient(135deg, #ff8a00 0%, #ff8a00 100%);
     border: none;
     border-radius: 50px;
     color: white;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     margin-top: 22px;
     transition: all 0.3s ease;
     text-transform: capitalize;
     letter-spacing: 0.3px;
     box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
 }

 .btn-apply:hover:not(:disabled) {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
     background: linear-gradient(135deg, #ff8a00 0%, #f57c00 100%);
 }

 /* .btn-apply:disabled {
            background: #e0e0e0;
            cursor: not-allowed;
            opacity: 0.6;
            box-shadow: none;
        } */

 /* Payment Icons Section */
 .payment-icons {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 15px;
     margin-top: 25px;
     padding-top: 20px;
     border-top: 1px solid #e9ecef;
 }

 .payment-icons img {
     height: 24px;
     object-fit: contain;
     transition: opacity 0.3s ease;
 }

 .form-check-input {
     margin-left: 0 !important;
 }

 .payment-icons img:hover {
     opacity: 1;
 }

 /* OTP Section */
 #otpForm {
     display: none;
 }

 #otpForm.hidden {
     display: none;
 }

 #otpForm:not(.hidden) {
     display: block;
 }

 #mobileForm.hidden {
     display: none;
 }

 #otpForm h4 {
     font-size: 24px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 12px;
     text-align: center;
 }

 .otp-box {
     width: 50px;
     height: 55px;
     text-align: center;
     font-size: 22px;
     font-weight: 700;
     border: 2px solid #e0e0e0;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .otp-box:focus {
     border-color: #ff8c42;
     box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
     outline: none;
 }

 .resend-link {
     color: #ff8c42;
     font-weight: 600;
     text-decoration: none;
 }

 .resend-link:hover {
     text-decoration: underline;
 }

 /* Loader Styles */
 .fullscreen-loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #091540a7 0%, #05063ab3 100%);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .fullscreen-loader.active {
     opacity: 1;
     visibility: visible;
 }

 .loader-spinner {
     position: relative;
     width: 80px;
     height: 80px;
 }

 .loader-spinner::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     border: 4px solid rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     border-top-color: #ffeb3b;
     animation: spin 1s linear infinite;
 }

 .loader-spinner::after {
     content: '';
     position: absolute;
     width: 60px;
     height: 60px;
     top: 10px;
     left: 10px;
     border: 4px solid rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     border-top-color: #fff;
     animation: spin 0.7s linear infinite reverse;
 }

 .loader-text {
     margin-top: 30px;
     color: #fff;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 1px;
     animation: pulse 1.5s ease-in-out infinite;
 }

 .loader-dots {
     display: inline-block;
     width: 20px;
     text-align: left;
 }

 .loader-dots::after {
     content: '.';
     animation: dots 1.5s steps(4, end) infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.6;
     }
 }

 @keyframes dots {

     0%,
     20% {
         content: '.';
     }

     40% {
         content: '..';
     }

     60%,
     100% {
         content: '...';
     }
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .content-wrapper {
         grid-template-columns: 1fr;
         gap: 30px;
         padding: 40px 30px;
     }

     .right-section {
         order: 1;
     }

     .left-section {
         order: 2;
     }

 }

 @media (max-width: 576px) {
     .main-container {
         padding: 20px 10px;
     }

     .main-container::before,
     .main-container::after {
         width: 40px;
         height: 250px;
     }

     .content-wrapper {
         padding: 30px 20px;
         border-radius: 20px;
     }

     .form-card {
         padding: 30px 25px;
     }

     .form-card h1 {
         font-size: 26px;
     }

     .subtitle {
         font-size: 14px;
     }

     .mb-3.position-relative {
         flex-direction: row;
     }

     .country-code {
         min-width: 85px;
         padding: 12px 14px;
     }

     .otp-box {
         width: 45px;
         height: 50px;
         font-size: 20px;
     }

 }

 /* Terms Section - Same as before, keeping it unchanged */
 .terms-section {
     background: #f8f9fa;
     padding: 60px 20px;
 }

 .terms-hero {
     text-align: center;
     margin-bottom: 40px;
 }

 .terms-title {
     font-size: 38px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .terms-title span:first-child {
     color: #1a1a1a;
 }

 .terms-title span:last-child {
     color: #ff8c42;
 }


 /* ========================================
   TERMS & CONDITIONS SECTION - COMPLETE STYLING
   ======================================== */

 /* Terms Section Container */
 .terms-section {
     background: #f8f9fa;
     padding: 60px 20px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* Hero Title */
 .terms-hero {
     text-align: center;
     margin-bottom: 50px;
 }

 .terms-title {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 0;
 }

 .terms-title span:first-child {
     color: #1a1a1a;
 }

 .terms-title span:last-child {
     color: #ff8c42;
 }

 /* Quick Navigation Pills */
 .quick-nav {
     max-width: 1200px;
     margin: 0 auto 10px;
     padding-bottom: 10px;
 }

 .quick-nav-list {
     display: flex;
     gap: 12px;
     list-style: none;
     padding: 20px !important;
     border-radius: 12px;
     background: #fff;
     padding: 0;
     margin: 0;
     flex-wrap: wrap;
     justify-content: space-around;
 }

 .quick-nav-item {
     flex-shrink: 0;
 }

 .quick-nav-link {
     display: inline-block;
     padding: 10px 24px;
     background: white;
     border: 2px solid #F77F00;
     border-radius: 50px;
     color: #495057;
     text-decoration: none;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .quick-nav-link:hover {
     background: #fff5eb;
     border-color: #ff8c42;
     color: #ff8c42;
     transform: translateY(-2px);
 }

 .quick-nav-link.active {
     background: linear-gradient(135deg, #ff8a00 0%, #ff8a00 100%);
     border-color: #ff8a00;
     color: white;
 }

 /* Main Content Wrapper */
 .terms-content-wrapper {
     max-width: 1200px;
     margin: 0 auto;
 }

 .layout-grid {
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 40px;
     align-items: start;
 }

 /* Table of Contents Sidebar */
 .toc-sidebar {
     position: sticky;
     top: 100px;
     background: white;
     border-radius: 16px;
     padding: 30px 25px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
     border: 1px solid #ff8c42;
 }

 .toc-title {
     font-size: 20px;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 20px;
     padding-bottom: 15px;
 }

 .toc-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .toc-item {
     margin-bottom: 8px;
 }

 .toc-link {
     display: block;
     padding: 10px 15px;
     color: #495057;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 .toc-link:hover {
     background: #fff5eb;
     color: #ff8c42;
     padding-left: 20px;
 }

 .toc-link.active {
     background: linear-gradient(135deg, #ff8a00 0%, #ff8a00 100%);
     color: white;
     font-weight: 600;
 }

 /* Main Terms Content */
 .terms-main-content {
     border-radius: 20px;
     padding: 40px;
 }

 /* Search Container */
 .search-container {
     position: relative;
     margin-bottom: 30px;
 }

 .search-box {
     width: 100%;
     padding: 12px 50px 12px 20px;
     border: 2px solid #e0e0e0;
     border-radius: 50px;
     font-size: 15px;
     font-weight: 500;
     border: 1px solid #ff8c42;
     transition: all 0.3s ease;
 }

 .search-box:focus {
     outline: none;
     border-color: #ff8c42;
     box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
 }

 .search-icon {
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 20px;
     pointer-events: none;
 }

 .search-icon i {
     color: #ff8c42;
 }

 /* Accordion Controls */
 .accordion-controls {
     display: flex;
     gap: 12px;
     margin-bottom: 30px;
 }

 .control-btn {
     padding: 10px 24px;
     background: white;
     border: 1px solid #ff8c42;
     border-radius: 50px;
     color: #495057;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .control-btn:hover {
     background: #fff5eb;
     border-color: #ff8c42;
     color: #ff8c42;
     transform: translateY(-2px);
 }

 /* ========================================
   ACCORDION SECTIONS - EXACT IMAGE STYLING
   ======================================== */

 .accordion-section {
     margin-bottom: 20px;
     border-radius: 12px;
     border: 2px solid #e8e8e8;
     background: white;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .accordion-section:hover {
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     border-color: #ffa726;
 }

 /* Accordion Header */
 .accordion-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 25px;
     cursor: pointer;
     background: #ffffff;
     transition: all 0.3s ease;
 }

 .accordion-section:hover .accordion-header {
     background: #fffaf5;
 }

 .accordion-section.active .accordion-header {
     background: #fff5eb;
     border-bottom: 2px solid #ffe0b2;
 }

 .accordion-title {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 18px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .section-icon {
     font-size: 24px;
 }

 /* Accordion Toggle Icon (Plus/Minus) */
 .accordion-toggle {
     width: 28px;
     height: 28px;
     position: relative;
     flex-shrink: 0;
     transition: transform 0.3s ease;
 }

 .accordion-toggle::before,
 .accordion-toggle::after {
     content: '';
     position: absolute;
     background: #b4b4b4;
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 .accordion-toggle::before {
     width: 15px;
     height: 2px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .accordion-toggle::after {
     width: 2px;
     height: 15px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .accordion-section.active .accordion-toggle::after {
     transform: translate(-50%, -50%) rotate(90deg);
     opacity: 0;
 }

 .accordion-section.active .accordion-toggle {
     transform: rotate(180deg);
 }

 /* Accordion Body */
 .accordion-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* Accordion Content - EXACT IMAGE STYLING */
 .accordion-content {
     padding: 30px 25px;
     background: #fafafa;
     border-top: 2px solid #f0f0f0;
     line-height: 1.8;
     color: #333;
 }

 .accordion-content p {
     margin-bottom: 18px;
     font-size: 15px;
     line-height: 1.8;
     color: #495057;
     text-align: justify;
 }

 .accordion-content p:last-child {
     margin-bottom: 0;
 }

 .accordion-content h3,
 .accordion-content h6 {
     font-size: 17px;
     font-weight: 700;
     color: #1a1a1a;
     margin: 25px 0 15px 0;
     padding-top: 10px;
 }

 .accordion-content h3:first-child,
 .accordion-content h6:first-child {
     margin-top: 0;
     padding-top: 0;
 }

 /* Lists inside Accordion */
 .accordion-content ul {
     margin: 20px 0;
     padding-left: 0;
     list-style: none;
 }

 .accordion-content ul li {
     margin-bottom: 15px;
     padding-left: 30px;
     position: relative;
     font-size: 15px;
     line-height: 1.8;
     color: #495057;
 }

 .accordion-content ul li::before {
     content: '•';
     position: absolute;
     left: 12px;
     color: #ff8c42;
     font-size: 22px;
     line-height: 1;
     font-weight: 700;
 }

 .accordion-content ul li strong {
     color: #1a1a1a;
     font-weight: 700;
 }

 /* Highlight Text in Search */
 .accordion-content mark.highlight {
     background: #ffeb3b;
     padding: 2px 4px;
     border-radius: 3px;
     font-weight: 600;
 }

 /* ========================================
   RESPONSIVE DESIGN
   ======================================== */

 @media (max-width: 992px) {
     .layout-grid {
         grid-template-columns: 1fr;
     }

     .toc-sidebar {
         position: relative;
         top: 0;
         margin-bottom: 30px;
     }

     .terms-main-content {
         padding: 30px 25px;
     }

     .quick-nav-list {
         justify-content: flex-start;
     }
 }

 @media (max-width: 768px) {
     .terms-section {
         padding: 40px 15px;
     }

     .terms-title {
         font-size: 32px;
     }

     .terms-main-content {
         padding: 25px 20px;
     }

     .accordion-header {
         padding: 16px 18px;
     }

     .accordion-title {
         font-size: 16px;
     }

     .accordion-content {
         padding: 20px 18px;
     }

     .accordion-content p,
     .accordion-content ul li {
         font-size: 14px;
     }

     .accordion-controls {
         flex-direction: column;
     }

     .control-btn {
         width: 100%;
     }

     .quick-nav {
         overflow-x: scroll;
     }

     .quick-nav-list {
         flex-wrap: nowrap;
     }
 }

 @media (max-width: 576px) {
     .terms-title {
         font-size: 28px;
     }

     .accordion-content {
         padding: 18px 15px;
     }

     .toc-sidebar {
         padding: 20px 18px;
     }
 }



 /* Rest of the Terms CSS remains the same... */

 /* ===============================
   SALARYKART FOOTER (PIXEL STYLE)
================================ */
 .sk-footer {
     background: #2d296b;
     color: #ffffff;
     padding: 50px 0 35px;
     position: relative;
     overflow: hidden;
     font-size: 14px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 /* Right geometric background (placeholder) */
 .sk-footer::after {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     width: 500px;
     height: 600px;
     /* background: url(../img/sk-images/footer-bc-img.png); */
     background: url(../img/sk-images/footer-bc-img.png);
     /* background:
                    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                    linear-gradient(45deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px); */
     /* background-size: 60px 60px; */
     opacity: 0.6;
     pointer-events: none;
 }

 /* LOGO */
 .sk-footer-logo img {
     max-width: 200px;
     margin-bottom: 25px;
     filter: brightness(0) invert(1);
 }

 /* DESCRIPTION */
 .sk-footer-desc {
     /* max-width: 980px; */
     margin: 0 auto 35px;
     line-height: 1.8;
     color: #e7e6f3;
 }

 /* NAV WITH LINES */
 .sk-footer-nav-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 25px;
     margin-bottom: 40px;
 }

 .line {
     position: absolute;
     top: 237px;
     width: 95%;
     height: 2px;
     margin: 0px auto;
     /* z-index: -1; */
     background: rgba(255, 255, 255, 0.606);
 }

 .sk-footer-nav {
     background: #2d296b;
     z-index: 1;
 }

 .sk-footer-nav a {
     color: #ffffff;
     text-decoration: none;
     font-weight: 500;
     margin: 0 6px;
 }

 .sk-footer-nav span {
     margin: 0 6px;
     color: rgba(255, 255, 255, 0.5);
 }

 /* MID SECTION */
 .sk-footer-mid p {
     color: #e7e6f3;
     line-height: 1.6;
     margin: 30px 0px;
 }

 /* SOCIAL ICONS */
 .sk-footer-social {
     display: flex;
     justify-content: center;
     gap: 22px;
 }

 .sk-footer-social a {
     width: 44px;
     height: 44px;
     background: #ffffff;
     color: #332f78;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 6px;
     font-size: 20px;
     transition: all 0.3s ease;
 }

.sk-footer-social a i {
    font-size: 30px;
 }


 .sk-footer-social a:hover {
     background: #f77f00;
     color: #ffffff;
 }

 /* BOTTOM */
 .sk-footer-bottom {
     margin-top: 45px;
     color: #e7e6f3;
 }

 .sk-footer-policy {
     margin-top: 10px;
 }

 .sk-footer-policy a {
     color: #ffffff;
     text-decoration: underline;
     font-size: 13px;
     margin: 0 5px;
 }

 .sk-footer-policy span {
     color: rgba(255, 255, 255, 0.5);
 }

 .sk-footer-nav {
     background: #2d296b;
     z-index: 1;
 }

 /* RESPONSIVE */
 @media (max-width: 768px) {
     .sk-footer::after {
         display: none;
     }

     .sk-footer-nav-wrap .line {
         display: none;
     }

     .sk-footer-desc {
         padding: 0 10px;
         text-align: justify !important;
     }
     .line {
         display: none;
     }
 }

 @media (max-width: 1010px) {
     .hero-image{
        max-width: 100%;
        margin-bottom: -100px;;
     }
 }

  @media (max-width: 1170px) {
     .line {
        top: 287px;
     }
 }