* { 
    word-break: break-word;
    outline: none;
 }

/*----------------------------------------------------------------------------*/
/*#FONTS*/
/*----------------------------------------------------------------------------*/

/*----------font family-------------------*/

.ff--poppins     { font-family: 'Poppins', sans-serif; }

/*----------font weight-------------------*/

.fw--light     { font-weight: 300; }
.fw--regular   { font-weight: 400; }
.fw--medium    { font-weight: 500; }
.fw--semibold  { font-weight: 600; }
.fw--extrabold { font-weight: 800; }
.fw--black     { font-weight: 900; }

/*----------font style------------------*/

.txt--uppercase   { text-transform: uppercase; }
.txt--lowercase   { text-transform: lowercase; }
.txt--capitalize  { text-transform: capitalize; }

.txt--overline      { text-decoration: overline; }
.txt--linethrough   { text-decoration: line-through; }
.txt--underline     { text-decoration: underline; }
.txt--none:hover    { text-decoration: none; }
/*-----------font align -------------------*/

.txt--center  { text-align: center; }
.txt--left    { text-align: left; }
.txt--right   { text-align: right; }
.txt--justify { text-align: justify; }

/*---------elements align------------------*/

.pull--left   { float: left; }
.pull--right  { float: right; }
.pull--none   { float: none; }
.clearfix     { clear: both; }
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/*--------overflow---------------------------------*/

.overflow--visible { overflow: visible; }
.overflow--auto    { overflow: auto; }
.overflow--hidden  { overflow: hidden; }
.overflow-x--hidden { overflow-x: hidden; }

/*--------position---------------------------------*/
.p--relative { position: relative; }

/*--------height---------------------------------*/
.height--100 { height: 100%; }
/*--------width---------------------------------*/
.width--100 { width: 100%; }
/*----------------------------------------------------------------------------*/
/*#CONTAINER STYLE*/
/*----------------------------------------------------------------------------*/

[class^='container'] {
    width: 100%;
    padding-left:  40px;
    padding-right: 40px;
    margin-left:  auto;
    margin-right: auto;
}
/*max-width = width of container + padding-left + padding-right*/
.container-full { max-width: 100%; }
.container    { max-width: 1480px; }
.container--lg {}
.container--md {  }
.container--sm { }
.container--xs { }

.row.gutters-md {
    margin-left:  -20px;
    margin-right: -20px;
}

.row.gutters-md [class*='col'] {
    padding-left:  20px;
    padding-right: 20px;
}

.row.gutters-lg {
    margin-left:  -50px;
    margin-right: -50px;
}

.row.gutters-lg [class*='col'] {
    padding-left:  50px;
    padding-right: 50px;
}
/*----------------------------------------------------------------------------*/
/*#VIDEO*/
/*----------------------------------------------------------------------------*/

.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px; /* if needed */
    height: 0;
}

