@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #005b8c;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Barlow", sans-serif;
    /* background: #ecf0fa; */
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
}

p{
    margin: 0;
    font-size: 16px;
}

header{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    padding: 10px 5%;
}

header .logo img{
    width: 80px;
}

header a{
    color: #fff;
}

.coming_soon_sec{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.logo_sec{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_sec img{
    height: 50%;
}

.coming_soon_sec .inner_sec{
    flex: 1;
    padding: 20px;
    text-align: center;
    background: #606060;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.coming_soon_sec .inner_sec h1{
    font-size: 6vw;
    text-align: center;
    color: #fff;
}

.coming_soon_sec .inner_sec p{
    font-size: 24px;
    /* margin-bottom: 20px; */
    text-align: center;
    color: #fff;
}

.coming_soon_sec .inner_sec a{
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

@media(max-width: 1024px){
    .coming_soon_sec{
       flex-direction: column;
    } 
}

@media(max-width: 991px){
    .coming_soon_sec .inner_sec h1{
        font-size: 42px;
    }
}

.privacy_policy{
    padding: 20px 10%;
}

.privacy_policy h1{
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.content p{
    font-size: 16px;
    margin-bottom: 10px;
}

.heading h2{
    font-size: 24px;
    color: #866946;
}