

:root{
    --red-color:#A02327;
    --blue-color:#143466;
    --title-font:"Bai Jamjuree", sans-serif;
    --regular-font: "Montserrat", sans-serif;
}

.custom-container{
    width: min(1410px, 100%);
    padding-inline: 15px;
    margin-inline: auto;
}

.section-title{
    font-family: var(--regular-font);
    font-size: clamp(0.75rem, 0.6923rem + 0.3077vw, 1rem);
    color: var(--red-color);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    padding-bottom: 30px;
    margin: 0;
}

.section-semi-title{
    font-family: var(--title-font);
    font-size: clamp(1.5rem, 1.1538rem + 1.8462vw, 3rem);
    color: #000;
    font-weight: 600;
    max-width: 60%;
    line-height: 1.1;
    text-transform: capitalize;
    padding-bottom: 60px;
    margin: 0;
}

.btn-primary{
    color: #fff;
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: clamp(1rem, 0.9423rem + 0.3077vw, 1.25rem);
    font-weight: 500;
    padding: 13px 25px;
    text-decoration: none;
    width: fit-content;
    background-color: var(--red-color);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.btn-primary::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%; 
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

.btn-primary:hover::before{
  left: 130%;
}

.btn-primary:hover{
    color: #fff;
    background-color: var(--blue-color);
}

#load-more{
    color: #fff;
    text-transform: capitalize;
    font-family: var(--regular-font);
    font-size: clamp(1rem, 0.9423rem + 0.3077vw, 1.25rem);
    font-weight: 500;
    padding: 13px 25px;
    text-decoration: none;
    width: fit-content;
    background-color: var(--red-color);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

#load-more::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%; 
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: left 0.5s;
}

#load-more:hover::before{
  left: 130%;
}