.video iframe {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------------------------------------------------------*/
/*#FONT COLOR*/
/*----------------------------------------------------------------------------*/

.txt--white { color: #fff; }
.txt--black { color: #000; }
.txt--red { color: #db1632; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUND STYLE*/
/*----------------------------------------------------------------------------*/
.bg--white { background-color: #fff; }

.bg--properties {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*----------------------------------------------------------------------------*/
/*#PADDING STYLE*/
/*----------------------------------------------------------------------------*/

/*padding top/left/right/bottom --> { p-- } */
.p--0 { padding: 0!important; }

/*padding top/left/right/bottom --> { pt-- / pl-- / pr-- / pb-- } */
.pb--0 { padding-bottom: 0!important; }
.pb--30 { padding-bottom: 30px!important; }
.pb--40 { padding-bottom: 40px!important; }
.pb--50 { padding-bottom: 50px!important; }
.pb--60 { padding-bottom: 60px!important; }
.pb--70 { padding-bottom: 70px!important; }
.pb--80 { padding-bottom: 80px!important; }

.pt--0 { padding-top:    0!important; }
.pt--30 { padding-top:    30px!important; }
.pt--40 { padding-top:    40px!important; }
.pt--50 { padding-top:    50px!important; }
.pt--60 { padding-top:    60px!important; }
.pt--70 { padding-top:    70px!important; }
.pt--80 { padding-top:    80px!important; }

.pl--0 { padding-left:   0px!important; }
.pl--30 { padding-left:   30px!important; }
.pl--40 { padding-left:   40px!important; }
.pl--50 { padding-left:   50px!important; }
.pl--60 { padding-left:   60px!important; }
.pl--70 { padding-left:   70px!important; }
.pl--80 { padding-left:   80px!important; }

.pr--0 { padding-right:  0!important; }
.pr--30 { padding-right:  30px!important; }
.pr--40 { padding-right:  40px!important; }
.pr--50 { padding-right:  50px!important; }
.pr--60 { padding-right:  60px!important; }
.pr--70 { padding-right:  70px!important; }
.pr--80 { padding-right:  80px!important; }

/*padding left-right/top-bottom --> { p-lr-- / p-tb-- } */
.py--0 {
    padding-top:    0!important;
    padding-bottom: 0!important;
}
.px--0 {
    padding-left:  0!important;
    padding-right: 0!important;
}

/*----------------------------------------------------------------------------*/
/*#MARGIN STYLE*/
/*----------------------------------------------------------------------------*/

/*margin top/left/right/bottom --> { m-- } */
.m--0 { margin: 0!important; }
.m--30 { margin: 30px; }
.m--40 { margin: 40px; }
.m--50 { margin: 50px; }
.m--60 { margin: 60px; }
.m--70 { margin: 70px; }
.m--80 { margin: 80px; }
.m--auto {
    margin-left:  auto;
    margin-right: auto;
}
.ml--auto {
    margin-left:  auto;
}
.mr--auto {
    margin-right: auto;
}

/*margin top/left/right/bottom --> { mt-- / ml-- / mr-- / mb-- } */
.mb--0  { margin-bottom: 0!important; }
.mb--30  { margin-bottom: 30px!important; }
.mb--40  { margin-bottom: 40px!important; }
.mb--50  { margin-bottom: 50px!important; }
.mb--60  { margin-bottom: 60px!important; }
.mb--70  { margin-bottom: 70px!important; }
.mb--80  { margin-bottom: 80px!important; }

.mt--0  { margin-top:    0!important; }
.mt--30  { margin-top:    30px!important; }
.mt--40  { margin-top:    40px!important; }
.mt--50  { margin-top:    50px!important; }
.mt--60  { margin-top:    60px!important; }
.mt--70  { margin-top:    70px!important; }
.mt--80  { margin-top:    80px!important; }

.ml--0  { margin-left:   0!important; }
.ml--30  { margin-left:   30px!important; }
.ml--40  { margin-left:   40px!important; }
.ml--50  { margin-left:   50px!important; }
.ml--60  { margin-left:   60px!important; }
.ml--70  { margin-left:   70px!important; }
.ml--80  { margin-left:   80px!important; }

.mr--0  { margin-right:  0!important; }
.mr--30  { margin-right:  30px!important; }
.mr--40  { margin-right:  40px!important; }
.mr--50  { margin-right:  50px!important; }
.mr--60  { margin-right:  60px!important; }
.mr--70  { margin-right:  70px!important; }
.mr--80  { margin-right:  80px!important; }

/*margin left-right/top-bottom --> { m-lr-- / m-tb-- } */
.my--0 {
    margin-top:    0!important;
    margin-bottom: 0!important;
}
.mx--0 {
    margin-left:  0!important;
    margin-right: 0!important;
}

/*----------------------------------------------------------------------------*/
/*#BUTTON STYLE*/
/*----------------------------------------------------------------------------*/

.btn {
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-align: center;
    background-color: #db1632;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 20px 30px;
    border-radius: 0;
    min-width: 150px;
}
.btn:hover {
    color: #fff;
    background-color: #b40b24;
}

/*----------------------------------------------------------------------------*/
/*#GLOBAL STYLE*/
/*----------------------------------------------------------------------------*/

body { 
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    overflow-y: scroll;
    color: #010101;
}

h1,
h2,
h3,
h4,
h5,
h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong { }

h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.625rem; margin-bottom: 20px; }
h4 { font-size: 1.375rem; margin-bottom: 20px; }
h5 { font-size: 1.25rem; margin-bottom: 20px; }
h6 { font-size: 1.125rem; margin-bottom: 20px; }

p,
a,
ul li,
ol li {
    margin-bottom: 20px;
}

p:last-child,
a:last-child,
ul li:last-child,
ol li:last-child {
    margin-bottom: 0;
}

a, a:hover {
    color: inherit;
    display: inline-block;
}

small { font-size: 0.75rem; }

.section-title {
    font-size: 55px;
}

.section-padding{
    padding: 200px 0;
}

/*----------------------------------------------------------------------------*/
/*#FONT SIZE*/
/*----------------------------------------------------------------------------*/

.txt--xs {}
.txt--sm {}
.txt--md {}
.txt--lg { font-size: 4.0625rem; }
.txt--xl {}


/*----------------------------------------------------------------------------*/
/*#FORM INPUT*/
/*----------------------------------------------------------------------------*/

.input-group {
    width: 100%;
}
.form-control {
    width: 100%;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 20px;
    border-radius: 0;
}
.form-control::-webkit-input-placeholder {
    color: #fff;
    font-weight: bold;
}
.form-control::-moz-placeholder {
    color: #fff;
    font-weight: bold;
}
.form-control::placeholder {
    color: #fff;
    font-weight: bold;
}

/*----------------------------------------------------------------------------*/
/*#LP STYLES*/
/*----------------------------------------------------------------------------*/
.social-media-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 26px;
}
.social-media-links .social-item:not(:last-child){
    margin-right: 22px;
}
/* .cliped-section {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
} */
.hero-section {
    height: 100vh;
    position: relative;
}
.hero-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.hero-section .container {
    height: 100%!important;
}
.hero-section .quick-form {
    padding: 50px;
    max-width: 600px;
    background-color: #0b38cb;
    position: absolute;
    bottom: -10%;
    left: 0;
}
.video-section {
    min-height: 100vh;
    position: relative;
    z-index: 2;
}
.video-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/video-bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.videoPopUp {
    padding: 136px 10vw;
    background-color: rgba(23,22,26,.992);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.videoPopUp.active {
    opacity: 1;
    visibility: visible;
}
.videoPopUp .closeVideoPopUp {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.videoPopUp iframe {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.video-activate {
    z-index: 19;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.video-activate .play-btn {
    max-width: 90px;
    margin-bottom: 20px;
}
.video-activate .play-btn img{
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.video-activate .play-btn:hover img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.support-section {
    min-height: 100vh;
    position: relative;
    margin-top: -110px;
}
.support-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/support-bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.quotes-section {
    min-height: 100vh;
    position: relative;
}
.quotes-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/quote-bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.volunteer-section {
    min-height: 100vh;
    position: relative;
}
.volunteer-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/volunteer-bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-section {
    min-height: 100vh;
    position: relative;
}
.footer-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}
.footer-section .floating-text-footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 20px;
}

/*----------------------------------------------------------------------------*/
/*#RESPONSIVE STYLE*/
/*----------------------------------------------------------------------------*/

@media (max-width: 1500px) {
    
}
@media (max-width: 1199px) {
    .hero-section:before,
    .footer-section:before {
		background-position: 75% 50%;
    }
}
@media (max-width: 991px)  {
    [class^='container'] {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 767px)  {
    .section-title {
        font-size: 45px;
    }
    .section-padding {
        padding: 180px 0;
    }
    .hero-section .quick-form {
        padding: 25px;
        bottom: -30%;
    }
    .about-section {
		padding-top: 340px;
		padding-bottom: 100px;
	}
	.hero-section {
		height: 120vh;
	}
	.footer-section {
		min-height: 120vh;
	}
    .hero-section:before,
    .footer-section:before {
		background-color: #f2191b;
		background-image: url('../images/mobile-hero-bg.jpg');
    }
	.hero-section:before {
		background-position: 50% 0;
	}
	.footer-section:before {
		background-position: 50% 100px;
	}
    .footer-section .floating-text-footer {
        text-align: center;
    }
}
@media (max-width: 575px)  {
    .section-title {
        font-size: 30px;
    }
}


@media (min-width: 576px) {
    .mt--sm-0 { margin-top: 0!important; }
    .mt--sm-30 { margin-top: 30px!important; }
    .mt--sm-40 { margin-top: 40px!important; }
    .mt--sm-50 { margin-top: 50px!important; }
    .mt--sm-60 { margin-top: 60px!important; }
    .mt--sm-70 { margin-top: 70px!important; }
    .mt--sm-80 { margin-top: 80px!important; }

    .mb--sm-0 { margin-bottom: 0!important; }
    .mb--sm-30 { margin-bottom: 30px!important; }
    .mb--sm-40 { margin-bottom: 40px!important; }
    .mb--sm-50 { margin-bottom: 50px!important; }
    .mb--sm-60 { margin-bottom: 60px!important; }
    .mb--sm-70 { margin-bottom: 70px!important; }
    .mb--sm-80 { margin-bottom: 80px!important; }

    .ml--sm-0 { margin-left: 0!important; }
    .ml--sm-30 { margin-left: 30px!important; }
    .ml--sm-40 { margin-left: 40px!important; }
    .ml--sm-50 { margin-left: 50px!important; }
    .ml--sm-60 { margin-left: 60px!important; }
    .ml--sm-70 { margin-left: 70px!important; }
    .ml--sm-80 { margin-left: 80px!important; }

    .mr--sm-0 { margin-right: 0!important; }
    .mr--sm-30 { margin-right: 30px!important; }
    .mr--sm-40 { margin-right: 40px!important; }
    .mr--sm-50 { margin-right: 50px!important; }
    .mr--sm-60 { margin-right: 60px!important; }
    .mr--sm-70 { margin-right: 70px!important; }
    .mr--sm-80 { margin-right: 80px!important; }

    .pb--sm-0 { padding-bottom: 0!important; }
    .pb--sm-30 { padding-bottom: 30px!important; }
    .pb--sm-40 { padding-bottom: 40px!important; }
    .pb--sm-50 { padding-bottom: 50px!important; }
    .pb--sm-60 { padding-bottom: 60px!important; }
    .pb--sm-70 { padding-bottom: 70px!important; }
    .pb--sm-80 { padding-bottom: 80px!important; }

    .pt--sm-0 { padding-top:    0!important; }
    .pt--sm-30 { padding-top:    30px!important; }
    .pt--sm-40 { padding-top:    40px!important; }
    .pt--sm-50 { padding-top:    50px!important; }
    .pt--sm-60 { padding-top:    60px!important; }
    .pt--sm-70 { padding-top:    70px!important; }
    .pt--sm-80 { padding-top:    80px!important; }

    .pl--sm-0 { padding-left:   0px!important; }
    .pl--sm-30 { padding-left:   30px!important; }
    .pl--sm-40 { padding-left:   40px!important; }
    .pl--sm-50 { padding-left:   50px!important; }
    .pl--sm-60 { padding-left:   60px!important; }
    .pl--sm-70 { padding-left:   70px!important; }
    .pl--sm-80 { padding-left:   80px!important; }

    .pr--sm-0 { padding-right:  0!important; }
    .pr--sm-30 { padding-right:  30px!important; }
    .pr--sm-40 { padding-right:  40px!important; }
    .pr--sm-50 { padding-right:  50px!important; }
    .pr--sm-60 { padding-right:  60px!important; }
    .pr--sm-70 { padding-right:  70px!important; }
    .pr--sm-80 { padding-right:  80px!important; }

    .txt--sm-center  { text-align: center;}
    .txt--sm-left    { text-align: left; }
}
@media (min-width: 768px) {
    .mt--md-0 { margin-top: 0!important; }
    .mt--md-30 { margin-top: 30px!important; }
    .mt--md-40 { margin-top: 40px!important; }
    .mt--md-50 { margin-top: 50px!important; }
    .mt--md-60 { margin-top: 60px!important; }
    .mt--md-70 { margin-top: 70px!important; }
    .mt--md-80 { margin-top: 80px!important; }

    .mb--md-0 { margin-bottom: 0!important; }
    .mb--md-30 { margin-bottom: 30px!important; }
    .mb--md-40 { margin-bottom: 40px!important; }
    .mb--md-50 { margin-bottom: 50px!important; }
    .mb--md-60 { margin-bottom: 60px!important; }
    .mb--md-70 { margin-bottom: 70px!important; }
    .mb--md-80 { margin-bottom: 80px!important; }

    .ml--md-0 { margin-left: 0!important; }
    .ml--md-30 { margin-left: 30px!important; }
    .ml--md-40 { margin-left: 40px!important; }
    .ml--md-50 { margin-left: 50px!important; }
    .ml--md-60 { margin-left: 60px!important; }
    .ml--md-70 { margin-left: 70px!important; }
    .ml--md-80 { margin-left: 80px!important; }

    .mr--md-0 { margin-right: 0!important; }
    .mr--md-30 { margin-right: 30px!important; }
    .mr--md-40 { margin-right: 40px!important; }
    .mr--md-50 { margin-right: 50px!important; }
    .mr--md-60 { margin-right: 60px!important; }
    .mr--md-70 { margin-right: 70px!important; }
    .mr--md-80 { margin-right: 80px!important; }

    .pb--md-0 { padding-bottom: 0!important; }
    .pb--md-30 { padding-bottom: 30px!important; }
    .pb--md-40 { padding-bottom: 40px!important; }
    .pb--md-50 { padding-bottom: 50px!important; }
    .pb--md-60 { padding-bottom: 60px!important; }
    .pb--md-70 { padding-bottom: 70px!important; }
    .pb--md-80 { padding-bottom: 80px!important; }

    .pt--md-0 { padding-top:    0!important; }
    .pt--md-30 { padding-top:    30px!important; }
    .pt--md-40 { padding-top:    40px!important; }
    .pt--md-50 { padding-top:    50px!important; }
    .pt--md-60 { padding-top:    60px!important; }
    .pt--md-70 { padding-top:    70px!important; }
    .pt--md-80 { padding-top:    80px!important; }

    .pl--md-0 { padding-left:   0px!important; }
    .pl--md-30 { padding-left:   30px!important; }
    .pl--md-40 { padding-left:   40px!important; }
    .pl--md-50 { padding-left:   50px!important; }
    .pl--md-60 { padding-left:   60px!important; }
    .pl--md-70 { padding-left:   70px!important; }
    .pl--md-80 { padding-left:   80px!important; }

    .pr--md-0 { padding-right:  0!important; }
    .pr--md-30 { padding-right:  30px!important; }
    .pr--md-40 { padding-right:  40px!important; }
    .pr--md-50 { padding-right:  50px!important; }
    .pr--md-60 { padding-right:  60px!important; }
    .pr--md-70 { padding-right:  70px!important; }
    .pr--md-80 { padding-right:  80px!important; }
    .txt--md-center  { text-align: center; }
    .txt--md-left    { text-align: left; }
}
@media (min-width: 992px) {
    .mt--lg-0 { margin-top: 0!important; }
    .mt--lg-30 { margin-top: 30px!important; }
    .mt--lg-40 { margin-top: 40px!important; }
    .mt--lg-50 { margin-top: 50px!important; }
    .mt--lg-60 { margin-top: 60px!important; }
    .mt--lg-70 { margin-top: 70px!important; }
    .mt--lg-80 { margin-top: 80px!important; }

    .mb--lg-0 { margin-bottom: 0!important; }
    .mb--lg-30 { margin-bottom: 30px!important; }
    .mb--lg-40 { margin-bottom: 40px!important; }
    .mb--lg-50 { margin-bottom: 50px!important; }
    .mb--lg-60 { margin-bottom: 60px!important; }
    .mb--lg-70 { margin-bottom: 70px!important; }
    .mb--lg-80 { margin-bottom: 80px!important; }

    .ml--lg-0 { margin-left: 0!important; }
    .ml--lg-30 { margin-left: 30px!important; }
    .ml--lg-40 { margin-left: 40px!important; }
    .ml--lg-50 { margin-left: 50px!important; }
    .ml--lg-60 { margin-left: 60px!important; }
    .ml--lg-70 { margin-left: 70px!important; }
    .ml--lg-80 { margin-left: 80px!important; }

    .mr--lg-0 { margin-right: 0!important; }
    .mr--lg-30 { margin-right: 30px!important; }
    .mr--lg-40 { margin-right: 40px!important; }
    .mr--lg-50 { margin-right: 50px!important; }
    .mr--lg-60 { margin-right: 60px!important; }
    .mr--lg-70 { margin-right: 70px!important; }
    .mr--lg-80 { margin-right: 80px!important; }

    .pb--lg-0 { padding-bottom: 0!important; }
    .pb--lg-30 { padding-bottom: 30px!important; }
    .pb--lg-40 { padding-bottom: 40px!important; }
    .pb--lg-50 { padding-bottom: 50px!important; }
    .pb--lg-60 { padding-bottom: 60px!important; }
    .pb--lg-70 { padding-bottom: 70px!important; }
    .pb--lg-80 { padding-bottom: 80px!important; }

    .pt--lg-0 { padding-top:    0!important; }
    .pt--lg-30 { padding-top:    30px!important; }
    .pt--lg-40 { padding-top:    40px!important; }
    .pt--lg-50 { padding-top:    50px!important; }
    .pt--lg-60 { padding-top:    60px!important; }
    .pt--lg-70 { padding-top:    70px!important; }
    .pt--lg-80 { padding-top:    80px!important; }

    .pl--lg-0 { padding-left:   0px!important; }
    .pl--lg-30 { padding-left:   30px!important; }
    .pl--lg-40 { padding-left:   40px!important; }
    .pl--lg-50 { padding-left:   50px!important; }
    .pl--lg-60 { padding-left:   60px!important; }
    .pl--lg-70 { padding-left:   70px!important; }
    .pl--lg-80 { padding-left:   80px!important; }

    .pr--lg-0 { padding-right:  0!important; }
    .pr--lg-30 { padding-right:  30px!important; }
    .pr--lg-40 { padding-right:  40px!important; }
    .pr--lg-50 { padding-right:  50px!important; }
    .pr--lg-60 { padding-right:  60px!important; }
    .pr--lg-70 { padding-right:  70px!important; }
    .pr--lg-80 { padding-right:  80px!important; }

    .txt--lg-center  { text-align: center; }
    .txt--lg-left    { text-align: left; }
}
@media (min-width: 1200px) {
    .mt--xl-0 { margin-top: 0!important; }
    .mt--xl-30 { margin-top: 30px!important; }
    .mt--xl-40 { margin-top: 40px!important; }
    .mt--xl-50 { margin-top: 50px!important; }
    .mt--xl-60 { margin-top: 60px!important; }
    .mt--xl-70 { margin-top: 70px!important; }
    .mt--xl-80 { margin-top: 80px!important; }

    .mb--xl-0 { margin-bottom: 0!important; }
    .mb--xl-30 { margin-bottom: 30px!important; }
    .mb--xl-40 { margin-bottom: 40px!important; }
    .mb--xl-50 { margin-bottom: 50px!important; }
    .mb--xl-60 { margin-bottom: 60px!important; }
    .mb--xl-70 { margin-bottom: 70px!important; }
    .mb--xl-80 { margin-bottom: 80px!important; }

    .ml--xl-0 { margin-left: 0!important; }
    .ml--xl-30 { margin-left: 30px!important; }
    .ml--xl-40 { margin-left: 40px!important; }
    .ml--xl-50 { margin-left: 50px!important; }
    .ml--xl-60 { margin-left: 60px!important; }
    .ml--xl-70 { margin-left: 70px!important; }
    .ml--xl-80 { margin-left: 80px!important; }

    .mr--xl-0 { margin-right: 0!important; }
    .mr--xl-30 { margin-right: 30px!important; }
    .mr--xl-40 { margin-right: 40px!important; }
    .mr--xl-50 { margin-right: 50px!important; }
    .mr--xl-60 { margin-right: 60px!important; }
    .mr--xl-70 { margin-right: 70px!important; }
    .mr--xl-80 { margin-right: 80px!important; }

    .pb--xl-0 { padding-bottom: 0!important; }
    .pb--xl-30 { padding-bottom: 30px!important; }
    .pb--xl-40 { padding-bottom: 40px!important; }
    .pb--xl-50 { padding-bottom: 50px!important; }
    .pb--xl-60 { padding-bottom: 60px!important; }
    .pb--xl-70 { padding-bottom: 70px!important; }
    .pb--xl-80 { padding-bottom: 80px!important; }

    .pt--xl-0 { padding-top:    0!important; }
    .pt--xl-30 { padding-top:    30px!important; }
    .pt--xl-40 { padding-top:    40px!important; }
    .pt--xl-50 { padding-top:    50px!important; }
    .pt--xl-60 { padding-top:    60px!important; }
    .pt--xl-70 { padding-top:    70px!important; }
    .pt--xl-80 { padding-top:    80px!important; }

    .pl--xl-0 { padding-left:   0px!important; }
    .pl--xl-30 { padding-left:   30px!important; }
    .pl--xl-40 { padding-left:   40px!important; }
    .pl--xl-50 { padding-left:   50px!important; }
    .pl--xl-60 { padding-left:   60px!important; }
    .pl--xl-70 { padding-left:   70px!important; }
    .pl--xl-80 { padding-left:   80px!important; }

    .pr--xl-0 { padding-right:  0!important; }
    .pr--xl-30 { padding-right:  30px!important; }
    .pr--xl-40 { padding-right:  40px!important; }
    .pr--xl-50 { padding-right:  50px!important; }
    .pr--xl-60 { padding-right:  60px!important; }
    .pr--xl-70 { padding-right:  70px!important; }
    .pr--xl-80 { padding-right:  80px!important; }

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

/*media query for IE 10 and above*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {}
