@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@font-face {
    font-family: 'Nadysah';
    src: url('../fonts/nadysah-regular.eot');
    src: url('../fonts/nadysah-regular?#iefix') format('embedded-opentype'),
        url('../fonts/nadysah-regular.woff2') format('woff2'),
        url('../fonts/nadysah-regular.woff') format('woff'),
        url('../fonts/nadysah-regular.svg#nadysah-regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root{
    --theme-color: #C89D5B;
}


body{
    color: #0c0c0c;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 27px;
}

img{
    max-width: 100%;
    height: auto;
}

figure{
    margin-bottom: 0;
}
iframe{
    margin-bottom: -8px;
}

a{
    text-decoration: none;
}
a:focus,
button:focus{
    border: none;
    outline: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}

.bg-primary{
    background-color: var(--theme-color)!important;
}

.theme-color{
    color: var(--theme-color);
}
.theme-dark-color{
    color: #9F6B1C;
}

.bg-light{
    background-color: #F6F6F6!important;
}

.fw-medium{
    font-weight: 500;
}
.fw-semi-bold{
    font-weight: 600;
}


.space-padding{
    padding-top: 90px;
    padding-bottom: 90px;
}

/* heading */
.heading{
    font-size: 40px;
    font-weight: 700;
}
/* title-style */
.title-style{
    display: inline-block;
    position: relative;
    min-width: 290px;
    padding-bottom: 15px;
    z-index: 1;
}
.title-style::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 57px;
    border-bottom: 3px solid #9D6104;
}
.title-style::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #0c0c0c;
    z-index: -1;
}
/* title-style-1 */
.title-style-1{
    color: #fff;
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--theme-color);
    padding: 5px 25px;
    border-radius: 50px;
}
/*  */
.section-title{
    color: #9D6104;
    font-size: 25px;
    font-weight: 700;
}

.btn{
    position: relative;
    font-size: 17px;
    line-height: normal;
    background-color: var(--theme-color);
    padding: 8px 34px;
    border: transparent;
}
.btn.btn-primary:hover{
    background-color: #0c0c0c;
}
.btn.btn-secondary{
    background-color: #0c0c0c;
}

.btn-icon{
    font-weight: 700;
    padding: 8px 20px 8px 45px;
}
.btn-icon > span{
    width: 39px;
    height: 39px;
    line-height: 34px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0c0c0c;
    border-radius: 100%;
}
.btn-icon > span img{
    width: 18px;
}
/*  */
.list-style-checkbox li{
    font-size: 15px;
    line-height: 23px;
    position: relative;
    padding-left: 23px;
    margin-bottom: 16px;
}
.list-style-checkbox li *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.list-style-checkbox li::before{
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(../images/icons/check-icon.svg) no-repeat center / contain;
}
.list-style-checkbox li a{
    display: block;
    padding-left: 0;
}
.list-style-checkbox li:hover a{
    padding-left: 13px;
}
.list-style-checkbox li:hover::before{
    opacity: 1;
}

/* img-column */
.img-column{
    position: relative;
    z-index: 1;
}
.img-column *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.img-column figure img{
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
}
.img-column .hover-box{
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    z-index: 1;
}
.img-column .hover-box a{
    color: #fff;
    font-size: 18px;
    width: 50px;
    height: 50px;
    background-color: #0c0c0c;
    text-align: center;
    line-height: 48px;
    /* padding-left: 5px; */
    border-radius: 100%;
    z-index: 1;
}
.img-column:hover .hover-box{
    transform: scale(1);
    opacity: 1;
}

