@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Grayscale';
    src: url('fonts/grayscale.woff2') format('woff2'),
         url('fonts/grayscale.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --font-color:#173760;
    --blue-color:#0099be;
    --title-color:#c5003e;
}
.my-10{
    margin: 10px 0;
}
body{
    font-size: 1rem;
    font-family: "Lora", serif;
    overflow-x: hidden;
}
/* .container{
    max-width: 1200px;
    margin: 0 auto;
} */
img{
    max-width: 100%;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.slick-arrow {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.75rem;
    color: #fff;
    z-index: 1;
}
.slick-prev {
    left: .5rem;
}
.slick-next {
    right: .5rem;
}
.slick-arrow, .slick-arrow:hover {
    background-color: #c5003e;
}
.slick-next:before {
    content: ">";
}
.slick-next {
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    top: 50%;
    right: -7%;
    transform: translateY(-50%);
    padding: 0;
    border: none;
}
.slick-prev {
    position: absolute;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    top: 50%;
    left: -7%;
    transform: translateY(-50%);
    padding: 0;
    border: none;
}
.slick-arrow:before {
    font-family: monospace;
    font-size: 3.5rem;
    line-height: .5;
}
.slick-next:before {
    content: "\2192";
}
.slick-next:before, .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.text-center{
    text-align: center;
}
.section{
    padding: 60px 0;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}
h2{
    font-size: 2.5rem;
}
p{
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}
.btn{
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    font-size: 1rem;
    border-radius: 4px;
    font-weight: 600;
    line-height: 40px;
    padding: 0 12px;
}
.btn-primary{
    color: #fff;
    background-color:var(--title-color) ;
    &:hover{
        background-color: #9e0032;
    }
}
.btn-secondary{
    color: #fff;
    background-color: var(--blue-color);
}
.all-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.title{
    text-align: center;
    position: relative;
    z-index: 9999;
    h2{
        .title1{
            display: block;
            font-family: grayscale, sans-serif;
            font-style: italic;
            font-weight: 400;
            color: var(--title-color);
        }
        .title2{
            position: relative;
            z-index: 9999;
            display: block;
            color: var(--font-color);
        }
    }
}
/* .button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    a{
        border-radius: 30px;
        text-transform: uppercase;
        padding: 5px 20px;
        font-size: 14px;
        font-weight: 600;
    }
} */
.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mt-35{
    margin-top: 35px;
}
.mt-40{
    margin-top: 40px;
}