

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection{
    background-color: #6BAD0D;
    color: white;
}

.container {
    max-width: 1360px;
    width: 100%;
    padding: 0px 15px;
    margin: auto;
    position: relative;
    @media (min-width: 992px) {
        padding: 0px 20px;
    }
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0;
}

h1{
    font-size: 32px;
    line-height: 44px;
    @media(min-width: 1024px){
        font-size: 48px;
        line-height: 60px;
    }
}

h2{
    font-size: 28px;
    line-height: 36px;
    @media(min-width: 1024px){
        font-size: 36px;
        line-height: 44px;
    }
}

h3{
    font-size: 24px;
    line-height: 32px;
    @media(min-width: 1024px){
        font-size: 28px;
        line-height: 36px;
    }
}

h4{
    font-size: 20px;
    line-height: 28px;
    @media(min-width: 1024px){
        font-size: 22px;
        line-height: 30px;
    }
}

h5{
    font-size: 16px;
    line-height: 24px;
    @media(min-width: 1024px){
        font-size: 18px;
        line-height: 26px;
    }
}

h6{
    font-size: 14px;
    line-height: 22px;
    @media(min-width: 1024px){
        font-size: 16px;
        line-height: 24px;
    }
}



/* Common styles for all icons */
.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;
}

.d_block {
    display: block;
}
.relative {
    position: relative;
}
.overflow_hidden {
    overflow: hidden;
}