html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "DM Sans", sans-serif;
    padding: 0px;
    margin: 0px;
    background-color: #F6FCFF;
    overflow-x: hidden;
    color: #272C2E;
    font-size: 17px;
    font-weight: 500;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    line-height: 27px;
}

@media (min-width: 1470px){
    .container{
        max-width: 1480px;
    }
}

/*Header*/
.header {
    background: #F6FCFF 0% 0% no-repeat padding-box;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
    border-bottom: 1px solid #E1E6E8;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.h-right{
    display: flex;
    align-items: center;
    gap: 50px;
}
.mobile-link{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FE9900;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s ease-in-out;
}
.mobile-link:hover{
    color: #1070A0;
}
.mobile-link svg path{
    transition: all 0.3s ease-in-out;
}
.mobile-link:hover svg path{
    fill: #1070A0;
}
.btn-theme{
    color: #F6FCFF;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 14px 24px;
    background-color: #1070A0;
    border-radius: 0px;
    border: 0px !important;
    transition: all 0.3s ease-in-out;
}
.btn.btn-theme:hover{
    color: #FFFFFF;
    background-color: #FE9900;
}

/*Hero Section*/
.hero-sec{
    padding: 64px 0;
}
.hero-title{
    text-align: center;
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.text-link{
    color: #FE9900;
    transition: all 0.3s ease-in-out;
}
.text-link:hover{
    color: #1070A0;
}
.flooring-box{
    position: relative;
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    color: #F6FCFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.flooring-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: all 0.7s ease-in-out;
    z-index: -1;
}
.flooring-box:hover::before{
    transform: scale(1.1);
}
.flooring-box:hover{
    color: #1070A0;
}
.black-bg{
    background-color: #272C2E;
}
.title{
    color: #F6FCFF;
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    line-height: 80px;
    text-transform: capitalize;
}

/*Tab Section*/
.sec-pad{
    padding: 120px 0;
}
.navtab-sec{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.tab-box{
    min-width: 332px;
}
.tab-box .nav{
    gap: 10px;
}
.tab-box .nav-link{
    color: #272C2E;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid #E1E6E8;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
}
.tab-box .nav-link:hover, 
.tab-box .nav-link.active{
    background-color: #1070A0;
    border-color: #1070A0;
    color: #F6FCFF;
}
.content-sec{
    width: 100%;
}
.tab-content{
    padding: 32px;
    border: 1px solid #E1E6E8;
    background-color: #FFFFFF;
    min-height: 431px;
}
.sub-title{
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
}
.tab-content .sub-title{
    text-align: center;
    margin-bottom: 10px;
}
.content-box{
    margin-bottom: 10px;
    text-align: center;
}
.content-box p:last-child{
    margin-bottom: 0px;
}
.content-box .img-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.text-link2{
    color: #0587BB;
    transition: all 0.3s ease-in-out;
}
.text-link2:hover{
    color: #FE9900;
}
p{
    font-size: 20px;
    text-align: justify;
}
.justify{
    text-align: justify;
}