/* colors start  */

:root {
    --primary-text: #717171;
    --secondary-text: #313131;
    --Tertiary-text: #616161;
    --text-main:#ffff;
    /* --primary-bg: #C9E6FF; */
    --primary-bg: #2C2C2C;
    --background-color: #030303;
    /* --background-color: #FBFBFB; */
    --bg-secondry-color: #FBFBFB;
    --button-color: #4e4a4a;
    --button-hover: #282828;
    /* --button-color: #000000;
    --button-hover: #282828; */
    --card-bg: #a3c9f0;
    --blue-card-bg: #04AFEE;
}

/* colors end */

/* typography start */

@font-face {
    font-family: poppins;
    src: url('../Font/Poppins/Poppins-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: poppins;
    src: url('../Font/Poppins/Poppins-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: poppins;
    src: url('../Font/Poppins/Poppins-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: poppins;
    src: url('../Font/Poppins/Poppins-Regular.ttf');
    font-weight: 400;
}


@font-face {
    font-family: Montserrat;
    src: url('../Font/Montserrat/Montserrat-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: Montserrat;
    src: url('../Font/Montserrat/Montserrat-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: Montserrat;
    src: url('../Font/Montserrat/Montserrat-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: Montserrat;
    src: url('../Font/Montserrat/Montserrat-Bold.ttf');
    font-weight: 700;
}

.pop {
    font-family: poppins;
}

.mon {
    font-family: Montserrat;
}

h1 {
    font-size: 59px;
    margin: 0 !important;
    padding: 0 !important;
}

h3 {
    font-size: 30px;
    margin: 0 !important;
    padding: 0 !important;
}

p {
    margin: 0 !important;
    padding: 0 !important;
}

h5 {
    margin: 0 !important;
    padding: 0 !important;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.text-capitalize {
    text-transform: uppercase;
}

.primary-text {
    color: var(--primary-text);
}

.secondary-text {
    color: var(--secondary-text);
}

.Tertiary-text {
    color: var(--Tertiary-text);
}

@media screen and (max-width:576px) {

    /* h5{
        font-size: 16px !important;
    }
    p{
        font-size: 10px !important;
    } */
    h1 {
        font-size: 35px !important;
    }
}


/* typography end */

/* Header and footer class start */

.bg {
    background-color: var(--background-color);
}

.header-wrap {
    max-width: 1450px;
    margin: auto;
}

.head-logo {
    max-width: 154px;
    height: 56px;
    object-fit: contain;
}

.header-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn:focus {
    box-shadow: none !important;
}

.head-content-desktop>ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.header-plan-main {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 10px;
}

.header-plan-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}


#menuBar {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #343a40;
    color: white;
    transform: translateX(250px);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
}

#menuBar.show {
    transform: translateX(0);
}

#mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;

}

#mask.show {
    display: block;
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
}


.row {
    margin: 0;
    padding: 0;
}
.header{
    background-color: var(--background-color);
}
.b-dark{
    background-color: var(--background-color);
}
.footer {
    background-color: var(--background-color);
}

.btn-color {
    background-color: var(--button-color);
    color: white;

}

.btn-color:hover {
    background-color: var(--button-hover);
    color: white;
}

.footer-btn {
    padding: 2.5px 56px;
    border-radius: 70px;
}

.social-wrap {
    border: 1px solid var(--primary-text);
    padding: 8.75px 13.75px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 10px;

}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}


.footer-wrap {
    display: flex;
    align-items: start;
    gap: 80px;
    justify-content: space-evenly;
}

.links-footer {
    white-space: nowrap;
}

@media screen and (max-width:1380px) and (min-width:1000px) {
    .footer-wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-columns: 50% 50%;
        /* grid-template-columns: 200px auto; */
        gap: 16px;
    }
}

@media screen and (max-width:1000px) {
    .footer-wrap {
        flex-wrap: wrap;
        justify-content: space-between !important;
        gap: 20px !important;
    }
}

/* Header and footer class end */


/* utility class start */

.section-banner {
    background: url('../image/frosty-ice-melting-announcing-spring-time 1.png'), #6eb8e6;
    background-size: cover;
    border-radius: 1rem;
}

.bg-second {
    background-color: var(--bg-secondry-color);
}

@media screen and (max-width:1000px) {
    .b-padding {
        padding: 0 10px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}

.b-padding {
    padding: 0 0 0 160px;
    min-height: 561px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-main {
    color: var(--text-main);
}

/* utility class end  */


/* utility class end  */

  .privacy-content {
    
      padding: 50px 10px;
  }

  .privacy-content h2 {
      color:  #1496C6 !important;
      margin-bottom: 20px !important;
  }

  .privacy-content h3 {
      color: var(--text-main);
      margin-top: 40px !important;
      margin-bottom: 15px !important;
  }

  .privacy-content p {
      color: var(--primary-text);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px !important;
  }
    #loader {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            top: 0;
            left: 0;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .spinner {
            border: 8px solid #f3f3f3;
            border-top: 8px solid #3498db;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }