@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

    /* color */
    --primary_color:#F28D31 ; 
    --secondary_color:#000000;

    --white:#ffffff;
    --black:#000000;

    --color1: #1A1A1A;
    --color2: #c5060e;



}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-style: normal;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

.container{
    max-width: 1370px;
    width: 100%;
    padding: 0px 15px;
    margin: 0 auto;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-synthesis: weight style; 
    overflow-x: hidden;
}

p,
li,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
input::placeholder,
select {
    font-family: 'Inter', sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.w_full{
    width: 100%;
}


/* font weight */
.fw_normal {
    font-weight: normal;
}
.fw_medium {
    font-weight: 500;
}
.fw_semiBold {
    font-weight: 600;
}
.fw_bold {
    font-weight: 700;
}


.sm_heading_1{
    font-size:var(--fs_40);
}
.sm_heading_2{
    font-size:var(--fs_32);
    line-height: 32px;
}
.sm_heading_3{
    font-size:var(--fs_24);
}
.sm_heading_5{
    font-size:var(--fs_20);
}


.sm_lead_1{
    font-size:16px;
    line-height:20px;
}
.sm_lead_2{
    font-size:14px;
    line-height:24px;
}


.title_color{
    color: var(--color1);
}
.lead_text_color{
    color: var(--color4);
}


ul {
    margin: 0;
    padding: 0; 
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

.btn{
    position: relative;
    overflow: hidden;
}


img {
    width: 100%;
    height: 100%;
}

/* start flex */
.flex {
    display: flex;
}

.flex_row.flex_sm_row,
.flex_row {
    flex-direction: row;
}

.flex_column.flex_sm_column,
.flex_column {
    flex-direction: column;
}

.flex.items_center {
    align-items: center;
}
.flex.items_end {
    align-items: flex-end;
}

.flex.justify_start {
    justify-content: start;
}

.flex.justify_center {
    justify-content: center;
}

.flex.justify_end {
    justify-content: end;
}

.flex.justify_between {
    justify-content: space-between;
}

.flex.justify_around {
    justify-content: space-around;
}

.flex.wrap {
    flex-wrap: wrap;
}

.flex.no_wrap {
    flex-wrap: wrap;
}


/* gap */
.flex.gap_6 {
    gap: 6px;
}
.flex.gap_10 {
    gap: 10px;
}
.flex.gap_20 {
    gap: 20px;
}


.mb_none{
    display: none;
}
.icon{
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: #000;
}
.icon_sm {
    width: 14px;
    height: 14px;
    scale: 1;
}
.icon_md {
    width: 18px;
    height: 18px;
    scale: 1.25;
}
.icon_lg{
    width: 21px;
    height: 21px;
    scale: 1.5;
}

@media(min-width:768px){
    .md_heading_1{
        font-size:var(--fs_50);
    }
    .md_heading_2{
        font-size:var(--fs_48);
        line-height: 58px;
    }
    .md_heading_3{
        font-size:var(--fs_40);
    }
    .md_heading_4{
        font-size:var(--fs_32);
    }
    .md_heading_5{
        font-size:var(--fs_28);
    }

    .md_heading_6{
        font-size:var(--fs_24);
    }

    .md_lead_1{
        font-size:22px;
        line-height: 32px;
    }
    .md_lead_2{
        font-size:20px;
        line-height: 30px;
    }
    .md_lead_3{
        font-size:18px;
        line-height: 28px;
    }
    .md_lead_4{
        font-size:16px;
        line-height: 26px;
    }

    .desktop_block{
        display: block;
    }

}


@media (min-width:1024px) {
    .container {
        max-width: 1380px;
        padding: 0px 20px;
    }

    .pointer {
        cursor: pointer;
    }
    .btn{
        transition: .3s;
    }

}