/* swiper .btn-wrap */
.swiper .btn-wrap{
    position: relative;
    display: flex;
    justify-content: end;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next{
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    border-radius: 100%;
    left: auto;
    right: 0;
    top: auto;
    bottom: auto;
    margin-top: auto;
    margin-left: 15px;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 16px;
}

/* coming-soon-text */
.coming-soon-text{
    color: #9D6104;
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
}
.coming-soon-text span{
    color: #FFEDD1;
}


/* -- Header -- */
header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50.05%);
    -moz-transform: translateX(-50.05%);
    -o-transform: translateX(-50.05%);
    transform: translateX(-50.05%);
    z-index: 100;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .navbar-brand img{
    width: 140px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .navbar .navbar-toggler{
    color: #fff;
    font-size: 28px;
    background-color: var(--theme-color);
}
header .navbar .navbar-nav{
    background-color: #fff;
    border-radius: 50px;
}
header .navbar .navbar-nav .nav-item{}
header .navbar .navbar-nav .nav-link{
    padding: 10px 25px;
    border-radius: 50px;
}
header .navbar .navbar-nav .nav-link.active{
    color: #fff;
    background-color: var(--theme-color);
}
header .navbar .navbar-nav .dropdown-menu{
    background-color: var(--theme-color);
    padding: 0;
    border: 0;
    border-radius: 0;
    animation:  both;
    margin-top: 0;
}
header .navbar .navbar-nav .dropdown-menu li:not(:last-child){
    border-bottom: 1px solid #f3cc92;
}
header .navbar .navbar-nav .dropdown-menu li a{
    color: #fff;
}
header .navbar .navbar-nav .dropdown-menu li:hover a,
header .navbar .navbar-nav .dropdown-menu li a{
    background-color: #9D6104;
}

header.sticky{
    padding: 0;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1);
}
header.sticky .navbar{
    padding: 0;
}
header.sticky .navbar-brand img{
    width: 80px;
}
header.sticky .navbar .navbar-nav{
    margin-bottom: 0!important;
}
header.sticky .navbar .navbar-nav .nav-link{
    font-size: 15px;
    padding: 6px 25px;
}


