*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.cont{
    width: 90%;
    margin: 0 auto;
}
.bg{
    background-color: #462a34;
}
.clr{
    color: #462a34;
}
.clr1{
    color: #ff5956;
}
.btn{
    background-color: #ff5956;
    color: white;
    transition: 1s;
    padding: 10px 35px;
    font-size: 16px;
    border-radius: 10px;
}
.btn:hover{
    background-color: #fff;
    color: #ff5956;
}
@font-face {
    font-family: 'nuto';
    src: url('../fonts/Nunito.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Nunito.eot?#iefix') format('embedded-opentype'), /* IE6–IE8 */
         url('../fonts/Nunito.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/Nunito.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Nunito.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/Nunito.svg#nuto') format('svg'); /* Legacy iOS */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'muli';
    src: url('../fonts/Muli.eot');
    src: url('../fonts/Muli.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Muli.woff2') format('woff2'),
         url('../fonts/Muli.woff') format('woff'),
         url('../fonts/Muli.ttf') format('truetype'),
         url('../fonts/Muli.svg#muli') format('svg');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: muli;
}
.nuto{
     font-family: nuto;
}
.h1 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    font-family: nuto;
}
.h2 {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    font-family: 'nuto', sans-serif;
}
.top-title {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 26px;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-top: 28px;
    z-index: 1;
    color: #ff5956;
}
.p {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    font-family: 'Muli', sans-serif;
    font-weight: 400;
    color: #766068;
    margin: 0px;
    transition: all 500ms ease;
}
.h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
#preloader{
    background-color: #462a34;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .h1 {
        font-size: 34px;
        line-height: 38px;
    }
    .h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .p {
        font-size: 14px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .h1 {
        font-size: 28px;
        line-height: 34px;
    }
    .h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .top-title {
        font-size: 13px;
        line-height: 22px;
    }
    .p {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .h1 {
        font-size: 24px;
        line-height: 30px;
    }
    .h2 {
        font-size: 20px;
        line-height: 28px;
    }
    .h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .top-title {
        font-size: 12px;
        line-height: 20px;
    }
    .p {
        font-size: 12px;
        line-height: 22px;
    }
}