:root{
	--container-xs: 100%;
    --container-sm: 576px;
    --container-md: 768px;
    --container-lg: 992px;
    --container-xl: 1200px;
    --container-defaul: 1200px;
}

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

img{
    max-width: 100%;
    height: auto;
}

.d-none{
    display: none;
}

.d-inline{
    display: inline;
}

.d-block{
    display: block;
}

.d-inline-block{
    display: inline-block;
}

.d-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.d-inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.justify-content-start{
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.justify-content-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.justify-content-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.justify-content-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.justify-content-around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.justify-content-evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.align-items-start{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.align-items-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.align-items-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.flex-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.flex-row-reverse{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.flex-column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.flex-column-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

@media screen and (max-width: 1200px){
    .d-xl-none{
        display: none;
    }

    .d-xl-inline{
        display: inline;
    }

    .d-xl-block{
        display: block;
    }

    .d-xl-inline-block{
        display: inline-block;
    }

    .d-xl-flex{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-xl-inline-flex{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .justify-content-xl-start{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .justify-content-xl-end{
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .justify-content-xl-center{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .justify-content-xl-between{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .justify-content-xl-around{
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

    .justify-content-xl-evenly{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .align-items-xl-start{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .align-items-xl-end{
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .align-items-xl-center{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .flex-xl-wrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .flex-row-xl-reverse{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .flex-xl-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .flex-column-xl-reverse{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media screen and (max-width: 1020px){
    .d-lg-none{
    display: none;
    }

    .d-lg-inline{
        display: inline;
    }

    .d-lg-block{
        display: block;
    }

    .d-lg-inline-block{
        display: inline-block;
    }

    .d-lg-flex{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-lg-inline-flex{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .justify-content-lg-start{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .justify-content-lg-end{
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .justify-content-lg-center{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .justify-content-lg-between{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .justify-content-lg-around{
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

    .justify-content-lg-evenly{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .align-items-lg-start{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .align-items-lg-end{
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .align-items-lg-center{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .flex-lg-wrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .flex-row-lg-reverse{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .flex-lg-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .flex-column-lg-reverse{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media screen and (max-width: 768px){
    .d-md-none{
    display: none;
    }

    .d-md-inline{
        display: inline;
    }

    .d-md-block{
        display: block;
    }

    .d-md-inline-block{
        display: inline-block;
    }

    .d-md-flex{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-md-inline-flex{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .justify-content-md-start{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .justify-content-md-end{
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .justify-content-md-center{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .justify-content-md-between{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .justify-content-md-around{
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

    .justify-content-md-evenly{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .align-items-md-start{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .align-items-md-end{
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .align-items-md-center{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .flex-md-wrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .flex-row-md-reverse{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .flex-md-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .flex-column-md-reverse{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media screen and (max-width: 480px){
    .d-sm-none{
        display: none;
    }

    .d-sm-inline{
        display: inline;
    }

    .d-sm-block{
        display: block;
    }

    .d-sm-inline-block{
        display: inline-block;
    }

    .d-sm-flex{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-sm-inline-flex{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .justify-content-sm-start{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .justify-content-sm-end{
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .justify-content-sm-center{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .justify-content-sm-between{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .justify-content-sm-around{
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

    .justify-content-sm-evenly{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .align-items-sm-start{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .align-items-sm-end{
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .align-items-sm-center{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .flex-sm-wrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .flex-row-sm-reverse{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .flex-sm-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .flex-column-sm-reverse{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media screen and (max-width: 375px){
    .d-xs-none{
        display: none;
    }

    .d-xs-inline{
        display: inline;
    }

    .d-xs-block{
        display: block;
    }

    .d-xs-inline-block{
        display: inline-block;
    }

    .d-xs-flex{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .d-xs-inline-flex{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .justify-content-xs-start{
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .justify-content-xs-end{
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .justify-content-xs-center{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .justify-content-xs-between{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .justify-content-xs-around{
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

    .justify-content-xs-evenly{
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
    }

    .align-items-xs-start{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .align-items-xs-end{
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .align-items-xs-center{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .flex-xs-wrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .flex-row-xs-reverse{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .flex-xs-column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .flex-column-xs-reverse{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

.w-100{
    width: 100%;    
}

.h-100{
    height: 100%;   
}

.w-75{
    width: 75%;    
}

.h-75{
    height: 75%;   
}

.w-50{
    width: 50%;    
}

.h-50{
    height: 50%;   
}

.w-25{
    width: 25%;    
}

.h-25{
    height: 25%;   
}

.bg-no-repeat{
    background-repeat: no-repeat;
}

.bg-position-center{
	background-position: center center;
}

.bg-contain{
	background-size: contain;
}

.bg-cover{
    background-size: cover;
}

.font-weight-100{
    font-weight: 100;
}

.font-weight-200{
    font-weight: 200;
}
.font-weight-300{
    font-weight: 300;
}

.font-weight-400{
    font-weight: 400;
}

.font-weight-500{
    font-weight: 500;
}

.font-weight-600{
    font-weight: 600;
}

.font-weight-700{
    font-weight: 700;
}

.font-weight-800{
    font-weight: 800;
}

.font-weight-900{
    font-weight: 900;
}



.text-decoration-none{
    text-decoration: none;
}

.text-left{
    text-align: left;   
}

.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}

.text-uppercase{
    text-transform: uppercase;
}

/* font-size */

.text-36{
    font-size: 36px;
}

.text-34{
    font-size: 34px;
}

.text-32{
    font-size: 32px;
}

.text-30{
    font-size: 30px;
}

.text-28{
    font-size: 28px;
}

.text-26{
    font-size: 26px;
}

.text-24{
    font-size: 24px;
}

.text-22{
    font-size: 22px;
}

.text-20{
    font-size: 20px;
}

.text-18{
    font-size: 18px;
}

.text-16{
    font-size: 16px;
}

.text-14{
    font-size: 14px;
}

.text-13{
    font-size: 13px;
}

.text-12{
    font-size: 12px;
}

.text-10{
    font-size: 10px;
}

.text-8{
    font-size: 8px;
}

@media screen and (max-width: 1200px){
    .text-xl-left{
        text-align: left;   
    }

    .text-xl-center{
        text-align: center;
    }

    .text-xl-right{
        text-align: right;
    }

    .text-xl-uppercase{
        text-transform: uppercase;
    }

    /* font-size */

    .text-xl-36{
        font-size: 36px;
    }

    .text-xl-34{
        font-size: 34px;
    }

    .text-xl-32{
        font-size: 32px;
    }

    .text-xl-30{
        font-size: 30px;
    }

    .text-xl-28{
        font-size: 28px;
    }

    .text-xl-26{
        font-size: 26px;
    }

    .text-xl-24{
        font-size: 24px;
    }

    .text-xl-22{
        font-size: 22px;
    }

    .text-xl-20{
        font-size: 20px;
    }

    .text-xl-18{
        font-size: 18px;
    }

    .text-xl-16{
        font-size: 16px;
    }

    .text-xl-14{
        font-size: 14px;
    }

    .text-xl-13{
        font-size: 13px;
    }

    .text-xl-12{
        font-size: 12px;
    }

    .text-xl-10{
        font-size: 10px;
    }

    .text-xl-8{
        font-size: 8px;
    }
}
@media screen and (max-width: 1020px){
    .text-lg-left{
        text-align: left;   
    }

    .text-lg-center{
        text-align: center;
    }

    .text-lg-right{
        text-align: right;
    }

    .text-lg-uppercase{
        text-transform: uppercase;
    }

    /* font-size */

    .text-lg-36{
        font-size: 36px;
    }

    .text-lg-34{
        font-size: 34px;
    }

    .text-lg-32{
        font-size: 32px;
    }

    .text-lg-30{
        font-size: 30px;
    }

    .text-lg-28{
        font-size: 28px;
    }

    .text-lg-26{
        font-size: 26px;
    }

    .text-lg-24{
        font-size: 24px;
    }

    .text-lg-22{
        font-size: 22px;
    }

    .text-lg-20{
        font-size: 20px;
    }

    .text-lg-18{
        font-size: 18px;
    }

    .text-lg-16{
        font-size: 16px;
    }

    .text-lg-14{
        font-size: 14px;
    }

    .text-lg-13{
        font-size: 13px;
    }

    .text-lg-12{
        font-size: 12px;
    }

    .text-lg-10{
        font-size: 10px;
    }

    .text-lg-8{
        font-size: 8px;
    }
}
@media screen and (max-width: 768px){
    .text-md-left{
        text-align: left;   
    }

    .text-md-center{
        text-align: center;
    }

    .text-md-right{
        text-align: right;
    }

    .text-md-uppercase{
        text-transform: uppercase;
    }

    /* font-size */

    .text-md-36{
        font-size: 36px;
    }

    .text-md-34{
        font-size: 34px;
    }

    .text-md-32{
        font-size: 32px;
    }

    .text-md-30{
        font-size: 30px;
    }

    .text-md-28{
        font-size: 28px;
    }

    .text-md-26{
        font-size: 26px;
    }

    .text-md-24{
        font-size: 24px;
    }

    .text-md-22{
        font-size: 22px;
    }

    .text-md-20{
        font-size: 20px;
    }

    .text-md-18{
        font-size: 18px;
    }

    .text-md-16{
        font-size: 16px;
    }

    .text-md-14{
        font-size: 14px;
    }

    .text-md-13{
        font-size: 13px;
    }

    .text-md-12{
        font-size: 12px;
    }

    .text-md-10{
        font-size: 10px;
    }

    .text-md-8{
        font-size: 8px;
    }
}
@media screen and (max-width: 480px){
    .text-sm-left{
        text-align: left;   
    }

    .text-sm-center{
        text-align: center;
    }

    .text-sm-right{
        text-align: right;
    }

    .text-sm-uppercase{
        text-transform: uppercase;
    }

    /* font-size */

    .text-sm-36{
        font-size: 36px;
    }

    .text-sm-34{
        font-size: 34px;
    }

    .text-sm-32{
        font-size: 32px;
    }

    .text-sm-30{
        font-size: 30px;
    }

    .text-sm-28{
        font-size: 28px;
    }

    .text-sm-26{
        font-size: 26px;
    }

    .text-sm-24{
        font-size: 24px;
    }

    .text-sm-22{
        font-size: 22px;
    }

    .text-sm-20{
        font-size: 20px;
    }

    .text-sm-18{
        font-size: 18px;
    }

    .text-sm-16{
        font-size: 16px;
    }

    .text-sm-14{
        font-size: 14px;
    }

    .text-sm-13{
        font-size: 13px;
    }

    .text-sm-12{
        font-size: 12px;
    }

    .text-sm-10{
        font-size: 10px;
    }

    .text-sm-8{
        font-size: 8px;
    }
}
@media screen and (max-width: 375px){
    .text-xs-left{
        text-align: left;   
    }

    .text-xs-center{
        text-align: center;
    }

    .text-xs-right{
        text-align: right;
    }

    .text-xs-uppercase{
        text-transform: uppercase;
    }

    /* font-size */

    .text-xs-36{
        font-size: 36px;
    }

    .text-xs-34{
        font-size: 34px;
    }

    .text-xs-32{
        font-size: 32px;
    }

    .text-xs-30{
        font-size: 30px;
    }

    .text-xs-28{
        font-size: 28px;
    }

    .text-xs-26{
        font-size: 26px;
    }

    .text-xs-24{
        font-size: 24px;
    }

    .text-xs-22{
        font-size: 22px;
    }

    .text-xs-20{
        font-size: 20px;
    }

    .text-xs-18{
        font-size: 18px;
    }

    .text-xs-16{
        font-size: 16px;
    }

    .text-xs-14{
        font-size: 14px;
    }

    .text-xs-13{
        font-size: 13px;
    }

    .text-xs-12{
        font-size: 12px;
    }

    .text-xs-10{
        font-size: 10px;
    }

    .text-xs-8{
        font-size: 8px;
    }
}

.container{
    max-width: var(--container-defaul);
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 1200px){
	.container{
		max-width: var(--container-xl);
	}
}

@media screen and (max-width: 992px){
	.container{
		max-width: var(--container-lg);
	}
}

@media screen and (max-width: 768px){
	.container{
		max-width: var(--container-md);
	}
}

@media screen and (max-width: 576px){
	.container{
		max-width: var(--container-sm);
	}
}

@media screen and (max-width: 360px){
	.container{
		max-width: var(--container-xs);
	}
}

.col-1{
    width: 8.33333%;
}

.col-2{
    width: 16.66666%;
}

.col-3{
    width: 25%;
}

.col-4{
    width: 33.33333%;
}

.col-5{
    width: 41.66666%;
}

.col-6{
    width: 50%;
}

.col-7{
    width: 58.33333%;
}

.col-8{
    width: 66.66666%;
}

.col-9{
    width: 75%;
}

.col-10{
    width: 83.33333%;
}

.col-11{
    width: 91.66666%;
}

.col-12{
    width: 100%;
}


.offset-1{
    margin-left: 8.33333%;
}

.offset-2{
    margin-left: 16.66666%;
}

.offset-3{
    margin-left: 25%;
}

.offset-4{
    margin-left: 33.33333%;
}

.offset-5{
    margin-left: 41.66666%;
}

.offset-6{
    margin-left: 50%;
}

.offset-7{
    margin-left: 58.33333%;
}

.offset-8{
    margin-left: 66.66666%;
}

.offset-9{
    margin-left: 75%;
}

.offset-10{
    margin-left: 83.33333%;
}

.offset-11{
    margin-left: 91.66666%;
}

.offset-12{
    margin-left: 100%;
}

@media screen and (max-width: 1200px){
    .col-xl-1{
        width: 8.33333%;
    }

    .col-xl-2{
        width: 16.66666%;
    }

    .col-xl-3{
        width: 25%;
    }

    .col-xl-4{
        width: 33.33333%;
    }

    .col-xl-5{
        width: 41.66666%;
    }

    .col-xl-6{
        width: 50%;
    }

    .col-xl-7{
        width: 58.33333%;
    }

    .col-xl-8{
        width: 66.66666%;
    }

    .col-xl-9{
        width: 75%;
    }

    .col-xl-10{
        width: 83.33333%;
    }

    .col-xl-11{
        width: 91.66666%;
    }

    .col-xl-12{
        width: 100%;
    }
    .offset-xl-1{
    margin-left: 8.33333%;
    }

    .offset-xl-2{
        margin-left: 16.66666%;
    }

    .offset-xl-3{
        margin-left: 25%;
    }

    .offset-xl-4{
        margin-left: 33.33333%;
    }

    .offset-xl-5{
        margin-left: 41.66666%;
    }

    .offset-xl-6{
        margin-left: 50%;
    }

    .offset-xl-7{
        margin-left: 58.33333%;
    }

    .offset-xl-8{
        margin-left: 66.66666%;
    }

    .offset-xl-9{
        margin-left: 75%;
    }

    .offset-xl-10{
        margin-left: 83.33333%;
    }

    .offset-xl-11{
        margin-left: 91.66666%;
    }

    .offset-xl-12{
        margin-left: 100%;
    }

}
@media screen and (max-width: 1020px){
    .col-lg-1{
    width: 8.33333%;
    }

    .col-lg-2{
        width: 16.66666%;
    }

    .col-lg-3{
        width: 25%;
    }

    .col-lg-4{
        width: 33.33333%;
    }

    .col-lg-5{
        width: 41.66666%;
    }

    .col-lg-6{
        width: 50%;
    }

    .col-lg-7{
        width: 58.33333%;
    }

    .col-lg-8{
        width: 66.66666%;
    }

    .col-lg-9{
        width: 75%;
    }

    .col-lg-10{
        width: 83.33333%;
    }

    .col-lg-11{
        width: 91.66666%;
    }

    .col-lg-12{
        width: 100%;
    }
    .offset-1{
        margin-left: 8.33333%;
    }

    .offset-lg-2{
        margin-left: 16.66666%;
    }

    .offset-lg-3{
        margin-left: 25%;
    }

    .offset-lg-4{
        margin-left: 33.33333%;
    }

    .offset-lg-5{
        margin-left: 41.66666%;
    }

    .offset-lg-6{
        margin-left: 50%;
    }

    .offset-lg-7{
        margin-left: 58.33333%;
    }

    .offset-lg-8{
        margin-left: 66.66666%;
    }

    .offset-lg-9{
        margin-left: 75%;
    }

    .offset-lg-10{
        margin-left: 83.33333%;
    }

    .offset-lg-11{
        margin-left: 91.66666%;
    }

    .offset-lg-12{
        margin-left: 100%;

    }
}

@media screen and (max-width: 768px){
    .col-md-1{
    width: 8.33333%;
    }

    .col-md-2{
        width: 16.66666%;
    }

    .col-md-3{
        width: 25%;
    }

    .col-md-4{
        width: 33.33333%;
    }

    .col-md-5{
        width: 41.66666%;
    }

    .col-md-6{
        width: 50%;
    }

    .col-md-7{
        width: 58.33333%;
    }

    .col-md-8{
        width: 66.66666%;
    }

    .col-md-9{
        width: 75%;
    }

    .col-md-10{
        width: 83.33333%;
    }

    .col-md-11{
        width: 91.66666%;
    }

    .col-md-12{
        width: 100%;
    }
    .offset-md-1{
    margin-left: 8.33333%;
    }

    .offset-md-2{
        margin-left: 16.66666%;
    }

    .offset-md-3{
        margin-left: 25%;
    }

    .offset-md-4{
        margin-left: 33.33333%;
    }

    .offset-md-5{
        margin-left: 41.66666%;
    }

    .offset-md-6{
        margin-left: 50%;
    }

    .offset-md-7{
        margin-left: 58.33333%;
    }

    .offset-md-8{
        margin-left: 66.66666%;
    }

    .offset-md-9{
        margin-left: 75%;
    }

    .offset-md-10{
        margin-left: 83.33333%;
    }

    .offset-md-11{
        margin-left: 91.66666%;
    }

    .offset-md-12{
        margin-left: 100%;
    }
}
@media screen and (max-width: 480px){
    .col-sm-1{
    width: 8.33333%;
    }

    .col-sm-2{
        width: 16.66666%;
    }

    .col-sm-3{
        width: 25%;
    }

    .col-sm-4{
        width: 33.33333%;
    }

    .col-sm-5{
        width: 41.66666%;
    }

    .col-sm-6{
        width: 50%;
    }

    .col-sm-7{
        width: 58.33333%;
    }

    .col-sm-8{
        width: 66.66666%;
    }

    .col-sm-9{
        width: 75%;
    }

    .col-sm-10{
        width: 83.33333%;
    }

    .col-sm-11{
        width: 91.66666%;
    }

    .col-sm-12{
        width: 100%;
    }
    .offset-sm-1{
    margin-left: 8.33333%;
    }

    .offset-sm-2{
        margin-left: 16.66666%;
    }

    .offset-sm-3{
        margin-left: 25%;
    }

    .offset-sm-4{
        margin-left: 33.33333%;
    }

    .offset-sm-5{
        margin-left: 41.66666%;
    }

    .offset-sm-6{
        margin-left: 50%;
    }

    .offset-sm-7{
        margin-left: 58.33333%;
    }

    .offset-sm-8{
        margin-left: 66.66666%;
    }

    .offset-sm-9{
        margin-left: 75%;
    }

    .offset-sm-10{
        margin-left: 83.33333%;
    }

    .offset-sm-11{
        margin-left: 91.66666%;
    }

    .offset-sm-12{
        margin-left: 100%;
    }
}

@media screen and (max-width: 375px){
    .col-xs-1{
    	width: 8.33333%;
    }

    .col-xs-2{
        width: 16.66666%;
    }

    .col-xs-3{
        width: 25%;
    }

    .col-xs-4{
        width: 33.33333%;
    }

    .col-xs-5{
        width: 41.66666%;
    }

    .col-xs-6{
        width: 50%;
    }

    .col-xs-7{
        width: 58.33333%;
    }

    .col-xs-8{
        width: 66.66666%;
    }

    .col-xs-9{
        width: 75%;
    }

    .col-xs-10{
        width: 83.33333%;
    }

    .col-xs-11{
        width: 91.66666%;
    }

    .col-xs-12{
        width: 100%;
    }
    .offset-xs-1{
    margin-left: 8.33333%;
    }

    .offset-xs-2{
        margin-left: 16.66666%;
    }

    .offset-xs-3{
        margin-left: 25%;
    }

    .offset-xs-4{
        margin-left: 33.33333%;
    }

    .offset-xs-5{
        margin-left: 41.66666%;
    }

    .offset-xs-6{
        margin-left: 50%;
    }

    .offset-xs-7{
        margin-left: 58.33333%;
    }

    .offset-xs-8{
        margin-left: 66.66666%;
    }

    .offset-xs-9{
        margin-left: 75%;
    }

    .offset-xs-10{
        margin-left: 83.33333%;
    }

    .offset-xs-11{
        margin-left: 91.66666%;
    }

    .offset-xs-12{
        margin-left: 100%;
    }
}

.p-0,
.py-0,
.pt-0{
    padding-top: 0;
}

.p-0,
.px-0,
.pr-0{
    padding-right: 0;
}

.p-0,
.py-0,
.pb-0{
    padding-bottom: 0;
}

.p-0,
.px-0,
.pl-0{
    padding-left: 0;
}

.p-1,
.py-1,
.pt-1{
    padding-top: .25rem;
}

.p-1,
.px-1,
.pr-1{
    padding-right: .25rem;
}

.p-1,
.py-1,
.pb-1{
    padding-bottom: .25rem;
}

.p-1,
.px-1,
.pl-1{
    padding-left: .25rem;
}

.p-2,
.py-2,
.pt-2{
    padding-top: .5rem;
}

.p-2,
.px-2,
.pr-2{
    padding-right: .5rem;
}

.p-2,
.py-2,
.pb-2{
    padding-bottom: .5rem;
}

.p-2,
.px-2,
.pl-2{
    padding-left: .5rem;
}

.p-3,
.py-3,
.pt-3{
    padding-top: 1rem;
}

.p-3,
.px-3,
.pr-3{
    padding-right: 1rem;
}

.p-3,
.py-3,
.pb-3{
    padding-bottom: 1rem;
}

.p-3,
.px-3,
.pl-3{
    padding-left: 1rem;
}

.p-4,
.py-4,
.pt-4{
    padding-top: 1.5rem;
}

.p-4,
.px-4,
.pr-4{
    padding-right: 1.5rem;
}

.p-4,
.py-4,
.pb-4{
    padding-bottom: 1.5rem;
}

.p-4,
.px-4,
.pl-4{
    padding-left: 1.5rem;
}

.p-5,
.py-5,
.pt-5{
    padding-top: 3rem;
}

.p-5,
.px-5,
.pr-5{
    padding-right: 3rem;
}

.p-5,
.py-5,
.pb-5{
    padding-bottom: 3rem;
}

.p-5,
.px-5,
.pl-5{
    padding-left: 3rem;
}

.p-6,
.py-6,
.pt-6{
    padding-top: 6rem;
}

.p-6,
.px-6,
.pr-6{
    padding-right: 6rem;
}

.p-6,
.py-6,
.pb-6{
    padding-bottom: 6rem;
}

.p-6,
.px-6,
.pl-6{
    padding-left: 6rem;
}

.p-7,
.py-7,
.pt-7{
    padding-top: 12rem;
}

.p-7,
.px-7,
.pr-7{
    padding-right: 12rem;
}

.p-7,
.py-7,
.pb-7{
    padding-bottom: 12rem;
}

.p-7,
.px-7,
.pl-7{
    padding-left: 12rem;
}
@media screen and (max-width: 1400px){
    .p-xll-0,
    .py-xll-0,
    .pt-xll-0{
        padding-top: 0;
    }

    .p-xll-0,
    .px-xll-0,
    .pr-xll-0{
        padding-right: 0;
    }

    .p-xll-0,
    .py-xll-0,
    .pb-xll-0{
        padding-bottom: 0;
    }

    .p-xll-0,
    .px-xll-0,
    .pl-xll-0{
        padding-left: 0;
    }

    .p-xll-1,
    .py-xll-1,
    .pt-xll-1{
        padding-top: .25rem;
    }

    .p-xll-1,
    .px-xll-1,
    .pr-xll-1{
        padding-right: .25rem;
    }

    .p-xll-1,
    .py-xll-1,
    .pb-xll-1{
        padding-bottom: .25rem;
    }

    .p-xll-1,
    .px-xll-1,
    .pl-xll-1{
        padding-left: .25rem;
    }

    .p-xll-2,
    .py-xll-2,
    .pt-xll-2{
        padding-top: .5rem;
    }

    .p-xll-2,
    .px-xll-2,
    .pr-xll-2{
        padding-right: .5rem;
    }

    .p-xll-2,
    .py-xll-2,
    .pb-xll-2{
        padding-bottom: .5rem;
    }

    .p-xll-2,
    .px-xll-2,
    .pl-xll-2{
        padding-left: .5rem;
    }

    .p-xll-3,
    .py-xll-3,
    .pt-xll-3{
        padding-top: 1rem;
    }

    .p-xll-3,
    .px-xll-3,
    .pr-xll-3{
        padding-right: 1rem;
    }

    .p-xll-3,
    .py-xll-3,
    .pb-xll-3{
        padding-bottom: 1rem;
    }

    .p-xll-3,
    .px-xll-3,
    .pl-xll-3{
        padding-left: 1rem;
    }

    .p-xll-4,
    .py-xll-4,
    .pt-xll-4{
        padding-top: 1.5rem;
    }

    .p-xll-4,
    .px-xll-4,
    .pr-xll-4{
        padding-right: 1.5rem;
    }

    .p-xll-4,
    .py-xll-4,
    .pb-xll-4{
        padding-bottom: 1.5rem;
    }

    .p-xll-4,
    .px-xll-4,
    .pl-xll-4{
        padding-left: 1.5rem;
    }

    .p-xll-5,
    .py-xll-5,
    .pt-xll-5{
        padding-top: 3rem;
    }

    .p-xll-5,
    .px-xll-5,
    .pr-xll-5{
        padding-right: 3rem;
    }

    .p-xll-5,
    .py-xll-5,
    .pb-xll-5{
        padding-bottom: 3rem;
    }

    .p-xll-5,
    .px-xll-5,
    .pl-xll-5{
        padding-left: 3rem;
    }

    .p-xll-6,
    .py-xll-6,
    .pt-xll-6{
        padding-top: 6rem;
    }

    .p-xll-6,
    .px-xll-6,
    .pr-xll-6{
        padding-right: 6rem;
    }

    .p-xll-6,
    .py-xll-6,
    .pb-xll-6{
        padding-bottom: 6rem;
    }

    .p-xll-6,
    .px-xll-6,
    .pl-xll-6{
        padding-left: 6rem;
    }

    .p-xll-7,
    .py-xll-7,
    .pt-xll-7{
        padding-top: 12rem;
    }

    .p-xll-7,
    .px-xll-7,
    .pr-xll-7{
        padding-right: 12rem;
    }

    .p-xll-7,
    .py-xll-7,
    .pb-xll-7{
        padding-bottom: 12rem;
    }

    .p-xll-7,
    .px-xll-7,
    .pl-xll-7{
        padding-left: 12rem;
    }
}
@media screen and (max-width: 1200px){
    .p-xl-0,
    .py-xl-0,
    .pt-xl-0{
        padding-top: 0;
    }

    .p-xl-0,
    .px-xl-0,
    .pr-xl-0{
        padding-right: 0;
    }

    .p-xl-0,
    .py-xl-0,
    .pb-xl-0{
        padding-bottom: 0;
    }

    .p-xl-0,
    .px-xl-0,
    .pl-xl-0{
        padding-left: 0;
    }

    .p-xl-1,
    .py-xl-1,
    .pt-xl-1{
        padding-top: .25rem;
    }

    .p-xl-1,
    .px-xl-1,
    .pr-xl-1{
        padding-right: .25rem;
    }

    .p-xl-1,
    .py-xl-1,
    .pb-xl-1{
        padding-bottom: .25rem;
    }

    .p-xl-1,
    .px-xl-1,
    .pl-xl-1{
        padding-left: .25rem;
    }

    .p-xl-2,
    .py-xl-2,
    .pt-xl-2{
        padding-top: .5rem;
    }

    .p-xl-2,
    .px-xl-2,
    .pr-xl-2{
        padding-right: .5rem;
    }

    .p-xl-2,
    .py-xl-2,
    .pb-xl-2{
        padding-bottom: .5rem;
    }

    .p-xl-2,
    .px-xl-2,
    .pl-xl-2{
        padding-left: .5rem;
    }

    .p-xl-3,
    .py-xl-3,
    .pt-xl-3{
        padding-top: 1rem;
    }

    .p-xl-3,
    .px-xl-3,
    .pr-xl-3{
        padding-right: 1rem;
    }

    .p-xl-3,
    .py-xl-3,
    .pb-xl-3{
        padding-bottom: 1rem;
    }

    .p-xl-3,
    .px-xl-3,
    .pl-xl-3{
        padding-left: 1rem;
    }

    .p-xl-4,
    .py-xl-4,
    .pt-xl-4{
        padding-top: 1.5rem;
    }

    .p-xl-4,
    .px-xl-4,
    .pr-xl-4{
        padding-right: 1.5rem;
    }

    .p-xl-4,
    .py-xl-4,
    .pb-xl-4{
        padding-bottom: 1.5rem;
    }

    .p-xl-4,
    .px-xl-4,
    .pl-xl-4{
        padding-left: 1.5rem;
    }

    .p-xl-5,
    .py-xl-5,
    .pt-xl-5{
        padding-top: 3rem;
    }

    .p-xl-5,
    .px-xl-5,
    .pr-xl-5{
        padding-right: 3rem;
    }

    .p-xl-5,
    .py-xl-5,
    .pb-xl-5{
        padding-bottom: 3rem;
    }

    .p-xl-5,
    .px-xl-5,
    .pl-xl-5{
        padding-left: 3rem;
    }

    .p-xl-6,
    .py-xl-6,
    .pt-xl-6{
        padding-top: 6rem;
    }

    .p-xl-6,
    .px-xl-6,
    .pr-xl-6{
        padding-right: 6rem;
    }

    .p-xl-6,
    .py-xl-6,
    .pb-xl-6{
        padding-bottom: 6rem;
    }

    .p-xl-6,
    .px-xl-6,
    .pl-xl-6{
        padding-left: 6rem;
    }

    .p-xl-7,
    .py-xl-7,
    .pt-xl-7{
        padding-top: 12rem;
    }

    .p-xl-7,
    .px-xl-7,
    .pr-xl-7{
        padding-right: 12rem;
    }

    .p-xl-7,
    .py-xl-7,
    .pb-xl-7{
        padding-bottom: 12rem;
    }

    .p-xl-7,
    .px-xl-7,
    .pl-xl-7{
        padding-left: 12rem;
    }
}
@media screen and (max-width: 1020px){
    .p-lg-0,
    .py-lg-0,
    .pt-lg-0{
        padding-top: 0;
    }

    .p-lg-0,
    .px-lg-0,
    .pr-lg-0{
        padding-right: 0;
    }

    .p-lg-0,
    .py-lg-0,
    .pb-lg-0{
        padding-bottom: 0;
    }

    .p-lg-0,
    .px-lg-0,
    .pl-lg-0{
        padding-left: 0;
    }

    .p-lg-1,
    .py-lg-1,
    .pt-lg-1{
        padding-top: .25rem;
    }

    .p-lg-1,
    .px-lg-1,
    .pr-lg-1{
        padding-right: .25rem;
    }

    .p-lg-1,
    .py-lg-1,
    .pb-lg-1{
        padding-bottom: .25rem;
    }

    .p-lg-1,
    .px-lg-1,
    .pl-lg-1{
        padding-left: .25rem;
    }

    .p-lg-2,
    .py-lg-2,
    .pt-lg-2{
        padding-top: .5rem;
    }

    .p-lg-2,
    .px-lg-2,
    .pr-lg-2{
        padding-right: .5rem;
    }

    .p-lg-2,
    .py-lg-2,
    .pb-lg-2{
        padding-bottom: .5rem;
    }

    .p-lg-2,
    .px-lg-2,
    .pl-lg-2{
        padding-left: .5rem;
    }

    .p-lg-3,
    .py-lg-3,
    .pt-lg-3{
        padding-top: 1rem;
    }

    .p-lg-3,
    .px-lg-3,
    .pr-lg-3{
        padding-right: 1rem;
    }

    .p-lg-3,
    .py-lg-3,
    .pb-lg-3{
        padding-bottom: 1rem;
    }

    .p-lg-3,
    .px-lg-3,
    .pl-lg-3{
        padding-left: 1rem;
    }

    .p-lg-4,
    .py-lg-4,
    .pt-lg-4{
        padding-top: 1.5rem;
    }

    .p-lg-4,
    .px-lg-4,
    .pr-lg-4{
        padding-right: 1.5rem;
    }

    .p-lg-4,
    .py-lg-4,
    .pb-lg-4{
        padding-bottom: 1.5rem;
    }

    .p-lg-4,
    .px-lg-4,
    .pl-lg-4{
        padding-left: 1.5rem;
    }

    .p-lg-5,
    .py-lg-5,
    .pt-lg-5{
        padding-top: 3rem;
    }

    .p-lg-5,
    .px-lg-5,
    .pr-lg-5{
        padding-right: 3rem;
    }

    .p-lg-5,
    .py-lg-5,
    .pb-lg-5{
        padding-bottom: 3rem;
    }

    .p-lg-5,
    .px-lg-5,
    .pl-lg-5{
        padding-left: 3rem;
    }

    .p-lg-6,
    .py-lg-6,
    .pt-lg-6{
        padding-top: 6rem;
    }

    .p-lg-6,
    .px-lg-6,
    .pr-lg-6{
        padding-right: 6rem;
    }

    .p-lg-6,
    .py-lg-6,
    .pb-lg-6{
        padding-bottom: 6rem;
    }

    .p-lg-6,
    .px-lg-6,
    .pl-lg-6{
        padding-left: 6rem;
    }

    .p-lg-7,
    .py-lg-7,
    .pt-lg-7{
        padding-top: 12rem;
    }

    .p-lg-7,
    .px-lg-7,
    .pr-lg-7{
        padding-right: 12rem;
    }

    .p-lg-7,
    .py-lg-7,
    .pb-lg-7{
        padding-bottom: 12rem;
    }

    .p-lg-7,
    .px-lg-7,
    .pl-lg-7{
        padding-left: 12rem;
    }
}
@media screen and (max-width: 768px){
    .p-md-0,
    .py-md-0,
    .pt-md-0{
        padding-top: 0;
    }

    .p-md-0,
    .px-md-0,
    .pr-md-0{
        padding-right: 0;
    }

    .p-md-0,
    .py-md-0,
    .pb-md-0{
        padding-bottom: 0;
    }

    .p-md-0,
    .px-md-0,
    .pl-md-0{
        padding-left: 0;
    }

    .p-md-1,
    .py-md-1,
    .pt-md-1{
        padding-top: .25rem;
    }

    .p-md-1,
    .px-md-1,
    .pr-md-1{
        padding-right: .25rem;
    }

    .p-md-1,
    .py-md-1,
    .pb-md-1{
        padding-bottom: .25rem;
    }

    .p-md-1,
    .px-md-1,
    .pl-md-1{
        padding-left: .25rem;
    }

    .p-md-2,
    .py-md-2,
    .pt-md-2{
        padding-top: .5rem;
    }

    .p-md-2,
    .px-md-2,
    .pr-md-2{
        padding-right: .5rem;
    }

    .p-md-2,
    .py-md-2,
    .pb-md-2{
        padding-bottom: .5rem;
    }

    .p-md-2,
    .px-md-2,
    .pl-md-2{
        padding-left: .5rem;
    }

    .p-md-3,
    .py-md-3,
    .pt-md-3{
        padding-top: 1rem;
    }

    .p-md-3,
    .px-md-3,
    .pr-md-3{
        padding-right: 1rem;
    }

    .p-md-3,
    .py-md-3,
    .pb-md-3{
        padding-bottom: 1rem;
    }

    .p-md-3,
    .px-md-3,
    .pl-md-3{
        padding-left: 1rem;
    }

    .p-md-4,
    .py-md-4,
    .pt-md-4{
        padding-top: 1.5rem;
    }

    .p-md-4,
    .px-md-4,
    .pr-md-4{
        padding-right: 1.5rem;
    }

    .p-md-4,
    .py-md-4,
    .pb-md-4{
        padding-bottom: 1.5rem;
    }

    .p-md-4,
    .px-md-4,
    .pl-md-4{
        padding-left: 1.5rem;
    }

    .p-md-5,
    .py-md-5,
    .pt-md-5{
        padding-top: 3rem;
    }

    .p-md-5,
    .px-md-5,
    .pr-md-5{
        padding-right: 3rem;
    }

    .p-md-5,
    .py-md-5,
    .pb-md-5{
        padding-bottom: 3rem;
    }

    .p-md-5,
    .px-md-5,
    .pl-md-5{
        padding-left: 3rem;
    }

    .p-md-6,
    .py-md-6,
    .pt-md-6{
        padding-top: 6rem;
    }

    .p-md-6,
    .px-md-6,
    .pr-md-6{
        padding-right: 6rem;
    }

    .p-md-6,
    .py-md-6,
    .pb-md-6{
        padding-bottom: 6rem;
    }

    .p-md-6,
    .px-md-6,
    .pl-md-6{
        padding-left: 6rem;
    }

    .p-md-7,
    .py-md-7,
    .pt-md-7{
        padding-top: 12rem;
    }

    .p-md-7,
    .px-md-7,
    .pr-md-7{
        padding-right: 12rem;
    }

    .p-md-7,
    .py-md-7,
    .pb-md-7{
        padding-bottom: 12rem;
    }

    .p-md-7,
    .px-md-7,
    .pl-md-7{
        padding-left: 12rem;
    }
}
@media screen and (max-width: 480px){
    .p-sm-0,
    .py-sm-0,
    .pt-sm-0{
        padding-top: 0;
    }

    .p-sm-0,
    .px-sm-0,
    .pr-sm-0{
        padding-right: 0;
    }

    .p-sm-0,
    .py-sm-0,
    .pb-sm-0{
        padding-bottom: 0;
    }

    .p-sm-0,
    .px-sm-0,
    .pl-sm-0{
        padding-left: 0;
    }

    .p-sm-1,
    .py-sm-1,
    .pt-sm-1{
        padding-top: .25rem;
    }

    .p-sm-1,
    .px-sm-1,
    .pr-sm-1{
        padding-right: .25rem;
    }

    .p-sm-1,
    .py-sm-1,
    .pb-sm-1{
        padding-bottom: .25rem;
    }

    .p-sm-1,
    .px-sm-1,
    .pl-sm-1{
        padding-left: .25rem;
    }

    .p-sm-2,
    .py-sm-2,
    .pt-sm-2{
        padding-top: .5rem;
    }

    .p-sm-2,
    .px-sm-2,
    .pr-sm-2{
        padding-right: .5rem;
    }

    .p-sm-2,
    .py-sm-2,
    .pb-sm-2{
        padding-bottom: .5rem;
    }

    .p-sm-2,
    .px-sm-2,
    .pl-sm-2{
        padding-left: .5rem;
    }

    .p-sm-3,
    .py-sm-3,
    .pt-sm-3{
        padding-top: 1rem;
    }

    .p-sm-3,
    .px-sm-3,
    .pr-sm-3{
        padding-right: 1rem;
    }

    .p-sm-3,
    .py-sm-3,
    .pb-sm-3{
        padding-bottom: 1rem;
    }

    .p-sm-3,
    .px-sm-3,
    .pl-sm-3{
        padding-left: 1rem;
    }

    .p-sm-4,
    .py-sm-4,
    .pt-sm-4{
        padding-top: 1.5rem;
    }

    .p-sm-4,
    .px-sm-4,
    .pr-sm-4{
        padding-right: 1.5rem;
    }

    .p-sm-4,
    .py-sm-4,
    .pb-sm-4{
        padding-bottom: 1.5rem;
    }

    .p-sm-4,
    .px-sm-4,
    .pl-sm-4{
        padding-left: 1.5rem;
    }

    .p-sm-5,
    .py-sm-5,
    .pt-sm-5{
        padding-top: 3rem;
    }

    .p-sm-5,
    .px-sm-5,
    .pr-sm-5{
        padding-right: 3rem;
    }

    .p-sm-5,
    .py-sm-5,
    .pb-sm-5{
        padding-bottom: 3rem;
    }

    .p-sm-5,
    .px-sm-5,
    .pl-sm-5{
        padding-left: 3rem;
    }

    .p-sm-6,
    .py-sm-6,
    .pt-sm-6{
        padding-top: 6rem;
    }

    .p-sm-6,
    .px-sm-6,
    .pr-sm-6{
        padding-right: 6rem;
    }

    .p-sm-6,
    .py-sm-6,
    .pb-sm-6{
        padding-bottom: 6rem;
    }

    .p-sm-6,
    .px-sm-6,
    .pl-sm-6{
        padding-left: 6rem;
    }

    .p-sm-7,
    .py-sm-7,
    .pt-sm-7{
        padding-top: 12rem;
    }

    .p-sm-7,
    .px-sm-7,
    .pr-sm-7{
        padding-right: 12rem;
    }

    .p-sm-7,
    .py-sm-7,
    .pb-sm-7{
        padding-bottom: 12rem;
    }

    .p-sm-7,
    .px-sm-7,
    .pl-sm-7{
        padding-left: 12rem;
    }
}
@media screen and (max-width: 375px){
    .p-xs-0,
    .py-xs-0,
    .pt-xs-0{
        padding-top: 0;
    }

    .p-xs-0,
    .px-xs-0,
    .pr-xs-0{
        padding-right: 0;
    }

    .p-xs-0,
    .py-xs-0,
    .pb-xs-0{
        padding-bottom: 0;
    }

    .p-xs-0,
    .px-xs-0,
    .pl-xs-0{
        padding-left: 0;
    }

    .p-xs-1,
    .py-xs-1,
    .pt-xs-1{
        padding-top: .25rem;
    }

    .p-xs-1,
    .px-xs-1,
    .pr-xs-1{
        padding-right: .25rem;
    }

    .p-xs-1,
    .py-xs-1,
    .pb-xs-1{
        padding-bottom: .25rem;
    }

    .p-xs-1,
    .px-xs-1,
    .pl-xs-1{
        padding-left: .25rem;
    }

    .p-xs-2,
    .py-xs-2,
    .pt-xs-2{
        padding-top: .5rem;
    }

    .p-xs-2,
    .px-xs-2,
    .pr-xs-2{
        padding-right: .5rem;
    }

    .p-xs-2,
    .py-xs-2,
    .pb-xs-2{
        padding-bottom: .5rem;
    }

    .p-xs-2,
    .px-xs-2,
    .pl-xs-2{
        padding-left: .5rem;
    }

    .p-xs-3,
    .py-xs-3,
    .pt-xs-3{
        padding-top: 1rem;
    }

    .p-xs-3,
    .px-xs-3,
    .pr-xs-3{
        padding-right: 1rem;
    }

    .p-xs-3,
    .py-xs-3,
    .pb-xs-3{
        padding-bottom: 1rem;
    }

    .p-xs-3,
    .px-xs-3,
    .pl-xs-3{
        padding-left: 1rem;
    }

    .p-xs-4,
    .py-xs-4,
    .pt-xs-4{
        padding-top: 1.5rem;
    }

    .p-xs-4,
    .px-xs-4,
    .pr-xs-4{
        padding-right: 1.5rem;
    }

    .p-xs-4,
    .py-xs-4,
    .pb-xs-4{
        padding-bottom: 1.5rem;
    }

    .p-xs-4,
    .px-xs-4,
    .pl-xs-4{
        padding-left: 1.5rem;
    }

    .p-xs-5,
    .py-xs-5,
    .pt-xs-5{
        padding-top: 3rem;
    }

    .p-xs-5,
    .px-xs-5,
    .pr-xs-5{
        padding-right: 3rem;
    }

    .p-xs-5,
    .py-xs-5,
    .pb-xs-5{
        padding-bottom: 3rem;
    }

    .p-xs-5,
    .px-xs-5,
    .pl-xs-5{
        padding-left: 3rem;
    }

    .p-xs-6,
    .py-xs-6,
    .pt-xs-6{
        padding-top: 6rem;
    }

    .p-xs-6,
    .px-xs-6,
    .pr-xs-6{
        padding-right: 6rem;
    }

    .p-xs-6,
    .py-xs-6,
    .pb-xs-6{
        padding-bottom: 6rem;
    }

    .p-xs-6,
    .px-xs-6,
    .pl-xs-6{
        padding-left: 6rem;
    }

    .p-xs-7,
    .py-xs-7,
    .pt-xs-7{
        padding-top: 12rem;
    }

    .p-xs-7,
    .px-xs-7,
    .pr-xs-7{
        padding-right: 12rem;
    }

    .p-xs-7,
    .py-xs-7,
    .pb-xs-7{
        padding-bottom: 12rem;
    }

    .p-xs-7,
    .px-xs-7,
    .pl-xs-7{
        padding-left: 12rem;
    }
}

.m-auto,
.my-auto,
.mt-auto{
    margin-top: auto;
}

.m-auto,
.mx-auto,
.mr-auto{
    margin-right: auto;
}

.m-auto,
.my-auto,
.mb-auto{
    margin-bottom: auto;
}

.m-auto,
.mx-auto,
.ml-auto{
    margin-left: auto;
}

.m-0,
.my-0,
.mt-0{
    margin-top: 0;
}

.m-1,
.my-1,
.mt-1{
    margin-top: .25rem;
}

.m-1,
.mx-1,
.mr-1{
    margin-right: .25rem;
}

.m-1,
.my-1,
.mb-1{
    margin-bottom: .25rem;
}

.m-1,
.mx-1,
.ml-1{
    margin-left: .25rem;
}

.m-2,
.my-2,
.mt-2{
    margin-top: .5rem;
}

.m-2,
.mx-2,
.mr-2{
    margin-right: .5rem;
}

.m-2,
.my-2,
.mb-2{
    margin-bottom: .5rem;
}

.m-2,
.mx-2,
.ml-2{
    margin-left: .5rem;
}

.m-3,
.my-3,
.mt-3{
    margin-top: 1rem;
}

.m-3,
.mx-3,
.mr-3{
    margin-right: 1rem;
}

.m-3,
.my-3,
.mb-3{
    margin-bottom: 1rem;
}

.m-3,
.mx-3,
.ml-3{
    margin-left: 1rem;
}

.m-4,
.my-4,
.mt-4{
    margin-top: 1.5rem;
}

.m-4,
.mx-4,
.mr-4{
    margin-right: 1.5rem;
}

.m-4,
.my-4,
.mb-4{
    margin-bottom: 1.5rem;
}

.m-4,
.mx-4,
.ml-4{
    margin-left: 1.5rem;
}

.m-5,
.my-5,
.mt-5{
    margin-top: 3rem;
}

.m-5,
.mx-5,
.mr-5{
    margin-right: 3rem;
}

.m-5,
.my-5,
.mb-5{
    margin-bottom: 3rem;
}

.m-5,
.mx-5,
.ml-5{
    margin-left: 3rem;
}

.m-6,
.my-6,
.mt-6{
    margin-top: 6rem;
}

.m-6,
.mx-6,
.mr-6{
    margin-right: 6rem;
}

.m-6,
.my-6,
.mb-6{
    margin-bottom: 6rem;
}

.m-6,
.mx-6,
.ml-6{
    margin-left: 6rem;
}

@media screen and (max-width: 1200px){
    .m-xl-0,
    .my-xl-0,
    .mt-xl-0,
    .mb-xl-0,
    .mr-xl-0,
    .ml-xl-0,
    .mx-xl-0{
        margin-top: 0;
    }

    .m-xl-1,
    .mx-xl-1,
    .mr-xl-1{
        margin-right: .25rem;
    }

    .m-xl-1,
    .my-xl-1,
    .mb-xl-1{
        margin-bottom: .25rem;
    }

    .m-xl-1,
    .mx-xl-1,
    .ml-xl-1{
        margin-left: .25rem;
    }

    .m-xl-2,
    .my-xl-2,
    .mt-xl-2{
        margin-top: .5rem;
    }

    .m-xl-2,
    .mx-xl-2,
    .mr-xl-2{
        margin-right: .5rem;
    }

    .m-xl-2,
    .my-xl-2,
    .mb-xl-2{
        margin-bottom: .5rem;
    }

    .m-xl-2,
    .mx-xl-2,
    .ml-xl-2{
        margin-left: .5rem;
    }

    .m-xl-3,
    .my-xl-3,
    .mt-xl-3{
        margin-top: 1rem;
    }

    .m-xl-3,
    .mx-xl-3,
    .mr-xl-3{
        margin-right: 1rem;
    }

    .m-xl-3,
    .my-xl-3,
    .mb-xl-3{
        margin-bottom: 1rem;
    }

    .m-xl-3,
    .mx-xl-3,
    .ml-xl-3{
        margin-left: 1rem;
    }

    .m-xl-4,
    .my-xl-4,
    .mt-xl-4{
        margin-top: 1.5rem;
    }

    .m-xl-4,
    .mx-xl-4,
    .mr-xl-4{
        margin-right: 1.5rem;
    }

    .m-xl-4,
    .my-xl-4,
    .mb-xl-4{
        margin-bottom: 1.5rem;
    }

    .m-xl-4,
    .mx-xl-4,
    .ml-xl-4{
        margin-left: 1.5rem;
    }

    .m-xl-5,
    .my-xl-5,
    .mt-xl-5{
        margin-top: 3rem;
    }

    .m-xl-5,
    .mx-xl-5,
    .mr-xl-5{
        margin-right: 3rem;
    }

    .m-xl-5,
    .my-xl-5,
    .mb-xl-5{
        margin-bottom: 3rem;
    }

    .m-xl-5,
    .mx-xl-5,
    .ml-xl-5{
        margin-left: 3rem;
    }
}

@media screen and (max-width: 1020px){
    .m-lg-0,
    .my-lg-0,
    .mt-lg-0,
    .mb-lg-0,
    .mr-lg-0,
    .ml-lg-0,
    .mx-lg-0{
        margin-top: 0;
    }


    .m-lg-1,
    .mx-lg-1,
    .mr-lg-1{
        margin-right: .25rem;
    }

    .m-lg-1,
    .my-lg-1,
    .mb-lg-1{
        margin-bottom: .25rem;
    }

    .m-lg-1,
    .mx-lg-1,
    .ml-lg-1{
        margin-left: .25rem;
    }

    .m-lg-2,
    .my-lg-2,
    .mt-lg-2{
        margin-top: .5rem;
    }

    .m-lg-2,
    .mx-lg-2,
    .mr-lg-2{
        margin-right: .5rem;
    }

    .m-lg-2,
    .my-lg-2,
    .mb-lg-2{
        margin-bottom: .5rem;
    }

    .m-lg-2,
    .mx-lg-2,
    .ml-lg-2{
        margin-left: .5rem;
    }

    .m-xl-3,
    .my-xl-3,
    .mt-xl-3{
        margin-top: 1rem;
    }

    .m-lg-3,
    .mx-lg-3,
    .mr-lg-3{
        margin-right: 1rem;
    }

    .m-lg-3,
    .my-lg-3,
    .mb-lg-3{
        margin-bottom: 1rem;
    }

    .m-lg-3,
    .mx-lg-3,
    .ml-lg-3{
        margin-left: 1rem;
    }

    .m-lg-4,
    .my-lg-4,
    .mt-lg-4{
        margin-top: 1.5rem;
    }

    .m-lg-4,
    .mx-lg-4,
    .mr-lg-4{
        margin-right: 1.5rem;
    }

    .m-lg-4,
    .my-lg-4,
    .mb-lg-4{
        margin-bottom: 1.5rem;
    }

    .m-lg-4,
    .mx-lg-4,
    .ml-lg-4{
        margin-left: 1.5rem;
    }

    .m-lg-5,
    .my-lg-5,
    .mt-lg-5{
        margin-top: 3rem;
    }

    .m-lg-5,
    .mx-lg-5,
    .mr-lg-5{
        margin-right: 3rem;
    }

    .m-lg-5,
    .my-lg-5,
    .mb-lg-5{
        margin-bottom: 3rem;
    }

    .m-lg-5,
    .mx-lg-5,
    .ml-lg-5{
        margin-left: 3rem;
    }
}

@media screen and (max-width: 768px){

    .m-md-0,
    .my-md-0,
    .mt-md-0,
    .mb-md-0,
    .mr-md-0,
    .ml-md-0,
    .mx-md-0{
        margin-top: 0;
    }

    .m-md-1,
    .mx-md-1,
    .mr-md-1{
        margin-right: .25rem;
    }

    .m-md-1,
    .my-md-1,
    .mb-md-1{
        margin-bottom: .25rem;
    }

    .m-md-1,
    .mx-md-1,
    .ml-md-1{
        margin-left: .25rem;
    }

    .m-md-2,
    .my-md-2,
    .mt-md-2{
        margin-top: .5rem;
    }

    .m-md-2,
    .mx-md-2,
    .mr-md-2{
        margin-right: .5rem;
    }

    .m-md-2,
    .my-md-2,
    .mb-md-2{
        margin-bottom: .5rem;
    }

    .m-md-2,
    .mx-md-2,
    .ml-md-2{
        margin-left: .5rem;
    }

    .m-md-3,
    .my-md-3,
    .mt-md-3{
        margin-top: 1rem;
    }

    .m-md-3,
    .mx-md-3,
    .mr-md-3{
        margin-right: 1rem;
    }

    .m-md-3,
    .my-md-3,
    .mb-md-3{
        margin-bottom: 1rem;
    }

    .m-md-3,
    .mx-md-3,
    .ml-md-3{
        margin-left: 1rem;
    }

    .m-md-4,
    .my-md-4,
    .mt-md-4{
        margin-top: 1.5rem;
    }

    .m-md-4,
    .mx-md-4,
    .mr-md-4{
        margin-right: 1.5rem;
    }

    .m-md-4,
    .my-md-4,
    .mb-md-4{
        margin-bottom: 1.5rem;
    }

    .m-md-4,
    .mx-md-4,
    .ml-md-4{
        margin-left: 1.5rem;
    }

    .m-md-5,
    .my-md-5,
    .mt-md-5{
        margin-top: 3rem;
    }

    .m-md-5,
    .mx-md-5,
    .mr-md-5{
        margin-right: 3rem;
    }

    .m-md-5,
    .my-md-5,
    .mb-md-5{
        margin-bottom: 3rem;
    }

    .m-md-5,
    .mx-md-5,
    .ml-md-5{
        margin-left: 3rem;
    }
}

@media screen and (max-width: 480px){

     .m-sm-0,
    .my-sm-0,
    .mt-sm-0,
    .mb-sm-0,
    .mr-sm-0,
    .ml-sm-0,
    .mx-sm-0{
        margin-top: 0;
    }

    .m-sm-1,
    .mx-sm-1,
    .mr-sm-1{
        margin-right: .25rem;
    }

    .m-sm-1,
    .my-sm-1,
    .mb-sm-1{
        margin-bottom: .25rem;
    }

    .m-sm-1,
    .mx-sm-1,
    .ml-sm-1{
        margin-left: .25rem;
    }

    .m-sm-2,
    .my-sm-2,
    .mt-sm-2{
        margin-top: .5rem;
    }

    .m-sm-2,
    .mx-sm-2,
    .mr-sm-2{
        margin-right: .5rem;
    }

    .m-sm-2,
    .my-sm-2,
    .mb-sm-2{
        margin-bottom: .5rem;
    }

    .m-sm-2,
    .mx-sm-2,
    .ml-sm-2{
        margin-left: .5rem;
    }

    .m-sm-3,
    .my-sm-3,
    .mt-sm-3{
        margin-top: 1rem;
    }

    .m-sm-3,
    .mx-sm-3,
    .mr-sm-3{
        margin-right: 1rem;
    }

    .m-sm-3,
    .my-sm-3,
    .mb-sm-3{
        margin-bottom: 1rem;
    }

    .m-sm-3,
    .mx-sm-3,
    .ml-sm-3{
        margin-left: 1rem;
    }

    .m-sm-4,
    .my-sm-4,
    .mt-sm-4{
        margin-top: 1.5rem;
    }

    .m-sm-4,
    .mx-sm-4,
    .mr-sm-4{
        margin-right: 1.5rem;
    }

    .m-sm-4,
    .my-sm-4,
    .mb-sm-4{
        margin-bottom: 1.5rem;
    }

    .m-sm-4,
    .mx-sm-4,
    .ml-sm-4{
        margin-left: 1.5rem;
    }

    .m-sm-5,
    .my-sm-5,
    .mt-sm-5{
        margin-top: 3rem;
    }

    .m-sm-5,
    .mx-sm-5,
    .mr-sm-5{
        margin-right: 3rem;
    }

    .m-sm-5,
    .my-sm-5,
    .mb-sm-5{
        margin-bottom: 3rem;
    }

    .m-sm-5,
    .mx-sm-5,
    .ml-sm-5{
        margin-left: 3rem;
    }
}

@media screen and (max-width: 375px){

     .m-xs-0,
    .my-xs-0,
    .mt-xs-0,
    .mb-xs-0,
    .mr-xs-0,
    .ml-xs-0,
    .mx-xs-0{
        margin-top: 0;
    }

    .m-xs-1,
    .mx-xs-1,
    .mr-xs-1{
        margin-right: .25rem;
    }

    .m-xs-1,
    .my-xs-1,
    .mb-xs-1{
        margin-bottom: .25rem;
    }

    .m-xs-1,
    .mx-xs-1,
    .ml-xs-1{
        margin-left: .25rem;
    }

    .m-xs-2,
    .my-xs-2,
    .mt-xs-2{
        margin-top: .5rem;
    }

    .m-xs-2,
    .mx-xs-2,
    .mr-xs-2{
        margin-right: .5rem;
    }

    .m-xs-2,
    .my-xs-2,
    .mb-xs-2{
        margin-bottom: .5rem;
    }

    .m-xs-2,
    .mx-xs-2,
    .ml-xs-2{
        margin-left: .5rem;
    }

    .m-xs-3,
    .my-xs-3,
    .mt-xs-3{
        margin-top: 1rem;
    }

    .m-xs-3,
    .mx-xs-3,
    .mr-xs-3{
        margin-right: 1rem;
    }

    .m-xs-3,
    .my-xs-3,
    .mb-xs-3{
        margin-bottom: 1rem;
    }

    .m-xs-3,
    .mx-xs-3,
    .ml-xs-3{
        margin-left: 1rem;
    }

    .m-xs-4,
    .my-xs-4,
    .mt-xs-4{
        margin-top: 1.5rem;
    }

    .m-xs-4,
    .mx-xs-4,
    .mr-xs-4{
        margin-right: 1.5rem;
    }

    .m-xs-4,
    .my-xs-4,
    .mb-xs-4{
        margin-bottom: 1.5rem;
    }

    .m-xs-4,
    .mx-xs-4,
    .ml-xs-4{
        margin-left: 1.5rem;
    }

    .m-xs-5,
    .my-xs-5,
    .mt-xs-5{
        margin-top: 3rem;
    }

    .m-xs-5,
    .mx-xs-5,
    .mr-xs-5{
        margin-right: 3rem;
    }

    .m-xs-5,
    .my-xs-5,
    .mb-xs-5{
        margin-bottom: 3rem;
    }

    .m-xs-5,
    .mx-xs-5,
    .ml-xs-5{
        margin-left: 3rem;
    }
}

.list-unstyled{
    list-style: none;
}

.position-fixed{
    position: fixed;
}

.position-relative{
    position: relative;
}

.position-absolute{
    position: absolute;
}

.fixed-top{
    top: 0;
    left: 0;
}

.z-1000{
    z-index: 1000;
}

.z-1050{
    z-index: 1050;
}

.z-1100{
    z-index: 1100;
}

.z-1150{
    z-index: 1150;
}

.z-1200{
    z-index: 1200;
}

.z-top{
    z-index: 9999;
}
@media screen and (max-width: 1200px){
    .position-xl-fixed{
        position: fixed;
    }

    .position-xl-relative{
        position: relative;
    }

    .position-xl-absolute{
        position: absolute;
    }

    .fixed-xl-top{
        top: 0;
        left: 0;
    }

    .z-xl-1000{
        z-index: 1000;
    }

    .z-xl-1050{
        z-index: 1050;
    }

    .z-xl-1100{
        z-index: 1100;
    }

    .z-xl-1150{
        z-index: 1150;
    }

    .z-xl-1200{
        z-index: 1200;
    }

    .z-xl-top{
        z-index: 9999;
    }
}
@media screen and (max-width: 1020px){
    .position-lg-fixed{
        position: fixed;
    }

    .position-lg-relative{
        position: relative;
    }

    .position-lg-absolute{
        position: absolute;
    }

    .fixed-lg-top{
        top: 0;
        left: 0;
    }

    .z-lg-1000{
        z-index: 1000;
    }

    .z-lg-1050{
        z-index: 1050;
    }

    .z-lg-1100{
        z-index: 1100;
    }

    .z-lg-1150{
        z-index: 1150;
    }

    .z-lg-1200{
        z-index: 1200;
    }

    .z-lg-top{
        z-index: 9999;
    }
}
@media screen and (max-width: 768px){
    .position-md-fixed{
        position: fixed;
    }

    .position-md-relative{
        position: relative;
    }

    .position-md-absolute{
        position: absolute;
    }

    .fixed-md-top{
        top: 0;
        left: 0;
    }

    .z-md-1000{
        z-index: 1000;
    }

    .z-md-1050{
        z-index: 1050;
    }

    .z-md-1100{
        z-index: 1100;
    }

    .z-md-1150{
        z-index: 1150;
    }

    .z-md-1200{
        z-index: 1200;
    }

    .z-md-top{
        z-index: 9999;
    }
}
@media screen and (max-width: 480px){
    .position-sm-fixed{
        position: fixed;
    }

    .position-sm-relative{
        position: relative;
    }

    .position-sm-absolute{
        position: absolute;
    }

    .fixed-sm-top{
        top: 0;
        left: 0;
    }

    .z-sm-1000{
        z-index: 1000;
    }

    .z-sm-1050{
        z-index: 1050;
    }

    .z-sm-1100{
        z-index: 1100;
    }

    .z-sm-1150{
        z-index: 1150;
    }

    .z-sm-1200{
        z-index: 1200;
    }

    .z-sm-top{
        z-index: 9999;
    }
}
@media screen and (max-width: 360px){
    .position-xs-fixed{
        position: fixed;
    }

    .position-xs-relative{
        position: relative;
    }

    .position-xs-absolute{
        position: absolute;
    }

    .fixed-xs-top{
        top: 0;
        left: 0;
    }

    .z-xs-1000{
        z-index: 1000;
    }

    .z-xs-1050{
        z-index: 1050;
    }

    .z-xs-1100{
        z-index: 1100;
    }

    .z-xs-1150{
        z-index: 1150;
    }

    .z-xs-1200{
        z-index: 1200;
    }

    .z-xs-top{
        z-index: 9999;
    }
}

.overflow-hidden{
    overflow: hidden;   
}