/* -- banner section -- */
.banner-section{
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.banner-section img{
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.banner-section .caption-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
}
.banner-section .caption-box .title{
    font-family: 'Nadysah';
    font-size: 40px;
}
.banner-section .caption-box .sub-title{
    font-size: 18px;
}


/* -- about-section -- */
.about-section{
    background-color: #f9f9f9;
}
.about-section p{
    font-size: 21px;
    font-weight: 300;
    line-height: 42px;
}


/* --  ongoing-projects-section -- */
.project-column{
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.project-column *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.project-column figure{
    height: 400px;
}
.project-column figure img{
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
}
.project-column .caption-box{
    font-family: 'Nadysah';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 20px;
    transform: translateY(5px);
}
.project-column .caption-box .title{
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}
.project-column:hover .caption-box{
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(0px);
}


/* -- CTA section -- */
.cta-section-1{
    position: relative;
    background: url(../images/bg/bg-img-1.png) no-repeat center / cover;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 1;
}
.cta-section-1::after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* -- gallery-section -- */
.gallery-section .img-column figure{
    height: 500px;
}
.gallery-section .img-column .hover-box::after{
    content: "";
    width: 95%;
    height: 96%;
    position: absolute;
    top: 2%;
    left: 2.5%;
    border: 1px solid #fff;
    z-index: -1;
}

/*  */
.gallery-section{
    overflow: hidden;
}
.gallery-section .gallery-slider{
    margin-inline: -20px;
}
.gallery-section .swiper-slide {
    position: relative;
    width: var(--swiper-width);
    transform: scale(.9);
    transition: all .3s ease-in-out;
    overflow: hidden;
    border-radius: 0.4285rem;
}
.gallery-section .swiper-backface-hidden .swiper-slide {
    transform: scale(.9) translateZ(0);
}
.gallery-section  .swiper-slide.swiper-slide-active {  
    transform: scale(1) !important;
    opacity: 1 !important;
}
.gallery-section .swiper-backface-hidden .swiper-slide.swiper-slide-active {
    transform: scale(1) translateZ(0) !important;
}


/* -- footer -- */
footer{
    background-color: #111111;
    padding: 30px 0 20px;
}
footer a{
    color: #fff;
}
footer a:hover{
    color: var(--theme-color);
}
footer .widget-col .widget-title{
    color: var(--theme-color);
}
footer .list-style li{
    position: relative;
}
footer .list-style li *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
footer .list-style li::before{
    content: "\f111";
    color: var(--theme-color);
    font-size: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 1px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
footer .list-style li a{
    display: block;
    padding-left: 0;
}
footer .list-style li:hover a{
    padding-left: 13px;
}
footer .list-style li:hover::before{
    opacity: 1;
}

footer .social-media li:not(:last-child){
    margin-right: 8px;
}
footer .social-media li a{
    display: block;
    width: 20px;
    height: 20px;
}
footer .copyright{
    border-top: 1px solid #484848;
}


/* -- page-banner-section -- */
.page-banner-section{
    position: relative;
    height: 400px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 1;
}
.page-banner-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:-webkit-linear-gradient(110deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.breadcrumb{}
.breadcrumb li.breadcrumb-item{
    color: var(--theme-color);
    color: #fff;
    font-weight: 600;
}
.breadcrumb li.breadcrumb-item a{
    display: inline-block;
    color: #0c0c0c;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    content: "\f054";
    color: #0c0c0c;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
}


/* -- About us page -- */
.value-box{
    position: relative;
}
.value-box:not(:last-child){
    border-right: 1px solid #8a8a8a;
}
.value-box .icon-box{
    display: inline-block;
    background-color: #FFE4B3;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 100%;
}
/* box-column */
.infographic-box{
    text-align: center;
}
.infographic-box .box-column{
    display: flex;
    flex-wrap: wrap;
    /* background-color: #8E8E8E; */
    flex-direction: column;
}
.infographic-box .box-column:nth-child(even){
    flex-direction: column-reverse;
}
.infographic-box .box-column .content-block{
    font-size: 14px;
    line-height: 23px;
}
.infographic-box .box-column .title{
    color: #9D6104;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}
.infographic-box .box-column .image-block{
    position: relative;
    margin-bottom: 130px;
    z-index: 1;
}
.infographic-box .box-column .image-block::before,
.infographic-box .box-column .image-block::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    border: 2px solid transparent;
    border-left: 2px solid var(--theme-color);
    border-right: 2px solid var(--theme-color);
    width: 185px;
    height: 185px;
    border-radius: 100%;
    z-index: -1;
}
.infographic-box .box-column .image-block::after{
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%) rotate(15deg);
    z-index: -1;
}
.infographic-box .box-column .image-block .line{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--theme-color);
    height: 40px;
    margin-top: 1px;
}
.infographic-box .box-column .image-block .line::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -5px;
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 100%;
}
.infographic-box .box-column .image-block .icon-box{
    position: relative;
    display: inline-block;
    background-color: var(--theme-color);
    width: 130px;
    height: 130px;
    border-radius: 100%;
    line-height: 130px;
    margin-block: 40px;
}
/*  */
.infographic-box .box-column:nth-child(even) .image-block{
    margin-bottom: 0;
    margin-top: 130px;
}
.infographic-box .box-column:nth-child(even) .image-block::before,
.infographic-box .box-column:nth-child(even) .image-block::after{
    border-left-color: #0c0c0c;
    border-right-color: #0c0c0c;
}
.infographic-box .box-column:nth-child(even) .image-block .icon-box{
    background-color: #0c0c0c;
}
.infographic-box .box-column:nth-child(even) .image-block .line{
    border-color: #0c0c0c;
    top: auto;
    bottom: 0;
    margin-top: 0;
    margin-bottom: 1px;
}
.infographic-box .box-column:nth-child(even) .image-block .line::before{
    background-color: #0c0c0c;
    top: auto;
    bottom: -1px;
}


/* -- contact us page -- */
.info-list li{
    color: #3A3A3A;
    position: relative;
    padding-left: 60px;
}
.info-list li .icon-box{
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background-color: #F3F3F3;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 100%;
}
.info-list li .icon-box img{
    height: 28px;
}
.info-list li h5{
    color: #9D6104;
    font-size: 18px;
    margin-bottom: 2px;
}
.info-list li a{
    color: #3A3A3A;
}
.info-list li a:hover{
    color: #9F6B1C;
}

/* form */
form .form-control{
    color: #8E8E8E;
    padding: 12px 18px;
}


/* -- Projects pages -- */
.project-block{
    color: #fff;
    position: relative;
}
.project-block a{
    color: #fff;
}
.project-block *{
    -webkit-transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.project-block figure{
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}
.project-block figure::before{
    content: "";
    width: 80%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.5);
}
.project-block figure img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
}
.project-block .caption-box{
    position: absolute;
    left: 10%;
    bottom: -40px;
    width: 80%;
    color: #fff;
    font-weight: 600;
    background-color: #9F6B1C;
    padding: 8px 30px;
}
.project-block .caption-box .title{
    font-size: 26px;
    margin-bottom: 2px;
}
.project-block:hover figure img{
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.project-block .caption-box{
    position: absolute;
    left: 10%;
    bottom: -40px;
    width: 80%;
    color: #fff;
    font-weight: 600;
    background-color: #9F6B1C;
    padding: 8px 30px;
}
.project-block:hover .caption-box{
    width: 82%;
    left: 10%;
    bottom: -10px;
}


/* -- projects details page -- */
.card-design-1 .card-title .title{
    font-size: 22px;
}
.card-design-1 .card-body{
    font-size: 15px;
    line-height: 22px;
    padding: 10px 25px 15px;
}
/* info-box */
.info-box{
    position: relative;
    padding: 35px 20px 15px;
}
.info-box .title-style-1{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
/* gallery-wrapper */
.gallery-wrapper{}
.location-map .img-column{
    border: 18px solid #FFF8EE;
}

/* gallery-tabs */
.gallery-tabs{
    justify-content: center;
}
.gallery-tabs .nav-item{
    position: relative;
    font-size: 20px;
    padding: 4px 15px;
}
.gallery-tabs .nav-item:not(:last-child)::after{
    content: "|";
    position: absolute;
    top: 3px;
    right: -4px;
    color: #0c0c0c;
    font-weight: 400;
}
.gallery-tabs .nav-item .nav-link.active{
    color: #9D6104;
    font-weight: 700;
}
.gallery-tabs .nav-item .nav-link{
    color: #0c0c0c;
}
/* floor-plan-slider */
.floor-plan-slider{
    position: relative;
    padding: 0 20px;
}
.floor-plan-slider .btn-wrap{
    width: 100%;
    padding: 0 4px;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 50%;
}
.floor-plan-slider .btn-wrap .swiper-button-prev,
.floor-plan-slider .btn-wrap .swiper-button-next{
    background-color: #fff;
    margin-left: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.floor-plan-slider .btn-wrap .swiper-button-prev::after,
.floor-plan-slider .btn-wrap .swiper-button-next::after{
    display: none;
}

/* sidebar */
.sidebar .list-style li{
    font-size: 15px;
    line-height: 23px;
    position: relative;
    border-bottom: 1px solid #FFE4B3;
}
.sidebar .list-style li *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.sidebar .list-style li::before{
    content: "";
    position: absolute;
    top: 15px;
    left: 12px;
    width: 15px;
    height: 15px;
    background: url(../images/icons/long-left-arrow-icon-light.svg) no-repeat center / contain;
}
.sidebar .list-style li a{
    color: #fff;
    display: block;
    padding: 10px 10px 10px 40px;
}
.sidebar .list-style li:hover a{
    padding-left: 35px;
}
.sidebar .list-style li:hover::before{
    opacity: 1;
}






/* -- Responsive -- */
@media only screen and (max-width:1199px){}

@media only screen and (max-width:1024px){
    .gallery-section .img-column figure{
        height: 350px;
    }
}

@media only screen and (max-width:991px){
    .heading {
        font-size: 35px;
    }

    header .navbar .navbar-nav{
        box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.4);
    }
    header .navbar .navbar-nav,
    header .navbar .navbar-nav .nav-link{
        border-radius: 5px;
    }

    .page-banner-section{
        height: 340px;
    }

    .infographic-box .box-column{
        margin-bottom: 35px;
    }
    .infographic-box .box-column .image-block {
        margin-bottom: 0;
    }
    .infographic-box .box-column:nth-child(2n) .image-block {
        margin-top: 0px;
    }

    .value-box:not(:last-child){
        border: none;
    }

    footer .widget-col{
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:767px){
    .space-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .heading {
        font-size: 29px;
    }
    .title-style-1 {
        font-size: 19px;
        padding: 5px 20px;
    }
    .card-design-1 .card-title .title{
        font-size: 18px;
    }
    
    header .navbar-brand img{
        width: 120px;
    }

    .banner-section .caption-box .title{
        font-size: 33px;
    }
    .project-column .caption-box .title{
        font-size: 18px;
    }
    .about-section p{
        font-size: 18px;
        line-height: 35px;
    }
    .gallery-section .img-column figure{
        height: 300px;
    }

    .page-banner-section{
        height: 300px;
    }

    .infographic-box .box-column .title{
        font-size: 18px;
    }
    .infographic-box .box-column .content-block {
        font-size: 13px;
        line-height: 21px;
      }
    .infographic-box .box-column .image-block .icon-box{
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    .infographic-box .box-column .image-block::before, .infographic-box .box-column .image-block::after {
        width: 150px;
        height: 150px;
    }
    .infographic-box .box-column .image-block::after {
        width: 130px;
        height: 130px;
    }
}

@media only screen and (max-width:575px){
    .banner-section .caption-box .title{
        font-size: 28px;
    }
    .banner-section .caption-box .sub-title {
        font-size: 16px;
    }

    .breadcrumb li.breadcrumb-item{
        font-size: 14px;
    }

    .location-map .img-column{
        border-width: 8px;
    }

    .coming-soon-text{
        font-size: 40px;
    }
}

@media only screen and (max-width:480px){}









