.has-float-label{display:block;position:relative}.has-float-label label,.has-float-label>span{position:absolute;cursor:text;font-size:75%;opacity:1;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s;top:-.5em;left:.75rem;z-index:3;line-height:1;padding:0 1px}.has-float-label label::after,.has-float-label>span::after{content:" ";display:block;position:absolute;background:#fff;height:2px;top:50%;left:-.2em;right:-.2em;z-index:-1}.has-float-label .form-control::-webkit-input-placeholder{opacity:1;-webkit-transition:all .2s;transition:all .2s}.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder{opacity:0}.has-float-label .form-control:-moz-placeholder-shown:not(:focus)+*{font-size:150%;opacity:.5;top:.3em}.has-float-label .form-control:-ms-input-placeholder:not(:focus)+*{font-size:150%;opacity:.5;top:.3em}.has-float-label .form-control:placeholder-shown:not(:focus)+*{font-size:150%;opacity:.5;top:.3em}.input-group .has-float-label{display:table-cell}.input-group .has-float-label .form-control{border-radius:.25rem}.input-group .has-float-label:not(:last-child),.input-group .has-float-label:not(:last-child) .form-control{border-bottom-right-radius:0;border-top-right-radius:0;border-right:0}.input-group .has-float-label:not(:first-child),.input-group .has-float-label:not(:first-child) .form-control{border-bottom-left-radius:0;border-top-left-radius:0}
/*
 * simplyScroll 2 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 *
 * Copyright (c) 2009-2012 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT and GPL licenses.
 *
 * Last revised: 31/01/2012
 *
 */

/* Default/Master classes 

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/

.simply-scroll-container { /* Container DIV - automatically generated */
	position: relative;
}

	.simply-scroll-clip { /* Clip DIV - automatically generated */
		position: relative;
		overflow: hidden;
	}

	.simply-scroll-list { /* UL/OL/DIV - the element that simplyScroll is inited on */
		overflow: hidden;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
		.simply-scroll-list li {
			padding: 0;
			margin: 0;
			list-style: none;
		}
	
		.simply-scroll-list li img {
			border: none;
			display: block;
		}
	
	.simply-scroll-btn {
		position: absolute;
		background-image: url(../buttons.html);
		width: 42px;
		height: 44px;
		z-index:3;
		cursor: pointer;
	}
	
	.simply-scroll-btn-left {
		left: 6px;
		bottom: 6px;
		background-position: 0 -44px;
	}
	.simply-scroll-btn-left.disabled {
		background-position: 0 0 !important;
	}
	.simply-scroll-btn-left:hover, .simply-scroll-btn-left:focus {
		background-position: 0 -88px;
	}
	
	.simply-scroll-btn-right {
		right: 6px;
		bottom: 6px;
		background-position: -84px -44px;
	}
	.simply-scroll-btn-right.disabled {
		background-position: -84px 0 !important;
	}
	.simply-scroll-btn-right:hover, .simply-scroll-btn-right:focus {
		background-position: -84px -88px;
	}
	
	.simply-scroll-btn-up {
		right: 6px;
		top: 6px;
		background-position: -126px -44px;
	}
	.simply-scroll-btn-up.disabled {
		background-position: -126px 0 !important;
	}
	.simply-scroll-btn-up:hover, .simply-scroll-btn-up:focus {
		background-position: -126px -88px;
	}
	
	.simply-scroll-btn-down {
		right: 6px;
		bottom: 6px;
		background-position: -42px -44px;
	}
	.simply-scroll-btn-down.disabled {
		background-position: -42px 0 !important;
	}
	.simply-scroll-btn-down:hover, .simply-scroll-btn-down:focus {
		background-position: -42px -88px;
	}
	
	.simply-scroll-btn-pause {
		right: 6px;
		bottom: 6px;
		background-position: -168px -44px;
	}
	.simply-scroll-btn-pause:hover, .simply-scroll-btn-pause:focus {
		background-position: -168px -88px;
	}
	
	.simply-scroll-btn-pause.active {
		background-position: -84px -44px;
	}
	.simply-scroll-btn-pause.active:hover, .simply-scroll-btn-pause.active:focus {
		background-position: -84px -88px;
	}

/* Custom class modifications - override classees

.simply-scroll is default

*/

.simply-scroll { /* Customisable base class for style override DIV */
	width: 576px;
	height: 200px;
	margin-bottom: 1em;
}

	.simply-scroll .simply-scroll-clip {
		width: 576px;
		height: 200px;
	}
	
		.simply-scroll .simply-scroll-list {}
		
		.simply-scroll .simply-scroll-list li {
			float: left;
			width: 290px;
			height: 200px;
		}
		.simply-scroll .simply-scroll-list li img {}
	
	.simply-scroll .simply-scroll-btn {}
	
	.simply-scroll .simply-scroll-btn-left {}
	.simply-scroll .simply-scroll-btn-left.disabled {}
	.simply-scroll .simply-scroll-btn-left:hover {}
	
	.simply-scroll .simply-scroll-btn-right {}
	.simply-scroll .simply-scroll-btn-right.disabled {}
	.simply-scroll .simply-scroll-btn-right:hover {}
	
	.simply-scroll .simply-scroll-btn-up {}
	.simply-scroll .simply-scroll-btn-up.disabled {}
	.simply-scroll .simply-scroll-btn-up:hover {}
	
	.simply-scroll .simply-scroll-btn-down {}
	.simply-scroll .simply-scroll-btn-down.disabled {}
	.simply-scroll .simply-scroll-btn-down:hover {}
	


/* Vertical scroller example */

.vert { /* wider than clip to position buttons to side */
	width: 340px;
	height: 400px;
	margin-bottom: 1.5em;
}

	.vert .simply-scroll-clip {
		width: 290px;
		height: 400px;
	}
	
		.vert .simply-scroll-list {}
		
		.vert .simply-scroll-list li {
			width: 290px;
			height: 200px;
		}
		.vert .simply-scroll-list li img {}
	
	.vert .simply-scroll-btn {}

	.vert .simply-scroll-btn-up { /* modified btn pos */
		right: 0;
		top: 0;
	}
	.vert .simply-scroll-btn-up.disabled {}
	.vert .simply-scroll-btn-up:hover {}
	
	.vert .simply-scroll-btn-down { /* modified btn pos */
		right: 0;
		top: 52px;
	}
	.vert .simply-scroll-btn-down.disabled {}
	.vert .simply-scroll-btn-down:hover {}
	
	/* NOTE left-right classes wouldn't be needed on vertical scroller */


.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #888;
          box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../flags.html");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("../flags%402x.html"); } }

.iti__flag.iti__np {
  background-color: transparent; }

@charset "UTF-8";
/*1.5rem , 3.75rem*/
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #A11CF2;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #89FFB8;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #111;
  --bs-secondary: #A11CF2;
  --bs-success: #89FFB8;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #E5E8F0;
  --bs-dark: #272742;
  --bs-font-sans-serif: "Euclid Circular A", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --bs-font-monospace: "Euclid Circular A", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(17, 17, 17, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.07;
  color: #272742;
}

h1, .h1 {
  font-size: calc(1.6878rem + 5.2536vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 5.628rem;
  }
}

h2, .h2 {
  font-size: calc(1.437666354rem + 2.251996248vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 3.12666354rem;
  }
}

h3, .h3 {
  font-size: calc(1.28915rem + 0.4698vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.6415rem;
  }
}

h4, .h4 {
  font-size: calc(1.2657rem + 0.1884vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.407rem;
  }
}

h5, .h5 {
  font-size: 1.1725rem;
}

h6, .h6 {
  font-size: 0.938rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #111;
  text-decoration: underline;
}
a:hover {
  color: #0e0e0e;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: calc(1.2812708rem + 0.3752496vw);
  font-weight: 300;
}
@media (min-width: 1200px) {
  .lead {
    font-size: 1.562708rem;
  }
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.07;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.07;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.07;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.07;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.07;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.07;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.1725rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(17, 17, 17, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(17, 17, 17, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(17, 17, 17, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
          box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfcfcf;
  --bs-table-striped-bg: #c6c6c6;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #bcbcbc;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #c1c1c1;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #bcbcbc;
}

.table-secondary {
  --bs-table-bg: #ecd2fc;
  --bs-table-striped-bg: #e1c8f0;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #d6bfe5;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #dcc4ea;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #d6bfe5;
}

.table-success {
  --bs-table-bg: #e7fff1;
  --bs-table-striped-bg: #dcf3e6;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #d2e7db;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #d7ede0;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #d2e7db;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c6e9f0;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #bcdde5;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #c1e3ea;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #bcdde5;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f3e8c4;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #e7dcba;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #ede2bf;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #e7dcba;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccdd0;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #e1c3c6;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #e7c8cb;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #e1c3c6;
}

.table-light {
  --bs-table-bg: #E5E8F0;
  --bs-table-striped-bg: #dadde5;
  --bs-table-striped-color: #111;
  --bs-table-active-bg: #d0d3da;
  --bs-table-active-color: #111;
  --bs-table-hover-bg: #d5d8df;
  --bs-table-hover-color: #111;
  color: #111;
  border-color: #d0d3da;
}

.table-dark {
  --bs-table-bg: #272742;
  --bs-table-striped-bg: #32324b;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #3d3d55;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #373750;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #3d3d55;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.6667rem + 1px);
  padding-bottom: calc(0.6667rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(1.08rem + 1px);
  padding-bottom: calc(1.08rem + 1px);
  font-size: 1.2194rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.82075rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.6667rem 2rem;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #888888;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.6667rem 2rem;
  margin: -0.6667rem -2rem;
  -webkit-margin-end: 2rem;
          margin-inline-end: 2rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.6667rem 2rem;
  margin: -0.6667rem -2rem;
  -webkit-margin-end: 2rem;
          margin-inline-end: 2rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.6667rem 2rem;
  margin: -0.6667rem -2rem;
  -webkit-margin-end: 2rem;
          margin-inline-end: 2rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.6667rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.82075rem;
  border-radius: 0.2rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 2.16rem + 2px);
  padding: 1.08rem 1.5rem;
  font-size: 1.2194rem;
  border-radius: 0.315rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 1.08rem 1.5rem;
  margin: -1.08rem -1.5rem;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
}
.form-control-lg::file-selector-button {
  padding: 1.08rem 1.5rem;
  margin: -1.08rem -1.5rem;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 1.08rem 1.5rem;
  margin: -1.08rem -1.5rem;
  -webkit-margin-end: 1.5rem;
          margin-inline-end: 1.5rem;
}

textarea.form-control {
  min-height: calc(1.5em + 1.3334rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 2.16rem + 2px);
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.6667rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.6667rem 6rem 0.6667rem 2rem;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-select:focus {
  border-color: #888888;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 2rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.82075rem;
}

.form-select-lg {
  padding-top: 1.08rem;
  padding-bottom: 1.08rem;
  padding-left: 1.5rem;
  font-size: 1.2194rem;
}

.form-check {
  display: block;
  min-height: 1.407rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #888888;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}
.form-check-input:checked {
  background-color: #111;
  border-color: #111;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #111;
  border-color: #111;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  -o-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23888888'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #111;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b8b8b8;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #111;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b8b8b8;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 2rem;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 2rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
      transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
      -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6667rem 2rem;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 1.08rem 1.5rem;
  font-size: 1.2194rem;
  border-radius: 0.315rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.82075rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 8rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #89FFB8;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.82075rem;
  color: #111;
  background-color: rgba(137, 255, 184, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #89FFB8;
  padding-right: calc(1.5em + 1.3334rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2389FFB8' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.33335rem) center;
  background-size: calc(0.75em + 0.6667rem) calc(0.75em + 0.6667rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #89FFB8;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1.3334rem);
  background-position: top calc(0.375em + 0.33335rem) right calc(0.375em + 0.33335rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #89FFB8;
  padding-right: 11rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2389FFB8' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 2rem center, center right 6rem;
  background-size: 16px 12px, calc(0.75em + 0.6667rem) calc(0.75em + 0.6667rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #89FFB8;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #89FFB8;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #89FFB8;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #89FFB8;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.82075rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 1.3334rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.33335rem) center;
  background-size: calc(0.75em + 0.6667rem) calc(0.75em + 0.6667rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1.3334rem);
  background-position: top calc(0.375em + 0.33335rem) right calc(0.375em + 0.33335rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
  padding-right: 11rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 2rem center, center right 6rem;
  background-size: 16px 12px, calc(0.75em + 0.6667rem) calc(0.75em + 0.6667rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.6667rem 2rem;
  font-size: 0.938rem;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #111;
  border-color: #111;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0e0e0e;
  border-color: #0e0e0e;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #0e0e0e;
  border-color: #0e0e0e;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(53, 53, 53, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(53, 53, 53, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0e0e0e;
  border-color: #0d0d0d;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(53, 53, 53, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(53, 53, 53, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #111;
  border-color: #111;
}

.btn-secondary {
  color: #fff;
  background-color: #A11CF2;
  border-color: #A11CF2;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #8918ce;
  border-color: #8116c2;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #8918ce;
  border-color: #8116c2;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(175, 62, 244, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(175, 62, 244, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #8116c2;
  border-color: #7915b6;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(175, 62, 244, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(175, 62, 244, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #A11CF2;
  border-color: #A11CF2;
}

.btn-success {
  color: #111;
  background-color: #89FFB8;
  border-color: #89FFB8;
}
.btn-success:hover {
  color: #111;
  background-color: #9bffc3;
  border-color: #95ffbf;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #111;
  background-color: #9bffc3;
  border-color: #95ffbf;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(119, 219, 159, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(119, 219, 159, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #111;
  background-color: #a1ffc6;
  border-color: #95ffbf;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(119, 219, 159, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(119, 219, 159, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #111;
  background-color: #89FFB8;
  border-color: #89FFB8;
}

.btn-info {
  color: #111;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #111;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #111;
  background-color: #31d2f2;
  border-color: #25cff2;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(14, 174, 207, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(14, 174, 207, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #111;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(14, 174, 207, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(14, 174, 207, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #111;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #111;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #111;
  background-color: #ffca2c;
  border-color: #ffc720;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(219, 167, 9, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(219, 167, 9, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #111;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(219, 167, 9, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(219, 167, 9, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #111;
  background-color: #E5E8F0;
  border-color: #E5E8F0;
}
.btn-light:hover {
  color: #111;
  background-color: #e9ebf2;
  border-color: #e8eaf2;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #111;
  background-color: #e9ebf2;
  border-color: #e8eaf2;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(197, 200, 207, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(197, 200, 207, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #111;
  background-color: #eaedf3;
  border-color: #e8eaf2;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(197, 200, 207, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(197, 200, 207, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #111;
  background-color: #E5E8F0;
  border-color: #E5E8F0;
}

.btn-dark {
  color: #fff;
  background-color: #272742;
  border-color: #272742;
}
.btn-dark:hover {
  color: #fff;
  background-color: #212138;
  border-color: #1f1f35;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #212138;
  border-color: #1f1f35;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(71, 71, 94, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(71, 71, 94, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1f1f35;
  border-color: #1d1d32;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(71, 71, 94, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(71, 71, 94, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #272742;
  border-color: #272742;
}

.btn-outline-primary {
  color: #111;
  border-color: #111;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #111;
  border-color: #111;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #111;
  border-color: #111;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #111;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #A11CF2;
  border-color: #A11CF2;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #A11CF2;
  border-color: #A11CF2;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(161, 28, 242, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(161, 28, 242, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #A11CF2;
  border-color: #A11CF2;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(161, 28, 242, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(161, 28, 242, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #A11CF2;
  background-color: transparent;
}

.btn-outline-success {
  color: #89FFB8;
  border-color: #89FFB8;
}
.btn-outline-success:hover {
  color: #111;
  background-color: #89FFB8;
  border-color: #89FFB8;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #111;
  background-color: #89FFB8;
  border-color: #89FFB8;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(137, 255, 184, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #89FFB8;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #111;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #111;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #E5E8F0;
  border-color: #E5E8F0;
}
.btn-outline-light:hover {
  color: #111;
  background-color: #E5E8F0;
  border-color: #E5E8F0;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(229, 232, 240, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(229, 232, 240, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #111;
  background-color: #E5E8F0;
  border-color: #E5E8F0;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(229, 232, 240, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(229, 232, 240, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #E5E8F0;
  background-color: transparent;
}

.btn-outline-dark {
  color: #272742;
  border-color: #272742;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #272742;
  border-color: #272742;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(39, 39, 66, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(39, 39, 66, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #272742;
  border-color: #272742;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(39, 39, 66, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(39, 39, 66, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #272742;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #111;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0e0e0e;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 1.08rem 1.5rem;
  font-size: 1.2194rem;
  border-radius: 0.315rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.82075rem;
  border-radius: 0.2rem;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #111;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.28895rem;
  padding-bottom: 0.28895rem;
  margin-right: 1rem;
  font-size: 1.2194rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.2194rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem;
          box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 1.094rem;
    padding-left: 1.094rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 1.094rem;
    padding-left: 1.094rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.094rem;
    padding-left: 1.094rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 1.094rem;
    padding-left: 1.094rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 1.094rem;
    padding-left: 1.094rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 1.094rem;
  padding-left: 1.094rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(17, 17, 17, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(17, 17, 17, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(17, 17, 17, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(17, 17, 17, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(17, 17, 17, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(17, 17, 17, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(17, 17, 17, 0.55);
  border-color: rgba(17, 17, 17, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M3.75 15H26.25' stroke='%23272742' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M3.75 7.5H26.25' stroke='%23272742' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M3.75 22.5H26.25' stroke='%23272742' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(17, 17, 17, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(17, 17, 17, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(17, 17, 17, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(17, 17, 17, 0.03);
  border-bottom: 1px solid rgba(17, 17, 17, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(17, 17, 17, 0.03);
  border-top: 1px solid rgba(17, 17, 17, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.938rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0f0f0f;
  background-color: #e7e7e7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(17, 17, 17, 0.125);
          box-shadow: inset 0 -1px 0 rgba(17, 17, 17, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f0f0f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CCCCCC'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #888888;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(17, 17, 17, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "../index.html") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #111;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #0e0e0e;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #0e0e0e;
  background-color: #e9ecef;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(17, 17, 17, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #111;
  border-color: #111;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.2194rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.315rem;
  border-bottom-left-radius: 0.315rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.315rem;
  border-bottom-right-radius: 0.315rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.82075rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.7035rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #111;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0.315rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #111;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.315rem - 1px);
  border-top-right-radius: calc(0.315rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.315rem - 1px);
  border-bottom-left-radius: calc(0.315rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.82075rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0.315rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(17, 17, 17, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(17, 17, 17, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(17, 17, 17, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(17, 17, 17, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.938rem;
  color: #272742;
  background-color: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
  border-top-left-radius: calc(0.315rem - 1px);
  border-top-right-radius: calc(0.315rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #111;
}
.link-primary:hover, .link-primary:focus {
  color: #0e0e0e;
}

.link-secondary {
  color: #A11CF2;
}
.link-secondary:hover, .link-secondary:focus {
  color: #8116c2;
}

.link-success {
  color: #89FFB8;
}
.link-success:hover, .link-success:focus {
  color: #a1ffc6;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #E5E8F0;
}
.link-light:hover, .link-light:focus {
  color: #eaedf3;
}

.link-dark {
  color: #272742;
}
.link-dark:hover, .link-dark:focus {
  color: #1f1f35;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

.d-none {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.15) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(17, 17, 17, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(17, 17, 17, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(17, 17, 17, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(17, 17, 17, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
      -ms-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
      -ms-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #111 !important;
}

.border-secondary {
  border-color: #A11CF2 !important;
}

.border-success {
  border-color: #89FFB8 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #E5E8F0 !important;
}

.border-dark {
  border-color: #272742 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

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

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

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

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

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

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

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

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

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

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

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

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

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

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

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

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.6878rem + 5.2536vw) !important;
}

.fs-2 {
  font-size: calc(1.437666354rem + 2.251996248vw) !important;
}

.fs-3 {
  font-size: calc(1.28915rem + 0.4698vw) !important;
}

.fs-4 {
  font-size: calc(1.2657rem + 0.1884vw) !important;
}

.fs-5 {
  font-size: 1.1725rem !important;
}

.fs-6 {
  font-size: 0.938rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

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

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #111 !important;
}

.text-secondary {
  color: #A11CF2 !important;
}

.text-success {
  color: #89FFB8 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #E5E8F0 !important;
}

.text-dark {
  color: #272742 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(17, 17, 17, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #111 !important;
}

.bg-secondary {
  background-color: #A11CF2 !important;
}

.bg-success {
  background-color: #89FFB8 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #E5E8F0 !important;
}

.bg-dark {
  background-color: #272742 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.315rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

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

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

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

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

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

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

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

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

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

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

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

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

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

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

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

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

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

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

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

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

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

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

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

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

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

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

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

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

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

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

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

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

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

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

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

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

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

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

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

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

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

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

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

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

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

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

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

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

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

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

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

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

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

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

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

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

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

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

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

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

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

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

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

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

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

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

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

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

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

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

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

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

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

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

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

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

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

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

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

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

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

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

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

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 5.628rem !important;
  }

  .fs-2 {
    font-size: 3.12666354rem !important;
  }

  .fs-3 {
    font-size: 1.6415rem !important;
  }

  .fs-4 {
    font-size: 1.407rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

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

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

  .d-print-none {
    display: none !important;
  }
}
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../owl.video.play.html") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 575.98px) {
  .row > *,
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    padding-left: 30px;
    padding-right: 30px;
  }

  .row {
    margin-left: -30px;
    margin-right: -30px;
  }
}
a {
  text-decoration: underline;
}

img:not(.b-slider__img) {
  max-width: 100%;
  height: auto;
}

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

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.bg-white {
  background: #fff;
}

.bg-purpledark {
  background: #D4B3FF;
}

.purple {
  color: #A11CF2;
}

/* Normal link */
a.normal {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-decoration: none;
}

ul.default-list li {
  margin-bottom: 20px;
}

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

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

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

/* Typography */
.c2 {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  font-weight: 400;
}

.p2 {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #666666;
  text-align: center;
}
.p2.dark {
  color: #272742;
}
@media (min-width: 576px) {
  .p2 {
    font-size: 1.25rem;
    line-height: 2.1875rem;
    margin-bottom: 2.8125rem;
    text-align: left;
  }
}

.p3 {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.p3.regular {
  font-weight: 400;
}

.p3-regular {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}

.p3-semibold {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
}

.c1-desktop {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .c1-desktop {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}

.p1-desktop {
  font-size: 1.5625rem;
  line-height: 2.5rem;
}

.p1-responsive {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
@media (min-width: 768px) {
  .p1-responsive {
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
}

.p2-desktop {
  font-size: 1.25rem;
  line-height: 2.1875rem;
  font-weight: 400;
}

.p2-responsive {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
@media (min-width: 768px) {
  .p2-responsive {
    font-size: 1.25rem;
    line-height: 2.1875rem;
    font-weight: 400;
  }
}

@media (min-width: 768px) {
  .h1-small {
    font-size: 4.0625rem;
    line-height: 4.6875rem;
    font-weight: 700;
  }
}

.h2-desktop {
  font-size: 3.125rem;
  line-height: 3.75rem;
  font-weight: 600;
}

.h2-responsive {
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .h2-responsive {
    font-size: 3.125rem;
    line-height: 3.75rem;
    font-weight: 600;
  }
}

.h3-desktop {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
}

.h3-mobile {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 600;
}

.h4-desktop {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 600;
}

.p4 {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.radius-5 {
  border-radius: 5px;
}

.mt-12 {
  margin-top: 0.75rem !important;
}

.mt-30 {
  margin-top: 1.875rem !important;
}

.mt-40 {
  margin-top: 2.5rem !important;
}

.mt-45 {
  margin-top: 2.8125rem !important;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 6.25rem;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

@media (max-width: 575.98px) {
  .mb-sm-20 {
    margin-bottom: 1.25rem !important;
  }
}

@media (max-width: 767.98px) {
  .mb-md-60 {
    margin-bottom: 3.75rem !important;
  }
}

@media (max-width: 767.98px) {
  .mt-md-20 {
    margin-top: 1.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .mb-sm-50 {
    margin-bottom: 3.125rem !important;
  }
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}
.pt-20 {
  padding-top: 1.25rem !important;
}

.p-10 {
  padding: 0.625rem;
}

.pt-25 {
  padding-top: 1.5625rem !important;
}

.pt-40 {
  padding-top: 2.5rem !important;
}

.pt-50 {
  padding-top: 3.125rem !important;
}

.pt-55 {
  padding-top: 3.4375rem !important;
}

.pt-60 {
  padding-top: 3.75rem !important;
}

.pt-68 {
  padding-top: 4.25rem !important;
}

.pt-75 {
  padding-top: 4.6875rem;
}

.pt-80 {
  padding-top: 5rem;
}

.pt-90 {
  padding-top: 5.625rem !important;
}

.pt-100 {
  padding-top: 6.25rem;
}

.pt-114 {
  padding-top: 7.125rem !important;
}

.pt-150 {
  padding-top: 9.375rem !important;
}

.pb-40 {
  padding-bottom: 2.5rem !important;
}

.pb-50 {
  padding-bottom: 3.125rem !important;
}

.pb-65 {
  padding-bottom: 4.0625rem !important;
}

.pb-75 {
  padding-bottom: 4.6875rem !important;
}

.pb-100 {
  padding-bottom: 6.25rem;
}

.pb-110 {
  padding-bottom: 6.875rem;
}

.pb-120 {
  padding-bottom: 7.5rem !important;
}

.pb-140 {
  padding-bottom: 8.75rem !important;
}

.pb-150 {
  padding-bottom: 9.375rem !important;
}

@media (max-width: 575.98px) {
  .pt-sm-50 {
    padding-top: 3.125rem !important;
  }
}

@media (max-width: 575.98px) {
  .pt-sm-80 {
    padding-top: 5rem !important;
  }
}

@media (max-width: 575.98px) {
  .pt-sm-100 {
    padding-top: 6.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .p-sm-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
}

@media (max-width: 575.98px) {
  .p-sm-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .pb-sm-0 {
    padding-bottom: 0rem !important;
  }
}

@media (max-width: 575.98px) {
  .pb-sm-20 {
    padding-bottom: 1.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .pb-sm-50 {
    padding-bottom: 3.125rem !important;
  }
}

@media (max-width: 575.98px) {
  .pb-sm-100 {
    padding-bottom: 6.25rem !important;
  }
}

@media (max-width: 575.98px) {
  .mb-sm-40 {
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .mb-sm-50 {
    margin-bottom: 3.125rem !important;
  }
}

@media (max-width: 575.98px) {
  .mb-sm-100 {
    margin-bottom: 6.25rem !important;
  }
}

.h-20 {
  height: 1.25rem !important;
}

.h-80 {
  height: 5rem !important;
}

.overflow-initial {
  overflow: initial !important;
}

@media (max-width: 575.98px) {
  .overflow-sm-hidden {
    overflow: hidden !important;
  }
}

.background-transparent {
  background: transparent;
}

.color-white {
  color: #fff;
}

.color-dark-gray {
  color: #666666;
}

.color-reach-mint {
  color: #09BEC6;
}

.bg-color-reach-mint {
  background: #09BEC6;
}

.color-reach-blue {
  color: #5AC4F1;
}

.bg-color-reach-blue {
  background: #5AC4F1;
}

.c-block-dark-blue {
  background: #272742;
}

.btn.btn-blue {
  background: #1D6AFF;
  color: #fff;
}
.btn.btn-blue:hover {
  opacity: 0.8;
}
.btn.btn-white {
  background: #fff;
}
.btn.btn-white.color-cpapi {
  color: #1D6AFF;
}
.btn.btn-white:hover {
  opacity: 0.8;
}
.btn.btn-reach_dblue {
  color: #fff;
  background: #1B62CD;
}
.btn.btn-reach_mint {
  color: #fff;
  background: #09BEC6;
}
.btn.btn-reach_mint:hover {
  opacity: 0.8;
}
.btn.btn-purple {
  color: #fff;
  background: #A11CF2;
  border: 1px solid #A11CF2;
}
@media (min-width: 992px) {
  .btn.btn-purple {
    font-size: 1.25rem;
    line-height: 1.5625rem;
    font-weight: 600;
    padding: 1.25rem 2.75rem;
    min-width: auto;
  }
  .btn.btn-purple.btn-wide {
    padding-left: 5.125rem;
    padding-right: 5.125rem;
  }
}
.btn.btn-purple:hover {
  opacity: 0.8;
}
.btn.btn-purple.outline {
  color: #A11CF2;
  background: #fff;
  border: 1px solid #A11CF2;
}
.btn.btn-purple.outline:hover {
  background: #A11CF2;
  color: #fff;
}
.btn.btn-xs {
  min-width: 9.0625rem;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.25rem;
}
.btn.btn-med-border {
  border-width: 1px;
}
@media (min-width: 992px) {
  .btn.btn-med-border {
    border-width: 2px;
  }
}
.btn.hover-invert span.icon-small {
  -webkit-transition: -webkit-filter 0.15s ease-in-out;
  transition: -webkit-filter 0.15s ease-in-out;
  -o-transition: filter 0.15s ease-in-out;
  transition: filter 0.15s ease-in-out;
  transition: filter 0.15s ease-in-out, -webkit-filter 0.15s ease-in-out;
}
.btn.hover-invert:hover span.icon-small {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media (max-width: 575.98px) {
  .button-set .btn {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .button-set .btn {
    margin: 0 10px;
  }
}

.buttons > a.btn {
  margin-bottom: 0.9375rem;
}
.buttons > a.btn:first-child {
  margin-right: 1.25rem;
}

@media (max-width: 575.98px) {
  div.mb-down-sm-0 {
    margin-bottom: 0 !important;
  }
}

.c-cards-equal .card.medium-paddings img {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .c-cards-equal .card.medium-paddings {
    margin-bottom: 1.875rem;
  }
}
.c-cards-equal .card.medium-paddings .card-body {
  padding: 1.875rem;
}
@media (min-width: 768px) {
  .c-cards-equal .card.medium-paddings .card-body {
    padding: 2.1875rem;
  }
}
.c-cards-equal .card.medium-paddings h4, .c-cards-equal .card.medium-paddings .h4 {
  text-align: left;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .tablet-pt-150 {
    padding-top: 9.375rem;
  }
}

@media (min-width: 992px) {
  .col-lg-half-offset {
    margin-left: 4.166666667%;
  }
}

@media (min-width: 576px) {
  .overflow-sm-auto {
    overflow: auto !important;
  }
}

@media (min-width: 576px) {
  .overflow-sm-initial {
    overflow: initial !important;
  }
}

@media (max-width: 767.98px) {
  .c-cards-equal.row.no-md-margin > div {
    margin-bottom: 0;
  }
}

@media (min-width: 720px) {
  .text-md-left {
    text-align: left !important;
  }
}
.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .navbar-brand {
    width: 82px;
  }
}

.c-block-vote img {
  margin-right: 15px;
}
.c-block-vote a {
  margin-left: 15px;
}

body header,
body.scrolled .navbar {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.scrolled .navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 992px) {
  .b-page-scrolled .b-header {
    background-color: #662D91;
    height: 88px;
  }
}
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
}
@media (max-width: 575.98px) {
  header .container {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
header .b-button-trial .btn {
  line-height: 0.9375rem;
}

.navbar .navbar-nav .b-nav__item {
  position: relative;
}
.navbar .navbar-nav .b-nav__item .sub-menu {
  display: none;
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  list-style: none;
  padding: 10px;
  border-radius: 2;
  -webkit-box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
          box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
  position: absolute;
  top: 90%;
  left: 0;
  min-width: 220px;
  max-width: 220px;
  border: 1px solid #F4F6F8;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  z-index: 999;
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .b-nav__item .sub-menu {
    position: static;
    max-width: none;
    padding: 5px 0 20px;
    margin-bottom: 20px;
    width: calc(100% - 40px);
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
  }
  .navbar .navbar-nav .b-nav__item .sub-menu .nav-link {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
  }
}
.navbar .navbar-nav .b-nav__item .sub-menu.open {
  display: block;
  display: grid;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .navbar .navbar-nav .b-nav__item .sub-menu a:hover {
    background: #F4F6F8;
  }
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .b-nav__item span.description {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-nav .b-nav__item.largedropdown > .sub-menu {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    max-width: initial;
    left: -175%;
    padding: 30px 30px 19px;
    grid-template-columns: 50% 50%;
  }
  .navbar .navbar-nav .b-nav__item.largedropdown > .sub-menu > li {
    min-width: 250px;
    margin-bottom: 0.6875rem;
  }
  .navbar .navbar-nav .b-nav__item.largedropdown > .sub-menu > li > a {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .navbar .navbar-nav .b-nav__item.largedropdown > .sub-menu > li > a span.a-title {
    display: block;
  }
  .navbar .navbar-nav .b-nav__item.largedropdown > .sub-menu > li span.description {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    font-weight: 400;
  }
}
.navbar .nav {
  width: 100%;
}

.navbar-nav .icon > a span {
  padding-left: 1.875rem;
}
@media (max-width: 991.98px) {
  .navbar-nav .icon > a span {
    padding-left: 2.5rem;
  }
}
.navbar-nav .icon > a:before {
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: 5px;
  background-size: 20px 20px;
}
@media (max-width: 991.98px) {
  .navbar-nav .icon > a:before {
    margin-top: 3px;
  }
}
.navbar-nav .icon.icon_building > a:before {
  content: "";
  background-image: url(../svg/icon_building.svg);
}
.navbar-nav .icon.icon_shopping-cart > a:before {
  content: "";
  background-image: url(../svg/icon_shopping-cart.svg);
}
.navbar-nav .icon.icon_gamepad > a:before {
  content: "";
  background-image: url(../svg/icon_gamepad.svg);
}
.navbar-nav .icon.icon_hierarchy > a:before {
  content: "";
  background-image: url(../svg/icon_hierarchy.svg);
}
.navbar-nav .icon.icon_binocular > a:before {
  content: "";
  background-image: url(../svg/icon_binocular.svg);
}
.navbar-nav .icon.icon_git-commit > a:before {
  content: "";
  background-image: url(../svg/icon_git-commit.svg);
}
.navbar-nav .icon.icon_pie-chart > a:before {
  content: "";
  background-image: url(../svg/icon_pie-chart.svg);
}
.navbar-nav .icon.icon_users > a:before {
  content: "";
  background-image: url(../svg/icon_users.svg);
}
.navbar-nav .icon.icon_settings-small > a:before {
  content: "";
  background-image: url(../svg/icon_settings-small.svg);
}
.navbar-nav .icon.icon_hard-drive > a:before {
  content: "";
  background-image: url(../svg/icon_hard-drive.svg);
}
.navbar-nav .icon.icon_search > a:before {
  content: "";
  background-image: url(../svg/icon_search.svg);
}
.navbar-nav .icon.icon_cpu > a:before {
  content: "";
  background-image: url(../svg/icon_cpu.svg);
}
.navbar-nav .icon.icon_map-pin > a:before {
  content: "";
  background-image: url(../svg/icon_map-pin.svg);
}
.navbar-nav .icon.icon_shield-small > a:before {
  content: "";
  background-image: url(../svg/icon_shield-small.svg);
}
.navbar-nav .icon.icon_activity-small > a:before {
  content: "";
  background-image: url(../svg/icon_activity-small.svg);
}
.navbar-nav .icon.icon_mouse-pointer-small > a:before {
  content: "";
  background-image: url(../svg/icon_mouse-pointer-small.svg);
}
.navbar-nav .icon.icon_heart-small > a:before {
  content: "";
  background-image: url(../svg/icon_heart-small.svg);
}
.navbar-nav .icon.icon_briefcase-small > a:before {
  content: "";
  background-image: url(../svg/icon_briefcase-small.svg);
}
.navbar-nav .icon.icon_mic-small > a:before {
  content: "";
  background-image: url(../svg/icon_mic-small.svg);
}
.navbar-nav .icon.icon_affise > a:before {
  content: "";
  background-image: url(../svg/icon_affise.svg);
}
.navbar-nav .icon.icon_affise-reach > a:before {
  content: "";
  background-image: url(../svg/icon_affise_reach.svg);
}
.navbar-nav .icon.icon_affise-attribution > a:before {
  content: "";
  background-image: url(../svg/icon_affise_attribution.svg);
}
.navbar-nav .icon.icon_link-2 > a:before {
  content: "";
  background-image: url(../svg/icon_link-2.svg);
}
.navbar-nav .icon.icon_maximize-2 > a:before {
  content: "";
  background-image: url(../svg/icon_maximize-2.svg);
}
.navbar-nav .icon.icon_label > a:before {
  content: "";
  background-image: url(../svg/icon_label.svg);
}

.menu-item-has-children > .nav-link {
  padding-right: 15px;
  margin-right: 15px;
  background: url(../svg/has-child-icon-black.svg) no-repeat right top 16px;
}

.color-purple {
  color: #A11CF2;
}

.color-blue {
  color: #1D6AFF;
}

.c-block-purple {
  background: #F6ECFF;
}

h1, .h1 {
  margin-bottom: 2rem;
}

h2, .h2 {
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  h2, .h2 {
    font-size: 25px;
    line-height: 120%;
  }
}

@media (max-width: 575.98px) {
  h5, .h5 {
    font-size: 1.125rem;
    line-height: 2.25rem;
  }
}

.lead {
  line-height: 2.5rem;
}
.lead.dark {
  color: #272742 !important;
}
.lead.big {
  font-size: 1.5625rem !important;
  line-height: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .lead.big {
    font-size: 0.9375rem !important;
    line-height: 1.875rem !important;
  }
}
@media (max-width: 575.98px) {
  .lead {
    font-size: 0.9375rem;
    line-height: 1.875rem;
  }
}

.lead-min {
  font-size: 1.25rem;
  line-height: 2.1875rem;
  color: #666666;
}
.lead-min.small {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 400;
}
.lead-min.dark {
  color: #272742;
}
@media (max-width: 575.98px) {
  .lead-min {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    margin-bottom: 2.5rem;
  }
}

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

.lead-bold {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.card {
  -webkit-box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
          box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
  border-radius: 0.625rem;
}
.card.no-shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card h4, .card .h4 {
  line-height: 2.2rem;
  margin-bottom: 1.5rem;
}
.card .card-body {
  padding: 3.2rem;
}
@media (max-width: 575.98px) {
  .card .card-body {
    padding: 30px;
  }
  .card .card-body .btn {
    width: 100%;
  }
  .card .card-body .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .card .card-body .row .col-sm-6:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .card .card-body .row .col-sm-6:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 767.98px) {
  .card .card-body .c-card-image {
    margin-top: 50px;
    text-align: center;
  }
}
.card.c-card-minified {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.card.c-card-minified.bg-transparent .card-body {
  max-width: 100%;
}
@media (min-width: 576px) {
  .card.c-card-minified.bg-transparent .card-body {
    max-width: 85%;
  }
}
.card.c-card-minified.card-gray {
  background: #F4F6F8;
  border-radius: 5px;
  padding: 0.625rem 1.875rem 1.875rem;
  margin-bottom: 3.75rem;
  max-width: 330px;
}
@media (max-width: 767.98px) {
  .card.c-card-minified.card-gray {
    padding: 2.5rem 1.875rem 3.125rem;
  }
}
.card.c-card-minified.card-gray .card-body {
  background: transparent;
  margin-bottom: 0 !important;
  padding-top: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.card.c-card-minified.card-gray .card-body .card-text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #272742;
  font-weight: 600;
  text-align: left;
}
.card.c-card-minified.card-gray .card-body img {
  margin: -50px 0 0 -20px;
}
@media (max-width: 575.98px) {
  .card.c-card-minified.card-gray .card-body img {
    margin-top: -3.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.card.c-card-minified .card-body {
  padding: 0;
}
.card.c-card-minified .card-body.margin {
  margin-bottom: 3.75rem;
}
.card.c-card-minified .card-body.margin.small {
  margin-bottom: 0.625rem;
}
@media (max-width: 575.98px) {
  .card.c-card-minified .card-body.margin {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .card.c-card-minified .card-body.sm-no-margin {
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .card.c-card-minified .card-body p {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .card.c-card-minified .card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2.6875rem;
  }
}
@media (min-width: 576px) {
  .card.c-card-minified .card-body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.card.c-card-minified .card-body img {
  margin-bottom: 1.875rem;
}
@media (max-width: 575.98px) {
  .card.c-card-minified .card-body img {
    margin-bottom: 1.25rem;
    max-width: 2.8125rem;
  }
}
.card.c-card-minified .card-body h4, .card.c-card-minified .card-body .h4 {
  margin-bottom: 0.7rem;
}
.card.c-card-minified .card-body .cpapi-card-icon {
  max-height: 35px;
}
.card.c-card-minified .card-body .card-text {
  text-align: center;
}
@media (min-width: 576px) {
  .card.c-card-minified .card-body .card-text {
    text-align: left;
  }
}
.card.c-card-border {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 40px 30px;
}
.card.c-card-border .card-text {
  width: 100%;
  margin-bottom: 0;
  max-width: 100%;
}
.card.c-card-tall {
  padding: 3.75rem 2.5rem;
}
.card.c-card-tall h5, .card.c-card-tall .h5 {
  margin-bottom: 1.25rem;
}
.card.c-card-tall .card-text {
  min-height: 6.875rem;
}
.card.c-card-tall .btn {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 767.98px) {
  .card.c-card-tall {
    padding: 1.5625rem 1.5625rem 1.875rem;
  }
  .card.c-card-tall div.card-body {
    padding-top: 0 !important;
    margin-bottom: 0;
  }
  .card.c-card-tall h5, .card.c-card-tall .h5 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    text-align: left;
  }
  .card.c-card-tall svg {
    max-width: 5.625rem;
    margin-bottom: 20px;
  }
  .card.c-card-tall .card-text {
    text-align: left !important;
    min-height: auto;
    margin-bottom: 1.5625rem;
  }
  .card.c-card-tall .btn {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.card-mod-2 .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.card-bottom-elements {
  --bs-gutter-x: 0;
  width: 100%;
}
.card-bottom-elements .col-md-6 {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.c-choose-us .container .c-cards-equal > div:last-child .card {
  margin-bottom: 30px;
}
.c-choose-us h2, .c-choose-us .h2 {
  margin-bottom: 5.625rem;
}
@media (max-width: 575.98px) {
  .c-choose-us h2, .c-choose-us .h2 {
    margin-bottom: 1.25rem !important;
  }
  .c-choose-us h2.no-subhead, .c-choose-us .no-subhead.h2 {
    margin-bottom: 5rem !important;
  }
}
.c-choose-us .card {
  padding: 0;
}
@media (max-width: 1399.98px) {
  .c-choose-us .card {
    margin-bottom: 5.3125rem;
  }
}
@media (max-width: 991.98px) {
  .c-choose-us .card {
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .c-choose-us .card {
    margin-bottom: 70px;
  }
}
.c-choose-us .card .card-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  /* justify-content: space-between; */
}
@media (max-width: 991.98px) {
  .c-choose-us .card .card-body {
    padding-top: 3.1875rem !important;
  }
}
@media (max-width: 767.98px) {
  .c-choose-us .card .card-body {
    -webkit-box-align: initial !important;
        -ms-flex-align: initial !important;
            align-items: initial !important;
  }
}
.c-choose-us .card .card-body h4, .c-choose-us .card .card-body .h4 {
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  line-height: 2.1875rem;
}
.c-choose-us .card .card-body h4.short, .c-choose-us .card .card-body .short.h4 {
  margin-top: 2.375rem;
  margin-bottom: 2rem;
}
.c-choose-us .card .card-body h4.short-height, .c-choose-us .card .card-body .short-height.h4 {
  height: 1.875rem;
}
@media (max-width: 767.98px) {
  .c-choose-us .card .card-body h4, .c-choose-us .card .card-body .h4 {
    height: 60px;
    font-size: 1.5625rem;
    line-height: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .c-choose-us .card .card-body h4, .c-choose-us .card .card-body .h4 {
    height: 30px;
    text-align: left;
  }
}
.c-choose-us .card .card-body svg,
.c-choose-us .card .card-body img {
  position: absolute;
  top: -48px;
  max-width: 160px;
}
@media (max-width: 991.98px) {
  .c-choose-us .card .card-body svg,
.c-choose-us .card .card-body img {
    /* position: static; */
  }
}
.c-choose-us .card .card-text {
  max-width: 100%;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
}

.badge {
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.6rem;
  margin-right: 0.3rem;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 0.625rem;
  line-height: 0.75rem;
}
.badge svg {
  margin-right: 4px;
}
.badge.bg-secondary {
  background: #E5E8F0 !important;
  color: #272742;
}

.c-badges {
  margin-bottom: 0.3125rem;
  max-width: 250px;
}
@media (max-width: 575.98px) {
  .c-badges {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .c-badges {
    margin-bottom: 1.25rem;
  }
}

.c-page-content .c-page-content__section date {
  font-size: 20px;
  line-height: 120%;
  opacity: 0.8;
  color: #86869A;
}
.c-page-content .c-page-content__section .lead {
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 150%;
  color: #111;
  margin-bottom: 80px;
  text-transform: capitalize;
}
.c-page-content .c-page-content__section p {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 28px;
  color: #666666;
}
.c-page-content .c-page-content__section ol {
  padding-left: 28px;
}
.c-page-content .c-page-content__section ol li {
  padding: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 36px;
}

.btn {
  min-width: 195px;
  padding: 0.6667rem 2rem;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .btn {
    font-size: 0.8125rem;
    line-height: 1rem;
    padding: 0.5rem 10px;
    width: 100%;
  }
}
.btn.btn-primary {
  background-color: #272742;
}
.btn.btn-primary:hover {
  background-color: #111;
}
.btn.btn-outline-primary {
  color: #272742;
  border-color: #272742;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:active {
  color: #fff;
  background: #272742;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-lg, .btn-group-lg > .btn {
  min-width: 16.125rem;
  padding: 1.08rem 5.125rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .btn-lg, .btn-group-lg > .btn {
    padding: 1rem 3.75rem;
  }
}
@media (max-width: 575.98px) {
  .btn-lg, .btn-group-lg > .btn {
    font-size: 1.125rem;
    line-height: 1.5rem;
    padding: 0.75rem 0.625rem;
    min-width: 17.5rem;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .btn-xl {
    font-size: 1.25rem;
    line-height: 1.5625rem;
    padding: 1.25rem 7.5rem;
  }
}

.btn-green {
  background: #89FFB8;
}

.subscribe-button {
  /*opacity: 0;
  width: 0;*/
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /*display: none;*/
}

.btn-subscribe {
  font-size: 0.9375rem;
  line-height: 1.407rem;
  padding: 0.53125rem 1.71875rem;
  max-width: 7.9375rem !important;
  min-width: 6.25rem !important;
  margin-right: 1.25rem;
}
@media (max-width: 575.98px) {
  .btn-subscribe {
    max-width: 9.0625rem !important;
    min-width: 9.0625rem !important;
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
    margin-bottom: 1.25rem !important;
  }
}

.c-cards-carousel {
  margin-bottom: 110px;
}

.progress {
  width: 180px;
  height: 4px;
  border-radius: 5px;
  background: rgba(124, 40, 187, 0.15);
  margin-bottom: 35px;
}

.progress-bar {
  border-radius: 5px;
  background: #A11CF2;
}

.b-icon {
  background-image: url(../png/sprite%402x-2.png);
  background-size: 240px 3200px;
  display: block;
}

.b-icon_e-privacy {
  background-position: 0 -3074px;
  width: 107px;
  height: 125px;
}

.owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  background: #666666;
  border-radius: 10px;
  margin: 0px 5px;
  opacity: 0.5;
}
.owl-carousel button.owl-dot.active {
  opacity: 1;
}
.owl-carousel .owl-dots {
  text-align: center;
}

.accordion-button {
  border: 0;
  padding: 1rem 0;
  position: relative;
  font-weight: 400;
}
.accordion-button:not(.collapsed)::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f0f0f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-button:not(.collapsed)::after {
  display: none;
}
.accordion-button::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CCCCCC'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.accordion-button::after {
  display: none;
}
.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 575.98px) {
  .accordion-button {
    padding-left: 40px !important;
  }
  .accordion-button:before {
    position: absolute;
    left: 10px;
    top: 22px;
  }
}
.accordion-item {
  border-top: 0;
}

.accordion-header {
  background-color: rgba(224, 224, 224, 0.2);
  border-radius: 12px;
  margin-bottom: 0 !important;
}
.accordion-header .accordion-button {
  font-size: 1.25rem;
  padding-left: 20px;
}
@media (max-width: 575.98px) {
  .accordion-header .accordion-button {
    display: block;
  }
}

.accordion-button:not(.collapsed) {
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-body {
  padding-left: 50px;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 575.98px) {
  .accordion-body {
    font-size: 16px;
    line-height: 24px;
    padding-left: 40px;
  }
}

.hs-input {
  display: block;
  width: 100%;
  padding: 0.6667rem 2rem;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.5;
  color: #272742;
  background-color: #fff;
  background-clip: padding-box;
}

.input select.hs-input {
  padding-top: 20px;
  padding-left: 11px;
}

ul.inputs-list {
  list-style-type: none;
  padding: 0;
}

.wrapper-404 {
  margin: 60px auto 200px;
  text-align: center;
}
.wrapper-404 h1, .wrapper-404 .h1 {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  margin-bottom: 0.9375rem;
}
@media (max-width: 575.98px) {
  .wrapper-404 h1, .wrapper-404 .h1 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}
.wrapper-404 svg {
  margin-bottom: 3.125rem;
}
.wrapper-404 .btn {
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  padding: 0.625rem 1.40625rem;
}

ul.no-list.hs-error-msgs.inputs-list {
  padding-left: 0;
  list-style-type: none;
  font-size: 12px;
  margin-top: -10px;
  color: #f2545b;
}

.form-control,
.hs-input {
  border-radius: 4px;
  border: 1px solid #D2D4D9;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 12px;
  padding-top: 25px;
}
.form-control:focus,
.hs-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #272742;
}

textarea.form-control {
  min-height: 90px;
}

.has-float-label label {
  font-size: 0.9375rem;
  color: #8993AA;
}

.c-form-block {
  margin-bottom: 25px;
}
.c-form-block fieldset {
  width: 100%;
}
@media (max-width: 575.98px) {
  .c-form-block {
    margin-bottom: 10px;
  }
}

.simply-scroll {
  width: 1600px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .simply-scroll {
    width: 100%;
  }
}
.simply-scroll .simply-scroll-clip {
  width: auto;
  height: auto;
  margin: 0 auto;
}

.modal-fullscreen .modal-dialog {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: scroll;
}
.modal-fullscreen .modal-dialog .c-modal {
  width: 100%;
}
.modal-fullscreen .modal-dialog .c-modal .c-modal-form__wrapper {
  height: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .modal-fullscreen .modal-dialog .c-modal .c-modal-form__wrapper {
    margin-top: 90px;
  }
}
.modal-fullscreen .modal-dialog .c-modal .c-modal-form__wrapper .c-modal-form {
  height: auto !important;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 575.98px) {
  .modal-fullscreen .modal-dialog .c-modal .c-modal-form__wrapper .c-modal-form {
    padding: 40px 30px;
  }
}

.c-modal-image {
  position: relative;
}
.c-modal-image > .left-image {
  margin-right: -100px;
  position: absolute;
  width: 500px;
  right: 0px;
  z-index: 1;
}
@media (min-width: 992px) {
  .c-modal-image > .left-image {
    width: 520px;
    top: 140px;
  }
}
@media (min-width: 1200px) {
  .c-modal-image > .left-image {
    width: 450px;
    top: 40px;
  }
}
@media (min-width: 1536px) {
  .c-modal-image > .left-image {
    width: 560px;
    top: 40px;
  }
}

@media (max-width: 991.98px) {
  div.c-modal {
    background: transparent;
  }
}

.input-group .has-float-label {
  display: block;
}

.hs-form-booleancheckbox-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hs-form-booleancheckbox-display .form-check-input {
  margin-right: 10px;
  width: 1.1875rem;
  height: 0.9375rem;
}

.b-hero-wrapper {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.b-hero-wrapper.b-hero-wrapper-extended {
  padding-top: 100px;
  padding-bottom: 100px;
  /* with breadcrumb */
}
.b-hero-wrapper.b-hero-wrapper-extended.pt-50 {
  padding-top: 3.125rem;
}
@media (max-width: 767.98px) {
  .b-hero-wrapper.b-hero-wrapper-extended {
    padding-top: 0;
  }
}
.b-hero-wrapper.b-hero-wrapper-extended.with-breadcrumb {
  padding-top: 25px;
}

.c-block-container-sm {
  max-width: 710px;
  margin: 0 auto;
  margin-bottom: 3.75rem;
}
.c-block-container-sm.left {
  margin: 0;
}
.c-block-container-sm.h2-mb-30 h2, .c-block-container-sm.h2-mb-30 .h2 {
  margin-bottom: 1.875rem !important;
}
.c-block-container-sm h2, .c-block-container-sm .h2 {
  margin-bottom: 1.25rem !important;
}

.c-block-container-lg {
  max-width: 920px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 576px) {
  .c-block-container-lg {
    margin-bottom: 3.75rem;
  }
}
.c-block-container-lg.left {
  margin: 0;
}
.c-block-container-lg h2, .c-block-container-lg .h2 {
  margin-bottom: 1.25rem !important;
}

.c-card-nums,
.c-card-counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.98px) {
  .c-card-nums,
.c-card-counters {
    display: block !important;
  }
}
.c-card-nums.margins .c-card-num,
.c-card-counters.margins .c-card-num {
  margin-bottom: 4.25rem;
}
@media (max-width: 767.98px) {
  .c-card-nums.margins .c-card-num,
.c-card-counters.margins .c-card-num {
    margin-bottom: 3.625rem;
  }
}
.c-card-nums.margins .c-card-num.c-card-last-empty,
.c-card-counters.margins .c-card-num.c-card-last-empty {
  background: transparent;
  width: 330px;
}

.reach .c-card-num {
  padding: 3.125rem 2.1875rem 2.1875rem;
}

.p1-mobile {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 400;
}

.c-card-num {
  background: #F4F6F8;
  border-radius: 5px;
  padding: 30px 35px 25px;
  position: relative;
  max-width: 330px;
}
.c-card-num h3, .c-card-num .h3 {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .c-card-num h3, .c-card-num .h3 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 600;
  }
}
.c-card-num.dark p {
  color: #272742;
}
@media (max-width: 767.98px) {
  .c-card-num p.sm-big {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}
.c-card-num p.sm-big.p1-mobile {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .c-card-num {
    max-width: 100%;
    margin-bottom: 3.125rem;
  }
}
.c-card-num:after {
  display: block;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  position: absolute;
  top: -29px;
  left: 10px;
}
.c-card-num h4, .c-card-num .h4 {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 575.98px) {
  .c-card-num h4, .c-card-num .h4 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
.c-card-num p {
  font-weight: normal;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
  color: #666666;
}
@media (max-width: 575.98px) {
  .c-card-num p {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.c-card-num-1:after {
  content: "1";
}
.c-card-num-2:after {
  content: "2";
}
.c-card-num-3:after {
  content: "3";
}
.c-card-num-4:after {
  content: "4";
}
.c-card-num-5:after {
  content: "5";
}
.c-card-num-6:after {
  content: "6";
}
.c-card-num-7:after {
  content: "7";
}
.c-card-num-8:after {
  content: "8";
}
.c-card-num-9:after {
  content: "9";
}
.c-card-num-10:after {
  content: "10";
}

.c-card-counters .c-card-num {
  padding: 2.1875rem 2.5rem;
  margin-bottom: 1.875rem;
}
.c-card-counters .c-card-num h4, .c-card-counters .c-card-num .h4 {
  font-size: 1.5625rem;
  line-height: 1.875rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .c-card-counters .c-card-num h4, .c-card-counters .c-card-num .h4 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 0.9375rem;
  }
}
@media (max-width: 575.98px) {
  .c-card-counters {
    overflow: hidden;
  }
}
.c-card-counters #media-coverage-bubble {
  right: -90px;
  top: initial;
  bottom: 100px;
  left: initial;
  max-width: 220px;
}
@media (min-width: 576px) {
  .c-card-counters #media-coverage-bubble {
    bottom: 0px;
    left: 10px;
    top: initial;
    right: initial;
  }
}

@media (max-width: 991.98px) {
  .c-partnership-logos {
    display: block !important;
  }
  .c-partnership-logos .b-slider__img {
    width: 27%;
    margin: 0 3%;
    float: left;
  }
  .c-partnership-logos:after {
    content: "";
    display: block;
    clear: both;
  }
}
@media (max-width: 575.98px) {
  .c-partnership-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.c-h1-secondary {
  font-size: 65px;
  line-height: 75px;
}
@media (max-width: 767.98px) {
  .c-h1-secondary {
    font-size: 30px;
    line-height: 45px;
  }
}

.c-h1-secondary-big {
  font-size: 90px;
  line-height: 105px;
}
@media (max-width: 767.98px) {
  .c-h1-secondary-big {
    font-size: 30px;
    line-height: 45px;
  }
}

.c-h2 {
  font-size: 3.125rem;
  line-height: 3.75rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  .c-h2 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}

/* With Breadcrumb */
.with-breadcrumb {
  padding-top: 1.5625rem;
}

/* Images */
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figure figcaption {
  margin-top: 20px;
}

/* Blockquote */
blockquote.b-form-text__quote {
  margin: 0;
}

.frame-white {
  background: #fff;
  padding: 2.75rem 3.75rem;
  -webkit-box-shadow: 0 7px 20px 0 rgba(212, 218, 224, 0.7);
          box-shadow: 0 7px 20px 0 rgba(212, 218, 224, 0.7);
}
@media (max-width: 575.98px) {
  .frame-white {
    padding: 2.5rem;
  }
}
.frame-white h3, .frame-white .h3 {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 575.98px) {
  .frame-white h3, .frame-white .h3 {
    font-size: 1.5625rem;
    line-height: 2.1875rem;
    text-align: center;
  }
}
.frame-white img {
  border-radius: 5px;
  -webkit-box-shadow: 0 7px 20px 0 rgba(212, 218, 224, 0.7);
          box-shadow: 0 7px 20px 0 rgba(212, 218, 224, 0.7);
}

.frame-gray {
  position: relative;
  background: #F4F6F8;
  border-radius: 10px;
  overflow: hidden;
}
.frame-gray.all-texts h4, .frame-gray.all-texts .h4 {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .frame-gray.all-texts h4, .frame-gray.all-texts .h4 {
    font-size: 1.5625rem;
    line-height: 2.1875rem;
    font-weight: 700;
  }
}
.frame-gray.all-texts p {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 400;
  margin-bottom: 0;
}
.frame-gray.all-texts p.competitor-copy {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1200px) {
  .frame-gray.all-texts p.competitor-copy {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.frame-gray.all-texts p.normal {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
@media (min-width: 992px) {
  .frame-gray.all-texts p {
    font-size: 1.25rem;
    line-height: 2.1875rem;
    font-weight: 400;
  }
}
@media (max-width: 991.98px) {
  .frame-gray.all-texts > .row > div:first-child > div {
    padding-bottom: 2.1875rem;
  }
  .frame-gray.all-texts > .row > div:last-child > div {
    padding-top: 0;
  }
}
.frame-gray.all-texts > .row .col-wrap {
  padding: 2.8125rem 1.875rem;
}
@media (min-width: 992px) {
  .frame-gray.all-texts > .row .col-wrap {
    padding: 3.75rem 3.125rem;
  }
}
.frame-gray .illustration {
  max-height: 18.4375rem;
}
.frame-gray h3, .frame-gray .h3 {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 575.98px) {
  .frame-gray h3, .frame-gray .h3 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
  }
}
.frame-gray .frame-body {
  padding: 60px 200px 60px 20px;
}
.frame-gray .frame-body p {
  line-height: 1.5625rem;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .frame-gray .frame-body {
    padding: 40px 60px;
  }
}
@media (max-width: 575.98px) {
  .frame-gray .frame-body {
    padding: 2.9375rem 1.875rem 2.9375rem 3.75rem;
  }
  .frame-gray .frame-body p {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.frame-gray .frame-image svg {
  margin-left: 6.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .frame-gray .frame-image svg {
    margin-left: 0;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .frame-gray .frame-image svg {
    height: 380px;
    width: 320px;
    margin-left: -100px;
  }
}
@media (max-width: 575.98px) {
  .frame-gray .frame-image .illustration {
    overflow: initial;
  }
  .frame-gray .frame-image .illustration svg {
    height: 340px;
    margin-top: 30px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .frame-gray > .row > .frame-image {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.accordion .card {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  margin-bottom: 1.25rem;
}
.accordion .card .card-header {
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
}
.accordion .card .card-header button.btn {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #272742;
  padding: 0 0 1.25rem;
  text-align: left;
  position: relative;
  display: block;
  width: 100%;
}
.accordion .card .card-header button.btn:after {
  content: url("../svg/icon_down_arrow.svg");
  position: absolute;
  right: 0.3125rem;
  top: 20%;
  line-height: 0.375rem;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion .card .card-header button.btn.collapsed:after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
@media (min-width: 576px) {
  .accordion .card .card-header button.btn {
    font-size: 1.25rem;
    line-height: 1.5625rem;
  }
}
.accordion .card .card-header button.btn span {
  display: block;
  max-width: 90%;
}
.accordion .card .card-body {
  padding: 1.875rem 3.75rem 2.5rem 0;
  margin: 0 0 1.25rem;
}

.iti__flag {
  background-image: url("../png/flags-2.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../png/flags%402x-2.png");
  }
}
span.has-float-label label,
span.has-float-label > span {
  z-index: 0;
}

div.iti__selected-flag {
  padding-left: 13px;
}

.iti__flag,
.iti__arrow,
.iti__selected-dial-code {
  margin-top: 13px;
}

.input .iti {
  width: 100%;
  margin-bottom: 0.9375rem !important;
}

.c-pricing-switcher .btn-outline-primary:hover {
  color: #272742;
  background-color: transparent;
  border-color: #272742;
}
.c-pricing-switcher .btn:not(.btn-outline-primary):hover {
  color: #fff;
  border: 1px solid #272742;
  background-color: #272742;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

.on-page-hs-form .hs-form-field {
  width: 100% !important;
}
.on-page-hs-form .hs-form-field .input {
  margin-right: 0 !important;
}
.on-page-hs-form .hs-form-field input {
  width: 100%;
}
.on-page-hs-form fieldset.form-columns-3,
.on-page-hs-form fieldset.form-columns-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: none;
}
.on-page-hs-form fieldset.form-columns-1 {
  max-width: 100%;
}
.on-page-hs-form fieldset.form-columns-1 textarea {
  min-height: 90px;
  width: 100% !important;
}
@media (max-width: 575.98px) {
  .on-page-hs-form fieldset.form-columns-3 {
    display: block;
  }
}
.on-page-hs-form fieldset.form-columns-3 .hs-form-field {
  max-width: 300px;
}
@media (max-width: 575.98px) {
  .on-page-hs-form fieldset.form-columns-3 .hs-form-field {
    max-width: 100%;
  }
}
.on-page-hs-form fieldset.form-columns-3 .hs-form-field input {
  width: 100% !important;
}
.on-page-hs-form .hs_submit .actions {
  text-align: center;
  padding-top: 30px;
}
.on-page-hs-form .hs_submit input[type=submit] {
  display: inline-block;
}
@media (min-width: 576px) {
  .on-page-hs-form .hs_submit input[type=submit] {
    width: auto !important;
    min-width: 16.125rem !important;
    padding: 1.08rem 5.125rem !important;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.translate-x-full {
  visibility: hidden !important;
  display: none !important;
}

.translate-x-0 {
  visibility: visible;
  display: block;
}

body {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a {
  color: #272742;
}

p {
  font-size: 0.9375rem;
  line-height: 1.75rem;
  color: #272742;
  margin-bottom: 1.875rem;
}

body.open-menu {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.parent-card .child-card {
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
  margin-bottom: 20px;
  position: relative;
}
.parent-card .child-card .illustration {
  min-height: 195px;
}
.parent-card .child-card .c-column {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.parent-card .child-card:hover .c-column {
  -webkit-transform: translateZ(12px);
          transform: translateZ(12px);
}
@media (max-width: 991.98px) {
  .parent-card .child-card {
    margin-bottom: 1.25rem;
  }
}
.parent-card .child-card .glow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: -o-radial-gradient(50% -20%, circle, #ffffff22, #0000000f);
  background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
}

.c-column {
  position: relative;
  border-radius: 0.3125rem;
  height: 100%;
}
.c-column.animated-card {
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-column.animated-card.card-1 {
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.c-column.animated-card.card-2 {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.c-column.animated-card.card-3 {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-column.animated-card.revealed {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.c-column.animated-card .anchor-left {
  bottom: 40px;
  left: 50px;
  position: absolute;
}
@media (max-width: 575.98px) {
  .c-column.animated-card .anchor-left {
    position: relative;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 767.98px) {
  .c-column.animated-card .illustration svg {
    max-height: 180px;
  }
}
.c-column.animated-card .illustration.anchor-right {
  max-height: 126px;
  position: absolute;
  bottom: 42px;
  right: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-end;
      -ms-flex-align: self-end;
          align-items: self-end;
}
@media (max-width: 991.98px) {
  .c-column.animated-card .illustration.anchor-right {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin: 30px 0;
  }
  .c-column.animated-card .illustration.anchor-right svg {
    max-height: 120px;
  }
}
.c-column .a-cover {
  padding: 1.25rem 1.5625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-column .a-cover {
    padding: 2.9375rem 2.5rem;
  }
}
.c-column p {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
.c-column span.purple {
  font-weight: 600;
}

.c-column-green {
  background: #89FFB8;
}

.c-column-gray {
  background: #F4F6F8;
}

.c-column-purplelight {
  background: #F6ECFF;
}

.icon-tag {
  margin-top: 10px;
  padding: 0.3125rem 0.625rem;
  border-radius: 3px;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  font-weight: 500;
  max-width: 90px;
  text-align: center;
}
.icon-tag span.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
  background-size: cover;
  margin-right: 8px;
}

@media (min-width: 992px) {
  #knowledge-hub-hero {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  #knowledge-hub-hero #bubbles-left {
    float: left;
  }
  #knowledge-hub-hero #bubbles-right {
    float: right;
  }
  #knowledge-hub-hero .h1-wrapper {
    margin-top: -150px;
  }
}
@media (max-width: 767.98px) {
  #knowledge-hub-hero #bubbles-left {
    -webkit-transform: translateX(-80px);
        -ms-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  #knowledge-hub-hero #bubbles-right {
    -webkit-transform: translateX(80px);
        -ms-transform: translateX(80px);
            transform: translateX(80px);
  }
}

.c-section {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.c-section.c-block-gray {
  background: #F4F6F8;
}
.c-section.mt-60 {
  margin-top: 60px;
}
.c-section.pt-60 {
  padding-top: 60px;
}
.c-section.pt-130 {
  padding-top: 130px;
}
.c-section.pt-100 {
  padding-top: 100px;
}
.c-section.pb-20 {
  padding-bottom: 20px;
}
.c-section.pb-60 {
  padding-bottom: 60px;
}
@media (max-width: 575.98px) {
  .c-section {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.b-button-trial-mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .b-button-trial-mobile {
    display: block;
    position: absolute;
    right: 0;
  }
}

.c-block-vote__container {
  background: #aae6ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}
.c-block-vote__container .c-block-vote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-block-vote__container .c-block-vote a {
  font-weight: 500;
}
.c-block-vote__container .c-block-vote-text {
  color: #111;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
}
@media (max-width: 575.98px) {
  .c-block-vote__container .c-block-vote-text {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 991.98px) {
  .c-block-vote__container {
    height: auto;
  }
  .c-block-vote__container .c-block-vote-text {
    width: 75%;
  }
  .c-block-vote__container .c-block-vote {
    padding: 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-block-vote__container .c-block-vote a {
    display: block;
    width: 100px;
  }
}
@media (max-width: 575.98px) {
  .c-block-vote__container .c-block-vote a {
    font-size: 13px;
  }
}

.navbar-mobile-logo {
  display: none;
}

.navbar-collapse.show #menu_button_trial, .navbar-collapse.collapsing #menu_button_trial {
  width: 100%;
  padding: 0 30px;
}
.navbar-collapse.show #menu_button_trial .btn, .navbar-collapse.collapsing #menu_button_trial .btn {
  background-color: #272742;
  color: #fff;
  padding: 13px 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  width: 100%;
  max-width: 100%;
}
.navbar-collapse.show #menu_button_trial .btn:hover, .navbar-collapse.collapsing #menu_button_trial .btn:hover {
  background-color: #000;
}

.b-button-trial .btn {
  border: 2px solid #111;
  max-width: 195px;
  min-width: 195px;
}
@media (max-width: 575.98px) {
  .b-button-trial .btn {
    max-width: 145px;
    min-width: 145px;
  }
}

.b-lang {
  margin-left: 1.33rem;
}
@media (max-width: 991.98px) {
  .b-lang {
    margin-left: 0;
  }
}
.b-lang .b-lang__title {
  /*background: url(../images/globe.svg) no-repeat left top 3.5px;
  padding-left: 1.33rem;*/
  min-width: 60px;
}

.navbar-toggler {
  padding: 0;
  border: none;
}
.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-nav.mr-50 {
  margin-right: 50px;
}

.navbar-collapse .c-menu-close {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 27px;
  height: 27px;
}
.navbar-collapse .c-menu-close {
  display: none;
}
.navbar-collapse .nav-link {
  color: #111 !important;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .navbar-collapse .navbar-nav {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 100px;
  }
  .navbar-collapse .navbar-nav .nav-link {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    color: #272742;
  }
  .navbar-collapse .navbar-nav > li {
    border-bottom: 1px solid #E5E8F0;
  }
  .navbar-collapse .navbar-nav > li > a {
    padding: 0.9375rem 0;
  }
  .navbar-collapse .c-menu-close {
    display: block;
  }
  .navbar-collapse .nav {
    display: block !important;
  }
  .navbar-collapse .nav + div {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .navbar-collapse .nav + div.no-mb-mobile {
    margin-bottom: 0;
  }
  .navbar-collapse .menu-item-has-children .nav-link {
    background-size: 25px;
    background-position: right 25px top 30px;
    background-size: 11px;
    background-position: right center;
  }
  .navbar-collapse .navbar-mobile-logo {
    display: block;
    position: absolute;
    top: 30px;
    left: 60px;
  }
  .navbar-collapse .navbar-mobile-logo svg {
    height: 0.9375rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    overflow: scroll;
  }

  .navbar {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .navbar .navbar-toggler {
    margin-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    padding: 22px 0;
  }
}
.note {
  font-size: 1.33rem;
  line-height: 120%;
  color: #86869A;
}
.note.note-black {
  color: #111;
  margin-bottom: 0 !important;
}

.b-hero .c-h1-secondary {
  font-size: 2.8125rem;
  line-height: 3.09375rem;
  margin-bottom: 2.1875rem;
}
@media (min-width: 576px) {
  .b-hero .c-h1-secondary {
    font-size: 4.0625rem;
    line-height: 4.6875rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .b-hero .c-h1-secondary.small-mobile {
    font-size: 1.875rem;
    line-height: 2.0625rem;
  }
}
.b-hero .c-h1-secondary-big {
  font-size: 2.8125rem;
  line-height: 3.09375rem;
  margin-bottom: 2.1875rem;
}
@media (min-width: 576px) {
  .b-hero .c-h1-secondary-big {
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-bottom: 2.1875rem;
  }
}
@media (min-width: 992px) {
  .b-hero .c-h1-secondary-big {
    font-size: 5.625rem;
    line-height: 6.5625rem;
    margin-bottom: 2.8125rem;
  }
}
.b-hero .c-h1-secondary-big.mb-35 {
  margin-bottom: 2.1875rem;
}
.b-hero h1, .b-hero .h1 {
  margin-bottom: 2.7rem;
}
@media (max-width: 575.98px) {
  .b-hero h1, .b-hero .h1 {
    margin-bottom: 2.1875rem;
  }
}
.b-hero .lead {
  margin-bottom: 2.8125rem;
  font-size: 1.25rem;
  line-height: 2.1875rem;
  font-weight: 400;
  color: #666666;
}
@media (max-width: 575.98px) {
  .b-hero .lead {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    margin-bottom: 35px;
  }
}
.b-hero .note {
  margin-top: 6.3rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 575.98px) {
  .b-hero .note {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 20px;
    width: 70%;
  }
}
.b-hero .col-md-5,
.b-hero .col-md-6:first-child {
  padding-top: 30px !important;
}
@media (max-width: 767.98px) {
  .b-hero .col-md-5,
.b-hero .col-md-6:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 767.98px) {
  .b-hero .col-md-5,
.b-hero .col-md-6:first-child {
    padding-top: 15px !important;
  }
}
.b-hero .col-md-5:first-child,
.b-hero .col-md-6:first-child:first-child {
  padding-top: 85px;
}
@media (max-width: 767.98px) {
  .b-hero .col-md-7,
.b-hero .col-md-6:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.b-hero .col-lg-6:first-child {
  padding-top: 30px !important;
}
@media (max-width: 991.98px) {
  .b-hero .col-lg-6:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 991.98px) {
  .b-hero .col-lg-6:first-child {
    padding-top: 15px !important;
  }
}
.b-hero .col-lg-6:first-child:first-child {
  padding-top: 85px;
}
.b-hero .col-lg-7:first-child {
  padding-top: 30px !important;
}
@media (max-width: 991.98px) {
  .b-hero .col-lg-7:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 991.98px) {
  .b-hero .col-lg-7:first-child {
    padding-top: 15px !important;
  }
}
.b-hero .col-lg-7:first-child:first-child {
  padding-top: 85px;
}
.b-hero .c-visual {
  overflow: hidden;
  margin: -80px -1.75rem 0;
}
.b-hero .c-visual.normal {
  margin: 0;
}
.b-hero .c-visual.larger {
  margin-right: -300px;
}
@media (max-width: 575.98px) {
  .b-hero .c-visual.sm-small {
    max-height: 15.125rem;
  }
}
.b-hero .c-visual.move-right {
  margin-left: 5rem;
}
@media (max-width: 767.98px) {
  .b-hero .c-visual.move-right {
    margin-left: 0;
  }
}
.b-hero .c-visual.adjust-right > svg {
  position: relative;
  right: 0;
}
@media (max-width: 1199.98px) {
  .b-hero .c-visual.adjust-right {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .b-hero .c-visual.adjust-right > svg {
    right: -20px;
  }
}
@media (min-width: 992px) {
  .b-hero .c-visual.adjust-right > svg {
    right: -100px;
  }
}
@media (max-width: 1399.98px) {
  .b-hero .c-visual.hero-md-normal {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .b-hero .c-visual.hero-md-normal {
    margin-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .b-hero .c-visual {
    margin: 0 0.625rem;
  }
  .b-hero .c-visual.normal {
    margin: 0 0.625rem;
  }
  .b-hero .c-visual svg,
.b-hero .c-visual img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .b-hero .c-visual:not(.case-studies-bubbles) svg {
    width: 25rem;
    margin: 0 auto 2.5rem;
    display: block;
  }
}
.b-hero .c-visual .c-visual-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.b-hero .c-visual .c-visual-wrap svg,
.b-hero .c-visual .c-visual-wrap img {
  position: absolute;
}
.b-hero .c-visual .c-visual-wrap #affise-reach-girl {
  left: 20%;
  top: -10%;
}
.b-hero .c-visual .c-visual-wrap #affise-reach-gray-shape {
  top: 110px;
  left: 19%;
}
.b-hero .c-visual .c-visual-wrap #purple-bg-shape {
  top: 3%;
  left: 15%;
}
.b-hero .c-visual .c-visual-wrap #fields-shape {
  left: 15%;
  top: 130px;
}
.b-hero .c-hero-image {
  padding: 0 20px;
}
@media (max-width: 575.98px) {
  .b-hero .c-hero-image {
    padding: 0;
    height: 193px;
    overflow: hidden;
    margin-top: 20px;
  }
  .b-hero .c-hero-image svg {
    height: 250px !important;
  }
}
@media (max-width: 575.98px) {
  .b-hero .btn-lg, .b-hero .btn-group-lg > .btn {
    width: 100%;
  }
}

.btn-md {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  padding: 1.25rem 1.5rem;
}

.c-block-header {
  padding-top: 0rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-block-header {
    /*padding-top: rem(50px); */
  }
}

.c-hero-image {
  padding-top: 40px;
}

.c-hero-image svg {
  width: 100%;
}

.c-brands {
  margin-bottom: 2.8rem;
}
.c-brands.owl-carousel {
  width: auto;
}
.c-brands .owl-item .col {
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 767.98px) {
  .c-brands .owl-item .col {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .c-brands .owl-item .col {
    margin-bottom: 0;
    height: auto;
  }
}
.c-brands .owl-item .col img {
  width: auto;
  max-height: 60px;
}
@media (max-width: 575.98px) {
  .c-brands .owl-item .col img {
    width: 88%;
  }
}
@media (max-width: 575.98px) {
  .c-brands .owl-item {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.b-slider_reward .owl-stage-outer {
  padding: 30px 0;
}
.b-slider_reward .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-slider_reward .owl-item {
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  /*@media (min-width: 992px) {
    &.medium {
      transform: scale(1.3);
    }

    &.big,
    &.center {
      transform: scale(1.8);
    }
  }*/
}
.b-slider_reward .owl-item .b-slider__item_wrapper {
  max-height: 100px;
}
.b-slider_reward .owl-item .b-slider__item_wrapper:hover {
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.b-slider_reward .b-slider__item_wrapper img {
  max-width: 80px;
}

@media (min-width: 992px) {
  div.b-slider_reward .b-slider__item_wrapper img {
    max-height: 100px;
    width: auto !important;
    max-width: 110px;
  }

  .b-slider_reward-wrapper {
    margin: 50px -100px 0;
    padding: 0 50px;
  }
}
.c-block-relative {
  position: relative;
  padding: 0 !important;
}
.c-block-relative .container {
  position: relative;
}

.c-block {
  padding: 5.7rem 0;
  position: relative;
}
@media (max-width: 575.98px) {
  .c-block {
    padding: 2.5rem 0px;
  }
}
.c-block.c-block-zero {
  padding: 0;
}
.c-block.c-block-pt-58 {
  padding-top: 58.8px;
}
.c-block.c-block-pt-130 {
  padding-top: 8.125rem;
}
.c-block.c-block-pb-130 {
  padding-bottom: 8.125rem;
}
.c-block.c-block-pt-100 {
  padding-top: 6.25rem;
}
.c-block.c-block-pt-48 {
  padding-top: 48px;
}
.c-block.c-block-pb-50 {
  padding-bottom: 50px;
}
.c-block.c-block-pb-200 {
  padding-bottom: 200px;
}
@media (max-width: 767.98px) {
  .c-block.c-block-pb-md-100 {
    padding-bottom: 100px;
  }
}
.c-block.c-block-pt-200 {
  padding-top: 200px;
}
.c-block.c-block-mt-100 {
  margin-top: 100px;
}
.c-block.c-block-pb-140 {
  padding-bottom: 140px;
}
.c-block.c-block-pb-170 {
  padding-bottom: 170px;
}
@media (max-width: 575.98px) {
  .c-block.c-block-pb-sm-57 {
    padding-bottom: 3.5625rem;
  }
  .c-block.c-block-pb-sm-100 {
    padding-bottom: 100px;
  }
}
.c-block.c-block-content__wrapper {
  padding: 3.4rem 55px 0;
  z-index: 1;
}
.c-block.c-block-content__wrapper.w-pad-bottom {
  padding-bottom: 3.4rem;
}
.c-block.c-block-content__wrapper.c-block-one-column {
  padding: 1.875rem 1.875rem 0;
}
.c-block.c-block-content__wrapper.c-block-one-column.w-pad-bottom {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .c-block.c-block-content__wrapper.c-block-one-column {
    padding: 1.875rem 3.4375rem 0;
  }
  .c-block.c-block-content__wrapper.c-block-one-column.w-pad-bottom {
    padding-bottom: 30px;
  }
}
.c-block.c-block-content__wrapper .c-block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.c-block.c-block-content__wrapper .c-block-content h3, .c-block.c-block-content__wrapper .c-block-content .h3 {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-block.c-block-content__wrapper .c-block-content h3, .c-block.c-block-content__wrapper .c-block-content .h3 {
    font-size: 2.1875rem;
    line-height: 3.125rem;
    font-weight: 700;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .c-block.c-block-content__wrapper .c-block-content h3, .c-block.c-block-content__wrapper .c-block-content .h3 {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .c-block.c-block-content__wrapper .c-block-content + .c-block-image {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .c-block.c-block-content__wrapper > div.justify-content-between {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-flow: column !important;
            flex-flow: column !important;
  }
  .c-block.c-block-content__wrapper > div.justify-content-between .c-block-image {
    margin-top: 40px;
  }
}
.c-block h2, .c-block .h2 {
  margin-bottom: 5rem;
}
@media (max-width: 575.98px) {
  .c-block h2, .c-block .h2 {
    margin-bottom: 30px;
  }
}
.c-block h2 + .lead, .c-block .h2 + .lead {
  margin-bottom: 100px;
}
.c-block h2.section-heading-left, .c-block .section-heading-left.h2 {
  margin-bottom: 5rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .c-block h2.section-heading-left, .c-block .section-heading-left.h2 {
    margin-bottom: 3.125rem;
  }
}
.c-block.c-block-gray {
  background: #F4F6F8;
}
.c-block.c-block-last {
  padding-bottom: 0;
}
.c-block .testimonial-heading {
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .c-block .testimonial-heading {
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 767.98px) {
  .c-cards-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.spacing-p-50px-100px-130px {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .spacing-p-50px-100px-130px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-50px-100px-130px {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.spacing-p-100px-120px-130px {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 768px) {
  .spacing-p-100px-120px-130px {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-100px-120px-130px {
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
  }
}

.spacing-p-100px-120px-170px {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 768px) {
  .spacing-p-100px-120px-170px {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-100px-120px-170px {
    padding-top: 10.625rem;
    padding-bottom: 10.625rem;
  }
}

.spacing-p-100px-100px-120px {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 768px) {
  .spacing-p-100px-100px-120px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-100px-100px-120px {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.spacing-p-100px-100px-100px {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 768px) {
  .spacing-p-100px-100px-100px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-100px-100px-100px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.spacing-p-60px-80px-100px {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-p-60px-80px-100px {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-60px-80px-100px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.spacing-p-60px-80px-90px {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-p-60px-80px-90px {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-60px-80px-90px {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }
}

.spacing-p-60px-80px-80px {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-p-60px-80px-80px {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-60px-80px-80px {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.spacing-p-60px-80px-80px {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-p-60px-80px-80px {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-60px-80px-80px {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.spacing-p-30px-40px-50px {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .spacing-p-30px-40px-50px {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-30px-40px-50px {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.spacing-p-30px-30px-100px {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .spacing-p-30px-30px-100px {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 992px) {
  .spacing-p-30px-30px-100px {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.spacing-pt-20px-50px-20px {
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .spacing-pt-20px-50px-20px {
    padding-top: 3.125rem;
  }
}
@media (min-width: 992px) {
  .spacing-pt-20px-50px-20px {
    padding-top: 1.25rem;
  }
}

.spacing-pt-60px-80px-110px {
  padding-top: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-pt-60px-80px-110px {
    padding-top: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-pt-60px-80px-110px {
    padding-top: 6.875rem;
  }
}

.spacing-pt-100px-120px-170px {
  padding-top: 6.25rem;
}
@media (min-width: 768px) {
  .spacing-pt-100px-120px-170px {
    padding-top: 7.5rem;
  }
}
@media (min-width: 992px) {
  .spacing-pt-100px-120px-170px {
    padding-top: 10.625rem;
  }
}

.spacing-pt-60px-60px-90px {
  padding-top: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-pt-60px-60px-90px {
    padding-top: 3.75rem;
  }
}
@media (min-width: 992px) {
  .spacing-pt-60px-60px-90px {
    padding-top: 5.625rem;
  }
}

.spacing-pb-0px-0px-0px {
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .spacing-pb-0px-0px-0px {
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-0px-0px-0px {
    padding-bottom: 0rem;
  }
}

.spacing-pb-0px-0px-60px {
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .spacing-pb-0px-0px-60px {
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-0px-0px-60px {
    padding-bottom: 3.75rem;
  }
}

.spacing-pb-0px-0px-110px {
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .spacing-pb-0px-0px-110px {
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-0px-0px-110px {
    padding-bottom: 6.875rem;
  }
}

.spacing-pb-0px-80px-200px {
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .spacing-pb-0px-80px-200px {
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-0px-80px-200px {
    padding-bottom: 12.5rem;
  }
}

.spacing-pb-60px-80px-160px {
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-pb-60px-80px-160px {
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-60px-80px-160px {
    padding-bottom: 10rem;
  }
}

.spacing-pb-100px-80px-200px {
  padding-bottom: 6.25rem;
}
@media (min-width: 768px) {
  .spacing-pb-100px-80px-200px {
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-100px-80px-200px {
    padding-bottom: 12.5rem;
  }
}

.spacing-pb-60px-60px-105px {
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .spacing-pb-60px-60px-105px {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 992px) {
  .spacing-pb-60px-60px-105px {
    padding-bottom: 6.5625rem;
  }
}

body .spacing-p-35px-50px-70px {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
}
@media (min-width: 768px) {
  body .spacing-p-35px-50px-70px {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 992px) {
  body .spacing-p-35px-50px-70px {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}

@media (min-width: 992px) {
  .svg-wrap {
    margin-top: -2.5rem;
  }
}

.c-cards-image {
  position: relative;
  background: #fff;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
          box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
  border-radius: 10px;
}
.c-cards-image img {
  position: relative;
  z-index: 99;
}
.c-cards-image .b-wall__box {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-cards-image .b-wall__box video.b-wall__video {
  max-width: 100%;
}
.c-cards-image .b-wall__box.active {
  display: block;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .c-cards-image .b-wall__box.active {
    min-height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767.98px) {
  .c-cards-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .c-cards-image img {
    width: 100%;
  }
}

.c-cards {
  margin-bottom: 2rem;
  padding-left: 35px;
}
.c-cards h5, .c-cards .h5 {
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
}
.c-cards .progress {
  display: none;
}
.c-cards .progress .progress-bar {
  width: 0;
  height: 4px;
  -webkit-transition: width 0s linear;
  -o-transition: width 0s linear;
  transition: width 0s linear;
  display: block;
}
.c-cards ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
}
.c-cards ul li {
  color: #666666;
  margin-top: 5px;
}
@media (max-width: 575.98px) {
  .c-cards ul li {
    font-size: 13px;
    line-height: 25px;
  }
}
.c-cards ul li:first-child {
  margin-top: 0;
}
.c-cards.active {
  background: #fff;
  padding: 40px 35px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  -webkit-box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
          box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
  min-height: 18.75rem;
}
@media (max-width: 767.98px) {
  .c-cards.active {
    padding: 0;
    background: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.c-cards.active ul,
.c-cards.active .progress {
  display: block;
}
.c-cards.active .progress .progress-bar {
  -webkit-transition: width 7s linear;
  -o-transition: width 7s linear;
  transition: width 7s linear;
}
.c-cards.active .progress .progress-bar.active {
  width: 100%;
}
.c-cards.active h5, .c-cards.active .h5 {
  font-size: 1.666rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.c-block-hidden {
  overflow: hidden;
}

.c-banner {
  background: #272742;
  padding: 55px 0;
  color: #fff;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .c-banner {
    padding: 40px 0px;
  }
}
.c-banner.c-banner-green {
  background: #89FFB8;
}
.c-banner.c-banner-green .c-banner-text p {
  color: #272742;
}
.c-banner .btn {
  z-index: 1;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .c-banner .btn {
    padding: 0.75rem 2.5rem;
  }
}
.c-banner .c-banner-text p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .c-banner .c-banner-text p {
    font-size: 13px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 575.98px) {
  .c-banner .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 100%;
  }
  .c-banner .d-flex .c-banner-text {
    margin-bottom: 20px;
  }
  .c-banner .d-flex .btn {
    width: 100%;
    padding: 11px 10px;
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .c-banner .c-icon_bubbles.bubble-purple {
    right: 0;
    left: auto;
    display: block;
  }
}
.c-banner .c-banner-text,
.c-banner h3,
.c-banner .h3 {
  color: #fff;
}
.c-banner h3, .c-banner .h3 {
  padding-top: 5px;
  margin-bottom: 20px;
  font-size: 2.3333rem;
}
@media (max-width: 575.98px) {
  .c-banner h3, .c-banner .h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
    width: 80%;
  }
}
.c-banner h4, .c-banner .h4 {
  font-weight: bold;
  font-size: 2.1875rem !important;
  line-height: 3.125rem !important;
}
@media (max-width: 575.98px) {
  .c-banner h4, .c-banner .h4 {
    font-size: 1.5rem !important;
    line-height: 1.75rem !important;
  }
}
.c-banner .c-banner-text {
  position: relative;
}
.c-banner .c-banner-text p {
  margin: 0;
  font-size: 1.1rem;
}
@media (max-width: 575.98px) {
  .c-banner .c-banner-text.big {
    margin-bottom: 2.8125rem;
  }
}
.c-banner .c-banner-text.big h3, .c-banner .c-banner-text.big .h3 {
  font-size: 3.125rem;
  line-height: 3.75rem;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .c-banner .c-banner-text.big h3, .c-banner .c-banner-text.big .h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .c-banner .c-banner-text.big h3, .c-banner .c-banner-text.big .h3 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
  }
}
.c-banner .c-banner-text-alt {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 1.875rem;
}
.c-banner .c-banner-text-alt.c-banner-text-lg {
  font-weight: bold;
  font-size: 35px;
  line-height: 50px;
}
@media (max-width: 575.98px) {
  .c-banner .c-banner-text-alt.c-banner-text-lg {
    font-size: 24px;
    line-height: 28px;
  }
}

.c-cards-carousel__wrapper .simply-scroll-container:after, .c-cards-carousel__wrapper .simply-scroll-container:before,
.c-cards-carousel__wrapper .owl-stage-outer:after,
.c-cards-carousel__wrapper .owl-stage-outer:before {
  content: "";
  display: block;
  width: 220px;
  height: 107%;
  position: absolute;
  z-index: 99;
}
.c-cards-carousel__wrapper .simply-scroll-container:after,
.c-cards-carousel__wrapper .owl-stage-outer:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(21.37%, #F4F6F8), color-stop(98.63%, rgba(229, 229, 229, 0)));
  background: -o-linear-gradient(left, #F4F6F8 21.37%, rgba(229, 229, 229, 0) 98.63%);
  background: linear-gradient(90deg, #F4F6F8 21.37%, rgba(229, 229, 229, 0) 98.63%);
  left: -1%;
  top: -7.5%;
}
@media screen and (max-width: 1600px) {
  .c-cards-carousel__wrapper .simply-scroll-container:after,
.c-cards-carousel__wrapper .owl-stage-outer:after {
    display: none;
  }
}
.c-cards-carousel__wrapper .simply-scroll-container:before,
.c-cards-carousel__wrapper .owl-stage-outer:before {
  background: -webkit-gradient(linear, right top, left top, color-stop(21.37%, #F4F6F8), color-stop(98.63%, rgba(229, 229, 229, 0)));
  background: -o-linear-gradient(right, #F4F6F8 21.37%, rgba(229, 229, 229, 0) 98.63%);
  background: linear-gradient(270deg, #F4F6F8 21.37%, rgba(229, 229, 229, 0) 98.63%);
  right: -1%;
  top: -7.5%;
  left: auto;
}
@media screen and (max-width: 1600px) {
  .c-cards-carousel__wrapper .simply-scroll-container:before,
.c-cards-carousel__wrapper .owl-stage-outer:before {
    display: none;
  }
}
.c-cards-carousel__wrapper.white-bg .simply-scroll-container:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(21.37%, #FFFFFF), color-stop(98.63%, rgba(229, 229, 229, 0)));
  background: -o-linear-gradient(left, #FFFFFF 21.37%, rgba(229, 229, 229, 0) 98.63%);
  background: linear-gradient(90deg, #FFFFFF 21.37%, rgba(229, 229, 229, 0) 98.63%);
}
.c-cards-carousel__wrapper.white-bg .simply-scroll-container:before {
  background: -webkit-gradient(linear, right top, left top, color-stop(21.37%, #FFFFFF), color-stop(98.63%, rgba(229, 229, 229, 0)));
  background: -o-linear-gradient(right, #FFFFFF 21.37%, rgba(229, 229, 229, 0) 98.63%);
  background: linear-gradient(270deg, #FFFFFF 21.37%, rgba(229, 229, 229, 0) 98.63%);
}

.card {
  border: none;
}
.card.w-border {
  border: 1px solid #e2e2e2;
  -webkit-box-shadow: 0px 10px 30px rgba(73, 83, 99, 0.3);
          box-shadow: 0px 10px 30px rgba(73, 83, 99, 0.3);
  margin-bottom: 1.875rem;
}
.card.w-border .card-body {
  padding: 1.875rem 2.1875rem;
}
.card.w-border .card-body .learnmore {
  position: absolute;
  bottom: 2.1875rem;
  border-bottom: 2px solid transparent;
}
.card.w-border .card-body .learnmore:hover {
  border-bottom: 2px solid #A11CF2;
}
.card.w-border .card-body img {
  margin-bottom: 0;
}
.card.w-border .icons {
  max-height: 32px;
  margin-bottom: 2.5rem;
}
.card.w-border .icons img {
  margin-right: 0.625rem;
  width: auto;
  display: inline-block;
}
.card.w-border .card-title {
  line-height: 2.1875rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 575.98px) {
  .card.w-border .card-title {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    margin-bottom: 1.5625rem;
    text-align: left;
  }
}
.card.w-border .card-text {
  margin-right: 0;
  margin-bottom: 3.4375rem;
  max-width: none;
}
.card img {
  margin-bottom: 3.125rem;
}
@media (max-width: 575.98px) {
  .card br {
    display: none;
  }
}
.card h4, .card .h4 {
  font-size: 25px;
  line-height: 36px;
}
@media (max-width: 575.98px) {
  .card h4, .card .h4 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
    text-align: center;
  }
  .card h4.text-left, .card .text-left.h4 {
    text-align: left;
  }
}
.card .card-text {
  color: #272742;
  max-width: 85%;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
@media (max-width: 767.98px) {
  .card .card-text {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .card .card-text {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.card .card-text.big {
  font-size: 1.25rem;
  line-height: 2.1875rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 991.98px) {
  .card .card-text.big {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin-bottom: 1.5625rem;
  }
}
@media (max-width: 575.98px) {
  .card .card-text {
    max-width: 100%;
  }
}
.card .learnmore {
  font-size: 15px;
  color: #A11CF2;
  font-weight: 700;
  text-decoration: none;
}
.card .btn {
  padding: 0.2rem 0rem;
}
.card .btn.btn-default {
  padding: 0.6667rem 2rem;
}
.card.solutions-block {
  padding: 1.875rem 1.5625rem;
  z-index: 2;
}
.card.solutions-block.bordered {
  border: 1px solid #cccccc;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .card.solutions-block {
    padding: 4.0625rem 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 768px) {
  .card.solutions-block {
    padding: 4.0625rem 1.875rem;
  }
}
.card.solutions-block div.card-body {
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .card.solutions-block div.card-body svg {
    width: 8.4375rem;
    height: 8.4375rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .card.solutions-block div.card-body svg {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .card.solutions-block div.card-body svg {
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 767.98px) {
  .card.solutions-block div.card-body svg {
    width: 6.875rem;
    height: 5.3125rem;
    margin-bottom: 2.5rem;
  }
}
.card.solutions-block p.card-text {
  color: #272742;
  text-align: left !important;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .card.solutions-block p.card-text {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  .card.solutions-block .card-btn a {
    font-size: 0.9375rem;
    line-height: 0.9375rem;
    padding-top: 0.78125rem;
    padding-bottom: 0.78125rem;
  }
}

.c-cards-carousel {
  overflow: hidden;
  margin: auto;
  padding: 0 0 40px;
}
.c-cards-carousel .card {
  min-width: 310px;
  padding: 35px 30px;
  margin: 0 15px;
}
.c-cards-carousel .card .card-body {
  padding: 25px 0 40px;
}
.c-cards-carousel .card .card-body .card-author::before {
  content: "";
  display: block;
  margin-bottom: 20px;
  width: 100px;
  height: 0.5px;
  background: #cccccc;
}
.c-cards-carousel .card .card-body .card-title {
  color: #666666;
  margin-bottom: 10px;
}
.c-cards-carousel .card h3, .c-cards-carousel .card .h3 {
  margin-bottom: 0;
}
.c-cards-carousel .card .btn {
  min-width: 100px;
}

.c-cards-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.b-slider_reward {
  margin: 0;
}
@media (max-width: 575.98px) {
  .b-slider_reward {
    margin: 0;
  }
}
.b-slider_reward .b-slider__item {
  float: left;
  padding: 0;
  margin-bottom: 3.125rem;
  width: 20%;
}
@media (max-width: 575.98px) {
  .b-slider_reward .b-slider__item {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
.b-slider_reward .b-slider__item_wrapper {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .b-slider_reward .b-slider__item_wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.b-slider_reward .b-slider__item_wrapper img {
  /*width: 50%; */
  display: inline-block !important;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.b-slider_reward .b-slider__item_wrapper:hover {
  background: #fff;
  -webkit-box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
          box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
  border-radius: 8px;
  opacity: 1;
}
.b-slider_reward .b-slider__item_wrapper:hover img {
  /* width: 58%; */
  -webkit-filter: none;
          filter: none;
}
.b-slider_reward:after {
  content: "";
  display: block;
  clear: both;
}

.b-slider_brands .b-slider__img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.b-slider_brands .b-slider__img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.c-block-white {
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 575.98px) {
  .c-block-white {
    border-radius: 0;
  }
}

.c-block-extended {
  padding: 60px 150px !important;
  max-width: 1600px;
  margin: auto;
}
.c-block-extended h2, .c-block-extended .h2 {
  margin-bottom: 2.5rem;
}
@media (max-width: 575.98px) {
  .c-block-extended {
    padding: 30px 30px !important;
  }
}

.c-map-offices {
  position: relative;
  padding: 20px 0 !important;
}
@media (max-width: 575.98px) {
  .c-map-offices {
    padding: 60px 0 70px !important;
  }
}
.c-map-offices .c-block-extended {
  padding: 0px 0px !important;
}
.c-map-offices::before {
  content: "";
  background: url(../png/map-2.png) no-repeat center top;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.1;
  left: 0;
  top: 0;
  background-size: cover;
  z-index: 1;
}
.c-map-offices .col {
  position: relative;
  z-index: 99;
}
.c-map-offices h3, .c-map-offices .h3,
.c-map-offices p {
  color: #86869A;
}
.c-map-offices h3, .c-map-offices .h3 {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  margin-bottom: 0.3125rem;
}
@media (min-width: 768px) {
  .c-map-offices h3, .c-map-offices .h3 {
    font-size: 2.1875rem;
    line-height: 3.125rem;
  }
}
.c-map-offices p {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .c-map-offices p {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.c-map-offices .col-12,
.c-map-offices .col-sm-4,
.c-map-offices .col-6 {
  height: 180px;
  place-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 575.98px) {
  .c-map-offices .col-12,
.c-map-offices .col-sm-4,
.c-map-offices .col-6 {
    height: auto;
    place-content: normal;
    margin-bottom: 40px;
  }
}
.c-map-offices .c-social_email a {
  font-size: 12px;
  text-decoration: none;
}

.b-footer {
  background: #272742;
  color: #fff;
  padding: 50px 0;
}
.b-footer .logo path {
  fill: #fff;
  opacity: 0.4;
}
.b-footer .b-footer__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.b-footer .f-links li {
  margin-bottom: 0;
}
.b-footer ul,
.b-footer li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.b-footer a {
  color: #e2e2e2;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  text-decoration: none;
  font-weight: 400;
}
.b-footer .b-footer__links {
  margin-top: 60px;
}
@media (max-width: 575.98px) {
  .b-footer .b-footer__links .col {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-bottom: 30px;
  }
}
.b-footer .b-footer__links:after {
  content: "";
  background: #8993AA;
  height: 1px;
  width: 100%;
  display: block;
  margin: 40px 0;
}
.b-footer .b-footer__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-footer .b-footer__aside .b-footer__copyright {
  font-size: 16px;
  line-height: 24px;
}

.c-social .c-social_networks {
  margin-bottom: 20px;
}
.c-social .c-social_networks a {
  margin-right: 20px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .c-social .c-social_networks a {
    margin-right: 0.3125rem;
  }
}
.c-social .c-social_email a {
  color: #8993AA;
}

.c-cards-equal {
  margin-bottom: 140px;
}
.c-cards-equal.c-cards-equal-minified {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .c-cards-equal {
    margin-bottom: 0;
  }
}
.c-cards-equal.row {
  height: 100%;
}
@media (max-width: 767.98px) {
  .c-cards-equal.row > div {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .c-cards-equal.row > div {
    margin-bottom: 20px;
  }
}
.c-cards-equal.row .col-sm-7,
.c-cards-equal.row .col-sm-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.c-cards-equal.row .col-sm-7 .btn,
.c-cards-equal.row .col-sm-6 .btn {
  max-width: 195px;
}
.c-cards-equal .card {
  position: relative;
}
.c-cards-equal .card.spaced {
  min-width: 330px;
  max-width: 100%;
}
.c-cards-equal .card.spaced .card-body {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 767.98px) {
  .c-cards-equal .card {
    height: auto;
  }
}
.c-cards-equal .card .card-body {
  border-radius: 10px;
  position: relative;
  z-index: 99;
  background: #fff;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .c-cards-equal .card .card-body:not(.no-icon) {
    padding-top: 150px;
  }
}
@media (max-width: 767.98px) {
  .c-cards-equal .card .card-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-cards-equal .card .card-body:not(.no-icon) {
    padding-top: 130px;
  }
}
@media (max-width: 575.98px) {
  .c-cards-equal .card .card-body:not(.no-icon) {
    padding-top: 120px;
  }
  .c-cards-equal .card .card-body.normal-sm-top {
    padding-top: 1.875rem;
  }
}
.c-cards-equal .card .card-body .card-title-lg {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 767.98px) {
  .c-cards-equal .card .card-body .card-title-lg {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    margin-bottom: 0.9375rem;
  }
}
.c-cards-equal .card .card-body .card-image-bottom {
  height: 200px;
}
.c-cards-equal .card .card-body .card-image-bottom.card-image-1 {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .c-cards-equal .card .card-body .card-image-bottom {
    height: 150px;
  }
  .c-cards-equal .card .card-body .card-image-bottom svg {
    height: 170px;
  }
}
@media (max-width: 991.98px) {
  .c-cards-equal .card .card-body .card-image-bottom {
    height: 0;
    position: absolute;
    top: 18px;
  }
}
.c-cards-equal .card .card-body .card-image-bottom svg {
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media (max-width: 991.98px) {
  .c-cards-equal .card .card-body .card-image-bottom svg {
    width: 7.5rem;
    height: 7.5rem;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  .c-cards-equal .card .card-body .card-image-bottom svg {
    width: 5.625rem;
    height: 5.625rem;
    position: relative;
  }
}

.c-cards-block {
  margin-bottom: 2.5rem !important;
}

.b-slider-opinion .b-slider__item .b-opinion .b-form-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.b-slider-opinion .b-slider__item .b-opinion .b-form-text__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 30px;
}
.b-slider-opinion .b-form-text__image.b-form-text__image-noborder img {
  width: 91px;
  height: 91px;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.b-slider-opinion .b-form-text__blockquote {
  margin-bottom: 30px;
}
.b-slider-opinion .b-form-text__blockquote .b-form-text__quote {
  max-width: 900px;
  padding: 0;
  margin: 0;
  border: 0;
  color: #272742;
  font-style: normal;
  font-weight: normal;
  font-size: 1.5625rem;
  line-height: 2.5rem;
  text-align: center;
  quotes: none;
}
@media (max-width: 575.98px) {
  .b-slider-opinion .b-form-text__blockquote .b-form-text__quote {
    font-size: 1rem;
    line-height: 1.5625rem;
  }
}
@media (max-width: 575.98px) {
  .b-slider-opinion .b-form-text__caption {
    margin-bottom: 1.25rem !important;
  }
}
.b-slider-opinion .b-form-text__caption .b-form-text__author {
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .b-slider-opinion .b-form-text__caption .b-form-text__author {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-bottom: 0.3125rem;
  }
}
.b-slider-opinion .b-form-text__caption .b-form-text__position {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1rem;
  color: #666666;
  text-align: center;
}
@media (max-width: 575.98px) {
  .b-slider-opinion .b-form-text__caption .b-form-text__position {
    font-size: 0.6875rem;
    line-height: 0.9375rem;
  }
}

.c-clients-say h2, .c-clients-say .h2 {
  margin-bottom: 2.5rem;
}

.b-opinion-brand {
  width: 100%;
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 575.98px) {
  .b-opinion-brand {
    display: block;
  }
}
.b-opinion-brand .b-opinion-item {
  padding: 0 10px;
}
@media (max-width: 575.98px) {
  .b-opinion-brand .b-opinion-item {
    float: left;
    width: 33%;
    margin-bottom: 10px;
  }
}
.b-opinion-brand .b-slider__img {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
  max-width: 120px;
}
.b-opinion-brand .b-slider__img:hover {
  opacity: 1;
  -webkit-filter: unset;
  filter: unset;
}
.b-opinion-brand.colored .b-slider__img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.c-pricing-plan .c-pricing-header,
.c-pricing-plan .c-pricing-description,
.c-pricing-plan .c-pricing-price,
.c-pricing-plan .c-pricing-period {
  text-align: center;
}

@media (max-width: 575.98px) {
  .c-pricing-switcher .col {
    width: 50%;
  }
  .c-pricing-switcher .col .btn {
    min-width: 100%;
  }
}
.c-pricing-switcher .c-button-for-advertisers {
  /*display: inline-flex;
  justify-content: flex-end;

  @include media-breakpoint-down(sm) {
    display: flex;
    justify-content: space-between;
  }*/
}
.c-pricing-switcher a {
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .c-pricing-switcher a {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    padding: 0.625rem 0.9375rem;
  }
}

.c-banner-green {
  background: #89FFB8;
  color: #272742;
}
@media (max-width: 767.98px) {
  .c-banner-green.c-banner {
    overflow: hidden;
  }
  .c-banner-green .footer-bubbles .black-dot-3,
.c-banner-green .footer-bubbles .black-stroke-2 {
    display: block;
  }
  .c-banner-green .footer-bubbles .black-stroke-2 {
    top: 30px;
    right: -30px;
    left: auto;
  }
}
@media (max-width: 575.98px) {
  .c-banner-green {
    padding: 3.125rem 2.5rem;
  }
}
.c-banner-green h3, .c-banner-green .h3 {
  color: #272742;
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-banner-green h3, .c-banner-green .h3 {
    font-size: 2.1875rem;
    line-height: 3.125rem;
    font-weight: 700;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .c-banner-green h3, .c-banner-green .h3 {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .c-banner-green h3, .c-banner-green .h3 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .c-banner-green p.c-banner-text-alt {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin-bottom: 0.9375rem;
    font-weight: 400;
  }
}
@media (max-width: 575.98px) {
  .c-banner-green a.btn {
    font-size: 0.875rem;
    line-height: 1rem;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    width: 100%;
  }
}

.btn-gray {
  display: block;
  padding: 10px 15px;
  width: 195px;
  height: 45px;
  background: #E5E8F0;
  border-radius: 5px;
}

.c-banner-beige {
  background: #E5E8F0;
  color: #272742;
}
.c-banner-beige h3, .c-banner-beige .h3 {
  color: #272742;
}

.c-banner-lightpurple {
  background: #F6ECFF;
  color: #272742;
}

.c-modal {
  background: #F4F6F8;
  position: relative;
}
.c-modal.c-modal-green {
  background: #89FFB8;
}
@media (max-width: 575.98px) {
  .c-modal .c-modal-image__container {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .thank-you-page.c-modal-green {
    background: #fff;
  }
}

.c-modal-close {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 999;
}
@media (max-width: 575.98px) {
  .c-modal-close {
    right: 10px;
    top: 10px;
  }
  .c-modal-close img {
    max-width: 30px;
  }
}

.c-modal-form-status {
  margin-bottom: 35px;
}

.c-modal-form {
  max-width: 385px;
  min-width: 320px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-modal-form-full {
  max-width: 940px;
  min-width: 320px;
}
.c-modal-form > h3, .c-modal-form > .h3 {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .c-form-block.c-form-block-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .c-form-block.c-form-block-flex .input-group {
    width: 100%;
    max-width: 100%;
  }
}

.c-modal-form__wrapper {
  background: #fff;
  -webkit-transform: translateX(12px);
      -ms-transform: translateX(12px);
          transform: translateX(12px);
}

.c-modal-logo {
  padding-top: 45px;
  padding-left: 45px;
}
@media (max-width: 575.98px) {
  .c-modal-logo {
    padding-left: 33px;
  }
}

.input-group .has-float-label {
  width: 100%;
}

.c-modal-form h3, .c-modal-form .h3 {
  margin-bottom: 30px;
}

.c-form-block .inputs-list {
  list-style: none;
  padding: 0;
}
.c-form-block-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}
.c-form-block-flex .input-group {
  max-width: 300px;
}

.c-form-block-label {
  margin-bottom: 25px;
  color: #8B8F9B;
  color: #666666;
  font-size: 0.9375rem;
  line-height: 1.75rem;
  margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  .c-form-block-label {
    margin-bottom: 10px;
  }
}
.c-form-block-label.c-form-block-label-last {
  margin-bottom: 40px;
}

.form-check-label {
  margin-bottom: 10px;
}

.hs-form-field {
  position: relative;
}
.hs-form-field > label {
  position: absolute;
  top: 4px;
  font-size: 11px;
  line-height: 15px;
  left: 12px;
  color: #8993AA;
}

.has-float-label label,
.has-float-label > span {
  top: 4px;
  font-size: 0.6875rem;
  line-height: 15px;
}

.has-float-label .hs-input:not(:focus)::-webkit-input-placeholder {
  color: transparent;
}

.has-float-label .hs-input:not(:focus)::-moz-placeholder {
  color: transparent;
}

.has-float-label .hs-input:not(:focus):-ms-input-placeholder {
  color: transparent;
}

.has-float-label .hs-input:not(:focus)::-ms-input-placeholder {
  color: transparent;
}

.has-float-label .hs-input:not(:focus)::placeholder {
  color: transparent;
}

.has-float-label .hs-input:-moz-placeholder-shown:not(:focus) {
  color: transparent;
}

.has-float-label .hs-input:-ms-input-placeholder:not(:focus) {
  color: transparent;
}

.has-float-label .hs-input:placeholder-shown:not(:focus) {
  color: transparent;
}

.has-float-label .form-control:-moz-placeholder-shown:not(:focus) + *, .has-float-label .hs-input:-moz-placeholder-shown:not(:focus) + * {
  top: 18px;
  font-size: 0.9375rem;
  opacity: 1;
}

.has-float-label .form-control:-ms-input-placeholder:not(:focus) + *, .has-float-label .hs-input:-ms-input-placeholder:not(:focus) + * {
  top: 18px;
  font-size: 0.9375rem;
  opacity: 1;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + *,
.has-float-label .hs-input:placeholder-shown:not(:focus) + * {
  top: 18px;
  font-size: 0.9375rem;
  opacity: 1;
}

.form-check-label {
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.c-form-buttons .btn {
  width: 100%;
}

.c-modal .container-fluid .row, .c-modal .container-sm .row, .c-modal .container-md .row, .c-modal .container-lg .row, .c-modal .container-xl .row, .c-modal .container-xxl .row {
  height: 100vh;
}
.c-modal .container-fluid .row .col-sm-4, .c-modal .container-sm .row .col-sm-4, .c-modal .container-md .row .col-sm-4, .c-modal .container-lg .row .col-sm-4, .c-modal .container-xl .row .col-sm-4, .c-modal .container-xxl .row .col-sm-4,
.c-modal .container-fluid .row .col-sm-8,
.c-modal .container-sm .row .col-sm-8,
.c-modal .container-md .row .col-sm-8,
.c-modal .container-lg .row .col-sm-8,
.c-modal .container-xl .row .col-sm-8,
.c-modal .container-xxl .row .col-sm-8,
.c-modal .container-fluid .row .c-modal-form__wrapper,
.c-modal .container-sm .row .c-modal-form__wrapper,
.c-modal .container-md .row .c-modal-form__wrapper,
.c-modal .container-lg .row .c-modal-form__wrapper,
.c-modal .container-xl .row .c-modal-form__wrapper,
.c-modal .container-xxl .row .c-modal-form__wrapper,
.c-modal .container-fluid .row .c-modal-form,
.c-modal .container-sm .row .c-modal-form,
.c-modal .container-md .row .c-modal-form,
.c-modal .container-lg .row .c-modal-form,
.c-modal .container-xl .row .c-modal-form,
.c-modal .container-xxl .row .c-modal-form {
  height: 100vh;
}

.c-pricing-switcher {
  padding-top: 0.625rem;
  padding-bottom: 0rem;
}

.c-pricing {
  width: 98vw;
  overflow: hidden;
}
.c-pricing .c-pricing__container {
  width: 300vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.c-pricing .c-pricing__container .c-pricing__wrapper {
  width: 100vw;
}
.c-pricing .c-pricing__container .c-pricing__wrapper > .container > .row {
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}
.c-pricing .c-pricing__container.left {
  -webkit-transform: translateX(-100vw);
      -ms-transform: translateX(-100vw);
          transform: translateX(-100vw);
}
.c-pricing .c-pricing__container.right {
  -webkit-transform: translateX(-200vw);
      -ms-transform: translateX(-200vw);
          transform: translateX(-200vw);
}

.c-block-goback__wrapper {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .c-block-goback__wrapper {
    margin-bottom: 5rem;
  }
}
.c-block-goback__wrapper a {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.875rem;
  text-decoration: none;
}
.c-block-goback__wrapper a img {
  margin-right: 10px;
}

.b-hero .c-cards-carousel {
  margin-top: 40px;
}
.b-hero .c-cards-carousel:after {
  content: "";
  display: block;
  width: 220px;
  height: 115%;
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, color-stop(21.37%, #ffffff), color-stop(98.63%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, #ffffff 21.37%, rgba(255, 255, 255, 0) 98.63%);
  background: linear-gradient(90deg, #ffffff 21.37%, rgba(255, 255, 255, 0) 98.63%);
  left: -1%;
  top: -7.5%;
  z-index: 99;
}
.b-hero .c-cards-carousel:before {
  content: "";
  display: block;
  width: 220px;
  height: 115%;
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, color-stop(21.37%, #ffffff), color-stop(98.63%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, #ffffff 21.37%, rgba(255, 255, 255, 0) 98.63%);
  background: linear-gradient(270deg, #ffffff 21.37%, rgba(255, 255, 255, 0) 98.63%);
  right: -1%;
  top: -7.5%;
  left: auto;
  z-index: 99;
}
@media (max-width: 767.98px) {
  .b-hero .c-cards-carousel:after, .b-hero .c-cards-carousel:before {
    display: none;
  }
}
.b-hero h1, .b-hero .h1,
.b-hero .note {
  text-align: left !important;
}
.b-hero .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-case-studies-wrapper {
  margin-top: 100px;
  position: relative;
}

.c-icon_bubbles {
  display: block;
  position: absolute;
  z-index: 1;
}
.c-icon_bubbles.c-bubble-1 {
  top: -140px;
  right: -100px;
}
.c-icon_bubbles.c-bubble-1.right-align {
  left: auto;
  right: -150px;
  top: -135px;
}
@media screen and (max-width: 1600px) {
  .c-icon_bubbles.c-bubble-1 {
    right: 0;
    top: -132px;
  }
}
.c-icon_bubbles.c-bubble-1a {
  top: -100px;
  right: -110px;
}
.c-icon_bubbles.c-bubble-1b {
  top: -115px;
  width: 230px;
  height: 230px;
  right: 80px;
}
.c-icon_bubbles.c-bubble-1c {
  top: 270px;
  right: 30px;
  width: 300px;
  height: 300px;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .c-icon_bubbles.c-bubble-1c {
    top: 450px;
    right: -70px;
    width: 165px;
    height: 165px;
    opacity: 0.4;
  }
}
.c-icon_bubbles.c-bubble-1d {
  width: 231px;
  height: 231px;
  right: 170px;
  top: 20px;
  left: auto;
  padding: 20px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1d {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1e {
  right: 1%;
  top: 150px;
  left: auto;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1e {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1f {
  top: 290px;
  left: -170px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1f {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1g {
  bottom: 630px;
  right: 10px;
  width: 248px;
  height: 248px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1g {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1h {
  bottom: 140px;
  right: 210px;
  width: 100px;
  height: 100px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1h {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1i {
  top: -160px;
  right: -90px;
  width: 412px;
  height: 412px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1i {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1j {
  top: 130px;
  left: 0;
  width: 300px;
  height: 300px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1j {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1k {
  top: -90px;
  right: 43px;
  width: 231px;
  height: 231px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1k {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-1l {
  bottom: -90px;
  right: 43px;
  width: 412px;
  height: 412px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-1l {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-2 {
  bottom: -70px;
  left: -110px;
}
.c-icon_bubbles.c-bubble-2a {
  top: auto;
  bottom: -190px;
  left: -110px;
}
.c-icon_bubbles.c-bubble-2b {
  top: 10px;
  right: -180px;
  width: 177px;
  height: 177px;
}
.c-icon_bubbles.c-bubble-2c {
  top: 110px;
  right: -230px;
  width: 177px;
  height: 177px;
}
.c-icon_bubbles.c-bubble-3 {
  top: -70px;
  left: 170px;
}
.c-icon_bubbles.c-bubble-3.right-align {
  left: auto;
  right: 150px;
  top: -50px;
}
.c-icon_bubbles.c-bubble-3a {
  top: auto;
  bottom: -80px;
  right: -110px;
  left: auto;
}
.c-icon_bubbles.c-bubble-3a.right-align {
  left: auto;
  right: 150px;
  top: -50px;
}
.c-icon_bubbles.c-bubble-3b {
  top: 60%;
  bottom: auto;
  right: 22%;
  left: auto;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .c-icon_bubbles.c-bubble-3b {
    top: 34%;
    right: 9%;
  }
  .c-icon_bubbles.c-bubble-3b img {
    width: 15px;
    height: 15px;
  }
}
.c-icon_bubbles.c-bubble-3c {
  bottom: 30px;
  right: 160px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-3c {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-3d {
  bottom: 60px;
  right: 100px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-3d {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-3d {
  bottom: 60px;
  right: 100px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-3d {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-3f {
  top: 110px;
  left: 261px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-3f {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-3g {
  top: auto;
  bottom: 20px;
  right: 28%;
  left: auto;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .c-icon_bubbles.c-bubble-3g {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-4 {
  top: 95px;
  right: 50px;
}
@media (max-width: 575.98px) {
  .c-icon_bubbles.c-bubble-4 {
    top: -460px;
    right: -100px;
    display: none;
  }
}
.c-icon_bubbles.c-bubble-5 {
  top: 120px;
  right: -30px;
}
@media (max-width: 575.98px) {
  .c-icon_bubbles.c-bubble-5 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-6 {
  top: -400px;
  right: -160px;
}
@media screen and (max-width: 1650px) {
  .c-icon_bubbles.c-bubble-6 {
    right: 0;
  }
}
.c-icon_bubbles.c-bubble-6a {
  top: 30%;
  left: 100px;
  z-index: 0;
}
.c-icon_bubbles.c-bubble-6a img {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 767.98px) {
  .c-icon_bubbles.c-bubble-6a {
    top: 27%;
    left: -7px;
  }
  .c-icon_bubbles.c-bubble-6a img {
    width: 30px;
    height: 30px;
  }
}
.c-icon_bubbles.c-bubble-6b {
  top: 380px;
  right: 30px;
}
.c-icon_bubbles.c-bubble-6b img {
  width: 30px;
  height: 30px;
}
@media (max-width: 575.98px) {
  .c-icon_bubbles.c-bubble-6b {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-7 {
  top: -50px;
  left: 0px;
  z-index: 9;
}
@media (max-width: 575.98px) {
  .c-icon_bubbles.c-bubble-7 {
    top: -80px;
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8 {
  top: 50px;
  left: 0px;
}
@media (max-width: 575.98px) {
  .c-icon_bubbles.c-bubble-8 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8a {
  top: 50px;
  left: 0px;
}
@media (max-width: 575.98px) {
  .c-icon_bubbles.c-bubble-8a {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8b {
  bottom: -50px;
  left: 2%;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-8b {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8c {
  top: 140px;
  right: -40px;
  width: 177px;
  height: 177px;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-8c {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8d {
  z-index: 0;
  top: -100px;
  left: -200px;
}
.c-icon_bubbles.c-bubble-8e {
  z-index: 0;
  bottom: -70px;
  right: -120px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-8e {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8f {
  z-index: 0;
  bottom: -70px;
  right: -120px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-8f {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8g {
  z-index: 0;
  right: 0;
  top: -120px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-8g {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-8h {
  z-index: 0;
  bottom: 120px;
  left: -120px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-8h {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-9 {
  top: 0px;
  right: -260px;
}
.c-icon_bubbles.c-bubble-10 {
  top: 50px;
  right: -290px;
}
.c-icon_bubbles.c-bubble-11 {
  bottom: -90px;
  left: -250px;
}
.c-icon_bubbles.c-bubble-10a {
  bottom: 170px;
  left: 2%;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-10a {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-11a {
  bottom: 90px;
  right: 80px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-11a {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-12 {
  top: -40px;
  right: 80px;
  width: 85px;
  height: 85px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-12 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-12a {
  bottom: 20px;
  right: 610px;
  width: 85px;
  height: 85px;
}
.c-icon_bubbles.c-bubble-15 {
  bottom: 40px;
  right: -40px;
  width: 191px;
  height: 191px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-15 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-14 {
  bottom: -20px;
  left: 0;
}
.c-icon_bubbles.c-bubble-13 {
  top: 140px;
  right: 60px;
  width: 27px;
  height: 27px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-13 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-13a {
  bottom: 20px;
  right: -80px;
  width: 27px;
  height: 27px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-13a {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-13b {
  top: 140px;
  right: 100px;
  width: 27px;
  height: 27px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-13b {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-16 {
  bottom: -80px;
  left: -140px;
  width: 507px;
  height: 509px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-16 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-17 {
  top: 660px;
  left: -40px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-17 {
    display: none;
  }
}
.c-icon_bubbles.c-bubble-18 {
  top: 30px;
  right: 13px;
}
@media (max-width: 991.98px) {
  .c-icon_bubbles.c-bubble-18 {
    display: none;
  }
}

.why-choose-us-bubbles .c-icon_bubbles.c-bubble-1d {
  top: -110px;
  right: 10px;
}
.why-choose-us-bubbles .c-icon_bubbles.c-bubble-11a {
  bottom: -15px;
  right: 20px;
}

.b-footer__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-footer__privacy a {
  margin-right: 35px;
}
@media screen and (max-width: 768px) {
  .b-footer__privacy {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .b-footer__side .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.b-footer__copyright {
  opacity: 0.5;
  font-weight: 300;
  max-width: 150px;
}

.b-footer__aside {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.b-footer__aside a {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .b-footer__aside {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .b-footer__aside {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .b-footer__aside a {
    margin-left: 0;
  }
}

.b-footer .b-footer__links {
  margin-top: 20px;
}
.b-footer .b-footer__links:after {
  opacity: 0.4;
  width: auto;
}
@media (max-width: 575.98px) {
  .b-footer .b-footer__links:after {
    margin-left: 0;
  }
}

.b-lang {
  position: relative;
}
.b-lang .b-lang__title {
  cursor: pointer;
}
.b-lang .b-lang__dropdown {
  display: none;
  padding: 20px;
  list-style: none;
  margin-top: 15px;
  margin-left: -50px;
  position: absolute;
  top: 100%;
  z-index: 9999;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
          box-shadow: 0px 18px 30px rgba(61, 79, 126, 0.12);
  min-width: 150px;
}
.b-lang .b-lang__dropdown.open {
  display: block;
}
.b-lang .b-lang__dropdown li {
  margin-bottom: 4px;
}
.b-lang .b-lang__dropdown li a {
  text-decoration: none;
  font-size: 16px;
}
.b-lang .b-lang__dropdown li a:hover {
  color: #A11CF2;
}

.b-cpapi-login {
  padding-left: 0;
  min-width: 50px;
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  margin-left: 20px;
}
@media (max-width: 575.98px) {
  .b-cpapi-login {
    margin-left: 0;
  }
}
.b-cpapi-login:hover {
  opacity: 0.8;
}

#c-cards-featues {
  position: relative;
}
#c-cards-featues .c-icon_bubbles.c-bubble-9 {
  bottom: -88%;
  right: -60%;
  top: auto !important;
}
#c-cards-featues .c-cards .b-wall__video {
  display: none;
}

@media (max-width: 767.98px) {
  #c-cards-featues .c-cards-wrapper {
    margin-top: 8px;
  }
  #c-cards-featues .c-cards {
    padding: 0;
    margin-bottom: 0.9375rem;
  }
  #c-cards-featues .c-cards h5, #c-cards-featues .c-cards .h5 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 600;
    padding: 13px 20px;
    line-height: 25px;
    border-radius: 5px;
    background: #F4F6F8;
    position: relative;
  }
  #c-cards-featues .c-cards h5:after, #c-cards-featues .c-cards .h5:after {
    content: url(../svg/icon_down_arrow.svg);
    position: absolute;
    right: 23px;
    margin-top: -4px;
    top: 50%;
    line-height: 0.375rem;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
  #c-cards-featues .c-cards ul li {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin-bottom: 0.625rem;
    color: #272742;
  }
  #c-cards-featues .c-cards ul,
#c-cards-featues .c-cards video {
    padding-left: 20px;
    padding-right: 20px;
  }
  #c-cards-featues .c-cards .progress {
    margin-left: 20px;
    margin-right: 20px;
  }
  #c-cards-featues .c-cards.active .b-wall__video {
    display: block;
    -webkit-box-shadow: 0px 7px 20px 0px rgba(212, 218, 224, 0.7);
            box-shadow: 0px 7px 20px 0px rgba(212, 218, 224, 0.7);
    margin-bottom: 2.1875rem;
  }
  #c-cards-featues .c-cards.active h5, #c-cards-featues .c-cards.active .h5 {
    font-size: 1.125rem !important;
    line-height: 1.5625rem;
  }
  #c-cards-featues .c-cards.active h5:after, #c-cards-featues .c-cards.active .h5:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  #c-cards-featues .c-cards.active ul {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }

  .b-wall__video {
    width: 100%;
  }
}
.card-image-1 {
  -webkit-transform: translateY(20px) translateX(20px);
      -ms-transform: translateY(20px) translateX(20px);
          transform: translateY(20px) translateX(20px);
}
@media (max-width: 767.98px) {
  .card-image-1 {
    -webkit-transform: translateY(0) translateX(0);
        -ms-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}

.card-image-2 {
  -webkit-transform: translateY(51px) translateX(0px);
      -ms-transform: translateY(51px) translateX(0px);
          transform: translateY(51px) translateX(0px);
}
@media (max-width: 767.98px) {
  .card-image-2 {
    -webkit-transform: translateY(0) translateX(0);
        -ms-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}

.col-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 1024px) {
  .c-mobile-full {
    width: 100%;
  }
}

/* Footer bubbles */
.c-banner {
  overflow: initial;
}

.footer-bubbles {
  overflow: initial;
}
.footer-bubbles .square-dots,
.footer-bubbles .square-dots-2,
.footer-bubbles .black-stroke-2,
.footer-bubbles .black-dot-1,
.footer-bubbles .black-dot-2,
.footer-bubbles .black-dot-3 {
  position: absolute;
}
@media (max-width: 767.98px) {
  .footer-bubbles .square-dots,
.footer-bubbles .square-dots-2,
.footer-bubbles .black-stroke-2,
.footer-bubbles .black-dot-1,
.footer-bubbles .black-dot-2,
.footer-bubbles .black-dot-3 {
    display: none;
  }
}
.footer-bubbles .square-dots {
  top: -10px;
  left: 15%;
}
.footer-bubbles .square-dots-2 {
  bottom: -10px;
  right: 23%;
}
.footer-bubbles .black-stroke-2 {
  top: 45%;
  left: 5%;
}
.footer-bubbles .black-dot-1 {
  top: 50%;
  left: 12%;
}
.footer-bubbles .black-dot-2 {
  bottom: 5%;
  left: 13%;
}
.footer-bubbles .black-dot-3 {
  bottom: 45%;
  right: 10%;
}

.go-back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.875rem;
}
.go-back-link svg {
  position: relative;
  margin-right: 0.9375rem;
}

/* Padding classes */
.pad-top-55 {
  padding-top: 55px;
}

.testimonial-quotes .simply-scroll-list {
  margin-bottom: 0;
  padding: 30px 0 60px;
}
.testimonial-quotes .card {
  border-radius: 0;
  padding: 1.5625rem 1.875rem 1.875rem;
}
.testimonial-quotes .card .card-author {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
  margin-bottom: 0.3125rem;
}
.testimonial-quotes .card .card-author:before {
  margin-bottom: 0.9375rem !important;
}
.testimonial-quotes .card .card-title {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.testimonial-quotes .card .btn {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  font-weight: 400;
  line-height: 18.6px;
  color: #272742;
  max-width: 6.25rem;
  border-width: 1.5px;
  max-height: 1.75rem;
}
.testimonial-quotes .card .btn:hover {
  color: #fff;
}
.testimonial-quotes .col img {
  margin-bottom: 0;
}
.testimonial-quotes .col img.card-img-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.testimonial-quotes .col img.card-img-avatar.green {
  background: #89FFB8;
}
.testimonial-quotes .col img.card-img-avatar.light-purple {
  background: #F6ECFF;
}
.testimonial-quotes .col img.card-img-avatar.cyan {
  background: #c9e5ff;
}
.testimonial-quotes .col img.card-img-avatar.yellow {
  background: #faffbc;
}
.testimonial-quotes .col.text-end img {
  max-width: 90px;
  float: right;
}
.testimonial-quotes .card-text {
  color: #272742;
  height: 11rem;
  margin-bottom: 0.9375rem;
  max-width: 100%;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
.testimonial-quotes h3, .testimonial-quotes .h3 {
  width: 100%;
}

#wtr-progress {
  display: none;
}

@media (max-width: 767.98px) {
  .c-cards-equal.row.startpages > div {
    margin-bottom: 1.875rem;
  }
}

.c-block-startpages {
  padding-top: 3.125rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .c-block-startpages {
    padding-top: 6.25rem;
    padding-bottom: 5.625rem;
  }
}
.c-block-startpages h2, .c-block-startpages .h2 {
  margin-bottom: 2.5rem;
}

.startpages {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .startpages svg.illustration {
    max-height: 300px;
    margin: 0 auto 30px;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .startpages .card-title {
    width: 100%;
  }
}
.startpages .c-badges,
.startpages .card-text {
  max-width: initial;
}
.startpages .card-text {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .startpages .card-text {
    margin-bottom: 2.1875rem;
  }
}
.startpages ul.card-text {
  padding-left: 0;
  list-style-type: none;
  margin-top: 0.6875rem;
  margin-bottom: 2.5rem;
}
.startpages ul.card-text li {
  margin-bottom: 1.875rem;
  color: #272742;
}
.startpages ul.card-text li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .startpages .card .card-body {
    padding: 2.5rem 1.5625rem 1.875rem;
  }
}
.startpages .card .btn {
  padding: 0.65625rem 3.5rem;
}
@media (max-width: 991.98px) {
  .startpages.solutions .card-body svg {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .startpages.solutions .card-body svg {
    width: 120px;
    height: 120px;
  }
}

.c-icon_bubbles.c-bubble-4 {
  z-index: 0;
}

.c-course.owl-carousel .owl-stage-outer {
  overflow: initial;
}
.c-course.owl-carousel .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-course.owl-carousel .owl-stage-outer .owl-stage .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  height: 100%;
}

.owl-carousel button.owl-dot {
  width: 8px;
  height: 8px;
  background: #e2e2e2;
  opacity: 1;
}
.owl-carousel button.owl-dot.active {
  background: #cccccc;
}

.benefits-for {
  list-style: none;
  padding-left: 0;
}
.benefits-for li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}
.benefits-for li .icon-box {
  width: 41px;
  height: 41px;
  background: #F4F6F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
.benefits-for li span {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  display: inline-block;
  margin-left: 0.625rem;
}
@media (min-width: 768px) {
  .benefits-for li span {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 500;
  }
}

.img-mobvista {
  left: 6.25rem;
  top: 1.8125rem;
}
@media (max-width: 991.98px) {
  .img-mobvista {
    left: 190px;
    top: 30px;
  }
}
@media (max-width: 767.98px) {
  .img-mobvista {
    top: 27px;
    left: 110px;
  }
}
@media (max-width: 575.98px) {
  .img-mobvista {
    width: 70px;
    height: 21px;
    top: 20px;
    left: 70px;
  }
}

.img-glispa {
  bottom: 4.625rem;
  left: 4.375rem;
}
@media (max-width: 1399.98px) {
  .img-glispa {
    bottom: 3.6875rem;
    left: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  .img-glispa {
    bottom: 69px;
    left: 150px;
  }
}
@media (max-width: 767.98px) {
  .img-glispa {
    bottom: 70px;
    left: 70px;
  }
}
@media (max-width: 575.98px) {
  .img-glispa {
    width: 56px;
    height: 17px;
    bottom: 47px;
    left: 36px;
  }
}

.img-taptica {
  bottom: 6.25rem;
  right: 0.25rem;
}
@media (max-width: 1399.98px) {
  .img-taptica {
    bottom: 5rem;
    right: -0.25rem;
  }
}
@media (max-width: 991.98px) {
  .img-taptica {
    bottom: 90px;
    right: 94px;
  }
}
@media (max-width: 767.98px) {
  .img-taptica {
    bottom: 100px;
    right: 0px;
  }
}
@media (max-width: 575.98px) {
  .img-taptica {
    width: 85px;
    height: 41px;
    bottom: 60px;
    right: 0;
  }
}

div.c-block-media .c-block-case {
  padding: 1.5625rem 1.875rem;
  border: 1px solid #e2e2e2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
  margin-bottom: 1.5625rem;
  position: relative;
  background: #fff;
}
@media (max-width: 767.98px) {
  div.c-block-media .c-block-case {
    /*padding-bottom: 0;*/
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
div.c-block-media .c-block-case:hover {
  -webkit-box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
          box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
}
div.c-block-media .c-block-case__bg {
  background: #fff;
  height: 12.5rem;
}
@media (max-width: 1199.98px) {
  div.c-block-media .c-block-case__bg {
    width: 250px;
    margin: 0 auto;
    height: 9.375rem;
  }
  div.c-block-media .c-block-case__bg img {
    padding: 0 2.5rem;
  }
}
div.c-block-media .c-block-media-date {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #86869A;
  margin-bottom: 0.3125rem;
}
@media (max-width: 767.98px) {
  div.c-block-media .c-block-media-date {
    font-size: 0.625rem;
    line-height: 1.25rem;
  }
}
div.c-block-media .c-block-case__title {
  margin-bottom: 3.75rem;
}
@media (max-width: 767.98px) {
  div.c-block-media .c-block-case__title {
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
div.c-block-media .c-block-case__readmore {
  position: absolute;
  bottom: 1.5625rem;
}
@media (max-width: 767.98px) {
  div.c-block-media .c-block-case__readmore {
    position: relative;
    bottom: auto;
  }
}

.card-kits {
  -webkit-box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
          box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
  border-radius: 5px;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.card-kits:hover {
  -webkit-box-shadow: 0px 20px 40px rgba(73, 80, 99, 0.3);
          box-shadow: 0px 20px 40px rgba(73, 80, 99, 0.3);
}
.card-kits .card-body {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .card-kits .card-body {
    padding-top: 3.1875rem !important;
  }
}
.card-kits .card-body img {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 575.98px) {
  .card-kits .card-body img {
    margin-bottom: 1.875rem;
  }
}
.card-kits .card-body .card-title {
  margin-bottom: 1.25rem;
}

.b-opinion-alt-2.spacing-pb-60px-80px-160px {
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .b-opinion-alt-2.spacing-pb-60px-80px-160px {
    padding-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .b-opinion-alt-2.spacing-pb-60px-80px-160px {
    padding-bottom: 10rem;
  }
}
@media (max-width: 767.98px) {
  .b-opinion-alt-2 {
    padding: 2.5rem 0 3.75rem !important;
  }
  .b-opinion-alt-2 .b-form-text__quote {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    margin-bottom: 1.875rem;
  }
  .b-opinion-alt-2 figcaption.b-form-text__caption .b-form-text__author {
    font-size: 0.9375rem;
    line-height: 1.40625rem;
    font-weight: 600;
    margin-bottom: 0.3125rem;
  }
  .b-opinion-alt-2 figcaption.b-form-text__caption .b-form-text__position {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.b-opinion-alt-2 .a-case-studies-page__wrapper {
  width: 983px;
  max-width: 100%;
}
.b-opinion-alt-2 .b-form-text__image .avatar-wrap {
  margin-right: 1.5625rem;
  overflow: hidden;
  width: 3.75rem;
  height: 3.75rem;
  background: #fff;
  border-radius: 50%;
}
.b-opinion-alt-2 .b-form-text__image .avatar-wrap.purple-bg {
  background: #D4B3FF;
}
@media (max-width: 767.98px) {
  .b-opinion-alt-2 .b-form-text__image .avatar-wrap {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.9375rem;
  }
}
.b-opinion-alt-2 .b-form-text__image .avatar-wrap img {
  margin: 0;
  display: inline-block;
}
.b-opinion-alt-2 .b-form-social {
  margin-top: 1.875rem;
}
@media (max-width: 767.98px) {
  .b-opinion-alt-2 .b-form-social {
    margin-top: 1.25rem;
  }
}
.b-opinion-alt-2 .b-form-social img {
  padding-left: 35px;
  width: 4.0625rem;
}
@media (max-width: 767.98px) {
  .b-opinion-alt-2 .b-form-social img {
    width: 2.9375rem;
    padding-left: 0;
    padding-right: 1.6875rem;
  }
}

#media-coverage-bubble {
  z-index: -1;
  left: -140px;
  top: 140px;
}

.reviews h2, .reviews .h2 {
  margin-bottom: 2.1875rem;
}

#reviews {
  padding-top: 6.25rem;
}
#reviews .testimonial-quotes {
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  #reviews {
    padding-top: 12.5rem;
  }
}
#reviews h2, #reviews .h2 {
  margin-bottom: 0.4375rem;
}
@media (min-width: 768px) {
  #reviews h2, #reviews .h2 {
    margin-bottom: 2.1875rem;
  }
}
#reviews #media-coverage-bubble {
  z-index: -1;
  left: -140px;
  top: 140px;
}
#reviews .b-slider_reward .b-slider__item {
  margin-bottom: 4px;
}

#our-success {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}
@media (max-width: 575.98px) {
  #our-success {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
}
#our-success.pb-sm-20 {
  padding-bottom: 1.25rem !important;
}
#our-success h2, #our-success .h2 {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  #our-success h2, #our-success .h2 {
    margin-bottom: 2.8125rem;
  }
}
@media (min-width: 768px) {
  #our-success {
    padding-top: 5rem !important;
    padding-bottom: 4.375rem !important;
  }
}
#our-success.no-frame {
  padding: 100px 0 !important;
  max-width: initial;
}
#our-success .b-slider_reward .b-slider__item_wrapper {
  margin-bottom: 20px;
  min-height: 90px;
}
#our-success .b-slider_reward .b-slider__item_wrapper img {
  width: 100%;
}
#our-success .b-slider_reward .b-slider__item_wrapper:hover img {
  width: 100%;
}
@media only screen and (min-width: 437px) {
  #our-success .b-slider_reward .b-slider__item_wrapper img {
    width: 80%;
  }
  #our-success .b-slider_reward .b-slider__item_wrapper:hover img {
    width: 80%;
  }
}
@media (min-width: 576px) {
  #our-success .b-slider_reward .b-slider__item_wrapper img {
    width: 45%;
  }
  #our-success .b-slider_reward .b-slider__item_wrapper:hover img {
    width: 50%;
  }
}
@media (min-width: 768px) {
  #our-success .b-slider_reward .b-slider__item_wrapper {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  #our-success .b-slider_reward .b-slider__item_wrapper {
    margin-bottom: 0;
    min-height: initial;
  }
  #our-success .b-slider_reward .b-slider__item_wrapper img {
    width: 52%;
  }
  #our-success .b-slider_reward .b-slider__item_wrapper:hover img {
    width: 58%;
  }
}

#features {
  padding-top: 6.875rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 575.98px) {
  #features {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
#features .container {
  position: relative;
}
@media (min-width: 768px) {
  #features {
    padding-top: 5.625rem;
    padding-bottom: 12.5rem;
  }
}
#features .c-cards.active h5, #features .c-cards.active .h5 {
  font-size: 1.666rem;
  font-weight: 700;
}
#features h5, #features .h5 {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 600;
}

#what-people-say {
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}
@media (min-width: 768px) {
  #what-people-say {
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
  }
}

@media (max-width: 991.98px) {
  #request-free-trial-modal {
    background-color: #fff;
  }
}

@media (max-width: 991.98px) {
  .modal-request-free-trial {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.modal-request-free-trial .form-control:focus {
  font-weight: 600;
  color: #272742;
}
.modal-request-free-trial .form-optin-label p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 1.625rem;
}
.modal-request-free-trial .c-form-block-label {
  margin-bottom: 0.9375rem;
  display: none;
}
@media (min-width: 1600px) {
  .modal-request-free-trial .c-form-block-label {
    display: block;
  }
}
.modal-request-free-trial .c-form-block {
  margin-bottom: 0;
}

.legal-consent-container {
  margin-top: 0.5rem;
}
.legal-consent-container input[type=checkbox] {
  height: auto;
  width: auto;
}
.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 10px;
}
.legal-consent-container .hs-form-booleancheckbox-display span p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
}
.legal-consent-container .hs-form-booleancheckbox-display span p a {
  color: #A11CF2;
}
.legal-consent-container .hs-form-booleancheckbox-display input[type=checkbox] {
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  padding: 0;
}

.hs_submit .actions input[type=submit] {
  background-color: #272742;
  min-width: 195px;
  width: 100%;
  padding: 11px 32px;
  border-color: #272742;
  line-height: 1.5;
  font-weight: 600;
  border-radius: 5px;
  color: #fff;
}
.hs_submit .actions input[type=submit]:hover {
  background-color: #111;
}

.centered-button-pair .col:first-child {
  padding-right: 5px;
}
.centered-button-pair .col:last-child {
  padding-left: 5px;
}

.partner-program-hero {
  overflow: hidden;
}
.partner-program-hero .c-visual.move-right {
  margin-left: 0;
}
.partner-program-hero .c-visual-wrap {
  height: 320px;
  width: 100%;
}
.partner-program-hero #tablet-guide {
  top: -20px;
  left: -50px;
}
.partner-program-hero #paperplane {
  width: 20%;
  bottom: 20%;
  right: 40%;
}
@media (min-width: 768px) {
  .partner-program-hero .c-visual-wrap {
    height: 300px;
    width: 230px;
  }
}
@media (min-width: 992px) {
  .partner-program-hero .c-visual.move-right {
    margin-left: 8rem;
  }
  .partner-program-hero .c-visual-wrap {
    height: 100%;
    width: auto;
  }
  .partner-program-hero .c-visual-wrap #tablet-guide {
    top: -10%;
    left: -20%;
  }
  .partner-program-hero .c-visual-wrap #paperplane {
    width: auto;
    bottom: -20px;
    right: 264px;
  }
}

.affise-reach-hero {
  overflow: hidden;
}
.affise-reach-hero .c-visual-wrap {
  height: 240px;
  width: 210px;
}
@media (max-width: 991.98px) {
  .affise-reach-hero.find-media-partners .b-hero .c-visual .c-visual-wrap {
    height: 280px;
    width: 230px;
    margin: 0 auto;
    padding-top: 20px;
  }
  .affise-reach-hero.find-media-partners .b-hero .c-visual .c-visual-wrap #gray-shape {
    top: 50px;
    left: 40px;
  }
  .affise-reach-hero.find-media-partners .b-hero .c-visual .c-visual-wrap #purple-shape {
    top: 40px;
  }
  .affise-reach-hero.find-media-partners .b-hero .c-visual .c-visual-wrap #girl {
    left: 30px;
  }
  .affise-reach-hero.find-media-partners .b-hero .c-visual .c-visual-wrap #fields {
    top: 100px;
    left: -20px;
  }
  .affise-reach-hero.find-brand-partners .b-hero .c-visual .c-visual-wrap {
    height: 280px;
    width: 230px;
    margin: 0 auto;
    padding-top: 20px;
  }
  .affise-reach-hero.find-brand-partners .b-hero .c-visual .c-visual-wrap #gray-shape {
    top: 20px;
    left: 50px;
    width: 200px;
  }
  .affise-reach-hero.find-brand-partners .b-hero .c-visual .c-visual-wrap #purple-shape {
    top: 40px;
  }
  .affise-reach-hero.find-brand-partners .b-hero .c-visual .c-visual-wrap #man {
    width: 190px;
  }
  .affise-reach-hero.find-brand-partners .b-hero .c-visual .c-visual-wrap #fields {
    top: 40px;
    left: 148px;
    width: 110px;
  }
  .affise-reach-hero .b-hero .c-visual .c-visual-wrap #fields-shape {
    top: 60px;
  }
  .affise-reach-hero .b-hero .c-visual .c-visual-wrap #affise-reach-gray-shape {
    top: 50px;
  }
}
@media (min-width: 768px) {
  .affise-reach-hero .c-visual-wrap {
    height: 300px;
    width: 230px;
  }
}
@media (min-width: 992px) {
  .affise-reach-hero .c-visual-wrap {
    height: 100%;
    width: auto;
    margin-right: -220px;
  }
  .affise-reach-hero.find-media-partners #gray-shape {
    top: 120px;
    left: 116px;
  }
  .affise-reach-hero.find-media-partners #purple-shape {
    top: 100px;
    left: -30px;
  }
  .affise-reach-hero.find-media-partners #girl {
    left: 50px;
    top: -40px;
  }
  .affise-reach-hero.find-media-partners #fields {
    left: -63px;
    top: 200px;
  }
  .affise-reach-hero.find-brand-partners #gray-shape {
    top: 40px;
    left: 56px;
  }
  .affise-reach-hero.find-brand-partners #purple-shape {
    top: 100px;
    left: -30px;
  }
  .affise-reach-hero.find-brand-partners #man {
    left: 50px;
    top: 60px;
  }
  .affise-reach-hero.find-brand-partners #fields {
    left: 277px;
    top: 90px;
  }
}

.w-breadcrumb.b-hero-wrapper.b-hero-wrapper-extended {
  padding-top: 1.5625rem !important;
}
.w-breadcrumb.b-hero-wrapper.b-hero-wrapper-extended .c-block-goback__wrapper {
  margin-bottom: 0.625rem;
}

#c-steps .c-steps-img {
  min-height: 230px;
  margin-bottom: 20px;
}
#c-steps .c-steps-img .img-steps {
  max-width: 230px;
  position: relative;
}
#c-steps .c-steps-img .img-steps.translateY30 {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}
@media (max-width: 575.98px) {
  #c-steps .c-steps-img .img-steps {
    max-width: 180px;
  }
  #c-steps .c-steps-img .img-steps #lamp {
    max-width: 120px;
  }
}
#c-steps .c-steps-img .img-steps > img,
#c-steps .c-steps-img .img-steps > svg {
  position: absolute;
}
#c-steps h3, #c-steps .h3 {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  #c-steps h3, #c-steps .h3 {
    font-size: 2.1875rem;
    line-height: 3.125rem;
    font-weight: 700;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  #c-steps h3, #c-steps .h3 {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}
#c-steps p {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  #c-steps p {
    font-size: 1.25rem;
    line-height: 2.1875rem;
    font-weight: 400;
  }
}

.c-logos img {
  width: 80%;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .c-logos img {
    width: 80%;
  }
}

.icon-title-cards.c-cards-equal .card .card-body {
  padding: 2.8125rem 1.875rem 2.5rem;
  background: #F4F6F8;
  max-width: 20.625rem;
  margin-bottom: 6.25rem;
}
@media (max-width: 767.98px) {
  .icon-title-cards.c-cards-equal .card .card-body {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .icon-title-cards.c-cards-equal .card .card-body {
    max-width: 100%;
    background: transparent;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}
.icon-title-cards.c-cards-equal .card .card-body img {
  position: absolute;
  top: -25px;
}
.icon-title-cards.c-cards-equal .card .card-body .card-title {
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.c-row-card .c-block-content.mw-53 {
  max-width: 53%;
}
@media (max-width: 575.98px) {
  .c-row-card .c-block-content.mw-53 {
    max-width: 100%;
  }
}
.min-height-530 {
  min-height: 530px;
}

.min-height-600 {
  min-height: 600px;
}

.mw-330 {
  max-width: 330px;
}

.mw-100 {
  max-width: 85% !important;
}

.mw-540 {
  max-width: 540px;
}

.mw-840 {
  max-width: 840px;
}

@media (max-width: 575.98px) {
  .mw-sm-100 {
    max-width: 100% !important;
  }
}

.b-icon_adinall {
  background-position: 0 -183px;
  width: 120px;
  height: 60px;
}

.b-icon_admitad {
  background-position: 0 -249px;
  width: 120px;
  height: 60px;
}

.b-icon_adnovation {
  background-position: 0 -315px;
  width: 120px;
  height: 60px;
}

.b-icon_adperio {
  background-position: 0 -381px;
  width: 120px;
  height: 60px;
}

.b-icon_appSamurai {
  background-position: 0 -447px;
  width: 120px;
  height: 60px;
}

.b-icon_appalgo {
  background-position: 0 -513px;
  width: 120px;
  height: 60px;
}

.b-icon_applift {
  background-position: 0 -579px;
  width: 120px;
  height: 60px;
}

.b-icon_avazu {
  background-position: 0 -645px;
  width: 120px;
  height: 60px;
}

.b-icon_axonite {
  background-position: 0 -711px;
  width: 120px;
  height: 60px;
}

.b-icon_cake {
  background-position: 0 -777px;
  width: 120px;
  height: 60px;
}

.b-icon_creative-clicks {
  background-position: 0 -843px;
  width: 120px;
  height: 60px;
}

.b-icon_everflow {
  background-position: 0 -909px;
  width: 120px;
  height: 60px;
}

.b-icon_fuseClick {
  background-position: 0 -975px;
  width: 120px;
  height: 60px;
}

.b-icon_glispa {
  background-position: 0 -1041px;
  width: 120px;
  height: 60px;
}

.b-icon_hubscale {
  background-position: 0 -1107px;
  width: 120px;
  height: 60px;
}

.b-icon_iconpeak {
  background-position: 0 -1173px;
  width: 120px;
  height: 60px;
}

.b-icon_inmobi {
  background-position: 0 -1239px;
  width: 120px;
  height: 60px;
}

.b-icon_logo-footer {
  background-position: 0 -66px;
  width: 160px;
  height: 47px;
}

.b-icon_logo-light {
  background-position: 0 0;
  width: 105px;
  height: 27px;
}

.b-icon_logo {
  background-position: 0 -33px;
  width: 105px;
  height: 27px;
}

.b-icon_mobAir {
  background-position: 0 -1305px;
  width: 120px;
  height: 60px;
}

.b-icon_mobidea {
  background-position: 0 -1371px;
  width: 120px;
  height: 60px;
}

.b-icon_mobrain {
  background-position: 0 -1437px;
  width: 120px;
  height: 60px;
}

.b-icon_mobusi {
  background-position: 0 -1503px;
  width: 120px;
  height: 60px;
}

.b-icon_mobvista {
  background-position: 0 -1569px;
  width: 120px;
  height: 60px;
}

.b-icon_mpire {
  background-position: 0 -1635px;
  width: 120px;
  height: 60px;
}

.b-icon_myAppFree {
  background-position: 0 -1701px;
  width: 120px;
  height: 60px;
}

.b-icon_offerslook {
  background-position: 0 -1767px;
  width: 120px;
  height: 60px;
}

.b-icon_orangear {
  background-position: 0 -1833px;
  width: 120px;
  height: 60px;
}

.b-icon_redtrack {
  background-position: 0 -119px;
  width: 254px;
  height: 58px;
}

.b-icon_revlinker {
  background-position: 0 -1899px;
  width: 120px;
  height: 60px;
}

.b-icon_taptica {
  background-position: 0 -1965px;
  width: 120px;
  height: 60px;
}

.b-icon_tune {
  background-position: 0 -2031px;
  width: 120px;
  height: 60px;
}

.b-icon_weq {
  background-position: 0 -2097px;
  width: 120px;
  height: 60px;
}

.b-icon_yeahmobi {
  background-position: 0 -2163px;
  width: 120px;
  height: 60px;
}

.b-icon {
  display: inline-block;
  background-image: url("../png/sprite-no-white-2.png");
}

.b-slider_brands .b-icon {
  background-size: auto;
}
.b-slider_brands .b-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b-slider_brands .b-slider__item > i.b-slider__img:first-child {
  margin-bottom: 16px;
}

/*@media (-webkit-min-device-pixel-ratio:1.5), (min-resolution:144dpi) {
	.b-icon {
		background-image: url("/wp-content/themes/affise.com/images/case_study/sprite-no-white@2x.png");
		background-size: 254px 2223px;
	}
}*/
.gray-box {
  background: #F9FAFC;
  padding: 4.0625rem 3.75rem;
}
@media (max-width: 575.98px) {
  .gray-box {
    padding: 1.5625rem 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.gray-box.card .card-body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.gray-box.card .card-body .card-title {
  text-align: left;
}
.gray-box img {
  background: white;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 3.125rem;
}

.our-story {
  position: relative;
}
.our-story p {
  font-size: 1.25rem;
  line-height: 2.1875rem;
  margin-bottom: 2.1875rem;
}
@media (max-width: 575.98px) {
  .our-story p {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 400;
  }
}

.investor-card {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 3.4375rem;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
          box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
  margin-bottom: 2.5rem;
}
@media (max-width: 575.98px) {
  .investor-card {
    padding: 1.875rem;
  }
  .investor-card .b-body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .investor-card .b-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}
.investor-card h3, .investor-card .h3 {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
}
@media (max-width: 767.98px) {
  .investor-card h3, .investor-card .h3 {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .investor-card h3, .investor-card .h3 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}
.investor-card p {
  font-size: 1.25rem;
  line-height: 2.1875rem;
}
@media (max-width: 575.98px) {
  .investor-card p {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 400;
  }
}

.box-wide {
  padding: 3.75rem 4.625rem;
  width: calc(100% + 148px);
  left: -74px;
  position: relative;
}
@media (max-width: 767.98px) {
  .box-wide {
    padding: 1.875rem;
    width: 100%;
    left: auto;
  }
}
.box-wide.gray {
  background: #F4F6F8;
}
.box-wide h3, .box-wide .h3 {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .box-wide h3, .box-wide .h3 {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  .box-wide h3, .box-wide .h3 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}
@media (max-width: 991.98px) {
  .box-wide h3, .box-wide .h3 {
    margin-bottom: 1.875rem;
  }
}
.box-wide p {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  margin-bottom: 0;
}

#culture-right-illustration {
  -webkit-transform: scale(1.2) translateY(41px);
      -ms-transform: scale(1.2) translateY(41px);
          transform: scale(1.2) translateY(41px);
}
@media (max-width: 575.98px) {
  #culture-right-illustration {
    -webkit-transform: scale(1.4) translateY(41px) translateX(-40px);
        -ms-transform: scale(1.4) translateY(41px) translateX(-40px);
            transform: scale(1.4) translateY(41px) translateX(-40px);
  }
}

@media (max-width: 575.98px) {
  #culture-left-illustration {
    -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
            transform: translateX(20px);
  }
}

.grid-photos .gutter-sizer {
  width: 2.42%;
}
.grid-photos .grid-sizer {
  width: 18.06%;
}
.grid-photos .grid-item {
  float: left;
  width: 18.06%;
  height: auto;
  max-height: 224px;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}
.grid-photos .grid-item.img-loading > .img-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  z-index: 1;
}
.grid-photos .grid-item.img-loading > .img-wrap img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.6;
}
.grid-photos .grid-item.img-loading > .img-wrap:before {
  position: absolute;
  content: "";
  background-image: url(../svg/loading-grid.svg);
  background-position: left top;
  background-size: 64px 64px;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-top: -47px;
  margin-left: -32px;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .grid-photos .grid-item {
    width: 100%;
  }
}
.grid-photos .grid-item:hover {
  opacity: 0.95;
}
.grid-photos .grid-item img {
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.grid-photos .grid-item.grid-item--width2 {
  width: 38.55%;
  height: auto;
}
@media (max-width: 767.98px) {
  .grid-photos .grid-item.grid-item--width2 {
    width: 100%;
  }
}
.grid-photos .grid-item.grid-item--width3 {
  width: 38.55%;
  height: auto;
  max-height: 478px;
}
@media (max-width: 767.98px) {
  .grid-photos .grid-item.grid-item--width3 {
    width: 100%;
  }
}
.grid-photos .grid-item.grid-item-enlarge {
  width: 59.04%;
  max-width: 79.52%;
  height: auto;
  max-height: 732px;
}
@media (max-width: 767.98px) {
  .grid-photos .grid-item.grid-item-enlarge {
    width: 100%;
    max-width: 100%;
  }
}

.c-table-competitor .c-row-item {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.c-table-competitor .c-row-item:hover {
  background: rgba(17, 17, 17, 0.075);
  -webkit-box-shadow: 0px 28px 30px rgba(178, 178, 178, 0.14);
          box-shadow: 0px 28px 30px rgba(178, 178, 178, 0.14);
}
.c-table-competitor .c-row-item .affise-vs > i,
.c-table-competitor .c-row-item .competitor-vs > i {
  display: block;
}

.icon-affise-check {
  background: url("../svg/a-check.svg");
  width: 25px;
  height: 25px;
}

.icon-affise-cross,
.icon-competitor-cross {
  background: url("../svg/ac-cross.svg");
  width: 25px;
  height: 25px;
}

.icon-competitor-check {
  background: url("../svg/c-check.svg");
  width: 19px;
  height: 14px;
}

.icon-small {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  margin-right: 0.9375rem;
  background-size: cover;
}

.icon-bookmark {
  background-image: url("../svg/icon_bookmark.svg");
}

.icon-monitor {
  background-image: url("../svg/icon_monitor.svg");
}

.icon-hat-graduation {
  background-image: url("../svg/icon_hat-graduation-small.svg");
}

.icon-calendar {
  background-image: url("../svg/icon_calendar.svg");
}

.icon-map-pin {
  background-image: url("../svg/icon_map-pin.svg");
}

.play-webinar {
  float: right;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  font-weight: 400;
}

.icon-play-btn {
  width: 2.8125rem;
  height: 2.8125rem;
  display: inline-block;
  margin-left: 0.625rem;
  background-size: cover;
  background-image: url("../svg/play-btn.svg");
}

.c-world-map {
  background: url(../svg/world-map.svg);
  background-size: cover;
}

.revision-date {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  color: #86869A;
  margin-bottom: 2.5rem;
}

#scroller-carousel .card {
  margin: 0 auto;
  max-width: 340px;
}
#scroller-carousel .owl-stage-outer {
  overflow: initial;
}
#scroller-carousel .owl-dots {
  margin-top: 2.5rem;
}
#scroller-carousel.c-cards-carousel .card .h3 span,
#scroller-carousel.c-cards-carousel .card h3 span {
  font-size: 11px;
  display: block;
  line-height: 14px;
  font-weight: 400;
}
#scroller-carousel.c-cards-carousel .card .card-body {
  padding-bottom: 10px;
}

.bg-white-cta-banner {
  background: white;
  padding: 2.0625rem 5.3125rem;
  -webkit-box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
          box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
  border-radius: 10px;
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 767.98px) {
  .bg-white-cta-banner {
    padding: 1.5625rem 2.5rem;
  }
}
.bg-white-cta-banner h4, .bg-white-cta-banner .h4 {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #272742;
}
.bg-white-cta-banner .btn {
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  padding: 0.9375rem 3.5625rem;
}

.mid-wrap {
  margin: 0 3.125rem;
}
@media (max-width: 1199.98px) {
  .mid-wrap {
    margin: 0;
  }
}

.b-order__side {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .b-order__side {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 600;
  }
}

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

.b-order:nth-child(n+2) {
  margin-top: 17px;
}

.b-order__side {
  width: 45px;
  font-size: 56px;
  line-height: 1.15;
  font-weight: bold;
  color: #e9ecef;
  letter-spacing: -0.04em;
}

.b-order__text {
  padding-top: 9px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.b-order__desc {
  margin-top: 9px;
}

a.cn-button.bootstrap {
  background: #272742;
}
a.cn-button.bootstrap:hover, a.cn-button.bootstrap:active {
  background: #111111;
}

a#cn-accept-cookie {
  margin-left: 30px !important;
}
@media (max-width: 991.98px) {
  a#cn-accept-cookie {
    margin-left: 0 !important;
  }
}

#cn-notice-text {
  font-family: "Euclid Circular A", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

a#cn-refuse-cookie {
  background: transparent !important;
  border: 1px solid #272742 !important;
  color: #272742;
}

.cookie-notice-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie-notice-container #cn-notice-text {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .cookie-notice-container #cn-notice-buttons {
    display: block;
  }
}

#cookie-notice.cookie-notice-hidden .cookie-notice-container {
  display: none !important;
}

.loader-icon {
  position: relative;
  -webkit-transform: translateY(130px);
      -ms-transform: translateY(130px);
          transform: translateY(130px);
}
.loader-icon .icon {
  position: absolute;
  content: "";
  background-image: url(../svg/loader-ring.svg);
  background-position: left top;
  background-size: 64px 64px;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-top: -47px;
  margin-left: -32px;
  z-index: 1;
}

.library-coming-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.library-coming-soon .c-col-4 {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .library-coming-soon .c-col-4.wider {
    max-width: 486px;
  }
  .library-coming-soon .c-col-4:not(.wider) {
    display: none;
  }
}
@media (min-width: 1200px) {
  .library-coming-soon .c-col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .library-coming-soon .c-col-4.wider {
    width: 37.8%;
  }
  .library-coming-soon .c-col-4:not(.wider) {
    width: 31.1%;
    opacity: 0.45;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.library-coming-soon .subscriber-form {
  background-color: #F6EDFF;
  padding: 1.875rem 2.5rem;
}
.library-coming-soon .subscriber-form > h3, .library-coming-soon .subscriber-form > .h3,
.library-coming-soon .subscriber-form > span {
  text-align: center;
}
.library-coming-soon .subscriber-form > h3, .library-coming-soon .subscriber-form > .h3 {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
}
.library-coming-soon .subscriber-form > span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .library-coming-soon .subscriber-form {
    padding: 4.375rem 5.5rem;
  }
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Library KH */
.bg-gray {
  background: #F4F6F8;
}

.library-card {
  min-height: 287px;
  max-width: 353px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.library-card h3, .library-card .h3 {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
  padding-left: 5px;
  padding-right: 5px;
}
.library-card h3 a, .library-card .h3 a {
  text-decoration: none;
}
.library-card .lower {
  padding-left: 5px;
  padding-right: 5px;
}
.library-card .content-type {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  font-weight: 400;
  color: #86869A;
  margin-bottom: 0.625rem;
  padding-left: 5px;
  display: block;
}
.library-card .content-type img {
  margin-right: 6px;
  width: 13px;
  height: 13px;
}
.library-card .image {
  margin-bottom: 0.75rem;
  border-radius: 5px;
  overflow: hidden;
  max-height: 142px;
}
.library-card .image img {
  margin: 0 auto;
  display: block;
}
.library-card .image a {
  display: block;
}
.library-card .read-more {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  font-weight: 400;
  color: #A11CF2;
  text-decoration: none;
  font-weight: 500;
}
@media (min-width: 768px) {
  .library-card {
    float: right;
  }
}

.filter-gray {
  -webkit-filter: invert(59%) sepia(9%) saturate(595%) hue-rotate(201deg) brightness(89%) contrast(85%);
          filter: invert(59%) sepia(9%) saturate(595%) hue-rotate(201deg) brightness(89%) contrast(85%);
}

.library-filter,
.library-filter-content {
  margin-bottom: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.library-filter .filter-item,
.library-filter-content .filter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: start;
  /*align-items: center; */
  margin-bottom: 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
.library-filter .filter-item.disabled,
.library-filter-content .filter-item.disabled {
  pointer-events: none;
  opacity: 0.25;
}
.library-filter .filter-item.active .radio-button .radio-btn-inner,
.library-filter-content .filter-item.active .radio-button .radio-btn-inner {
  background: #111111;
}
.library-filter .filter-item.loading:after,
.library-filter-content .filter-item.loading:after {
  content: "";
  background: url("../svg/loader.svg");
  width: 24px;
  height: 24px;
  margin-left: 10px;
}
.library-filter .filter-item a,
.library-filter .filter-item i,
.library-filter-content .filter-item a,
.library-filter-content .filter-item i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
  text-decoration: none;
}
.library-filter .filter-item i,
.library-filter-content .filter-item i {
  cursor: pointer;
  font-style: normal;
}

.filter-title {
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-bottom: 1.25rem;
}

.radio-button {
  width: 16px;
  height: 16px;
  margin-top: 0.3125rem;
  min-width: 16px;
  max-height: 16px;
  min-height: 16px;
  max-width: 16px;
  border-radius: 50%;
  border: 2px solid #272742;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 11px;
}
.radio-button .radio-btn-inner {
  background: transparent;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.search-module {
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  .search-module {
    display: block;
  }
}
.search-module .search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-module input {
  border: 1px solid #86869A;
  border-radius: 8px;
  width: 250px;
  height: 40px;
  font-size: 13px;
  line-height: 20px;
  padding: 10px 20px 10px 40px;
}
.search-module .icon-search {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 12px;
}

.library-output,
.filter-item {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.library-output.disable,
.filter-item.disable {
  pointer-events: none;
  opacity: 0.25;
}

.filter-item .item {
  width: 90%;
}

.library-output.loading {
  position: relative;
  /*&:before {
    content: '';
    background: url('../../images/loading.gif');
    width: 60px;
    height: 60px;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
  }*/
}

@media (max-width: 767.98px) {
  .svg-hero svg {
    display: none;
  }

  #library-hero h1.h2, #library-hero .h2.h1 {
    font-size: 2.8125rem;
    line-height: 3.125rem;
  }
}
@media (max-width: 575.98px) {
  .b-footer__privacy {
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .b-footer__privacy a {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 992px) {
  .navbar.christmas-navbar {
    z-index: 51;
  }
}

.c-block-christmas.christmas-decor {
  position: absolute;
  top: -15px;
  left: -25px;
}
@media screen and (max-width: 1261px) {
  .c-block-christmas.christmas-decor {
    top: -10px;
    left: 0;
  }
}
@media screen and (max-width: 1123px) {
  .c-block-christmas.christmas-decor {
    top: -5px;
  }
}
@media screen and (max-width: 992px) {
  .c-block-christmas.christmas-decor {
    top: 80px;
    z-index: 50;
  }
}
@media screen and (max-width: 576px) {
  .c-block-christmas.christmas-decor {
    top: 130px;
  }
}
.c-block-christmas svg {
  max-height: 150px;
  max-width: 300px;
}
@media screen and (max-width: 1261px) {
  .c-block-christmas svg {
    max-width: 250px;
  }
}
@media screen and (max-width: 1123px) {
  .c-block-christmas svg {
    max-width: 200px;
  }
}
@media screen and (max-width: 1051px) {
  .c-block-christmas svg {
    max-width: 170px;
  }
}
@media screen and (max-width: 992px) {
  .c-block-christmas svg {
    max-width: 220px;
  }
}
@media screen and (max-width: 851px) {
  .c-block-christmas svg {
    max-width: 170px;
  }
}
@media screen and (max-width: 601px) {
  .c-block-christmas svg {
    max-width: 150px;
  }
}

.scrolled > header .c-block-christmas.christmas-decor {
  display: none;
}
@media screen and (max-width: 1200px) {
  .scrolled > header .navbar.christmas-navbar {
    z-index: 51;
  }
}

@-webkit-keyframes spin-the-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}

@keyframes spin-the-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}
.b-search-auto {
  width: 1.25rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 992px) {
  .b-search-auto {
    width: 100%;
    max-width: 18.75rem;
  }
}
@media screen and (max-width: 451px) {
  .b-search-auto {
    max-width: 14.0625rem;
  }
}

.b-search-bar-wrapper {
  position: absolute;
  opacity: 0;
  z-index: -99;
  bottom: 0;
  right: 3%;
  width: 100%;
  max-width: 21.875rem;
  background-color: #89FFB8;
  border-radius: 0.3125rem;
  color: #272742;
  padding: 0.625rem 1.25rem;
  -webkit-box-shadow: 0.125rem 0.1875rem 0.3125rem 0.3125rem #27274214;
          box-shadow: 0.125rem 0.1875rem 0.3125rem 0.3125rem #27274214;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .b-search-bar-wrapper {
    right: 4%;
  }
}
@media screen and (max-width: 992px) {
  .b-search-bar-wrapper {
    position: relative;
    opacity: 1;
    padding: 0;
    background-color: transparent;
    z-index: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.b-search-bar-wrapper::before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  border-style: solid;
  -webkit-transform: translateY(-0.625rem);
  -ms-transform: translateY(-0.625rem);
      transform: translateY(-0.625rem);
  right: calc(15% - 10px);
  top: 0;
  border-width: 0 0.625rem 0.625rem 0.625rem;
  border-color: transparent transparent #89FFB8 transparent;
}
@media screen and (max-width: 992px) {
  .b-search-bar-wrapper::before {
    border-width: 0;
    position: unset;
  }
}

.b-search-bar-wrapper.showing-bar {
  bottom: -40%;
  z-index: 99;
  opacity: 1;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .b-search-bar-wrapper.showing-bar {
    bottom: -30%;
  }
}

#siteSearchText {
  width: 100%;
  background-color: transparent;
  border: 2px solid #272742;
  border-radius: 5px;
  padding: 10px 40px 10px 15px;
  font-size: 0.9375rem;
  line-height: 1.75rem;
}
#siteSearchText::-webkit-input-placeholder {
  color: #272742;
  opacity: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#siteSearchText::-moz-placeholder {
  color: #272742;
  opacity: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#siteSearchText:-ms-input-placeholder {
  color: #272742;
  opacity: 1;
  -ms-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#siteSearchText::-ms-input-placeholder {
  color: #272742;
  opacity: 1;
  -ms-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#siteSearchText::placeholder {
  color: #272742;
  opacity: 1;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}
#siteSearchText:focus::-webkit-input-placeholder {
  opacity: 0;
}
#siteSearchText:focus::-moz-placeholder {
  opacity: 0;
}
#siteSearchText:focus:-ms-input-placeholder {
  opacity: 0;
}
#siteSearchText:focus::-ms-input-placeholder {
  opacity: 0;
}
#siteSearchText:focus::placeholder {
  opacity: 0;
}
@media screen and (max-width: 992px) {
  #siteSearchText {
    padding: 5px 40px 5px 15px;
  }
}

#fetchedResultsList {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0.9375rem 1.25rem;
  background-color: #89FFB8;
}
@media screen and (max-width: 451px) {
  #fetchedResultsList #fetchedResultsList {
    padding: 0.625rem 0.9375rem;
  }
}
#fetchedResultsList ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media screen and (max-width: 992px) {
  #fetchedResultsList ul {
    height: 10.9375rem;
    overflow: scroll;
    padding-right: 1.25rem;
  }
}
#fetchedResultsList ul li {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  padding: 5px 0;
}
@media screen and (max-width: 992px) {
  #fetchedResultsList ul li {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
#fetchedResultsList ul li a {
  text-decoration: none;
  width: 100%;
  position: relative;
  left: 0;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
@media screen and (max-width: 992px) {
  #fetchedResultsList ul li a {
    display: inline-block;
  }
}
#fetchedResultsList ul li a:hover {
  left: 5px;
}
#fetchedResultsList ul li a:focus {
  left: 5px;
}
#fetchedResultsList ul li:not(:first-child) {
  border-top: 1px solid #272742;
}

.site-search-view-more {
  width: 100%;
  margin-top: 1.25rem;
}

.site-search-glass-loader {
  display: inline-block;
  position: absolute;
  width: 2.1875rem;
  height: 2.1875rem;
  right: 8%;
  top: 20%;
  opacity: 0;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
@media screen and (max-width: 992px) {
  .site-search-glass-loader {
    right: 2%;
    top: 20%;
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.site-search-glass-loader:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.75rem solid #272742;
  border-color: #272742 transparent #272742 transparent;
  -webkit-animation: spin-the-hourglass 1.5s infinite;
          animation: spin-the-hourglass 1.5s infinite;
}
@media screen and (max-width: 992px) {
  .site-search-glass-loader:after {
    margin: 2px 8px 0 0;
  }
}

.site-search-glass-loader.spinning-progress {
  opacity: 1;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}

@media screen and (max-width: 991px) {
  .b-search-auto-button {
    display: none;
  }
}
.sign-in-link {
  min-width: 100px;
  text-align: right;
  margin-right: 24px;
  text-decoration: none;
  font-weight: 600;
}

@media screen and (max-width: 576px) {
  #sign-in {
    background-color: #fff;
  }
}
#sign-in .c-modal-close {
  margin-top: -15px;
  margin-right: -15px;
  max-width: 20px;
  max-height: 20px;
}
@media (min-width: 992px) {
  #sign-in .c-modal-close {
    margin-top: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 575.98px) {
  #sign-in .c-modal-close {
    top: -30%;
    max-height: 40px;
    max-width: 40px;
  }
}
@media screen and (max-width: 420px) {
  #sign-in .c-modal-close {
    top: -22%;
  }
}
#sign-in .c-modal-close img {
  width: 24px;
}
@media (min-width: 992px) {
  #sign-in .c-modal-close img {
    width: 40px;
  }
}
@media (max-width: 575.98px) {
  #sign-in .c-modal-close img {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 420px) {
  #sign-in .c-modal-close img {
    height: 30px;
    width: 30px;
  }
}
#sign-in .sign-in-illustration {
  position: absolute;
  max-width: 300px;
  width: 100%;
  top: 15%;
}
@media screen and (max-width: 992px) {
  #sign-in .sign-in-illustration {
    max-width: 150px;
    top: 25%;
  }
}
#sign-in .modal-content {
  height: auto;
}
@media (min-width: 992px) {
  #sign-in .modal-content {
    height: 500px;
  }
}
@media screen and (max-width: 576px) {
  #sign-in .modal-content {
    border-radius: 0;
    border: 0;
  }
}
#sign-in .col-lg-6 > div {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-right: 60px;
}
@media (min-width: 992px) {
  #sign-in .col-lg-6 > div {
    padding-top: 0px;
    padding-bottom: 40px;
    margin-right: 80px;
    padding-left: 30px;
  }
}
@media (max-width: 767.98px) {
  #sign-in .col-lg-6 > div {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    margin-right: 0;
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  #sign-in .col-lg-6 > div {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 45px;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 30px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 420px) {
  #sign-in .col-lg-6 > div {
    padding-right: 30px;
    padding-left: 30px;
  }
}
#sign-in .sign-up-portal-box {
  width: 100%;
  border-radius: 10px;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
#sign-in .sign-up-portal-box:hover {
  background: #F4F6F8;
}
#sign-in .sign-in-portals {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#sign-in .sign-in-links {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 330px;
}
@media (min-width: 992px) {
  #sign-in .sign-in-links {
    padding: 40px 0 15px;
  }
}
#sign-in .sign-in-links:hover strong {
  opacity: 0.7;
}
#sign-in .sign-in-links img {
  width: 23px;
  display: block;
}
@media (min-width: 992px) {
  #sign-in .sign-in-links img {
    width: 23px;
  }
}
@media (max-width: 767.98px) {
  #sign-in .sign-in-links img {
    width: 15px;
  }
}
@media (max-width: 575.98px) {
  #sign-in .sign-in-links img {
    width: 23px;
  }
}
#sign-in .sign-in-links .link-title {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  margin-left: 10px;
  color: #272742;
}
@media (min-width: 992px) {
  #sign-in .sign-in-links .link-title {
    font-size: 18px;
    line-height: 25px;
    margin-left: 10px;
  }
}
@media (min-width: 576px) {
  #sign-in .sign-in-links .link-title {
    font-size: 15px;
    line-height: 22px;
  }
}
#sign-in .sign-in-links .link-click-here {
  font-size: 15px;
  line-height: 25px;
}
@media (min-width: 992px) {
  #sign-in .sign-in-links .link-click-here {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 767.98px) {
  #sign-in .sign-in-links .link-click-here {
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 575.98px) {
  #sign-in .sign-in-links .link-click-here {
    font-size: 15px;
    line-height: 25px;
  }
}
#sign-in .sign-in-links .link-click-here strong.reach {
  color: #272742;
  text-decoration: underline;
}
#sign-in .sign-in-links .link-click-here strong.performance {
  color: #F6ECFF;
}
#sign-in .sign-up-link {
  color: #898989;
  font-size: 10px;
  line-height: 16px;
  /*padding-left: 30px; */
  margin-bottom: 0;
}
@media (min-width: 992px) {
  #sign-in .sign-up-link {
    font-size: 11px;
    line-height: 15px;
  }
}
@media (max-width: 575.98px) {
  #sign-in .sign-up-link {
    font-size: 13px;
    line-height: 20px;
    margin-top: 15px;
  }
}
#sign-in .sign-up-link a {
  font-weight: 500;
  text-decoration: none;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .b-footer .b-footer__aside {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: 20px;
  }
}
.b-footer .b-footer__aside .g2-icon a {
  margin-left: 0;
}

@media (min-width: 992px) {
  .g2-icon {
    margin-right: 30px;
  }
}
.g2-icon a {
  display: block;
}
.g2-icon .g2-logo {
  width: 48px;
  float: left;
  margin-top: 6px;
}
@media (max-width: 767.98px) {
  .g2-icon .g2-stars {
    max-width: 80%;
  }
}
.g2-icon .rating {
  float: left;
  overflow: hidden;
  margin-left: 12px;
}
.g2-icon .rating div {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .footer-social-icon img {
    max-width: 30px;
  }
}

.reach-link a {
  color: #09BEC6;
}

.performance-link a {
  color: #A11CF2;
}

@media screen and (max-width: 576px) {
  .modal-dialog {
    margin: 0;
    border-radius: 0;
    background-color: #fff;
  }
}
.hs-form-field select.hs-input {
  /** for the dropdown indicator */
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  background-color: #ffffff;
}

select::-ms-expand {
  display: none;
}

form.hs-form fieldset div.hs-form-field:not(.hs-fieldtype-booleancheckbox) .input .hs-input {
  width: 100%;
}

.hs-input.hs-fieldtype-intl-phone input[type=tel] {
  padding-top: 15px;
}

/* Form fields label */
.hs-form-field {
  position: relative;
}

div.hs-form-field > label {
  display: block;
  position: absolute;
  top: 12px;
  color: #272742;
  font-size: 15px;
  -webkit-transform: translate(0, 5px) scale(1);
      -ms-transform: translate(0, 5px) scale(1);
          transform: translate(0, 5px) scale(1);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  z-index: 1;
}

.elementor-widget-affise-lp-hero div.hs-form-field:not(.hs-fieldtype-select):not(.hs-phone) > label {
  top: 18px;
  opacity: 0.6;
}

.elementor-widget-affise-lp-hero div.hs-form-field.active:not(.hs-fieldtype-select):not(.hs-phone) > label {
  top: 12px;
}

@media screen and (min-width: 768px) {
  .hs-form-field > label {
    -webkit-transform: translate(0, 11px) scale(1);
        -ms-transform: translate(0, 11px) scale(1);
            transform: translate(0, 11px) scale(1);
  }
}
ul.no-list.hs-error-msgs.inputs-list,
.legal-consent-container .hs-error-msgs label {
  color: #ffaaae;
  font-size: 12px;
}

.hs-form-field.hs-fieldtype-booleancheckbox input[type=checkbox] {
  width: 24px;
  height: 24px;
}

.hs-submit input[type=submit] {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.hs-submit input[type=submit]:hover {
  opacity: 0.79;
}

.hs-form-field.hs-fieldtype-text.active > label,
.hs-form-field.hs-fieldtype-select > label,
.hs-form-field.hs-fieldtype-text.hs_phone > label {
  -webkit-transform: translate(0, -0.5rem) scale(0.65);
      -ms-transform: translate(0, -0.5rem) scale(0.65);
          transform: translate(0, -0.5rem) scale(0.65);
  opacity: 0.7;
}

.hs-input {
  width: 100%;
  position: relative;
}

input.hs-input:focus::-webkit-input-placeholder {
  color: transparent;
}

input.hs-input:focus::-moz-placeholder {
  color: transparent;
}

input.hs-input:focus:-ms-input-placeholder {
  color: transparent;
}

input.hs-input:focus::-ms-input-placeholder {
  color: transparent;
}

input.hs-input:focus::placeholder {
  color: transparent;
}

input.hs-input:focus::-webkit-input-placeholder {
  color: transparent;
}

input.hs-input:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
input.hs-input:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
input.hs-input:focus:-ms-input-placeholder {
  color: transparent;
}

/* IE 10+ */
.hs-input:focus {
  outline: 0 none;
}

/* Input type checkbox consent */
.hs-form-booleancheckbox-display input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  /* For iOS < 15 */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #272742;
  width: 1.15em;
  height: 1.15em;
  border: 2px solid #272742;
  border-radius: 4px;
  -webkit-transform: translateY(-0.075em);
      -ms-transform: translateY(-0.075em);
          transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.elementor-widget-affise-lp-hero .hs-form-booleancheckbox-display input[type=checkbox] {
  border: 2px solid #ffffff;
}

.hs-form-booleancheckbox-display input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms -webkit-transform ease-in-out;
  -o-transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
  -webkit-box-shadow: inset 1em 1em #272742;
          box-shadow: inset 1em 1em #272742;
  /* Windows High Contrast Mode */
  background-color: #272742;
}

.elementor-widget-affise-lp-hero .hs-form-booleancheckbox-display input[type=checkbox]::before {
  -webkit-box-shadow: inset 1em 1em #ffffff;
          box-shadow: inset 1em 1em #ffffff;
  background-color: #ffffff;
}

.hs-form-booleancheckbox-display input[type=checkbox]:checked::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*
.hs-form-booleancheckbox-display input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}*/
.hs-form fieldset.form-columns-1 .hs-form-field.hs-fieldtype-booleancheckbox input[type=checkbox] {
  width: 24px;
  height: 18px;
}

.text-above-cta {
  color: #A11CF2;
  margin-bottom: 0.9375rem;
}

.btn.btn-purple.competitor-hero-cta-btn {
  padding-left: 5.125rem;
  padding-right: 5.125rem;
}

.overview-blocks {
  position: relative;
  padding: 50px 30px;
  border: 1px solid #272742;
  border-radius: 10px;
  text-align: center;
}
.overview-blocks .message-box {
  position: absolute;
}
.overview-blocks .message-box.left {
  top: -60px;
  left: -60px;
}
.overview-blocks .message-box.right {
  top: -30px;
  right: -40px;
}

.lead-70 {
  max-width: 70%;
}
@media (max-width: 767.98px) {
  .lead-70 {
    max-width: 100%;
  }
}

.pricing-compare-girl {
  position: absolute;
  bottom: -90px;
  right: 180px;
}
@media (max-width: 1199.98px) {
  .pricing-compare-girl {
    display: none;
  }
}

div#cookie-notice {
  width: 90%;
  max-width: 456px;
  min-width: auto;
  bottom: 30px;
  left: 15px;
  border-radius: 20px;
}

#cn-notice-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.cookie-wrap-text {
  font-size: 13px;
  line-height: 20px;
}

@media (min-width: 576px) {
  div#cookie-notice {
    width: 100%;
    left: 30px;
  }

  .cookie-wrap-text {
    font-size: 15px;
    line-height: 25px;
  }
}
div#cookie-notice .cookie-notice-container {
  text-align: left;
  padding: 20px 24px;
}

div#cookie-notice .cookie-emoji {
  font-size: 30px;
  width: 84px;
  margin: 5px 20px 15px 0;
}

#cookie-notice .cn-button {
  margin: 15px 0 0 !important;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  padding: 5px;
}

#cookie-notice a#cn-refuse-cookie.cn-button {
  color: #ffffff !important;
  padding: 6px 15px;
}

#cn-notice-buttons #cn-accept-cookie {
  padding: 6px 15px;
}

#cn-close-notice {
  display: none;
}

a#cn-refuse-cookie {
  color: #272742 !important;
}

div.b-hero p.note {
  margin-top: 40px;
  text-align: center !important;
  font-size: 13px;
  line-height: 20px;
  margin: 0 auto 20px;
  width: 100%;
}

@media (min-width: 768px) {
  div.b-hero p.note {
    font-size: 15px;
    line-height: 25px;
    text-align: left !important;
    margin-top: 40px;
  }
}
body.transparent-header header {
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

body:not(.scrolled).transparent-header header {
  background: #E5E8F0;
}

.transparent-header #mega-menu-wrap-primary .mega-menu-toggle {
  background: transparent;
}

@media (min-width: 992px) {
  .transparent-header #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu,
.transparent-header #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    margin-top: 30px;
  }
}
@media (max-width: 991.98px) {
  .transparent-header #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
    margin-top: 16px;
  }
}
.c-pricing .c-pricing-reach-v3 .c-pricing-plan .c-pricing-description {
  min-height: auto;
}
.c-pricing .c-pricing-plan {
  padding: 50px;
  margin-bottom: 2.5rem;
}
@media (max-width: 575.98px) {
  .c-pricing .c-pricing-plan {
    margin-bottom: 1.25rem;
    padding: 30px;
    border: 1px solid #cccccc;
    border-radius: 10px;
  }
  .c-pricing .c-pricing-plan.c-pricing-plan-scale {
    border: 0;
  }
}
.c-pricing .c-pricing-plan .c-pricing-header {
  margin-bottom: 1.25rem;
  font-size: 1.5625rem;
}
.c-pricing .c-pricing-plan .c-pricing-description,
.c-pricing .c-pricing-plan .c-pricing-period {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #272742;
  margin-bottom: 1.875rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575.98px) {
  .c-pricing .c-pricing-plan .c-pricing-description,
.c-pricing .c-pricing-plan .c-pricing-period {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.c-pricing .c-pricing-plan .plan-includes p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-top: 2.5rem;
}
.c-pricing .c-pricing-plan .c-pricing-price {
  font-size: 3.125rem;
  line-height: 0.9;
  font-weight: 600;
  margin-bottom: 10px;
}
.c-pricing .c-pricing-plan .c-pricing-description {
  min-height: 80px;
}
.c-pricing .c-pricing-plan .c-pricing-period {
  color: #666666;
  margin-bottom: 30px;
}
.c-pricing .c-pricing-plan .btn {
  width: 100%;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  padding-top: 16.5px;
  padding-bottom: 16.5px;
}
.c-pricing .c-pricing-plan ul,
.c-pricing .c-pricing-plan li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-pricing .c-pricing-plan .c-pricing-list {
  margin-top: 2.5rem;
  margin-bottom: 2.8125rem;
}
@media (max-width: 575.98px) {
  .c-pricing .c-pricing-plan .c-pricing-list {
    height: auto !important;
  }
}
.c-pricing .c-pricing-plan .c-pricing-list li {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}
.c-pricing .c-pricing-plan .c-pricing-list li:first-child {
  font-size: 0.875rem;
  line-height: 1rem;
}
.c-pricing .c-pricing-plan .c-pricing-list-bullets {
  margin-top: 2.5rem;
}
.c-pricing .c-pricing-plan .c-pricing-list-bullets li {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 700;
  padding-left: 30px;
  margin-bottom: 1.25rem;
  background: url("../svg/icon_list_bullet.svg") no-repeat left top;
}
@media (max-width: 575.98px) {
  .c-pricing .c-pricing-plan .c-pricing-list-bullets li {
    background-size: 16px;
    background-position: left center;
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
.c-pricing .c-pricing-plan .c-pricing-list-bullets.green-icon li {
  background: url("../svg/icon_list_bullet_green.svg") no-repeat left top;
}
.c-pricing .c-pricing-plan.c-pricing-plan-scale {
  border-radius: 10px;
  background: #F6EDFF;
}
.c-pricing .c-pricing-plan.c-pricing-plan-growth {
  border-radius: 10px;
  background: #E6F7F8;
}

.c-pricing-support {
  font-size: 1.3125rem;
  padding: 0 20px;
}
@media (max-width: 575.98px) {
  .c-pricing-support {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
  }
}
@media (min-width: 1200px) {
  .c-pricing-support {
    margin-right: -20px;
  }
}

div#c-pricing-agencies .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
div#c-pricing-agencies .row > .col {
  max-width: 416px;
}

h2.tailored-conversions-plan, .tailored-conversions-plan.h2 {
  font-size: 16px;
}
@media (min-width: 768px) {
  h2.tailored-conversions-plan, .tailored-conversions-plan.h2 {
    font-size: 30px;
  }
}

div.flex-hover {
  z-index: -1;
}
div.flex-hover.hovered ~ .pricing-flex .pricing-highlight {
  /*background: rgba(0, 0, 0, 0.03)*/
}

.compare-plans-table-reach .pricing-tier {
  -webkit-box-flex: 33.3333333333%;
      -ms-flex: 33.3333333333%;
          flex: 33.3333333333%;
}

.c-pricing #c-pricing-reach-new .c-pricing-plan {
  margin-bottom: 10px;
}

.compare-plans-table-reach .c-pricing-content-wrapper .pricing-tier {
  border-top: 1px solid #E5E8F0;
}

.compare-plans-table-reach .c-pricing-content-wrapper:last-child .pricing-tier {
  border-bottom: 1px solid #E5E8F0;
}

.compare-plans-table-reach .c-pricing-content-wrapper .pricing-tier {
  border-left: 1px solid #E5E8F0;
  border-bottom: 0;
}

.compare-plans-table-reach .c-pricing-content-wrapper .pricing-tier:last-child {
  border-right: 1px solid #E5E8F0;
}

@media screen and (min-width: 992px) {
  .compare-plans-table.compare-plans-table-reach {
    max-width: 100%;
    margin-top: -40px;
  }
}
.a-case-studies .lead {
  font-size: 1.25rem;
  line-height: 2.1875rem;
}
.a-case-studies .lead-min {
  margin-bottom: 2.8125rem;
}
@media (max-width: 767.98px) {
  .a-case-studies .b-hero-wrapper #purple-lg, .a-case-studies .b-hero-wrapper #purple-sm, .a-case-studies .b-hero-wrapper #green-sm, .a-case-studies .b-hero-wrapper #black-stroke {
    width: auto;
  }
}
.a-case-studies .b-hero-wrapper #purple-lg {
  right: -30%;
  top: -10%;
  width: 177px;
  height: 177px;
}
.a-case-studies .b-hero-wrapper #purple-sm {
  bottom: 0%;
  left: -6%;
}
@media (max-width: 575.98px) {
  .a-case-studies .b-hero-wrapper #purple-sm {
    display: none;
  }
}
.a-case-studies .b-hero-wrapper #green-sm {
  right: -5%;
  bottom: 54%;
}
@media (max-width: 575.98px) {
  .a-case-studies .b-hero-wrapper #green-sm {
    width: 17px;
    height: 17px;
  }
}
.a-case-studies .b-hero-wrapper #black-stroke {
  bottom: 13px;
  left: -11px;
}
@media (max-width: 575.98px) {
  .a-case-studies .b-hero-wrapper #black-stroke {
    width: 44px;
    height: 44px;
  }
}
.a-case-studies .b-hero-wrapper .c-visual svg {
  position: absolute;
  z-index: -1;
}
.a-case-studies .b-hero-wrapper .c-visual svg#green-sm {
  z-index: 1;
}
@media (max-width: 767.98px) {
  .a-case-studies .b-hero-wrapper .c-visual img:not(#purple-lg) {
    margin: 20px auto;
    width: 70%;
    position: relative;
    display: block;
  }
}
.a-case-studies .b-hero .c-visual {
  margin: 0 0.75rem 0 5rem;
}
@media (max-width: 575.98px) {
  .a-case-studies .b-hero .c-visual {
    margin-left: 0;
  }
}

.c-block-cases .c-block-case {
  margin-bottom: 70px;
  display: block;
  text-decoration: none;
}
.c-block-cases .c-block-case__bg {
  height: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  .c-block-cases .c-block-case__bg {
    height: 13.3125rem;
  }
}
.c-block-cases .c-block-case__bg img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 60%;
}
@media all and (max-width: 1200px) {
  .c-block-cases .c-block-case__bg img {
    width: calc(100% - 20px);
  }
}
@media (max-width: 575.98px) {
  .c-block-cases .c-block-case__bg img {
    width: 80%;
  }
}
.c-block-cases .c-block-case__title {
  color: #272742;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 25px;
  line-height: 35px;
}
.c-block-cases .c-block-case__readmore {
  color: #A11CF2;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
}
.c-block-cases .c-block-case:hover .c-block-case__bg img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.c-block-bg__primary {
  background: #272742;
}
.c-block-bg__purplelight {
  background: #F6ECFF;
}
.c-block-bg__purpledark {
  background: #D4B3FF;
}
.c-block-bg__beige {
  background: #E5E8F0;
}

.a-case-studies-page__wrapper {
  width: 800px;
  margin: 41px auto 0;
}
@media all and (max-width: 1024px) {
  .a-case-studies-page__wrapper {
    width: 100%;
    margin-top: 24px;
  }
}

.a-case-studies-page h1, .a-case-studies-page .h1 {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 3.75rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 575.98px) {
  .a-case-studies-page h1, .a-case-studies-page .h1 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    text-align: left !important;
  }
}
.a-case-studies-page .c-counters__title {
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 3.125rem;
}
@media (max-width: 575.98px) {
  .a-case-studies-page .c-counters__title {
    font-size: 1.5625rem;
    line-height: 2.1875rem;
  }
}
.a-case-studies-page .c-counters__text {
  font-weight: normal;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
.a-case-studies-page h3, .a-case-studies-page .h3 {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 3.75rem;
  margin-top: 5rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 575.98px) {
  .a-case-studies-page h3, .a-case-studies-page .h3 {
    font-size: 1.875rem;
    line-height: 2.8125rem;
    margin-bottom: 1.25rem;
  }
}
.a-case-studies-page h4, .a-case-studies-page .h4 {
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 575.98px) {
  .a-case-studies-page h4, .a-case-studies-page .h4 {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
.a-case-studies-page blockquote {
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  padding-left: 4.375rem;
  background: url(../png/blockquote-2.png) no-repeat left center;
  background-size: auto 108px;
  padding: 2.5rem 4.375rem;
  margin: 6.25rem 0;
}

.c-counters {
  margin-bottom: 3.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-counters .c-counters__title {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .c-counters .col-6 {
    margin-bottom: 20px;
  }
}

.c-counters__wrapper {
  padding: 30px 15px;
  background: #F4F6F8;
  border-radius: 5px;
  height: 100%;
}

.c-block-growth .col-sm-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.c-block-growth__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .c-block-growth__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 0 40px;
    margin: 0 -30px;
  }
  .c-block-growth__wrapper svg {
    display: none;
  }
}
.c-block-growth__num {
  margin-left: 2.1875rem;
}
@media (max-width: 575.98px) {
  .c-block-growth__num {
    margin-left: 0;
  }
}
.c-block-growth__num h3, .c-block-growth__num .h3 {
  margin-bottom: 0;
}
.c-block-growth__num p {
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  margin-bottom: 0;
}
.c-block-growth p {
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.5625rem;
}
.c-block-growth.three-col .c-block-growth__wrapper {
  display: block;
  text-align: center;
}
.c-block-growth.three-col .c-block-growth__wrapper svg {
  margin-bottom: 20px;
}
.c-block-growth.three-col .c-block-growth__wrapper .c-block-growth__num {
  margin-left: 0;
}

.b-opinion-alt {
  background: #F6ECFF;
  padding: 2.75rem 1.25rem 5.3125rem;
  margin: 5rem 0 0;
}
.b-opinion-alt blockquote {
  background: none;
  padding: 0;
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 3.125rem;
  margin-top: 0;
  margin-bottom: 2.5rem;
}
@media (max-width: 575.98px) {
  .b-opinion-alt blockquote {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.b-opinion-alt .b-form-text__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.b-opinion-alt .b-form-text__image img {
  margin-right: 1.25rem;
  width: 3.75rem;
  height: 3.75rem;
  background: white;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .b-opinion-alt .b-form-text__image img {
    width: 3rem;
    height: 3rem;
  }
}
.b-opinion-alt .b-form-text__caption .b-form-text__author, .b-opinion-alt .b-form-text__caption .b-form-text__position {
  display: block;
}
.b-opinion-alt .b-form-text__caption .b-form-text__author {
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  margin-bottom: 0.625rem;
}
.b-opinion-alt .b-form-text__caption .b-form-text__position {
  font-style: normal;
  font-weight: normal;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}

.c-csp-image img {
  width: calc(100% + 150px);
  height: auto;
}
@media (max-width: 575.98px) {
  .c-csp-image img {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .c-csp-image img {
    width: 100%;
  }
}
@media all and (min-width: 1025px) {
  .c-csp-image img {
    -webkit-transform: translateX(-75px);
        -ms-transform: translateX(-75px);
            transform: translateX(-75px);
  }
}

.b-list-number__caption {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #272742;
}

.b-list-number {
  margin: 20px 0 40px;
  padding-left: 0;
}

.b-list-number__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}

.b-list-number__text {
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .b-list-number__item {
    margin-bottom: 24px;
  }
}
.b-list-number__count {
  font-size: 56px;
  line-height: 64px;
  color: #e9ecef;
  font-weight: bold;
  margin-right: 20px;
  min-width: 35px;
  display: block;
}

@media (max-width: 767.98px) {
  .b-list-number__count {
    margin-right: 5px;
  }
}
.blog-wrapper {
  width: 100%;
  max-width: 1188px;
  min-width: 320px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 940px) {
  .blog-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 600px) {
  .blog-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
button:hover {
  cursor: pointer;
}

.blog-intro {
  color: #fff;
  margin-bottom: 40px;
  margin-top: 0.9375rem;
}
.blog-intro a:hover, .blog-intro a:focus, .blog-intro a:visited {
  color: #fff;
}
.blog-intro a:hover {
  text-decoration: none !important;
}

img.blog-intro__img {
  border-radius: 12px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 465px;
  -o-object-position: left;
  object-position: left;
}

@media screen and (max-width: 767px) {
  img.blog-intro__img {
    height: 440px;
  }
}
.blog-intro__content {
  position: absolute;
  top: 46px;
  left: 66px;
  max-width: 535px;
  min-width: 535px;
  height: calc(100% - 102px);
}

@media screen and (max-width: 767px) {
  .blog-intro__content {
    left: 54px;
    max-width: calc(100% - 110px);
    min-width: calc(100% - 110px);
  }
}
.blog-intro_insider .blog-intro__title {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 700;
}

@media screen and (max-width: 450px) {
  .blog-intro_insider .blog-intro__title {
    font-size: 2.25rem !important;
    line-height: 3rem;
  }
}
@media screen and (min-width: 941px) {
  .blog-intro_insider .blog-intro__content {
    left: 63px;
  }
}
@media screen and (max-width: 767px) {
  .blog-intro_insider .blog-intro__content {
    left: 80px;
  }
}
@media screen and (max-width: 600px) {
  .blog-intro_insider .blog-intro__content {
    left: 72px;
  }
}
.blog-intro__title {
  font-size: 3.5rem;
  line-height: 3.75rem;
  margin-top: 1.25rem;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .blog-intro__title {
    font-size: 2.5rem !important;
    line-height: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .blog-intro__title {
    font-size: 1.5rem !important;
    line-height: 2.25rem;
  }
}
.blog-intro__title_center {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin: auto;
  position: relative;
  top: calc(50% - 16px);
  -ms-transform: translateY(calc(-50% - 16px));
  -webkit-transform: translateY(calc(-50% - 16px));
          transform: translateY(calc(-50% - 16px));
}

@media screen and (max-width: 450px) {
  .blog-intro__title_center {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
.blog-intro__text {
  font-size: 1.4375rem;
  line-height: 1.875rem;
}

@media screen and (max-width: 767px) {
  .blog-intro__text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.blog-intro__text_bottom {
  position: absolute;
  bottom: 0;
  color: #fff;
  margin-bottom: 0;
}

.blog-intro__text_bottom:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
}

.blog-intro__date {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
  color: #fff;
}

.search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .search-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.search-item__wrapper {
  background: #F3F3F3;
  border-radius: 5px;
  padding: 4px 24px 4px 8px;
  position: relative;
  line-height: 1;
}

.search-item__text {
  color: #999999;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
}

.search-item__count {
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  color: #999999;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .search-item__count {
    margin-left: 0px;
    margin-top: 12px;
  }
}
.search-item__close {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.search-item__close:after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #999999;
}

.search-item__close:before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 1px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #999999;
  position: absolute;
}

.search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 302px;
}

@media screen and (min-width: 901px) {
  .search-wrapper {
    margin-left: auto;
  }
}
.search-results, .autocomplete-suggestions {
  background: #FFFFFF;
  border: 1px solid #E0E0E0 !important;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  position: absolute;
  top: 6px;
  width: 100%;
  padding: 32px 16px 20px;
  z-index: -1;
  display: none;
}

.autocomplete-suggestions {
  z-index: 99 !important;
  -webkit-transform: translateY(-39px);
      -ms-transform: translateY(-39px);
          transform: translateY(-39px);
  max-height: 325px !important;
}

.autocomplete-suggestions b {
  color: #333 !important;
  font-weight: bold !important;
}

.autocomplete-suggestions strong {
  color: #999999;
  font-weight: bold;
  font-size: 8px;
  line-height: 12px;
}

.autocomplete-suggestion.selected {
  background: none !important;
}

.search-results.open {
  display: block;
}

.search-results ul {
  list-style: none;
}

.search-results ul li, .autocomplete-suggestion {
  margin-top: 16px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #666666 !important;
  padding: 0 !important;
}

.search-results ul li:hover a, .autocomplete-suggestion:hover {
  color: #111111 !important;
}

.search-results ul li:hover a:visited, .autocomplete-suggestion:hover {
  color: #111111 !important;
}

.search-results__category {
  color: #999999;
  font-weight: bold;
  font-size: 8px;
  line-height: 12px;
}

.search-results__sub-list {
  padding-top: 16px;
}

.search-results__sub-list + .search-results__sub-list {
  border-top: 1px solid #C4C4C4;
}

.blog-list {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1188px;
  min-width: 320px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 80px;
  position: relative;
}

@media screen and (max-width: 940px) {
  .blog-list {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 600px) {
  .blog-list {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.blog-list__wrapper {
  /*margin-left: -20px;
  margin-right: -20px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*@media screen and (max-width: 940px) {
  .blog-list__wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
}*/
.blog-list__wrapper.border {
  margin-bottom: 7.8125rem;
  border-top: 1px solid #e2e2e2 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  padding-top: 30px;
}

.blog-list__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.875rem;
  position: relative;
}

@media screen and (max-width: 600px) {
  .blog-list__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.blog-list__title {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 3.75rem;
  margin: 0;
}

@media screen and (max-width: 480px) {
  .blog-list__title {
    margin-right: 55px;
  }
}
.blog-list__search {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 901px) {
  .blog-list__search {
    width: 100%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 900px) {
  .blog-list__search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.blog-list .blog-list__search-input {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  border: 1px solid #cccccc;
  border-radius: 8px !important;
  height: 40px;
  width: 300px;
  padding-left: 40px;
  margin-top: 6px;
  background-image: url(../svg/search.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
}

@media screen and (max-width: 480px) {
  .blog-list .blog-list__search-input {
    width: 100%;
  }
}
.blog-list .blog-list__search-input:focus {
  border-color: #A11CF2;
}

@media screen and (max-width: 480px) {
  .blog-list .blog-list__search-input:focus {
    left: 0;
  }
}
.blog-list__load {
  padding: 12px 32px;
  background: rgba(224, 224, 224, 0.5);
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #111111;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
}

.blog-list__load:hover {
  background: rgba(204, 204, 204, 0.5);
  color: #111111;
}

.blog-list__load:focus {
  background: rgba(204, 204, 204, 0.5);
  color: #111111;
}

@media screen and (max-width: 600px) {
  .top-stories {
    display: none;
  }
}
.top-stories__heading {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  text-align: center;
  margin: 0 0 1.5625rem;
}

.top-stories__date {
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #86869A;
  margin-bottom: 0.875rem;
}

.top-stories__title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  margin-bottom: 0.375rem;
}

.top-stories__text {
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #666666;
  margin-bottom: 0.3125rem;
}

.top-stories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 40px;
  padding-left: 0;
}

.top-stories__item > a {
  text-decoration: none;
}
.top-stories__item:first-child {
  padding-right: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 32.15%;
}

@media screen and (max-width: 940px) {
  .top-stories__item:first-child {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .top-stories__item:first-child {
    width: 100%;
  }
}
.top-stories__item:nth-child(2) {
  padding: 10px 40px;
  width: 36%;
  border-left: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
}

@media screen and (max-width: 940px) {
  .top-stories__item:nth-child(2) {
    width: 50%;
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .top-stories__item:nth-child(2) {
    display: none;
  }
}
.top-stories__item:last-child {
  padding-left: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 32.15%;
}

@media screen and (max-width: 940px) {
  .top-stories__item:last-child {
    display: none;
  }
}
.top-stories a:hover {
  text-decoration: none !important;
}

.tags {
  padding: 40px 0 18px;
}

@media screen and (max-width: 940px) {
  .tags {
    padding: 40px 0 12px;
  }
}
.tags__item {
  background: rgba(224, 224, 224, 0.4);
  border-radius: 5px;
  margin-right: 20px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 12px;
}

.tags__item a {
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  opacity: 1;
  color: #666666 !important;
  height: 100%;
  width: 100%;
  padding: 8px 10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.tags__item a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.tags__item a:focus {
  outline: none;
  text-decoration: none;
  color: #999999;
}

.tags__item a:visited {
  color: #999999;
}

.tags__list {
  list-style: none;
  margin: 12px 0 0;
  padding-left: 0;
}

.article .tags .tags__title {
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #666666;
  opacity: 0.7;
}

.blog-list-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-list-categories__item {
  padding: 0.375rem 0.9375rem;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  text-align: center;
  color: #86869A;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 0.625rem;
}
.blog-list-categories__item.active {
  background: #A11CF2;
  color: #fff;
}
.blog-list-categories__item.active a {
  color: #fff;
  text-decoration: none;
}
.blog-list-categories__item.active a:hover, .blog-list-categories__item.active a:focus, .blog-list-categories__item.active a:visited {
  color: #fff;
}
.blog-list-categories__item.active a:visited:hover {
  color: #fff;
}
.blog-list-categories__item a {
  text-decoration: none;
  color: #86869A;
}
.blog-list-categories__item a:visited {
  color: #8B8F9B;
}
.blog-list-categories__item a:visited:hover {
  color: #A11CF2;
}
.blog-list-categories__item a:focus {
  color: #8B8F9B;
}
.blog-list-categories__item a:focus:hover {
  color: #A11CF2;
}

.blog-subscribe {
  width: 33.33%;
  padding: 20px;
  border-radius: 8px;
  height: 392px;
}
@media (max-width: 575.98px) {
  .blog-subscribe {
    margin-bottom: 20px;
  }
}
.blog-subscribe a {
  text-decoration: none;
}

.blog-list .form-group {
  margin-bottom: 0;
}

@media screen and (max-width: 940px) {
  .blog-subscribe {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .blog-subscribe {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 500px) {
  .blog-subscribe {
    width: 100%;
  }
}
.blog-subscribe__wrapper {
  background: #A11CF2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2.1875rem 1.5625rem;
  border-radius: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  background: #F4F6F8;
  position: relative;
  overflow: hidden;
}
.blog-subscribe__wrapper #stroke-black, .blog-subscribe__wrapper #bubble-yellow, .blog-subscribe__wrapper #stroke-black2, .blog-subscribe__wrapper #bubble-dark {
  position: absolute;
}
.blog-subscribe__wrapper #stroke-black {
  top: 8px;
  left: -15px;
  width: 85px;
  height: 85px;
}
.blog-subscribe__wrapper #bubble-yellow {
  width: 14px;
  height: 14px;
  top: 25px;
  right: 35px;
}
.blog-subscribe__wrapper #stroke-black2 {
  width: 51px;
  height: 51px;
  top: 79px;
  right: -10px;
}
.blog-subscribe__wrapper #bubble-dark {
  width: 20px;
  height: 20px;
  top: 140px;
  right: 32px;
}

.blog-subscribe .blog-subscribe__content {
  text-align: center;
}
.blog-subscribe .blog-subscribe__text {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  max-width: 130px;
  margin: 0 auto;
}
.blog-subscribe .blog-subscribe__heading {
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 3.125rem;
  margin-bottom: 0.625rem;
}
.blog-subscribe .blog-subscribe__form {
  width: 100%;
}
.blog-subscribe .blog-subscribe__input {
  background: #FFFFFF;
  mix-blend-mode: normal;
  border: 1px solid #272742;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px !important;
  width: 100%;
  height: 3.125rem;
  padding: 0.75rem 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
.blog-subscribe .blog-subscribe__input:focus {
  border: 1px solid #E0E0E0;
}
.blog-subscribe .blog-subscribe__input::-webkit-input-placeholder {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #272742;
}
.blog-subscribe .blog-subscribe__input::-webkit-input-placeholder,
.blog-subscribe .blog-subscribe__input::-moz-placeholder,
.blog-subscribe .blog-subscribe__input:-ms-input-placeholder,
.blog-subscribe .blog-subscribe__input::-ms-input-placeholder,
.blog-subscribe .blog-subscribe__input::placeholder {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #272742;
}
.blog-subscribe .blog-subscribe__button {
  background: #E4C9FF;
  border-radius: 5px;
  color: #272742;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 3.125rem;
  height: 3.125rem;
  width: 100%;
  margin-top: 0.875rem;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  padding: 0;
  outline: 0;
  border: 0;
}
.blog-subscribe .blog-subscribe__button:hover {
  opacity: 0.8;
}

.blog-trial {
  width: 33.33%;
  padding: 20px;
  border-radius: 8px;
  height: 392px;
}
@media (max-width: 575.98px) {
  .blog-trial {
    margin-bottom: 20px;
  }
}
.blog-trial a {
  text-decoration: none;
}

@media screen and (max-width: 940px) {
  .blog-trial {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .blog-trial {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .blog-trial {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 500px) {
  .blog-trial {
    width: 100%;
  }
}
.blog-trial__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 35px 27px 10px 27px;
  border-radius: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  background: #89FFB8;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}

.blog-trial__wrapper svg {
  position: absolute;
  bottom: 0;
  right: 5%;
}

@media screen and (max-width: 1042px) {
  .blog-trial__wrapper svg {
    height: 115px;
  }

  .blog-trial__text {
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 941px) {
  .blog-trial__wrapper svg {
    height: 160px;
    right: 5%;
  }
}
.blog-trial__text {
  font-size: 1.5625rem;
  line-height: 2.1875rem !important;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.2rem;
  color: #272742;
}

@media screen and (max-width: 992px) {
  .blog-trial__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .blog-trial__text {
    font-size: 1.25rem;
  }
}
.blog-trial__text span {
  font-weight: bold;
}

.blog-trial__button {
  height: 2rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #272742;
  font-weight: 600;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  padding: 0;
  text-align: left;
  display: inline-block;
}

@media screen and (max-width: 1186px) {
  .blog-trial__button {
    font-size: 1.1rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 1042px) {
  .blog-trial__button {
    margin: 15px 0 0 0;
    font-size: 1rem;
  }
}
.blog-trial__button:visited {
  color: #272742;
}

.blog-trial__button:focus {
  color: #272742;
}

.blog-trial__button:hover {
  color: #272742;
}

.blog-trial__button:focus {
  color: #272742;
}

.blog-trial__button_white {
  background: #fff;
  color: #272742;
}

.blog-trial__button_white:hover {
  background: #272742;
  color: #fff;
}

.blog-promo-post {
  width: 33.33%;
  padding: 20px;
  border-radius: 8px;
  /*height: 392px; */
}
@media (max-width: 575.98px) {
  .blog-promo-post {
    margin-bottom: 20px;
  }
}
.blog-promo-post a {
  text-decoration: none;
}

@media screen and (max-width: 940px) {
  .blog-promo-post {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .blog-promo-post {
    /*height: 352px;*/
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 500px) {
  .blog-promo-post {
    width: 100%;
  }
}
.blog-promo-post__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.875rem 1.5625rem 1rem 1.5625rem;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  left: 0;
  top: 0;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #A11CF2;
}

.blog-promo-post__wrapper svg {
  position: absolute;
  bottom: 15%;
  right: 0;
}

@media screen and (max-width: 1050px) {
  .blog-promo-post__wrapper svg {
    width: 160px;
  }
}
@media screen and (max-width: 941px) {
  .blog-promo-post__wrapper svg {
    right: 8%;
    width: unset;
  }
}
@media screen and (max-width: 768px) {
  .blog-promo-post__wrapper svg {
    right: 5%;
    width: 150px;
  }
}
@media screen and (max-width: 625px) {
  .blog-promo-post__wrapper svg {
    width: 130px;
  }
}
@media screen and (max-width: 601px) {
  .blog-promo-post__wrapper svg {
    position: unset;
  }
}
.blog-promo-post__wrapper:hover {
  padding-left: 37px;
  padding-right: 37px;
  padding-top: 42px;
  padding-bottom: 42px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: -12px;
  top: -12px;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .blog-promo-post__wrapper:hover {
    width: 100%;
    height: 100%;
    padding: 24px 16px;
    border-radius: 8px;
    left: 0;
    top: 0;
  }
}
.blog-promo-post__date {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 8px;
}

.blog-promo-post__promo {
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #fff;
  margin-bottom: 1.25rem;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.blog-promo-post__title {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  color: #fff;
  margin-bottom: 0.625rem;
}

.blog-promo-post__text {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 400;
}

.blog-promo-post__link {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #fff;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
  margin-bottom: 0;
}

.blog-white-paper {
  width: 33.33%;
  padding: 20px;
  border-radius: 5px;
  height: 392px;
}
@media (max-width: 575.98px) {
  .blog-white-paper {
    margin-bottom: 20px;
  }
}
.blog-white-paper a {
  text-decoration: none;
  background: #E4C9FF;
}

@media screen and (max-width: 940px) {
  .blog-white-paper {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .blog-white-paper {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    height: 352px;
  }
}
.blog-white-paper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px 24px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  left: 0;
  top: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-white-paper__wrapper:hover {
  padding: 36px;
  padding-right: 36px;
  padding-top: 42px;
  padding-bottom: 54px;
  width: calc(100% + 24px);
  height: calc(100% + 36px);
  left: -12px;
  top: -12px;
}

@media screen and (max-width: 600px) {
  .blog-white-paper__wrapper:hover {
    width: 100%;
    height: 100%;
    padding: 30px 24px;
    left: 0;
    top: 0;
  }
}
.blog-white-paper__title {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  margin-bottom: 1rem;
  color: #272742;
  max-width: 80%;
}
@media (max-width: 575.98px) {
  .blog-white-paper__title {
    max-width: 100%;
  }
}

@media screen and (max-width: 972px) {
  .blog-white-paper__title {
    margin-bottom: 1rem;
    max-width: 90%;
  }
}
@media screen and (max-width: 942px) {
  .blog-white-paper__link {
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 640px) {
  .blog-white-paper__link {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 347px) {
  .blog-white-paper__link {
    margin: 10px 0 0 0;
  }
}
.blog-white-paper__link {
  margin: 20px 0 0 0;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #272742;
}

@media screen and (max-width: 942px) {
  .blog-white-paper__link {
    font-size: 0.9rem;
  }
}
/*.blog-item {
  width: 33.33%;
  padding: 20px;
  border-radius: 8px;
  height: 392px;

  a:hover {
    text-decoration: none!important;
  }

  @media screen and (max-width: 940px) {
    width: 50%;
  }

  @media screen and (max-width: 767px) {
    height: auto;
  }

  @media screen and (max-width: 600px) {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }

  p {
    padding-left: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: relative;
    margin-right: 0;
  }


  //&:hover {

    a:hover {
      //box-shadow: 0 4px 24px rgba(224, 224, 224, 0.8);
      width: calc(100% + 24px);
      left: -12px;
      height: 376px;
      z-index: 1000;
      background-color: #ffffff;

      @media screen and (max-width: 767px) {
        height: auto;
      }

      @media screen and (max-width: 500px) {
        box-shadow: none;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 1000;
      }

      p {
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        margin-right: 12px;

        @media screen and (max-width: 500px) {
          left: 0;
          right: 0;
          width: 100%;
        }
      }

      img {
        height: 154px;
        margin-top: -12px;

        @media screen and (max-width: 500px) {
          height: 142px;
          margin-top: 0;
        }
      }

      .blog-item__link {
        color: $purple;
      }
    }
 // }

  > a {
    display: block;
    width: 100%;
    height: 352px;
    transition: all .3s ease;

    left: 0;
    top: 0;
    border-radius: 8px;

    @media screen and (max-width: 767px) {
      height: auto;
    }

    @media screen and (max-width: 600px) {
      margin-bottom: 20px;
    //  height: 330px!important;
    }
  }

  p {
    transition: all .3s ease;
  }


  &__img {
    width: 100%;
    height: 142px;
    object-fit: cover;
    margin-bottom: 16px;
    transition: all .2s ease;
    border-radius: 8px;
  }

  &__date {
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #999999;
    margin-bottom: 8px;
  }

  &__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.04em;
    color: #111111;
    margin-bottom: 8px;
  }

  &__text {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #666666;
    margin-bottom: 16px;
  }

  &__link {
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    color: #CCCCCC;

    @media screen and (max-width: 1024px) {
      color: #CCCCCC;
      opacity: 1;
    }
  }
}
*/
.blog-item {
  width: 33.33%;
  padding: 20px;
  border-radius: 8px;
  height: 392px;
}
.blog-item a {
  text-decoration: none;
}

.blog-item a:hover {
  text-decoration: none !important;
}

@media screen and (max-width: 940px) {
  .blog-item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .blog-item {
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .blog-item {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }
}
.blog-item a:hover:after {
  width: calc(100% + 24px);
  left: -12px;
  height: 376px;
  background-color: #ffffff;
  border-radius: 8px;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .blog-item a:hover {
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .blog-item a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
  }
}
.blog-item a:hover img {
  /*height: 154px;
   margin-top: -12px;
   width: -webkit-calc(100% + 24px);
   width: calc(100% + 24px);
   max-width: -webkit-calc(100% + 24px) !important;
   max-width: calc(100% + 24px) !important;
   left: -12px; */
  -webkit-transform: scale(1.1) translateY(-6px);
      -ms-transform: scale(1.1) translateY(-6px);
          transform: scale(1.1) translateY(-6px);
  -webkit-transform: center bottom;
      -ms-transform: center bottom;
          transform: center bottom;
}

@media screen and (max-width: 600px) {
  .blog-item a:hover img {
    width: 100%;
    height: 142px;
    left: 0;
    margin-top: 0;
  }
}
.blog-item a:hover .blog-item__link {
  color: #A11CF2;
}

.blog-item > a {
  position: relative;
  display: block;
  height: 352px;
}

.blog-item > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 352px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  border-radius: 8px;
  position: absolute !important;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .blog-item > a:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .blog-item > a {
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .blog-item > a {
    margin-bottom: 20px;
  }
}
.blog-item p {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-item__img {
  width: 100%;
  height: 142px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 0.9375rem;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  border-radius: 5px;
  position: relative;
  left: 0;
  image-rendering: smooth;
  image-rendering: optimizeQuality;
  image-rendering: -webkit-optimize-contrast;
}

.blog-item__date {
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #86869A;
  margin-bottom: 0.9375rem;
}

.blog-item__title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  margin-bottom: 0.3125rem;
}

.blog-item__text {
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  margin-bottom: 0.9375rem;
  color: #86869A;
}

.blog-item__link {
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #A11CF2;
}

.article__wrapper {
  width: 100%;
  max-width: 830px;
  min-width: 320px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.article__wrapper p a, .article__wrapper a {
  color: #A11CF2;
  text-decoration: none;
}

.article__wrapper p a:hover {
  color: #A11CF2;
  text-decoration: underline !important;
}

@media screen and (max-width: 940px) {
  .article__wrapper {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 720px;
  }
}
@media screen and (max-width: 600px) {
  .article__wrapper {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 700px;
  }
}
.article__wrapper h1, .article__wrapper .h1 {
  font-size: 3.125rem;
  line-height: 3.75rem;
  color: #272742;
  margin-bottom: 1.25rem;
  font-weight: 600;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .article__wrapper h1, .article__wrapper .h1 {
    font-size: 1.875rem;
    line-height: 2.8125rem;
  }
}

.article__wrapper h2, .article__wrapper .h2 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}

.article__wrapper h3, .article__wrapper .h3 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.article__wrapper h4, .article__wrapper .h4 {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 20px;
}

.article__wrapper h5, .article__wrapper .h5 {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
}

.article__wrapper h6, .article__wrapper .h6 {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 15px;
}

.article__wrapper .text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
}

.article__wrapper .elementor-element.text {
  margin-bottom: 0;
}

.article__wrapper p {
  font-size: 0.9375rem;
  line-height: 1.75rem;
  margin-bottom: 25px;
}

.article__wrapper img {
  margin-bottom: 40px;
  width: 100%;
}

.article__wrapper .text_gray {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #86869A;
  margin-bottom: 40px;
}

.article__wrapper .accent {
  color: #3B3D40;
  padding: 24px 0;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  text-align: center;
  margin-bottom: 24px;
}

.article__wrapper .accent.accent-size-xxsmall {
  font-size: 28px;
  line-height: 36px;
}

.article__wrapper .accent.accent-size-xsmall {
  font-size: 32px;
  line-height: 40px;
}

.article__wrapper .accent.accent-size-small {
  font-size: 36px;
  line-height: 44px;
}

.article__wrapper .accent.accent-size-medium {
  font-size: 40px;
  line-height: 48px;
}

.article__wrapper .accent.accent-size-large {
  font-size: 44px;
  line-height: 52px;
}

.article__wrapper .accent.accent-size-xl {
  font-size: 48px;
  line-height: 56px;
}

.article__wrapper .accent.accent-size-xxl {
  font-size: 52px;
  line-height: 60px;
}

.article__wrapper .icon-background-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 45px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article__wrapper .icon-background-list svg {
  margin-bottom: -25px;
  margin-left: 10px;
}

.article__wrapper .icon-background__item {
  max-width: 300px;
  width: 45%;
}

@media screen and (max-width: 500px) {
  .article__wrapper .icon-background__item {
    max-width: inherit;
    width: 100%;
    margin-bottom: 20px;
  }
}
.article__wrapper .icon-background__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #111111;
  margin-bottom: 4px;
}

.article__wrapper .icon-background__text {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}

.article__wrapper .icon-background-number-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article__wrapper .icon-background-number-list__item {
  width: 45%;
  max-width: 300px;
  position: relative;
  margin: 50px 0;
}

@media screen and (max-width: 500px) {
  .article__wrapper .icon-background-number-list__item {
    max-width: inherit;
    width: 100%;
  }
}
.article__wrapper .icon-background-number-list__item:before {
  font-weight: bold;
  font-size: 184px;
  line-height: 196px;
  letter-spacing: -0.04em;
  color: #E0E0E0;
  mix-blend-mode: normal;
  opacity: 0.64;
  position: absolute;
  z-index: -1;
  top: -50px;
}

.article__wrapper .icon-background-number-list__item:first-child:before {
  content: "1";
}

.article__wrapper .icon-background-number-list__item:nth-child(2):before {
  content: "2";
}

.article__wrapper .icon-background-number-list__item:nth-child(3):before {
  content: "3";
}

.article__wrapper .icon-background-number-list__item:nth-child(4):before {
  content: "4";
}

.article__wrapper .icon-background-number-list__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #111111;
  margin-bottom: 8px !important;
}

.article__wrapper .icon-background-number-list__text {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 0 !important;
}

.article__wrapper .blockquote {
  margin: 96px 0 80px;
}

.article__wrapper .blockquote__text {
  margin: 0 0 24px 0;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  letter-spacing: -0.06em;
  color: #111111;
  position: relative;
  border-left: none;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .article__wrapper .blockquote__text {
    font-size: 24px;
    line-height: 36px;
  }
}
.article__wrapper .blockquote__text strong {
  font-weight: bold;
}

.article__wrapper .blockquote__text:before, .article__wrapper .blockquote__text:after {
  font-weight: bold;
  font-size: 240px;
  line-height: 144px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: -0.04em;
  color: #E0E0E0;
  opacity: 0.5;
  position: absolute;
  z-index: -1;
}

.article__wrapper .blockquote__text:before {
  content: "“";
}

.article__wrapper .blockquote__text:after {
  content: "”";
  right: 0;
  bottom: -85px;
}

.article__wrapper .blockquote__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}

.article__wrapper .blockquote__author span:first-child {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #666666;
  margin-bottom: 4px;
}

.article__wrapper .blockquote__author span:nth-child(2) {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #656B6F;
}

.article__wrapper .list-number {
  margin: 20px 0 40px;
}

.article__wrapper .list-number__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__wrapper .list-number__item + .list-number__item {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .article__wrapper .list-number__item {
    margin-bottom: 24px;
  }
}
.article__wrapper .list-number__count {
  font-size: 56px;
  line-height: 64px;
  color: #E0E0E0;
  font-weight: bold;
  margin-right: 20px;
  min-width: 35px;
  display: block;
}

.article__wrapper .blog-trial_article {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  padding: 0;
  border-radius: 8px;
}

.article__wrapper .blog-trial_article a {
  text-align: center;
}

@media screen and (max-width: 600px) {
  .article__wrapper .blog-trial_article {
    max-width: 100%;
  }
}
.article__wrapper .blog-trial_article .blog-trial_article__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 24px;
  border-radius: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
}

.article__wrapper .blog-trial_article .blog-trial_article__text {
  font-size: 24px;
  line-height: 36px !important;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.article__wrapper .blog-trial_article .blog-trial_article__text span {
  font-weight: bold;
}

.article__wrapper .blog-trial_article .blog-trial_article__button {
  background: #FAE12E;
  border-radius: 8px;
  height: 44px;
  line-height: 44px;
  letter-spacing: -0.04em;
  color: #111111;
  font-weight: bold;
  width: 206px;
  margin: 0 auto;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  padding: 0;
}

.article__wrapper .blog-trial_article .blog-trial_article__button:hover {
  background: #FCEC7E;
}

.article__wrapper .blog-trial_article .blog-trial_article__button_white {
  background: #FFFFFF;
  color: #111111;
}

.article__wrapper .blog-trial_article .blog-trial_article__button_white:hover {
  background: #FAE12E;
}

.article__wrapper .arrow-list {
  list-style: none;
  margin-bottom: 40px;
}

.article__wrapper .arrow-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}

.article__wrapper .arrow-list li:before {
  content: "→";
  color: #A11CF2;
  font-weight: bold;
  font-size: 18px;
  margin-right: 8px;
}

.article__wrapper .request-phrase {
  padding: 2.5rem 3.125rem 0.9375rem;
  text-align: center;
  background: #F4F6F8;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  .article__wrapper .request-phrase {
    padding: 1.25rem 1.5625rem 0.5rem;
  }
}

.article__wrapper .request-phrase__text {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  text-align: center;
  color: #272742;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.article__wrapper .request-phrase__button {
  background: #A11CF2;
  border-radius: 5px;
  padding: 1.09375rem 4.84375rem !important;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  color: #fff;
  font-weight: 600;
  margin: 0 auto;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  border: 0;
}
@media (max-width: 575.98px) {
  .article__wrapper .request-phrase__button {
    padding: 0.78125rem 2.34375rem !important;
  }
}

.article__wrapper .request-phrase__button:hover {
  background: #272742;
}

.blog-breadcrumbs__list {
  margin-top: 3.75rem;
  list-style: none;
  padding-left: 0;
}

.blog-breadcrumbs__list .post.post-post.current-item {
  display: none;
}

.blog-breadcrumbs__list li {
  display: inline-block;
  position: relative;
  color: #666666;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.blog-breadcrumbs__list li + li:before {
  content: "—";
  padding: 5px;
}

.blog-breadcrumbs__list li a {
  color: #666666;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.blog-breadcrumbs__list li a:hover {
  color: #86869A;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 400px) {
  .socials {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.socials__text {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  color: #666666;
  margin-right: 1.5625rem;
}

@media (max-width: 400px) {
  .socials__text {
    margin-bottom: 14px;
  }
}
.socials__links {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding-left: 0;
}

.socials__item {
  display: inline-block;
  margin-right: 28px;
}

.socials__item a {
  color: #666666;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.socials__item a:hover {
  color: #A11CF2;
}

.bottom-article {
  padding: 40px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e2e2e2;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .article__wrapper .bottom-article {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
}
.article__wrapper .bottom-article .bottom-article__photo {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 3px;
  border: 1px solid #A11CF2;
}

@media screen and (max-width: 767px) {
  .article__wrapper .bottom-article .bottom-article__photo {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 0;
  }
}
.article__wrapper .bottom-article .bottom-article__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.article__wrapper .bottom-article .bottom-article__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .written-by {
    margin-top: 20px;
    text-align: center;
  }

  .article__wrapper .bottom-article .bottom-article__top {
    margin-top: 10px;
  }
}
.article__wrapper .bottom-article .bottom-article__author {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #111111;
  margin-bottom: 4px !important;
}

@media screen and (max-width: 767px) {
  .article__wrapper .bottom-article .bottom-article__author {
    margin-left: auto;
    margin-right: auto;
  }
}
.article__wrapper .bottom-article .written-by {
  font-size: 0.6875rem;
  line-height: 0.9375rem;
  color: #666666;
  margin-bottom: 0.3125rem;
}

.article__wrapper .bottom-article .bottom-article__position {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #666666;
  margin-bottom: 0.9375rem !important;
}

@media screen and (max-width: 767px) {
  .article__wrapper .bottom-article .bottom-article__position {
    text-align: center;
  }
}
.article__wrapper .bottom-article .bottom-article__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .article__wrapper .bottom-article .bottom-article__share {
    position: absolute;
    right: 24px;
    bottom: 24px;
  }
}
.article__wrapper .bottom-article .bottom-article__share-item {
  color: #CCCCCC;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
  margin-left: 24px;
}

.article__wrapper .bottom-article .bottom-article__share-item:hover {
  color: #A11CF2;
}

.article__wrapper .bottom-article .bottom-article__text {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  color: #666666;
  margin-bottom: 16px !important;
}

.article__wrapper .bottom-article .bottom-article__link {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #A11CF2;
  margin-bottom: 0;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.article__wrapper .bottom-article .bottom-article__link:hover {
  color: #A11CF2;
  text-decoration: none;
}

.article {
  font-weight: normal;
}

.article__about {
  margin-top: 40px;
}

.article__about img {
  width: auto;
}

.article__about-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 640px) {
  .article__about-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
}
.article__about-item {
  width: 25%;
}

.article__about-item .article__about-text p {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 640px) {
  .article__about-item {
    width: 50%;
    margin-bottom: 45px;
  }
}
.article__about-text {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  max-width: 130px;
}

.article__about-list .article__about-item .article__about-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #111111;
  margin-bottom: 4px !important;
}

.advertising {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0;
}

.advertising.left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: -155px;
}

@media screen and (max-width: 1130px) {
  .advertising.left {
    position: static;
    left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (max-width: 400px) {
  .advertising.left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.advertising.left .advertising__image {
  margin-bottom: 10px;
}

.advertising.left .advertising__image p {
  margin-bottom: 0 !important;
}

.advertising__image {
  margin-right: 24px;
  max-width: 132px;
  position: relative;
}

@media screen and (max-width: 400px) {
  .advertising__image {
    max-width: 100%;
    height: 240px;
  }
}
.advertising__image img {
  margin-bottom: 0;
  height: 100%;
}

.advertising__image p {
  position: absolute;
  color: #FFFFFF;
  font-size: 10px;
  bottom: 10px;
  left: 5px;
  z-index: 1;
}

@media screen and (max-width: 400px) {
  .advertising__image p {
    font-size: 16px;
  }
}
.advertising__image p span {
  font-size: 24.2186px;
  line-height: 19px;
  letter-spacing: -0.04em;
  display: block;
}

@media screen and (max-width: 400px) {
  .advertising__image p span {
    font-size: 46px;
    line-height: 46px;
  }
}
.advertising__content .advertising__text {
  font-size: 12px !important;
  line-height: 16px !important;
  color: #666D70 !important;
  margin-bottom: 8px !important;
  max-width: 130px !important;
}

@media screen and (max-width: 400px) {
  .advertising__text {
    max-width: 100%;
  }
}
.advertising__link {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #A11CF2;
}

.mouse-shadow {
  width: 345px;
  height: 345px;
  background-image: url(../png/shadow-2.png);
  background-size: contain;
  opacity: 1;
  position: absolute;
  z-index: -2;
}

.mouse-shadow.mouse-shadow-hidden {
  opacity: 0;
}

@media screen and (max-width: 1023px) {
  .mouse-shadow {
    display: none;
  }
}
/* new by Alex.R 03.04.2020*/
#ajax-load-more .blog-list__wrapper .alm-reveal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#ajax-load-more .blog-list__wrapper {
  margin: 0;
}

.ajax-load-more-wrap {
  width: 100%;
}

.alm-btn-wrap .alm-load-more-btn.loading:before {
  display: none !important;
}

.alm-btn-wrap .alm-load-more-btn {
  padding: 0 2rem !important;
  background: #E5E8F0 !important;
  border-radius: 5px !important;
  font-weight: bold !important;
  font-size: 0.9375rem !important;
  height: 2.8125rem !important;
  line-height: 2.8125rem !important;
  color: #272742 !important;
  margin: 20px auto 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  align-self: center !important;
  -webkit-transition: background 0.5s ease !important;
  -o-transition: background 0.5s ease !important;
  transition: background 0.5s ease !important;
}

.alm-btn-wrap .alm-load-more-btn:hover {
  background: #E4C9FF !important;
}

.not-found.wrapper h2.not-found, .not-found.wrapper .not-found.h2 {
  margin-bottom: 0.875rem;
  color: #272742 !important;
  font-size: 1.5rem;
}

.not-found.wrapper .alert.alert-info p:first-of-type {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #272742;
}

.not-found.wrapper .alert.alert-info p:nth-of-type(2) {
  font-size: 16px;
  line-height: 24px;
  color: #272742;
  font-weight: bold;
}

.not-found.wrapper {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 1023px) {
  .content_style_appricotads .b-mention__content {
    margin-left: 0;
  }
}
.b-charts-carousel {
  background: #fff;
  -webkit-box-shadow: 0px 4px 16px rgba(17, 17, 17, 0.16);
          box-shadow: 0px 4px 16px rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  padding: 40px 0px 20px 0px;
  position: relative;
  /*transform: translateX(50px);*/
  width: calc(100% - 50px);
  margin-bottom: 40px;
}

.b-charts-carousel.b-charts-carousel-left {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.b-charts-carousel.b-charts-carousel-left .owl-wrapper-outer {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}

@media (max-width: 640px) {
  .b-charts-carousel.b-charts-carousel-left {
    -webkit-transform: translateX(80px);
        -ms-transform: translateX(80px);
            transform: translateX(80px);
  }

  .b-charts-carousel.b-charts-carousel-left .owl-wrapper-outer {
    -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}
.b-charts-carousel::before {
  content: "";
  display: block;
  top: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: 17px;
  background: #F7F7F7;
  position: absolute;
}

.b-charts-carousel .owl-item .item {
  margin: 0 7.5px;
  border: 1px solid #dadada;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.b-charts-carousel .owl-wrapper-outer {
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  padding: 10px 5px;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
  background: #fff;
  width: calc(100% + 20px);
}

.b-charts-carousel__header {
  background: #f6f6f6;
  border-bottom: 1px solid #dadada;
  font-size: 8px;
  font-weight: bold;
  padding: 15px 10px;
}

.content_style_apprmarket .b-mention__side + .b-review__author {
  display: none;
  text-align: center;
}

.content_style_apprmarket .b-mention__side + .b-review__author .b-review__name {
  font-style: normal;
}

.content_style_apprmarket .b-review__content:before {
  display: none;
}

.content_style_apprmarket .owl-controls {
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: auto !important;
  bottom: -50px;
  width: 320px;
  left: 50%;
  margin-left: -32px;
}

.content_style_apprmarket .owl-controls .owl-page span {
  width: 15px;
  height: 15px;
  border-radius: 12px;
}

.content_style_apprmarket .b-success__desc {
  color: #111;
}

.content_style_apprmarket .b-proof {
  margin-bottom: 80px;
}

.content_style_apprmarket .b-review__content {
  margin-left: 300px;
}

.content_style_apprmarket .b-review__side {
  width: 684px !important;
}

.content_style_apprmarket .b-review__img {
  width: 467px !important;
}

@media (max-width: 992px) {
  .content_style_apprmarket .b-review__side {
    width: 104px !important;
  }

  .content_style_apprmarket .b-review__img {
    width: 100% !important;
  }

  .content_style_apprmarket .b-review__content {
    margin-left: 0;
  }
}
.content_style_apprmarket .b-mention__side {
  top: auto !important;
}

.content_style_apprmarket .b-case .b-case__title {
  font-size: 56px;
  line-height: 64px;
}

.b-chart-header {
  margin-top: 50px;
  padding-left: 15px;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .b-charts-carousel .owl-wrapper-outer {
    width: calc(100% + 10px);
  }

  .b-charts-carousel {
    margin-bottom: 80px;
  }
}
@media (min-width: 640px) {
  .content_style_apprmarket .owl-controls {
    margin-left: 25px;
  }
}
@media (max-width: 640px) {
  .b-charts-carousel {
    /*transform: translateX(65px);*/
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 80px;
    width: calc(100% - 65px);
  }

  .b-charts-carousel .owl-wrapper-outer {
    width: calc(100% + 50px);
  }
}
@media (max-width: 991px) {
  .content_style_apprmarket .b-review__content {
    margin-top: 40px;
  }

  .content_style_apprmarket .b-mention__side + .b-review__author {
    display: block;
  }

  .content_style_apprmarket .b-review__quote .b-review__author {
    display: none;
  }
}
.sub-headline-vs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 575.98px) {
  .sub-headline-vs {
    /*flex-direction: column;*/
  }
}
.sub-headline-vs .sub-headline-box {
  padding: 3.125rem 3.75rem;
  position: relative;
}
@media (min-width: 576px) {
  .sub-headline-vs .sub-headline-box:first-child {
    padding-right: 85px;
  }
}
.sub-headline-vs .sub-headline-box:first-child:after {
  content: "";
  border-right: 1px solid #cccccc;
  position: absolute;
  right: 0;
  height: 130px;
  top: 50%;
  margin-top: -65px;
}
@media (max-width: 575.98px) {
  .sub-headline-vs .sub-headline-box:first-child:after {
    /*border: 0;*/
  }
}
@media (min-width: 576px) {
  .sub-headline-vs .sub-headline-box:last-child {
    padding-left: 85px;
  }
}
@media (max-width: 575.98px) {
  .sub-headline-vs .sub-headline-box {
    padding: 1.25rem 1.875rem;
    width: 50%;
  }
}
.sub-headline-vs .sub-headline-box h3, .sub-headline-vs .sub-headline-box .h3 {
  font-size: 3.125rem;
  line-height: 3.75rem;
  font-weight: 600;
  margin-bottom: 0.9375rem;
}
@media (max-width: 575.98px) {
  .sub-headline-vs .sub-headline-box h3, .sub-headline-vs .sub-headline-box .h3 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}
.sub-headline-vs .sub-headline-box span {
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .sub-headline-vs .sub-headline-box span {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}
.sub-headline-vs.sections {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sub-headline-vs.sections .sub-headline-box {
  min-width: 300px;
  max-width: 300px;
}
@media (max-width: 575.98px) {
  .sub-headline-vs.sections .sub-headline-box {
    min-width: auto;
    max-width: auto;
  }
}
.sub-headline-vs.sections .sub-headline-box:first-child {
  padding-right: 60px;
}
@media (max-width: 575.98px) {
  .sub-headline-vs.sections .sub-headline-box:first-child {
    padding-right: 1.875rem;
  }
}
.sub-headline-vs.sections .sub-headline-box:last-child {
  padding-left: 60px;
}
@media (max-width: 575.98px) {
  .sub-headline-vs.sections .sub-headline-box:last-child {
    padding-left: 1.875rem;
  }
}
.sub-headline-vs.sections .sub-headline-box:not(:last-child):after {
  content: "";
  border-right: 1px solid #cccccc;
  position: absolute;
  right: 0;
  height: 130px;
  top: 50%;
  margin-top: -65px;
}
@media (max-width: 991.98px) {
  .sub-headline-vs.sections .sub-headline-box:not(:last-child):after {
    border: 0;
  }
}
.sub-headline-vs.compare-all {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .sub-headline-vs.compare-all {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sub-headline-vs.compare-all .sub-headline-box {
  text-decoration: none;
}
.sub-headline-vs.compare-all .sub-headline-box:first-child:after {
  border: 0;
}
.sub-headline-vs.compare-all a {
  text-decoration: none;
  display: block;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  max-width: 280px;
  padding: 3.125rem 1.5rem !important;
  min-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.sub-headline-vs.compare-all a:hover {
  -webkit-box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
          box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
}
.sub-headline-vs.compare-all h3, .sub-headline-vs.compare-all .h3 {
  position: relative;
  font-size: 2rem;
  line-height: 2.75rem;
  font-weight: 700;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .sub-headline-vs.compare-all h3, .sub-headline-vs.compare-all .h3 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 600;
  }
}
.sub-headline-vs.compare-all h3:after, .sub-headline-vs.compare-all .h3:after {
  content: "";
  background: url("../svg/chevron-right.svg");
  width: 27px;
  height: 27px;
  display: inline-block;
}

.c-table-competitor-heading > div {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1.5625rem;
}
.c-table-competitor-heading h3, .c-table-competitor-heading .h3 {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
  margin-bottom: 0;
}

.c-table-competitor {
  margin-bottom: 4.375rem;
  font-size: 15px;
  line-height: 25px;
}
.c-table-competitor .c-row-item > div {
  border-bottom: 1px solid #cccccc;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.alternatives-list ul li {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #272742;
  font-weight: 600;
  margin-bottom: 0.9375rem;
}
.alternatives-list ul.second {
  padding-left: 4.375rem;
}
@media (max-width: 991.98px) {
  .alternatives-list ul.second {
    padding-left: 0;
  }
}
.alternatives-list ul.third {
  padding-left: 6.25rem;
}
@media (max-width: 991.98px) {
  .alternatives-list ul.third {
    padding-left: 0;
  }
}

.comparison-table table thead th {
  border-bottom: 1px solid #cccccc !important;
  padding-bottom: 1.5625rem;
}
.comparison-table table thead th h3, .comparison-table table thead th .h3 {
  margin-bottom: 0;
}
.comparison-table table tbody tr {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.comparison-table table tbody th,
.comparison-table table tbody td {
  border-bottom: 1px solid #cccccc;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.comparison-table table tbody th {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 400;
}
.comparison-table table tbody td {
  vertical-align: middle;
}
.comparison-table table.table-hover > tbody > tr:hover {
  -webkit-box-shadow: 0px 28px 30px rgba(178, 178, 178, 0.14);
          box-shadow: 0px 28px 30px rgba(178, 178, 178, 0.14);
}

.glassdoor-reviews .review {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
          box-shadow: 0px 10px 30px rgba(73, 80, 99, 0.3);
  border-radius: 10px;
  padding: 2.1875rem 2.8125rem;
  max-height: 445px;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .glassdoor-reviews .review {
    padding: 1.25rem 1.875rem;
    margin-bottom: 1.875rem;
  }
  .glassdoor-reviews .review .read-more {
    left: 30px;
  }
}
.glassdoor-reviews .review h3, .glassdoor-reviews .review .h3 {
  font-size: 1.5625rem;
  line-height: 2.1875rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
@media (max-width: 575.98px) {
  .glassdoor-reviews .review h3, .glassdoor-reviews .review .h3 {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 600;
  }
}
.glassdoor-reviews .review h4, .glassdoor-reviews .review .h4 {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
.glassdoor-reviews .review p {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  color: #666666;
}
.glassdoor-reviews .review:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.25rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-20.97%, rgba(255, 255, 255, 0)), color-stop(72.58%, #FFFFFF));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) -20.97%, #FFFFFF 72.58%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -20.97%, #FFFFFF 72.58%);
}
.glassdoor-reviews .review .read-more {
  position: absolute;
  bottom: 2.1875rem;
  left: 2.8125rem;
  z-index: 1;
  text-decoration: none;
}
.glassdoor-reviews .review.show {
  max-height: 3000px;
  overflow: initial;
  padding-bottom: 3.75rem;
  -webkit-transition: max-height 1.5s linear;
  -o-transition: max-height 1.5s linear;
  transition: max-height 1.5s linear;
}
.glassdoor-reviews .review.show:after {
  display: none;
}
.glassdoor-reviews .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5625rem;
}
.glassdoor-reviews .star-rating > span {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
  margin-right: 0.75rem;
}
.glassdoor-reviews .star-rating .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.glassdoor-reviews .star-rating .stars .star {
  background: url("../svg/star.svg");
  width: 20px;
  height: 21px;
  display: inline-block;
  margin-right: 8px;
}

#lever-jobs-filter select {
  width: 300px;
  height: 50px;
  border-radius: 4px;
  max-width: 100%;
}
#lever-jobs-filter .cselect {
  position: relative;
  display: inline-block;
}
#lever-jobs-filter .cselect:first-child {
  margin-right: 25px;
}
@media (max-width: 575.98px) {
  #lever-jobs-filter .cselect:first-child {
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  #lever-jobs-filter .cselect {
    width: 100%;
  }
}
#lever-jobs-filter .cselect select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cccccc;
  padding: 12.5px 20px;
}
#lever-jobs-filter .cselect::after {
  content: "";
  background: url("../svg/chevron-down.svg");
  position: absolute;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  pointer-events: none;
}

#lever-jobs-search {
  width: auto;
}

#new-list {
  margin-bottom: 50px;
}
#new-list ul.list {
  margin-top: 50px;
  padding-left: 0;
}

li.lever-job,
ul.list li.lever-job {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 1.5625rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0.625rem;
  border-radius: 5px;
}

.lever-job-title,
ul.list .lever-job-title {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .lever-job-title,
ul.list .lever-job-title {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 600;
  }
}

#lever-clear-filters {
  font-weight: 600;
  margin-left: 25px;
  color: #fff;
  background: #A11CF2;
  padding: 0.5em 1em;
  cursor: pointer;
  display: inline-block;
  border-radius: 4px;
}

#lever-jobs-container {
  display: block;
  visibility: visible;
  opacity: 1;
  color: #212529;
  font-size: 16px;
}
#lever-jobs-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#lever-jobs-container ul {
  padding-left: 0;
}
#lever-jobs-container .lever-team {
  margin-bottom: 1.5em;
}
#lever-jobs-container .lever-department {
  margin-bottom: 4.2em;
}
#lever-jobs-container .lever-team-title {
  font-size: 1.25em;
  margin-bottom: 0.5em;
  opacity: 0.8;
}
#lever-jobs-container .lever-department-title {
  font-size: 2.1875rem;
  line-height: 3.125rem;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  #lever-jobs-container .lever-department-title {
    font-size: 1.25rem;
    line-height: 2.1875rem;
  }
}
@media (max-width: 575.98px) {
  #lever-jobs-container .lever-department-title {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
  }
}
#lever-jobs-container .lever-team-hr {
  max-width: 80px;
  border-color: #cccccc;
  margin: 30px 0;
}
#lever-jobs-container ul {
  list-style-type: none;
}

#lever-jobs-container .lever-job-title:hover {
  color: #0068b3;
}

#lever-jobs-container .lever-job-title:active {
  color: #666666;
}

#lever-jobs-container .lever-job-tag,
ul.list .lever-job-tag {
  display: inline-block;
  color: #272742;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
@media (max-width: 575.98px) {
  #lever-jobs-container .lever-job-tag,
ul.list .lever-job-tag {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
  }
}

#lever-jobs-container .lever-job-apply,
ul.list .lever-job-apply {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 8px 10px;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  #lever-jobs-container .lever-job-apply,
ul.list .lever-job-apply {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 600;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .lever-job > span:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }

  .lever-job-title,
ul.list .lever-job-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media (min-width: 768px) {
  #lever-jobs-container .lever-job-apply,
ul.list .lever-job-apply {
    margin-left: 20px;
  }
}
#lever-jobs-container .lever-job-apply:hover,
ul.list .lever-job-apply:hover {
  background: #272742;
  color: #fff;
}

@media (max-width: 767px) {
  #lever-jobs-container .lever-job-tag,
#lever-jobs-container .lever-job-title,
ul.list .lever-job-tag,
ul.list .lever-job-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  #lever-jobs-container .lever-job,
ul.list .lever-job {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  #lever-jobs-filter select {
    width: 40%;
    margin-bottom: 10px;
  }

  #lever-jobs-container .lever-job-apply,
ul.list .lever-job-apply {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin-top: 14px;
  }

  #lever-clear-filters {
    margin-left: 0;
  }
}
@media (max-width: 414px) {
  #lever-jobs-filter select {
    width: 100%;
    margin-bottom: 10px;
  }
}
.c-world-map {
  padding-bottom: 4.0625rem;
}

.c-locations .c-location {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.125rem 1.875rem;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #e2e2e2;
  -webkit-box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
          box-shadow: 0px 7px 20px rgba(212, 218, 224, 0.7);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.1875rem;
}
.c-locations .c-location .left-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-locations .c-location img {
  margin-right: 25px;
}
.c-locations .c-location .location-name h4, .c-locations .c-location .location-name .h4 {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 600;
  margin-bottom: 0;
}
.c-locations .c-location .location-name div {
  font-size: 0.9375rem;
  line-height: 1.5625rem;
}
.c-locations .c-location .num-vacancies {
  text-align: right;
  font-size: 0.9375rem;
  line-height: 1.5625rem;
  font-weight: 600;
}
.c-locations .c-location .num-vacancies .purple.no-vacancy {
  color: #86869A;
}
.c-locations .c-location:hover {
  opacity: 0.8;
}

.elementor-lp-template header {
  border-bottom: 1px solid #efefef;
  margin-bottom: 50px;
}
.elementor-lp-template header.no-sticky {
  position: relative;
}

.pricing-plan-description {
  color: #848f99;
  font-size: 13px;
  line-height: 18px;
  text-transform: none;
}

.reach-explore-cancel h3, .reach-explore-cancel .h3 {
  font-size: 18px;
  line-height: 25px;
  display: inline-block;
  position: relative;
}

.reach-explore-cancel h3:after, .reach-explore-cancel .h3:after {
  content: "";
  background-image: url(../svg/splash-underline-green.svg);
  width: 203px;
  height: 10px;
  display: inline-block;
  background-size: cover;
  position: absolute;
  right: -10px;
  bottom: -11px;
}

.flex-row {
  padding: 10px 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-hover {
  position: absolute;
  left: -10px;
  top: 0px;
  right: -10px;
  bottom: 0px;
  z-index: 1;
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 5px;
  /*background-color: rgba(0, 0, 0, 0.03); */
}

.pricing-subtitle-mobile {
  padding-top: 30px;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
}

.c-pricing-advertisers {
  margin-bottom: 40px;
}

.c-pricing-plan .btn:hover {
  color: #fff !important;
}
.c-pricing-plan.plan-dark-btn a {
  background: #272742;
  color: #ffffff !important;
}
.c-pricing-plan.plan-dark-btn a:hover {
  color: #272742 !important;
  background: #ffffff;
}

.pricing-wrapper {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pricing-block-mobile {
  margin-bottom: 30px;
  padding: 2em;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  border: 1px solid #e0e6e8;
  border-radius: 6px;
  text-align: left;
}

.pricing-features-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
}

.pricing-wrapper-mobile {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pricing-content {
  margin-right: -5px;
  margin-left: -5px;
  font-size: 1rem;
  line-height: 1.5625rem;
  margin-bottom: 40px;
}

.pricing-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pricing-flex-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pricing-description {
  -webkit-box-flex: 0;
  -ms-flex: 0 31%;
  flex: 0 31%;
}

.pricing-tier {
  -webkit-box-flex: 0;
  -ms-flex: 0 23%;
  flex: 0 23%;
  word-break: break-word;
}

.pricing-5-columns .pricing-description {
  -webkit-box-flex: 0;
  -ms-flex: 0 20%;
  flex: 0 20%;
}
.pricing-5-columns .pricing-tier {
  -webkit-box-flex: 0;
  -ms-flex: 0 20%;
  flex: 0 20%;
}

.pricing-highlight {
  /*border-right: 2px solid #0065ff;
    border-left: 2px solid #0065ff;*/
  background: #F6EDFF;
}

.pricing-highlight-top {
  padding-top: 20px;
  /*border-top: 2px solid #0065ff;*/
  border-radius: 6px 6px 0px 0px;
}

.pricing-top {
  padding-top: 20px;
}

.pricing-highlight-bottom {
  padding-top: 30px;
  padding-bottom: 20px;
  /*border-bottom: 2px solid #0065ff;*/
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pricing-bottom {
  padding-top: 30px;
}

.flex-hover {
  position: absolute;
  left: -10px;
  top: 0px;
  right: -10px;
  bottom: 0px;
  z-index: 1;
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.03);
}

.c-pricing-switcher {
  margin: 30px 0;
  /* a.btn.btn-primary {
        border: 0;
        border-bottom: 3px solid;
        background: 0;
        color: #272742;
        border-radius: 0;
    }
    a.btn-outline-primary {
        border: 0;
    }*/
}
.c-pricing-switcher a {
  width: 60%;
  font-size: 20px;
  line-height: 30px;
  padding: 20px;
}

.c-pricing .headline-small {
  margin-bottom: 1.25rem;
  font-size: 1.5625rem;
}

/* New pricing plan */
@media (max-width: 1199.98px) {
  .pricing-flex.pricing-tier a.btn {
    padding: 8px 20px;
    min-width: auto;
  }

  .c-pricing-switcher a {
    width: 80%;
  }
}
@media (max-width: 767.98px) {
  div.c-pricing-switcher a {
    width: 100%;
    font-size: 17px;
    line-height: 24px;
    text-align: left;
  }

  .c-block.c-pricing.pt-60 {
    padding-top: 0 !important;
  }

  .pricing-content .pricing-flex-wrapper:not(.header-pricing):nth-child(odd) {
    background: #f5f5f5;
  }

  .c-pricing .headline-small {
    font-size: 18px;
    background: white;
  }

  .pricing-flex-wrapper {
    display: block;
    margin-bottom: 8px;
  }
  .pricing-flex-wrapper .flex-hover {
    width: 100%;
    left: 0px;
  }
  .pricing-flex-wrapper .pricing-flex .flex-row {
    padding: 10px;
  }
  .pricing-flex-wrapper .pricing-flex.pricing-description {
    font-weight: 600;
    border-bottom: 1px solid #d6d6d6;
  }
  .pricing-flex-wrapper .pricing-flex.pricing-description i.popover {
    right: auto;
    margin-left: 20px;
  }
  .pricing-flex-wrapper .pricing-flex .pricing-plan-description {
    margin-bottom: 10px !important;
  }
  .pricing-flex-wrapper .pricing-flex.pricing-tier {
    display: inline-block;
    width: 33.3333%;
    margin-left: -3px;
    font-size: 12px;
    line-height: 18px;
    word-break: break-word;
    vertical-align: top;
  }
  .pricing-flex-wrapper .pricing-flex.pricing-tier .pricing-highlight {
    background: transparent;
  }
  .pricing-flex-wrapper .pricing-flex.pricing-tier a.btn {
    font-size: 10px;
    padding: 8px 3px;
    word-break: break-word;
    min-width: auto;
  }
  .pricing-flex-wrapper.header-pricing .pricing-flex.pricing-description {
    font-weight: normal;
    border-bottom: 0;
  }
}

/*# sourceMappingURL=app.css.map*/