body{
    background-color:#EBE8E4;
}
nav .container-fluid{
    max-width:1800px;
}
#home.row1, #home.row2{
    display:flex;
    max-width: 100%;
    margin: 0 0 0 0;
    height: auto;
}



@media (max-width: 767px){
    html{
        font-size:10px !important;
    }
    #home .tagline{
        font-size:2rem;
    }
    #home{
        width: 90%;
        height:100%;
        display: flex;
        flex-direction: column;
        padding:15px auto auto auto;
        /* padding:auto; */
        margin: 110px auto auto auto;
        max-width: 1440px;
        max-height: 1600px;
        position: relative;
        gap:20px;

    }
    #home .tagline{
        order:1;
    }
    #home .desc{
        order:4;
    }
    #home .enquiry{
        order:3;
    }
    #home .quote{
        order:5;
    }
    #home .only-phone-bg{
        /* inset:0;
        position: absolute; */
        margin:auto;
        z-index: 5;
        width: auto;
        height: 50vh;
        display: block;
        padding:0px;
        background-size:contain;
        background-image: url(../../images/index-bg@200.png);
        background-repeat: no-repeat;
        background-position:center;
        background-origin: content-box;
        order:2;
    }
}
@media (min-width: 768px){
.bg{
    width: auto;
    height: 100%;
    display: block;
    padding:0px;
    /* margin:auto auto auto auto; */
    background-image: url(../../images/index-bg@200.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size:75vh;
    background-origin: content-box;
    position: absolute;
    /* top bottom left right 0 */
    inset:0;
    margin:auto;
    z-index: 1;

}
#home{
    width: 90%;
    /* height: 100vh; */
    min-height: 100%;
    height: calc(100vh - 104px);
    display: flex;
    flex-direction: column;
    /* padding:15px auto auto auto; */
    padding:0px !important;
    margin: 110px auto auto auto;
    max-width: 1440px;
    max-height: 1600px;
    position: relative;

}
}

#home .tagline{
    /* background:yellow; */
    font-size:4rem;
    font-family: "neco";
    color:#54504E;
    font-weight: 500;
    line-height: 3.5rem;
    height: auto;
    width:100%;
    padding-right:4rem;
    /* width:700px; */
    /* position:absolute;
    right:50px;
    left:0; */
}

#home .desc{
    /* background:green; */
    font-size:1.5rem;
    line-height: 2rem;
    height:50%;
    align-self: center;
    color:#54504E;
}

#home .tag2{
    font-size: 1.5rem;
    /* background-color: bisque; */
    line-height: 2rem;
    color:#54504E;
}

#home .quote{
    /* background-color: lightpink; */
    display: flex;
    margin: 5% 0 5% 0;
    width: 400px;
    float: left;
    align-self: flex-end;

}
#home .quote span{
    font-size: 1.5rem;
    text-align: end;
    color:#54504E;
}

#home .enquiry{
    font-size: 1.5rem;
    color:#54504E;
}
#home .ask-btn{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    display:inline-block;
    position: relative;
    color: black;
    width: 150px;
    height: 64px;
    line-height: 64px;
    transition: all 0.3s;
    text-align: center;
    span {
      transition: all 0.3s;
      tranform: scale(1, 1);
    }
    }

.ask-btn::before, .ask-btn::after {
    content: '';
    position: absolute;
    width: 100%;
      height: 100%;
    inset:0;
    margin:auto;
      z-index: 1;
    transition: all 0.3s;
    border: 0.1rem solid #9C7575;
    }

.ask-btn:hover::after {
    animation-name: rotatecw;
    animation-duration: 2s;
    }
    .ask-btn:hover::before {
    animation-name: rotateccw;
    animation-duration: 3s;
    }
    .ask-btn:hover::after, .ask-btn:hover::before {
    left: 0px;
    width: 75px;

    animation-iteration-count: infinite;
    animation-timing-function: linear;
    }

    @keyframes rotatecw {
        from {transform: rotate(0deg);}
        to {transform: rotate(360deg);}
    }

    @keyframes rotateccw {
        from {transform: rotate(0deg);}
        to {transform: rotate(-360deg);}
    }


