
:root {
    --primary-color: #026DFF;
    --secondary-color: #000000;
    --text-color: #FFFFFF;
    --text-secondary: #4c4c4b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    width: 100%;
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.containe {
    width: 100%;
  
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color:black;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btnn {
    display: inline-block;
    padding: 10px 30px;
    background-color:black;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #032d67;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 1, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-right {
    animation: slideInRight 1s ease forwards;
}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.menu-items {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu-items li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-items li a:hover {
    color: var(--primary-color);
}

.menu-items li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu-items li a:hover::after {
    width: 100%;
}

.menu-items li a .new-badge {
    font-size: 12px;
    color: var(--primary-color);
    margin-left: 5px;
}

.login-btn {
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #032d67;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 1, 0.3);
}

.hamburger-lines {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger-lines .line {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--secondary-color) 70%, var(--primary-color) 100%);
    padding-top: 275px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 10px;
    animation-delay: 0.5s;
}

.phone-container {
    margin-top: 50px;
    animation-delay: 0.7s;
}

.phone-container img {
    max-width: 50%;
    height: auto;
    transition: transform 0.5s ease;
    margin-left: 6%;
}

.phone-container img:hover {
    transform: scale(1.05);
}

/* Animations */
.animate {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
    }

    .hamburger-lines {
        display: flex;
        order: 3;
    }

    .menu-items {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .menu-items.active {
        right: 0;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .phone-container img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

 
}


/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-container {
  //background-image: url(image/gr534_1500_800.png);
    
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    
}

.features-image {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.features-image img:hover {
    transform: scale(1.05);
}

.features-content {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
}

.features-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-item {
    margin-bottom: 50px;
    position: relative;
    padding-left: 30px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.6;
}

.feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 0 30px;
    position: relative;
}

.home-arrow-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.home-arrow-btn.active {
    opacity: 1;
    visibility: visible;
}

.home-arrow-btn:hover {
    background-color: #032d67;
    transform: scale(1.1);
}

.home-arrow-btn i {
    color: white;
    font-size: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}
.footer-section{
    line-height: 170%;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a  {
    color:white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-subtitle {
        font-size: 50px;
    }
    
    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .hamburger-lines {
        display: flex;
    }
    
    .menu-items {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .menu-items.active {
        left: 0;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 40px;
    }
    
    /* About Section */
    .about-container {
        flex-direction: column;
    }
    
    .about-content {
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
    }
    
    /* Features Section */
    .features-container {
        flex-direction: column;
    }
    
    .features-content {
        padding: 40px;
    }
    
    .features-image {
        padding: 40px 40px 0;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    .abou-container img {e;
        border-bottom: 2px solid #031630;
    }
    .abou-section{
        padding: 40px 0 !important;
    }
}

@media (max-width: 576px) {
    /* Hero Section */
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    /* About Section */
    .about-title {
        font-size: 32px;
    }
    
    /* Features Section */
    .feature-title {
        font-size: 20px;
    }
    
    .feature-desc {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .home-arrow-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}
/* ------------------------------------------------------------------ */

        
.fe {
    max-width: 1200px;
    margin: 0 auto;
    /* //padding: 20px; */
    padding: 60px 20px 70px 20px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 150%;
}

h1.intro {
    color: white; /* Changed from white to black for better visibility */
    font-size: 2.5rem; /* Adjust this value to your preferred size */
    margin-bottom: 20px;
    font-weight: bold;
}

hr {
    border: 0;
    height: 1px;
    background: black;
    margin: 40px auto; /* Centered the hr */
    width: 80%;
}

.feature-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 2fr));
    gap: 35px;
    margin: 0 auto; /* This centers the container */
    padding: 0 20px; /* Adds padding on sides */
   
}

.feature-card {
    //background-image: url(image/gr1151_750_750.png);
    border-radius: 8px;
    padding: 35px 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    background-color: #fff; /* Fallback if image doesn't load */
    background-size: cover;
    background-position: center;
    background: rgb(2, 109, 255);
    background: linear-gradient(90deg, rgba(2, 109, 255, 1) 0%, rgba(3, 9, 18, 1) 100%);
    color;#fff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    //color: black;
    margin-bottom: 20px;
}

.feature-card h2 {
    //color: black;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.feature-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: black; /* Added for better visibility */
}

.feature-card li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .feature-container {
        grid-template-columns: 1fr;
    }
    
    h1.intro {
        font-size: 2rem; /* Smaller size on mobile */
    }
    .hero-section {
        padding: 109px 0 70px 0 !important;
        height: auto;
    }
    .features-section {
        padding: 0 0 50px 0;
    }
    .sl {
 
        height: auto !important;
    }
}
  
  /* -----------------------------------slider--------------------------------------- */


  .sl {
    background: black;

    padding: 40px 0;
    height: 100vh;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.slider-title {
    text-align: center;
    margin-bottom: 30px;
    color: white;
    font-size: 32px;
    margin-top: 30px;
}

.slider {
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: calc(25% - 20px);
    margin: 0 10px;
    //background-image: url(image/gr1151_750_750.png);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    //background: linear-gradient(90deg, #026dfe, #032d67, #030b17);
    background:#43414133;
}

.slide:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.slide-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #01367e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    border-color: #01367e;
}

.slide:hover .slide-icon {
    background: black;
}

.slide-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    text-align: center;
    
}

.slide-content {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background: #026dff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: black;
    color: white;
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .slide {
        min-width: calc(33.33% - 20px);
    }
    
    .slider-arrow-left {
        left: -10px;
    }
    
    .slider-arrow-right {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .slide {
        min-width: calc(50% - 20px);
        padding: 25px;
    }
    
    .slide-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    
    .slide-title {
        font-size: 18px;
    }
}

@media (max-width: 650px) {
    .slide {
        min-width: calc(100% - 20px);
        padding: 30px 20px;
        margin: 0 10px 20px;
    }
    
    .slider-title {
        font-size: 26px;
    }
    
    .slide-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
}
  /* --------------------------------------------------------------------------------- */
  
/* About Section */
.abou-section {
    padding: 40px 0 0;
    //background: linear-gradient(90deg, #ffa238,#e5842a,#ff7300);
    background: linear-gradient(90deg, #026dfe, #032d67, #030b17);
}

.abou-container  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.abou-content {
    flex: 1;
    min-width: 300px;
}

.abou-title {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    color:white;
}
.abou-titl {
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    color:white;
}

.abou-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    color:white;
}

.abou-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.abou-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.abou-image img:hover {
    transform: scale(1.03);
}
.abou-container img {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
   
}
.abou-titlee {
    font-size: 30px;
  
    font-weight: 700;
    margin-bottom: 20px;
    //color:black;
}
     
      
          
          
     
    
  



/* -------------------------------------------------------------------new */
/* Features Section */
.features-section {
    padding: 80px 0;
    //background-image: url(image/gr534_1500_800.png);
    background-size: cover;
    background-position: center;
    background: rgb(2,109,255);
background: linear-gradient(-180deg,  rgba(3,9,18,1) 0%, rgba(1,40,92,1) 30%, rgba(2,109,255,1) 100%);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.features-image img:hover {
    transform: scale(1.05);
}

.features-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 12px;
    //background-color: var(--primary-color);
    background:#fff;
    border-radius: 50%;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-container {
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-image, 
    .features-content {
        flex: none;
        width: 100%;
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
}
/* -----------------------------------------------///////----------------------------------- */

/* ----------------------------------------------- */
.newtitle{
    font-weight: 700;
    color: var(--primary-color);

    margin-bottom: 80px;
    margin-top: 110px;
    font-size: 40px;
}
.priv_sec{
//float: left;
width: 100%;
padding: 100px 0;
line-height:160%;
}
.priv_sec p{
    margin-bottom: 10px;
    //font-size: 14px;

}
.priv_sec h3{
    margin-bottom: 10px;
    margin-top: 30px;
    color:#9ec7ff ;
    font-size: 28px;
    line-height:160%;
}

.priv_sec h4{
    margin-bottom: 10px;
    margin-top: 30px;
    color: #9ec7ff;
    font-size: 26px;
    line-height:160%;
}

.priv_sec a{
    color: #9ec7ff;
}
