@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #005F75;
}
.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #003642;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #005F75;
  border: 1px solid #004a5c;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #004a5c;
  border: 1px solid #003642;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */

*{box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after{content:'';content:none}q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}textarea,input,button{background:transparent;border:none;margin:0}textarea:focus,input:focus,button:focus{outline:none}input,textarea,button,select,a{-webkit-appearance:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{color:#4D4D4D;background-color:#F6F9FC;font-size:18px;font-family:"Poppins",sans-serif;font-weight:400;line-height:1.6}h2.title{font-size:40px;text-transform:initial}@media (max-width: 1919px) and (min-width: 401px){h2.title{font-size:calc(12 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){h2.title{font-size: 28px}}h1,h2,h3,h4,h5,h6{font-family:"Poppins",sans-serif;line-height:1.5;color:#212121;text-transform:uppercase;font-weight:300}h1{font-size:60px}@media (max-width: 1919px) and (min-width: 401px){h1{font-size:calc(20 * ((100vw - 400px) / 1519) + 40px)}}@media (max-width: 400px){h1{font-size: 40px}}h2{font-size:32px}@media (max-width: 1919px) and (min-width: 401px){h2{font-size:calc(4 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){h2{font-size: 28px}}h3{font-size:52px}@media (max-width: 1919px) and (min-width: 401px){h3{font-size:calc(20 * ((100vw - 400px) / 1519) + 32px)}}@media (max-width: 400px){h3{font-size: 32px}}h4{font-size:48px}@media (max-width: 1919px) and (min-width: 401px){h4{font-size:calc(20 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){h4{font-size: 28px}}h5{font-size:44px}@media (max-width: 1919px) and (min-width: 401px){h5{font-size:calc(20 * ((100vw - 400px) / 1519) + 24px)}}@media (max-width: 400px){h5{font-size: 24px}}h6{font-size:40px}@media (max-width: 1919px) and (min-width: 401px){h6{font-size:calc(20 * ((100vw - 400px) / 1519) + 20px)}}@media (max-width: 400px){h6{font-size: 20px}}.content{font-family:"Poppins",sans-serif;font-size:18px;line-height:1.5;color:#4D4D4D}@media (max-width: 1919px) and (min-width: 401px){.content{font-size:calc(4 * ((100vw - 400px) / 1519) + 14px)}}@media (max-width: 400px){.content{font-size: 14px}}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{font-family:"Poppins",sans-serif;color:#212121;line-height:1.2;font-weight:700;display:inline-block;letter-spacing:1.5px;text-transform:uppercase}.content h1{font-size:36px;margin:0 0 50px}@media (max-width: 1919px) and (min-width: 401px){.content h1{font-size:calc(10 * ((100vw - 400px) / 1519) + 26px)}}@media (max-width: 400px){.content h1{font-size: 26px}}.content h2{font-size:34px;margin:0 0 40px}@media (max-width: 1919px) and (min-width: 401px){.content h2{font-size:calc(10 * ((100vw - 400px) / 1519) + 24px)}}@media (max-width: 400px){.content h2{font-size: 24px}}.content h3{font-size:32px;margin:0 0 30px}@media (max-width: 1919px) and (min-width: 401px){.content h3{font-size:calc(10 * ((100vw - 400px) / 1519) + 22px)}}@media (max-width: 400px){.content h3{font-size: 22px}}.content h4{font-size:30px;margin:0 0 20px}@media (max-width: 1919px) and (min-width: 401px){.content h4{font-size:calc(10 * ((100vw - 400px) / 1519) + 20px)}}@media (max-width: 400px){.content h4{font-size: 20px}}.content h5{font-size:28px;margin:0 0 20px}@media (max-width: 1919px) and (min-width: 401px){.content h5{font-size:calc(10 * ((100vw - 400px) / 1519) + 18px)}}@media (max-width: 400px){.content h5{font-size: 18px}}.content h6{font-size:26px;margin:0 0 20px}@media (max-width: 1919px) and (min-width: 401px){.content h6{font-size:calc(10 * ((100vw - 400px) / 1519) + 16px)}}@media (max-width: 400px){.content h6{font-size: 16px}}.content p{font-size:18px;margin:0 0 30px}@media (max-width: 1919px) and (min-width: 401px){.content p{font-size:calc(2 * ((100vw - 400px) / 1519) + 16px)}}@media (max-width: 400px){.content p{font-size: 16px}}.content p+h1{margin-top:50px}.content p+h2{margin-top:50px}.content p+h3{margin-top:40px}.content p+h4{margin-top:30px}.content p+h5{margin-top:30px}.content p+h6{margin-top:30px}.content .wp-caption+p{margin:35px 0 0}.content strong{font-weight:700}.content em{font-style:italic}.content a{font-family:"Poppins",sans-serif;color:#4D4D4D;text-decoration:underline}.content a:hover{color:#234E6D}.content ul,.content ol{margin:40px 0 50px;font-size:18px}@media (max-width: 768px){.content ul,.content ol{font-size:16px}}.content ul{padding:0 0 0 30px}.content ul li{list-style-type:disc}.content ul li+li{margin-top:15px}.content ul+p{margin-top:20px}.content ol{padding:0 0 0 30px}.content ol li{list-style-type:decimal}.content ol li+li{padding-top:15px}.content blockquote{padding:35px 10px 35px 30px;border-top:2px dashed #a7aaae;border-bottom:2px dashed #a7aaae;margin:55px 0;position:relative}@media (max-width: 1100px){.content blockquote{padding:35px 20px 35px 50px}}.content blockquote:before{content:'\E806';font-family:fontello;position:absolute;left:-106px;top:24px;color:#234E6D;font-size:36px}@media (max-width: 1100px){.content blockquote:before{left:0}}.content blockquote p{font-weight:700;font-size:24px}@media (max-width: 1919px) and (min-width: 401px){.content blockquote p{font-size:calc(8 * ((100vw - 400px) / 1519) + 16px)}}@media (max-width: 400px){.content blockquote p{font-size: 16px}}.default-editor h1,.default-editor h2,.default-editor h3,.default-editor h4,.default-editor h5,.default-editor h6{margin:15px 0;line-height:105%}.default-editor p{color:#4D4D4D;font-size:16px;font-family:"Poppins",sans-serif;font-weight:400;line-height:1.5}.default-editor p+p{margin:12px 0}.default-editor ul{list-style-type:disc;margin:12px 0 12px 18px}.default-editor ul li{position:relative}.default-editor ul li ul{margin-bottom:0;margin-top:0}.default-editor ol{list-style:auto;margin:12px 0 12px 18px}.default-editor table{width:100%;margin:15px 0}.default-editor table thead{color:#141414;font-size:14px;background-color:#F5F5F5;font-weight:600;border-bottom:1px solid #D9D9D9}.default-editor table tr{border-bottom:1px solid #D9D9D9;text-align:center}.default-editor table td{font-size:16px}.default-editor table th,.default-editor table td{padding:12px 8px}.default-editor img{max-width:100%;margin:10px 0;height:auto}.default-editor a{text-decoration:underline}.default-editor img{max-width:100%}.default-editor img.size-full{max-width:100%}.default-editor .alignleft,.default-editor img.alignleft{margin-right:2em;margin-bottom:1em;display:inline;float:left}.default-editor .alignright,.default-editor img.alignright{margin-left:2em;margin-bottom:1em;display:inline;float:right}.default-editor .aligncenter,.default-editor img.aligncenter{margin-right:auto;margin-left:auto;margin-bottom:1em;display:block;clear:both}.default-editor blockquote p{margin:16px 0;background-color:#F5F5F5;border-left:2px solid #000;padding:12px 16px 12px 12px;font-size:18px;font-weight:600;text-transform:uppercase}@media screen and (min-width: 768px){.default-editor blockquote p{padding:16px 24px 16px 16px;margin:24px 0}}.default-editor .gallery{margin-bottom:40px !important}@media screen and (min-width: 768px){.default-editor .gallery{margin-left:-1% !important;margin-right:-1% !important}}.default-editor .gallery .gallery-caption{color:#595959;font-size:12px;margin-top:8px}.default-editor .gallery .gallery-item{width:100% !important}@media screen and (min-width: 768px){.default-editor .gallery .gallery-item{width:48% !important;margin:1%}}.default-editor .gallery img{width:100%;margin:0;height:340px;object-fit:cover;display:block;border:none !important}[class^="icon-"]:before,[class*=" icon-"]:before{margin-right:0 !important;margin-left:0 !important}.button{display:inline-flex;padding:16px;justify-content:center;align-items:center;gap:8px;flex-shrink:0;border-radius:8px;background:#234E6D;transition:.5s background;color:#fff;font-size:16px;text-transform:uppercase;border:1px solid #234E6D}.button.type-1{padding:8px 16px;font-size:14px}.button.type-2{padding:16px 40px;font-size:14px}.button.secondary{background:#fff;border:1px solid #234E6D;color:#062338}.button:hover{background:#0A3A5D;color:#fff}header{position:fixed;left:0;top:0;width:100%;color:#4D4D4D;background:#f7f9fc;z-index:10;padding:15px 0}header .site-logo{display:block}header .site-logo svg,header .site-logo img{display:block;max-width:180px}@media screen and (max-width: 1250px){header .site-logo svg,header .site-logo img{max-width:115px}}@media screen and (max-width: 991px){header .site-logo svg,header .site-logo img{max-width:150px}}@media (min-width: 992px){header .container{display:flex;justify-content:space-between;align-items:center;gap:10px}}header .navbar-collapse{width:100%;position:absolute;left:0;text-align:center;padding-top:52px;background:#F6F9FC}@media (min-width: 992px){header .navbar-collapse{display:block;height:auto !important;position:static;background:transparent;padding-top:0;width:auto}}header .navbar-toggle{border:none;background:transparent}header .navbar-toggle:hover{background:transparent}header .navbar-toggle:hover .animate-burger .top{transform:translateY(-3px)}header .navbar-toggle:hover .animate-burger .bottom{transform:translateY(3px)}header .navbar-toggle:not(.collapsed) .animate-burger .top{transform:translateY(7px) rotate(-45deg)}header .navbar-toggle:not(.collapsed) .animate-burger .middle{transform:translateX(10px);opacity:0}header .navbar-toggle:not(.collapsed) .animate-burger .bottom{width:100%;transform:translateY(-7px) rotate(45deg)}header .navbar-toggle .animate-burger{display:inline-block;position:relative;width:24px;height:16px}header .navbar-toggle .animate-burger span{border-radius:3px;position:absolute;width:100%;height:2px;background-color:#234E6D;left:0;transition:transform .5s, opacity .6s}header .navbar-toggle .animate-burger .top{top:0}header .navbar-toggle .animate-burger .middle{top:50%;margin-top:-1px}header .navbar-toggle .animate-burger .bottom{bottom:0;width:80%;left:auto;right:0}@media (min-width: 992px){header .navbar-toggle{display:none}}@media (max-width: 991px){header .navbar-head{width:100%;justify-content:space-between;display:flex}}header .navbar-nav{display:flex;flex-direction:column;gap:16px;height:calc(100vh - 36px)}@media (min-width: 992px){header .navbar-nav{display:flex;height:auto;flex-direction:row}}@media screen and (max-width: 1250px){header .navbar-nav>li{padding:2px}}header .navbar-nav>li>a{padding:8px 16px;color:#062338;font-size:14px;text-transform:uppercase;font-weight:400;transition:.5s;position:relative}header .navbar-nav>li>a::after{content:'';position:absolute;bottom:0px;left:50%;transform:translateX(-50%);width:96%;height:2px;background-color:#3B617D;opacity:0;transition:opacity 0.3s}@media screen and (max-width: 1250px){header .navbar-nav>li>a::after{display:none}}@media screen and (max-width: 1250px){header .navbar-nav>li>a{font-size:13px;padding:2px}}header .navbar-nav>li>a:hover{opacity:.7}header .navbar-nav>li.active>a::after{opacity:1}header .but-wrap.mobile{position:absolute;bottom:18%;width:100%;padding:0 15px;transition:0.3s}header .but-wrap.mobile a{width:100%}header .collapse .but-wrap.mobile,header .collapsing .but-wrap.mobile{opacity:0}header .collapse.in .but-wrap.mobile{opacity:1}@media screen and (max-width: 1250px){header .header-button{font-size:12px !important}}footer{padding:40px 0 20px;border-top:1px solid #D9E3EA}footer .logo img,footer .logo svg{max-width:180px}footer .top-logo{display:flex;justify-content:space-between;align-items:center}@media screen and (max-width: 768px){footer .top-logo{flex-direction:column}}footer .top-logo .button-wrap{display:flex;gap:28px}@media screen and (max-width: 768px){footer .top-logo .button-wrap{margin-top:30px;flex-direction:column;gap:15px;width:100%;text-align:center;justify-content:center;align-items:center;max-width:480px}}@media screen and (max-width: 768px){footer .top-logo .button-wrap a.button{width:100%}}footer .top-logo .footer_email{display:flex;align-items:center;gap:8px}footer .footer-nav{display:flex;gap:4px}@media screen and (max-width: 768px){footer .footer-nav{flex-wrap:wrap;align-items:center;justify-content:center}}footer .footer-nav span:last-child{display:none}footer .footer-nav li a{color:#212121;font-size:18px;font-style:normal;font-weight:300;line-height:30px}footer .bottom-nav{margin-top:24px;margin-bottom:10px;display:flex;justify-content:space-between}@media screen and (max-width: 768px){footer .bottom-nav{flex-direction:column;align-items:center;justify-content:center}}footer .copyright{text-align:center;font-size:13px}body{margin-top:38px}a{text-decoration:none;color:inherit;transition:color .5s, opacity .5s, background .5s}a:hover:not(.button){opacity:0.7}a:focus{outline:none}button{transition:color .5s, opacity .5s, background .5s;cursor:pointer}.back-img{background-repeat:no-repeat;background-position:center;background-size:cover}.rect-outer{position:relative}.rect-outer .rect-inner{position:absolute;left:0;top:0;right:0;bottom:0}.flex{display:flex;flex-wrap:wrap}.container{max-width:1275px;margin:0px auto;padding:0 15px}.container._720{max-width:740px}.padding-72{padding:40px 0}@media (min-width: 992px){.padding-72{padding:72px 0}}.desktop{display:none}@media (min-width: 992px){.desktop{display:block}}.mobile{display:block}@media (min-width: 992px){.mobile{display:none}}.lang-switcher{display:inline-flex;border-radius:8px;overflow:hidden;background:#B6C4CE;border:1px solid #B6C4CE}@media (max-width: 768px){.lang-switcher{margin-top:25px}}.lang-switcher .lang-switcher__link{padding:2px 6px;background:#B6C4CE;color:#FFF;text-decoration:none;font-size:14px;transition:.2s;border-radius:7px}.lang-switcher .lang-switcher__link:hover{background:#b8c0c8}.lang-switcher .lang-switcher__link.active{background:#214464;color:#fff}label{color:#646464;font-size:10px;font-weight:400;text-transform:uppercase}input{border-radius:8px;border:1px solid #D9E3EA;background:#FFF;padding:8px 12px;height:44px;width:100%}input:focus{border:1px solid #0AF}.wpcf7-not-valid{border:1px solid #E03031}.wpcf7-not-valid-tip{display:none !important}.choices__inner:has(.wpcf7-not-valid){border:1px solid #E03031 !important}select{border-radius:8px;border:1px solid #D9E3EA;padding:8px 12px;height:44px;width:100%;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.74408 6.07739C3.06951 5.75195 3.59715 5.75195 3.92259 6.07739L10 12.1548L16.0774 6.07739C16.4028 5.75195 16.9305 5.75195 17.2559 6.07739C17.5814 6.40283 17.5814 6.93047 17.2559 7.2559L10.5893 13.9226C10.2638 14.248 9.73618 14.248 9.41074 13.9226L2.74408 7.2559C2.41864 6.93047 2.41864 6.40283 2.74408 6.07739Z' fill='%233B617D'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 0.75em center;background-size:1em;display:flex;justify-content:space-between;font-size:16px}select:focus{outline:none}select option{padding:10px 16px;border-bottom:1px solid #eee;background-color:#fff}.choices[data-type*=select-one]::after{border:none;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.74408%206.07742C3.06951%205.75198%203.59715%205.75198%203.92259%206.07742L10%2012.1548L16.0774%206.07742C16.4028%205.75198%2016.9305%205.75198%2017.2559%206.07742C17.5814%206.40286%2017.5814%206.9305%2017.2559%207.25593L10.5893%2013.9226C10.2638%2014.248%209.73618%2014.248%209.41074%2013.9226L2.74408%207.25593C2.41864%206.9305%202.41864%206.40286%202.74408%206.07742Z%22%20fill%3D%22%233B617D%22/%3E%3C/svg%3E");width:20px;height:20px;margin-top:-7px;transition:0.3s transform}.choices[data-type*=select-one].is-open::after{transform:rotate(180deg)}.is-flipped .choices__list{bottom:calc(100% + 7px) !important}.choices__placeholder{opacity:1}.select-choices.is-open .choices__inner{border-radius:8px !important;border:1px solid #0AF}.select-choices .choices__inner{font-size:16px;border-radius:8px !important;border:1px solid #D9E3EA;background:#fff;color:#062338;text-transform:initial}.select-choices .choices__list--dropdown{margin-top:6px;padding:8px 12px;border-radius:8px !important}.select-choices .choices__list--dropdown .choices__item{font-size:16px;padding:11px 0;text-transform:initial;border-bottom:1px solid #D9E3EA;color:#062338}.select-choices .choices__list--dropdown .choices__item:last-child{border:none}.select-choices .choices__list--dropdown .is-highlighted{background:none !important}.open-form .button{z-index:1;position:fixed;bottom:15px;right:15px;padding:10px}.open-form .button svg{width:24px;height:24px}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;transition-property:height, visibility;transition:.35s;transition-timing-function:ease}body.modal-open{overflow:hidden;height:100%;position:fixed;width:100%}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;outline:0}.modal.in .close:before{transform:translate(-50%, -50%) rotate(45deg)}.modal.in .close:after{transform:translate(-50%, -50%) rotate(-45deg)}.modal .close{width:30px;height:30px;background:none;border:none;position:absolute;right:29px;top:34px;z-index:1;opacity:1;text-shadow:none;cursor:pointer}.modal .close:hover:before{transform:translate(-50%, -50%) rotate(40deg)}.modal .close:hover:after{transform:translate(-50%, -50%) rotate(-40deg)}.modal .close:before,.modal .close:after{content:'';position:absolute;width:100%;height:2px;background:white;top:50%;left:50%;transition:.5s}.modal.fade.in .modal-dialog{transform:translate(-50%, -50%)}.modal .modal-dialog{max-width:440px;width:100%;top:50%;position:absolute;left:50%;align-items:baseline;transform:translate(-50%, -40%);transition:transform 0.3s ease-out}@media screen and (max-width: 768px){.modal .modal-dialog{width:100%;height:100%;margin:0;max-width:100%}}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.fade.in{opacity:0.5}.fade{opacity:0;transition:opacity 0.15s linear}.fade.in{opacity:1}.modal-content{background:#fff;border-radius:10px;padding:24px 32px;box-shadow:0px 0px 20px 0px rgba(108,137,158,0.6)}@media screen and (max-width: 768px){.modal-content{height:100%;min-height:500px}}@media screen and (max-width: 768px){.modal-content .modal-body{max-width:400px;margin:0px auto;position:relative;height:100%}}.modal-content h3{font-size:22px;font-style:normal;font-weight:300;text-transform:initial;margin-bottom:24px}.modal-content .bottom{margin-top:24px}@media screen and (max-width: 768px){.modal-content .bottom{position:absolute;bottom:10px;width:100%;left:0}}.modal-content .bottom p{display:flex;gap:16px;width:100%}.modal-content .bottom .button{width:calc(50% - 8px);height:40px;padding:0;font-size:14px}.modal-content .bottom .wpcf7-submit{width:calc(50% - 8px);height:40px;padding:0;justify-content:center;align-items:center;gap:8px;flex-shrink:0;border-radius:8px;background:#234E6D;transition:.5s background;color:#fff;text-transform:uppercase;cursor:pointer;font-size:14px}.modal-content .bottom .wpcf7-submit:hover{background:#0A3A5D}.modal-content .bottom .wpcf7-spinner{display:none !important}.archive,.page-template-template-blog{margin-top:63px}.archive .top-content,.page-template-template-blog .top-content{max-width:700px}.archive .top-content h1.title,.page-template-template-blog .top-content h1.title{text-transform:uppercase}.archive .units-categories,.page-template-template-blog .units-categories{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:12px 0}.archive .units-categories.-hidden li:not(:nth-child(-n+5))[data-taxonomy],.page-template-template-blog .units-categories.-hidden li:not(:nth-child(-n+5))[data-taxonomy]{transition:opacity 0s;opacity:0;width:0;border:none;margin:0;position:absolute;z-index:-99}.archive .units-categories .show_more_categories span,.page-template-template-blog .units-categories .show_more_categories span{padding:6px 12px !important;font-size:14px}.archive .units-categories li,.page-template-template-blog .units-categories li{text-transform:uppercase;cursor:pointer}.archive .units-categories li a,.page-template-template-blog .units-categories li a{padding:6px 12px !important;border:1px solid #234E6D;font-size:14px}.archive .blog-ajax,.page-template-template-blog .blog-ajax{margin:30px 0;display:flex;gap:16px;flex-wrap:wrap}.archive .blog-ajax .blog-item,.page-template-template-blog .blog-ajax .blog-item{width:calc(33% - 8px)}@media screen and (max-width: 991px){.archive .blog-ajax .blog-item,.page-template-template-blog .blog-ajax .blog-item{width:calc(50% - 8px)}}@media screen and (max-width: 768px){.archive .blog-ajax .blog-item,.page-template-template-blog .blog-ajax .blog-item{width:100%}}.archive .blog-ajax .blog-item:hover .wrap-image img,.page-template-template-blog .blog-ajax .blog-item:hover .wrap-image img{transform:scale(1.1)}.archive .blog-ajax .blog-item .wrap-image,.page-template-template-blog .blog-ajax .blog-item .wrap-image{overflow:hidden}.archive .blog-ajax .blog-item .wrap-image img,.archive .blog-ajax .blog-item .wrap-image svg,.page-template-template-blog .blog-ajax .blog-item .wrap-image img,.page-template-template-blog .blog-ajax .blog-item .wrap-image svg{transition:.3s transform;width:100%;object-fit:cover;max-width:100%;height:300px;display:block}.archive .blog-ajax .blog-item .category,.page-template-template-blog .blog-ajax .blog-item .category{margin-top:10px;text-transform:uppercase;font-size:14px;color:#212121}.pagination{display:flex;gap:8px;flex-wrap:wrap;align-items:center;justify-content:center}.pagination .page-numbers{display:inline-block}.pagination .page-numbers span{font-size:14px;padding:8px 14px}.breadcrumb{padding:10px 0;font-size:12px;color:#212121}.breadcrumb span{display:inline-block}.breadcrumb span.kb_title:last-child{color:#4D4D4D}.breadcrumb span::first-letter{text-transform:uppercase}.breadcrumb .kb_sep{padding-right:6px;padding-left:6px;color:#4D4D4D}.breadcrumb.breadcrumb-woocommerce{padding:17px 0}.breadcrumb.breadcrumb-woocommerce .woocommerce-breadcrumb{margin:0;padding:0;font-size:12px}.breadcrumb.breadcrumb-woocommerce .woocommerce-breadcrumb a{font-size:12px;color:#141414}.single-blog .wrap-img{margin:10px 0}.single-blog .wrap-img img{width:100%;height:auto}.single-blog .sosial-wrap{display:flex;justify-content:space-between;align-items:center;gap:5px}.single-blog .sosial-wrap .sosial{display:flex;gap:8px;margin:12px 0}.single-blog .sosial-wrap .sosial a{display:inline-flex;width:40px;height:40px;align-items:center;justify-content:center;padding:5px !important}.single-blog .sosial-wrap .sosial a:hover svg path,.single-blog .sosial-wrap .sosial a:hover svg rect{fill:#fff}.single-blog .sosial-wrap .date{text-align:right;font-size:14px}.section-recent-blog .wrap-head-content{margin:24px 0;display:flex;justify-content:space-between;align-items:center}.section-recent-blog .wrap-head-content h3{text-transform:uppercase;line-height:1}.section-recent-blog .wrap-head-content .button{display:none}@media screen and (min-width: 768px){.section-recent-blog .wrap-head-content .button{display:inline-flex}}.page-404{background-image:url(./images/bg-what_is_section.png);background-position:center;background-repeat:no-repeat;background-size:contain}.page-404 .wrap-content{text-align:center;max-width:540px;width:100%;margin:0 auto;min-height:calc(100vh - 370px);display:flex;align-items:center;flex-direction:column;justify-content:center;height:100%}.page-404 h3{margin-bottom:16px;text-transform:uppercase}.page-404 .section-subtitle{margin-bottom:16px}.page-404 .section-subtitle br{display:none}@media (min-width: 991px){.page-404 .section-subtitle br{display:block}}.top_banner{height:100vh;display:flex;align-items:center;justify-content:center}.top_banner .flex{align-items:center;text-align:center;justify-content:center;max-width:830px;gap:32px}.top_banner h1{text-transform:initial}.top_banner .subtitle{text-transform:initial;color:#4D4D4D;font-size:30px;font-weight:300;display:block;width:100%}@media (max-width: 1919px) and (min-width: 401px){.top_banner .subtitle{font-size:calc(8 * ((100vw - 400px) / 1519) + 22px)}}@media (max-width: 400px){.top_banner .subtitle{font-size: 22px}}.what_is_section{background-image:url(./images/bg-what_is_section.png);background-position:center 65%;background-repeat:no-repeat;background-size:cover;text-align:center}.what_is_section .flex{max-width:944px;align-items:center;justify-content:center;margin:0px auto}.what_is_section h2.title{font-size:40px;margin-bottom:48px;text-transform:initial}@media (max-width: 1919px) and (min-width: 401px){.what_is_section h2.title{font-size:calc(12 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){.what_is_section h2.title{font-size: 28px}}.what_is_section .subtitle{font-size:22px;margin-bottom:24px;text-transform:initial}.what_is_section .description{font-weight:300;margin-bottom:48px}.core_benefits_section{text-align:center}.core_benefits_section h2.title{margin-bottom:48px}.core_benefits_section .flex{flex-wrap:wrap;gap:24px;justify-content:space-between}@media screen and (max-width: 768px){.core_benefits_section .flex{max-width:500px;margin:0 auto}}.core_benefits_section .flex .item{text-align:left;width:calc(33% - 14px);padding:32px;border-radius:10px;background:#fff}@media screen and (max-width: 768px){.core_benefits_section .flex .item{width:100%}}.core_benefits_section .flex .item .image{margin-bottom:40px}.core_benefits_section .flex .item .image svg,.core_benefits_section .flex .item .image img{display:block;width:64px;height:auto}.core_benefits_section .flex .item .title{color:#212121;font-size:32px;font-weight:300;margin-bottom:20px}@media (max-width: 1919px) and (min-width: 401px){.core_benefits_section .flex .item .title{font-size:calc(4 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){.core_benefits_section .flex .item .title{font-size: 28px}}.core_benefits_section .flex .item .subtitle{color:#4D4D4D;font-weight:300}.how_it_works_section{width:100%;height:100vh}@media screen and (max-width: 991px){.how_it_works_section{min-height:100vh;height:auto}}.how_it_works_section .container-flex{display:flex;flex-direction:column;justify-content:center;height:100%}.how_it_works_section h2.title{text-align:center;margin-bottom:48px}.how_it_works_section .flex{align-items:center;display:flex}@media screen and (max-width: 991px){.how_it_works_section .flex{display:none}}.how_it_works_section .arrow{margin-left:-213px;left:-4px;position:relative;z-index:2;top:41px}@media screen and (max-width: 1245px){.how_it_works_section .arrow{margin-left:-150px;left:0px}}@media screen and (max-width: 1200px){.how_it_works_section .arrow{width:180px}}@media screen and (max-width: 1100px){.how_it_works_section .arrow{width:150px;left:25px}}@media screen and (max-width: 991px){.how_it_works_section .arrow{display:none}}.how_it_works_section .how-it-works-swiper,.how_it_works_section .how-it-works-swiper-mobile{width:50%;margin:0 auto 0 0 !important;height:600px}.how_it_works_section .how-it-works-swiper .swiper-slide,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide{display:flex;align-items:center}.how_it_works_section .how-it-works-swiper .swiper-slide .how-it-works-slide-content,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide .how-it-works-slide-content{border-radius:10px;background:#fff;max-height:100%;padding:24px;width:100%}.how_it_works_section .how-it-works-swiper .swiper-slide .how-it-works-slide-content .how-it-works-step,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide .how-it-works-slide-content .how-it-works-step{text-transform:uppercase;color:#212121;font-size:14px;margin-bottom:16px}.how_it_works_section .how-it-works-swiper .swiper-slide .how-it-works-slide-content .how-it-works-title,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide .how-it-works-slide-content .how-it-works-title{color:#212121;font-size:28px;font-weight:300;margin-bottom:8px}@media (max-width: 1919px) and (min-width: 401px){.how_it_works_section .how-it-works-swiper .swiper-slide .how-it-works-slide-content .how-it-works-title,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide .how-it-works-slide-content .how-it-works-title{font-size:calc(8 * ((100vw - 400px) / 1519) + 20px)}}@media (max-width: 400px){.how_it_works_section .how-it-works-swiper .swiper-slide .how-it-works-slide-content .how-it-works-title,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide .how-it-works-slide-content .how-it-works-title{font-size: 20px}}.how_it_works_section .how-it-works-swiper .swiper-slide .how-it-works-slide-content .how-it-works-subtitle,.how_it_works_section .how-it-works-swiper-mobile .swiper-slide .how-it-works-slide-content .how-it-works-subtitle{font-weight:300;color:#4D4D4D}.how_it_works_section .how-it-works-swiper-2,.how_it_works_section .how-it-works-swiper-2-mobile{position:relative;width:297px;border-radius:53px;overflow:hidden;margin:0 auto 0 0}.how_it_works_section .how-it-works-swiper-2 .swiper-slide,.how_it_works_section .how-it-works-swiper-2-mobile .swiper-slide{width:100%;position:relative}.how_it_works_section .how-it-works-swiper-2 .swiper-slide img.attachment-full,.how_it_works_section .how-it-works-swiper-2-mobile .swiper-slide img.attachment-full{width:100%;height:100%;padding:11px 13px 17px 15px;left:0}.how_it_works_section .how-it-works-swiper-2 img.bg,.how_it_works_section .how-it-works-swiper-2-mobile img.bg{position:absolute;z-index:2;pointer-events:none}.how_it_works_section .swiper-pagination-2{position:absolute}.how_it_works_section .swiper-pagination .swiper-pagination-bullet,.how_it_works_section .swiper-pagination-2 .swiper-pagination-bullet{width:6px;background-color:#B6C4CE;margin:8px 0 !important;transition:height .3s;height:6px;border-radius:5px}.how_it_works_section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,.how_it_works_section .swiper-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active{height:40px}.how_it_works_section .mobile .swiper-pagination{position:static;display:flex;gap:8px;align-items:center;justify-content:center;margin-top:30px}.how_it_works_section .mobile .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{height:6px;width:40px;margin:0 !important}.how_it_works_section .how-it-works-swiper-mobile{width:100%;margin:0 auto 35px !important;max-width:500px;height:auto}.how_it_works_section .how-it-works-swiper-2-mobile{margin:0px auto;width:100%;max-width:297px}body.how-it-works-locked{overflow:hidden;scrollbar-width:none}body.how-it-works-locked::-webkit-scrollbar{width:0 !important;background:transparent !important}.rtl .arrow{transform:scaleX(-1)}.rtl .arrow{margin-left:-170px;left:35px}.who_its_for_section{background-image:url(./images/bg-who_its_for_section.png);background-repeat:no-repeat;background-position:center;background-size:contain}.who_its_for_section h2.title{text-align:center;margin-bottom:48px}.who_its_for_section .flex-wrap{display:flex;flex-direction:column}@media screen and (max-width: 768px){.who_its_for_section .flex-wrap{max-width:500px;margin:0px auto}}.who_its_for_section .item{border-bottom:1px solid #D9E3EA;padding:28px 30px;max-width:655px;margin:0px auto;width:100%}.who_its_for_section .item:first-child{border-top:1px solid #D9E3EA}.who_its_for_section .item .flex{gap:40px;flex-wrap:nowrap}@media screen and (max-width: 768px){.who_its_for_section .item .flex{flex-direction:column}}.who_its_for_section .item .image svg,.who_its_for_section .item .image img{max-width:96px}.who_its_for_section .item .title{font-size:32px;font-weight:300;color:#212121;margin-bottom:8px}@media (max-width: 1919px) and (min-width: 401px){.who_its_for_section .item .title{font-size:calc(4 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){.who_its_for_section .item .title{font-size: 28px}}.who_its_for_section .item .subtitle{color:#4D4D4D;font-weight:300}.verified_by_luxar_section{text-align:center}.verified_by_luxar_section h2.title{font-size:40px;margin-bottom:48px;text-transform:initial}@media (max-width: 1919px) and (min-width: 401px){.verified_by_luxar_section h2.title{font-size:calc(12 * ((100vw - 400px) / 1519) + 28px)}}@media (max-width: 400px){.verified_by_luxar_section h2.title{font-size: 28px}}.verified_by_luxar_section .simple-swiper .swiper-slide .content img,.verified_by_luxar_section .simple-swiper .swiper-slide .content svg{width:300px;height:300px;object-fit:contain;background:white}@media screen and (max-width: 768px){.verified_by_luxar_section .simple-swiper .swiper-slide .content img,.verified_by_luxar_section .simple-swiper .swiper-slide .content svg{width:100%;height:auto;max-width:300px}}.verified_by_luxar_section .swiper-pagination{position:static;display:flex;gap:8px;align-items:center;justify-content:center;margin-top:30px}.verified_by_luxar_section .swiper-pagination .swiper-pagination-bullet{width:6px;background-color:#B6C4CE;margin:8px 0 !important;height:6px;border-radius:5px}.verified_by_luxar_section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{height:6px;width:40px;margin:0 !important}

@font-face{font-display:swap;font-family:'fontello';src:url(./fonts/fontello.eot);src:url(./fonts/fontello.eot#iefix) format("embedded-opentype"),url(./fonts/fontello.woff2) format("woff2"),url(./fonts/fontello.woff) format("woff"),url(./fonts/fontello.ttf) format("truetype"),url(./images/fontello.svg#fontello) format("svg");font-weight:normal;font-style:normal}[class^="icon-"]:before,[class*=" icon-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-glass:before{content:'\e800'}.icon-music:before{content:'\e801'}.icon-search:before{content:'\e802'}

@font-face{font-family:'swiper-icons';src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform, height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{-ms-scroll-snap-type:none;scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,0.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}.swiper-lazy-preloader-black{--swiper-preloader-color: #000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size: 44px}.swiper-button-prev,.swiper-button-next{position:absolute;top:var(--swiper-navigation-top-offset, 50%);width:calc(var(--swiper-navigation-size) / 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size) / 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{opacity:0.35;cursor:auto;pointer-events:none}.swiper-button-prev.swiper-button-hidden,.swiper-button-next.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next{display:none !important}.swiper-button-prev svg,.swiper-button-next svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-prev svg,.swiper-rtl .swiper-button-next svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset, 10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-lock{display:none}.swiper-button-prev:after,.swiper-button-next:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none !important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none !important}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(0.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none !important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0px, -50%, 0)}.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:200ms transform, 200ms top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform, 200ms left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform, 200ms right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, rgba(0,0,0,0.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius, 10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color, rgba(0,0,0,0.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none !important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset, 1%);bottom:var(--swiper-scrollbar-bottom, 4px);top:var(--swiper-scrollbar-top, auto);z-index:50;height:var(--swiper-scrollbar-size, 4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))}.swiper-vertical>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-vertical{position:absolute;left:var(--swiper-scrollbar-left, auto);right:var(--swiper-scrollbar-right, 4px);top:var(--swiper-scrollbar-sides-offset, 1%);z-index:50;width:var(--swiper-scrollbar-size, 4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color, rgba(0,0,0,0.5));border-radius:var(--swiper-scrollbar-border-radius, 10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:0.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right{z-index:0;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right{z-index:0;backface-visibility:hidden}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform, opacity, height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}

