*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* ======= font ====== */

@font-face {
    font-family: "Lato", sans-serif;
    src: url(../font/Lato/Lato-Regular.ttf);
}

@font-face {
    font-family: "DMSerif", serif;
    src: url(../font/DM_Serif_Text/DMSerifText-Regular.ttf);
}

body{
    font-size: 16px;
    font-family: "Lato", sans-serif;
    color: #1e1e1e;
}

h3{
    font-family: "DMSerif", serif;
font-size: 36px;

}

p{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

h4{
font-size: 36px;
font-family: "DMSerif", serif;

}

h5{
    font-size: 20px;
    color: #333;
}
/* ========== other ========= */

img{
    width: 100%;
}
a{
    text-decoration: none;
    display: inline-block;
}

ul li{
    list-style: none;
}

.container{
    width: 100%;
    max-width: 1540px;
    padding: 0px 20px;
    margin: 0 auto;
}

.primary-btn{
    a{
        font-size: 16px;
        font-weight: 700;
        padding: 5px 15px;
        line-height: 40px;
        background: #ffd0d0;
        color: #721d1d;
        text-align: center;
    }
}

.section-padding{
    padding: 70px 0px;
}
.sticky {
    box-shadow: 0px 2px 20px 0px #d1d1d199;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px;
    z-index: 999;
    background-color: #fff;
  
    nav {
      a {
        color: var(--black);
      }
    }
  }
  .owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent !important;
    color: #FFF;
    text-decoration: none;
}

#back-to-top {
    position: fixed;
    bottom: 50px;
    right: 17px;
    width: 50px;
    height: 50px;
    color: #1e1e1e;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 50%;
    a{
        color: #1e1e1e;
    }
}