html,body{
    margin:0;
    overflow-x:hidden;
}

@font-face {
  font-family: ProximaNovaExtrabold;
  src: url(../fonts/ProximaNovaExtrabold.ttf);
}
@font-face {
  font-family: ProximaNovaRegular;
  src: url(../fonts/ProximaNovaRegular.ttf);
}
h1{
    font-family: 'ProximaNovaExtrabold';
    color: #fff;
    text-transform: uppercase;
    font-size: 56px;
}
.Comingsoon_page{
    background-image: url(../images/banner.jpg);
    height: 100vh;
    background-size: cover;
    display:flex;
    align-items: center;
    
}
.logo_main img{
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.coming_soon_content {
    background-color: #00000075;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.address_content{
    display: flex;
    width: 100%;
    justify-content: center;gap:40px;

}
.address_content .address{
    width: 20%;
    height: 240px;
    border-radius: 20px;
    backdrop-filter: blur(7px);
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    padding: 40px;
    border: 2px solid #b2b0ad;
}
.address_content .address i {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: red;
    border-radius: 30px;
    margin-bottom: 20px;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e9e8e8+0,9e9c98+51,eae8e6+100 */
    background: linear-gradient(45deg,  rgba(233,232,232,1) 0%,rgba(158,156,152,1) 51%,rgba(234,232,230,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    color: #000;
    font-size: 20px;
}

.address_content .address h5 {
    font-size: 24px;
    color: #fff;
}

.address_content .address p {
    color: #fff;
    margin-bottom: 0;
}

.address_content .address p a {
    color: #fff;
    text-decoration: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
    .address_content .address {
        width: 32%;
        height: 210px;
        padding: 20px;
    }
    .address_content {
        gap: 10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px){
    .address_content .address {
        width: 32%;
        height: 220px;
        padding: 20px;
    }
    .address_content {
        gap: 10px;
    }
    .address_content .address p a {
        font-size: 12px;
    }
    .address_content .address p {
        font-size: 12px;
    }

}
@media only screen and (min-width: 520px) and (max-width: 767px){
    .Comingsoon_page {
        height: auto;
        padding: 0;
    }
    .coming_soon_content {
        height: 100%;
        padding: 40px 15px;
    }
    h1 {
        font-size: 45px;
    }
    .address_content {
        display: block;
    }
    .address_content .address {
        width: 70%;
        height: auto;
        margin:0 auto 10px;
    }
    .logo_main img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 30px;
    }
}


@media only screen and (min-width: 300px) and (max-width: 519px){
    .Comingsoon_page {
        height: auto;
        padding: 0;
    }
    .coming_soon_content {
        height: 100%;
        padding: 40px 15px;
    }
    h1 {
        font-size: 32px;
    }
    .address_content {
        display: block;
    }
    .address_content .address {
        width: 100%;
        height: auto;
        margin-bottom:10px;
    }
    .logo_main img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 30px;
    }
}
