body, html {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body * {
  box-sizing: border-box;
  font-family: "Cabin", sans-serif;
}

.container {
  max-width: 1340px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.info__popup {
  z-index: 8;
  min-width: 170px;
  display: none;
  position: absolute;
  max-width: 170px;
  border-radius: 8px;
  background-color: #161616;
  padding: 10px;
}
.info__popup.side {
  margin-left: -70px;
}
.info__popup.side svg {
  margin-left: 70px;
}
.info__popup.bottom svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  top: -14px;
}
.info__popup svg {
  position: absolute;
  left: -12px;
}
.info__popup > p {
  margin: 0px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.regular-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  background-color: #F1983A;
  border-radius: 7px;
  min-height: 50px;
  transition: 0.3s ease all;
}
.regular-btn.big {
  min-height: 70px;
  min-width: 240px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.regular-btn.dark {
  background-color: #682BF5;
}
.regular-btn.dark:hover {
  background-color: #401cde;
}
.regular-btn:hover {
  background-color: #e79946;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.group__input.dropdown {
  position: relative;
}
.group__input.dropdown.error > a {
  border-color: red;
}
.group__input.dropdown.picked > a > span {
  color: #000;
}
.group__input.dropdown .drop {
  position: absolute;
  left: 0px;
  top: 100px;
  width: 100%;
  max-height: 240px;
  background-color: #fff;
  z-index: 3;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 7px 5px;
  display: none;
  overflow-y: auto;
}
.group__input.dropdown .drop::-webkit-scrollbar {
  width: 4px;
}
.group__input.dropdown .drop::-webkit-scrollbar-thumb {
  background-color: #F1983A;
  border-radius: 5px;
}
.group__input.dropdown .drop ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
.group__input.dropdown .drop ul > li {
  width: 100%;
  margin-bottom: 4px;
}
.group__input.dropdown .drop ul > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  border-radius: 4px;
  transition: 0.3s ease all;
}
.group__input.dropdown .drop ul > li > a:hover {
  background-color: rgba(241, 152, 58, 0.3);
}
.group__input.dropdown .drop ul > li:last-child {
  margin-bottom: 0px;
}
.group__input.dropdown > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  border-radius: 10px;
  border: 1px solid #B3B3B3;
  text-decoration: none;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 20px;
  line-height: 30px;
  color: #B3B3B3;
}
.group__input.dropdown > a > img {
  transition: 0.3s ease all;
}
.group__input.dropdown > a.active > img {
  transform: rotate(180deg);
}

.bigger__popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 20;
  background-color: rgba(22, 22, 22, 0.7);
}
.bigger__popup .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
}
.bigger__popup .inner .box > a {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bigger__popup .inner .box .inn {
  width: 840px;
  height: 840px;
  border-radius: 48px;
  background-color: #FFFFFF;
  position: relative;
}
.bigger__popup .inner .box .inn img {
  position: absolute;
  left: 30px;
  top: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  border-radius: 24px;
  object-fit: cover;
}

header {
  top: 12px !important;
}

header + div {
  margin-top: -40px;
}

.info__popup > svg {
  display: none;
}

.info__popup, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool {
  min-width: 340px;
  max-width: 340px;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 15px;
  z-index: 2;
  top: 30px;
  padding-right: 55px;
}
.info__popup > a, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
}
.info__popup ul li, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool ul li {
  font-size: 13px;
  line-height: 20px;
}
.info__popup p, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool p {
  font-size: 13px;
  line-height: 20px;
  color: #161616;
  margin-bottom: 7px;
}
.info__popup p:last-child, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool p:last-child {
  margin-bottom: 0px;
}

.pricing__ai--popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.73);
}
.pricing__ai--popup .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
}
.pricing__ai--popup .inner .box {
  width: 100%;
  max-width: 805px;
  padding: 40px 48px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
  max-height: 100%;
  overflow-y: auto;
}
.pricing__ai--popup .inner .box::-webkit-scrollbar {
  width: 4px;
}
.pricing__ai--popup .inner .box::-webkit-scrollbar-thumb {
  background-color: #F1983A;
  border-radius: 5px;
}
.pricing__ai--popup .inner .box .content > p {
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 24px;
  color: #161616;
  font-weight: bold;
}
.pricing__ai--popup .inner .box .content .inn {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pricing__ai--popup .inner .box .content .inn .desc ul {
  padding: 0px;
  padding-left: 15px;
  margin: 0px;
}
.pricing__ai--popup .inner .box .content .inn .desc ul > li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #161616;
}
.pricing__ai--popup .inner .box .content .inn .desc ul > li:last-child {
  margin-bottom: 0px;
}
.pricing__ai--popup .inner .box .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}
.pricing__ai--popup .inner .box .head > p {
  margin: 0px;
  margin-right: 15px;
  font-size: 24px;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: -0.01em;
}
.pricing__ai--popup .inner .box .head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info__popup > span {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}

.info__popup p, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li, .tooltip__scope .tool p, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li {
  margin-top: 7px;
  margin-bottom: 0px;
}
.info__popup p:nth-child(1), div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li:nth-child(1), .tooltip__scope .tool p:nth-child(1), div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li:nth-child(1) {
  margin-top: 0px;
}

.info__popup ul {
  padding-left: 15px;
}

.help__info .outer__help .content > .el {
  background-color: transparent !important;
  padding: 0px !important;
}

.help__info .outer__help .content > .el .content {
  padding: 24px 32px;
}

.help__info .outer__help .content > .el .head {
  background-color: #F1F1F1;
  padding: 20px;
  border-radius: 11px;
}

.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li {
  margin-bottom: 24px !important;
}
.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li:last-child {
  margin-bottom: 0px !important;
}

@media (max-width: 1440px) {
  .info__popup, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool {
    min-width: 220px;
    max-width: 220px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .help__info .outer__help .content > .el .content {
    padding: 16px;
  }
  .info__popup, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool {
    min-width: 200px;
    max-width: 200px;
    padding-right: 40px;
  }
  .info__popup * {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .info__popup p, div.scope__wrapper .outer__scope .box > .main__wrapper .content .row > .elem > ul > li .tooltip__scope .tool p {
    font-size: 14px !important;
    line-height: 19px !important;
    color: #434343;
  }
  .regular-btn {
    min-height: 45px;
  }
  .regular-btn.big {
    min-height: 38px;
    font-size: 16px;
    border-radius: 8px;
    line-height: 25px;
    min-width: 100%;
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .plan__compare.plan_updated .outer__compare--plan .desc > h6 {
    font-size: 15px !important;
    line-height: 22px !important;
    height: 33px !important;
  }
  .plan__compare .outer__compare--plan .desc > .row > p {
    font-size: 11px;
    line-height: 14px;
  }
  .pricing__ai--popup .inner .box .head > p {
    font-size: 14px;
    line-height: 19px;
  }
  .pricing__ai--popup .inner .box {
    padding: 20px 15px;
  }
  .pricing__ai--popup .inner .box .head {
    margin-bottom: 15px;
  }
  .pricing__ai--popup .inner .box .content > p {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 12px;
  }
  .pricing__ai--popup .inner .box .content .inn .desc ul > li {
    font-size: 14px;
    line-height: 19px;
  }
  .pricing__ai--popup .inner .box .content .inn .media {
    display: none;
  }
  .bigger__popup .inner .box .inn {
    border-radius: 25px;
  }
  .bigger__popup .inner .box .inn img {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px;
    border-radius: 25px;
  }
  .regular-btn {
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
  }
}
.form-loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #161616;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer {
  margin-top: 40px;
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #202020;
}
footer .container {
  max-width: 1430px;
}
footer .outer__footer .top__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .outer__footer .top__foot .menus {
  width: 100%;
  max-width: 895px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .outer__footer .top__foot .menus > .menu__el > p {
  margin-top: 0px;
  margin-bottom: 34px;
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  color: #FFFFFF;
}
footer .outer__footer .top__foot .menus > .menu__el > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .outer__footer .top__foot .menus > .menu__el > ul > li {
  margin-bottom: 16px;
}
footer .outer__footer .top__foot .menus > .menu__el > ul > li > a {
  font-size: 16px;
  line-height: 25px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease all;
}
footer .outer__footer .top__foot .menus > .menu__el > ul > li > a:hover {
  opacity: 0.7;
}
footer .outer__footer .top__foot .menus > .menu__el > ul > li:last-child {
  margin-bottom: 0px;
}
footer .outer__footer .top__foot .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer .outer__footer .top__foot .logo > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer .outer__footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 2px solid rgba(179, 179, 179, 0.25);
}
footer .outer__footer .bottom > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer .outer__footer .bottom > ul > li {
  font-size: 16px;
  line-height: 24px;
  color: #B3B3B3;
  font-weight: 400;
  margin-right: 20px;
}
footer .outer__footer .bottom > ul > li:nth-child(4) {
  display: none;
}
footer .outer__footer .bottom > ul > li > a {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: #B3B3B3;
  transition: 0.3s ease all;
}
footer .outer__footer .bottom > ul > li > a:hover {
  color: #fff;
}
footer .outer__footer .bottom > ul > li:last-child {
  margin-right: 0px;
}
footer .outer__footer .bottom > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  color: #B3B3B3;
}
footer .outer__footer .bottom > p span {
  display: none;
}

@media (max-width: 1280px) {
  footer .outer__footer .top__foot .menus {
    max-width: 800px;
  }
}
@media (max-width: 1200px) {
  footer .outer__footer .top__foot .menus > .menu__el > ul > li > a {
    font-size: 14px;
    line-height: 23px;
  }
  footer .outer__footer .top__foot .menus > .menu__el > p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 23px;
  }
  footer .outer__footer .top__foot .logo {
    margin-right: 25px;
  }
  footer .outer__footer .top__foot .logo > a img {
    max-width: 200px;
    width: auto;
    height: auto;
  }
}
.mobile__menu--foot, .mobile__footer--form {
  display: none;
}

@media (max-width: 991px) {
  .mobile__footer--form {
    display: block;
  }
  .mobile__footer--form form {
    margin-top: 15px;
  }
  .mobile__footer--form form .group__input {
    width: 100%;
    position: relative;
  }
  .mobile__footer--form form .group__input button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    width: 44px;
    height: 44px;
    background-color: #202020;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    border: 0px;
  }
  .mobile__footer--form form .group__input > input {
    width: 100%;
    height: 50px;
    border-radius: 7px;
    padding-left: 15px;
    padding-right: 60px;
    outline: none;
    border: 0px;
    font-size: 13px;
    line-height: 22px;
    color: #000;
  }
  .mobile__footer--form form .group__input > input::-webkit-input-placeholder {
    color: #B3B3B3;
  }
  .mobile__footer--form form .group__input > input::-moz-placeholder {
    color: #B3B3B3;
  }
  .mobile__footer--form form .group__input > input:-ms-input-placeholder {
    color: #B3B3B3;
  }
  .mobile__footer--form form .group__input > input:-moz-placeholder {
    color: #B3B3B3;
  }
  .mobile__footer--form > p {
    margin-top: 0px;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
  }
  .mobile__footer--form > span {
    display: block;
    font-size: 12px;
    line-height: 22px;
    color: #B3B3B3;
  }
  .mobile__menu--foot {
    margin-top: 20px;
    display: block;
    margin-bottom: 35px;
  }
  .mobile__menu--foot ul {
    padding: 0px;
    list-style-type: none;
    max-width: 240px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  .mobile__menu--foot ul > li > a {
    text-decoration: none;
    font-size: 13px;
    line-height: 22px;
    font-weight: bold;
    color: #FFFFFF;
  }
  footer .outer__footer .top__foot .menus {
    display: none;
  }
  footer {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  footer .outer__footer .top__foot .logo > a img {
    max-width: 125px;
  }
  footer .outer__footer .bottom {
    flex-direction: column;
    align-items: center;
  }
  footer .outer__footer .bottom > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .outer__footer .bottom > p span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    position: relative;
    top: 1px;
  }
  footer .outer__footer .bottom > ul {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .outer__footer .bottom > ul > li {
    margin-right: 30px;
    font-size: 13px;
    line-height: 16px;
  }
  footer .outer__footer .bottom > ul > li > a {
    font-size: 13px;
    line-height: 16px;
  }
  footer .outer__footer .bottom > ul > li:last-child {
    margin-right: 0px;
  }
  footer .outer__footer .bottom > ul > li:nth-child(1) {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 100%;
  }
  footer .outer__footer .bottom > ul > li:nth-child(4) {
    display: inline-flex;
  }
  .mobile__menu--foot {
    display: none;
  }
  .mobile__footer--form {
    display: none;
  }
  footer .outer__footer .top__foot .menus {
    margin-top: 30px;
  }
  footer .outer__footer .top__foot {
    flex-direction: column;
  }
  footer .outer__footer .bottom > p span {
    display: none;
  }
  footer .outer__footer .top__foot .menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 35px;
  }
  footer .outer__footer .bottom > ul > li:nth-child(4) {
    display: none;
  }
  footer .outer__footer .bottom > ul > li {
    display: none;
    margin-bottom: 0px !important;
  }
  footer .outer__footer .bottom > ul > li:nth-child(1) {
    display: block;
  }
}
@media (max-width: 640px) {
  footer .outer__footer .bottom > ul > li:nth-child(1) {
    font-size: 12px;
    line-height: 16px;
  }
  footer .outer__footer .bottom > p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
  }
  footer .outer__footer .bottom {
    margin-top: 29px;
    padding-top: 18px;
  }
  footer .outer__footer .top__foot .menus {
    grid-column-gap: 20px;
  }
  footer .outer__footer .top__foot .menus > .menu__el > ul > li > a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
  }
  footer .outer__footer .top__foot .menus > .menu__el > ul > li {
    margin-bottom: 11px;
  }
  footer .outer__footer .top__foot .menus > .menu__el > p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 360px) {
  footer .outer__footer .bottom > ul > li {
    margin-right: 24px;
  }
}
header {
  position: absolute;
  top: 20px;
  left: 0px;
  width: 100%;
  transition: 0.3s ease background-color;
  z-index: 12;
}
header.active {
  position: fixed;
  top: 0px;
  background-color: #fff;
}
header .outer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .outer__header > .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .outer__header > .menu > ul {
  margin: 0px;
  padding: 0px;
  margin-right: 40px;
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: flex-start;
}
header .outer__header > .menu > ul > li {
  margin-right: 32px;
}
header .outer__header > .menu > ul > li > a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #161616;
  text-decoration: none;
  transition: 0.3s ease all;
  position: relative;
}
header .outer__header > .menu > ul > li > a:hover:before {
  width: 100%;
}
header .outer__header > .menu > ul > li > a:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -3px;
  width: 0px;
  height: 2px;
  transition: 0.3s ease all;
  background-color: #F1983A;
}
header .outer__header > .menu > ul > li:last-child {
  margin-right: 0px;
}

.menu__btn {
  display: none;
}

header {
  top: 12px !important;
}

header + div {
  margin-top: -40px;
}

header.active {
  top: 0px !important;
}

@media (max-width: 1200px) {
  header {
    position: fixed;
    top: 0px;
  }
  .menu__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .menu__btn > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .menu__btn > a.opened > span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
  }
  .menu__btn > a.opened > span:nth-child(3) {
    bottom: 10px;
    transform: rotate(-45deg);
  }
  .menu__btn > a.opened > span:nth-child(2) {
    opacity: 0;
  }
  .menu__btn > a > span {
    min-width: 24px;
    min-height: 1.5px;
    background-color: #161616;
    margin-bottom: 7px;
    transition: 0.3s ease all;
    border-radius: 250px;
    top: 0px;
    bottom: auto;
    position: relative;
  }
  .menu__btn > a > span:last-child {
    top: auto;
    bottom: 0px;
    margin-bottom: 0px;
  }
  header {
    top: 0px;
  }
  header .outer__header > a img {
    max-width: 115px;
    height: auto;
  }
  header .outer__header > a, header .outer__header > .menu__btn {
    position: relative;
    z-index: 2;
  }
  header .outer__header > .menu > ul {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  header .outer__header > .menu > ul > li {
    margin-bottom: 15px;
  }
  header .outer__header > .menu > ul > li > a {
    font-size: 30px;
    line-height: 36px;
  }
  header .outer__header {
    min-height: 75px;
  }
  header .outer__header > .menu {
    position: fixed;
    top: -100%;
    transition: 0.4s ease-in-out all;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }
  header .outer__header > .menu .btn {
    width: 100%;
  }
  header .outer__header > .menu .btn > a {
    min-height: 60px;
    font-size: 24px;
    line-height: 30px;
    width: 100%;
  }
}
.double__article {
  padding-top: 140px;
  background-color: #F2F2F2;
}
.double__article.no__padding {
  padding-top: 60px;
}
.double__article.centered .outer__double .el {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.double__article.centered .outer__double .el.bigger .media {
  position: absolute;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  margin-top: 23px;
}
.double__article.centered .outer__double .el.bigger .media img {
  max-width: 440px;
}
.double__article.centered .outer__double .el p {
  text-align: center !important;
}
.double__article.centered .outer__double .el.negative-margin > h6, .double__article.centered .outer__double .el.negative-margin > p {
  position: relative;
  z-index: 2;
}
.double__article.centered .outer__double .el.negative-margin .btn {
  position: relative;
  z-index: 2;
}
.double__article.centered .outer__double .el.negative-margin .media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.double__article.centered .outer__double .el.negative-margin .media img {
  max-width: 540px;
  width: calc(100% - 40px);
  margin-top: -71px;
}
.double__article.centered .outer__double .el .btn {
  justify-content: center;
  display: flex;
}
.double__article.centered .outer__double .el > h6 {
  text-align: center;
}
.double__article.centered .outer__double .el p {
  margin-left: auto !important;
  margin-right: auto !important;
}
.double__article.transparent {
  background-color: transparent;
}
.double__article.smaller__gap {
  padding-top: 75px;
}
.double__article.transparent {
  background-color: transparent;
}
.double__article .outer__double {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
}
.double__article .outer__double > .el > p {
  position: relative;
  z-index: 2;
}
.double__article .outer__double > .el:nth-child(2).colored {
  background-color: #682BF5;
}
.double__article .outer__double > .el:nth-child(2).colored > .img > img {
  max-width: 360px;
}
.double__article .outer__double > .el:nth-child(2) {
  height: 544px;
  padding-top: 57px;
  padding-left: 37px;
  padding-right: 37px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background: url("../img/non-profit/purplestrike.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  background-color: #976DF8;
  position: relative;
}
.double__article .outer__double > .el:nth-child(2) .btn > a {
  min-width: 170px;
  min-height: 50px;
  background-color: #FFFFFF;
  border-radius: 7px;
  color: #161616;
  transition: 0.3s ease all;
}
.double__article .outer__double > .el:nth-child(2) .btn > a:hover {
  opacity: 0.7;
}
.double__article .outer__double > .el:nth-child(2) > h6 {
  margin-top: 0px;
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 48px;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.double__article .outer__double > .el:nth-child(2) > p {
  max-width: 380px;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.double__article .outer__double > .el:nth-child(2) .img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
}
.double__article .outer__double > .el:nth-child(2) .img img {
  height: auto;
  max-width: 440px;
}
.double__article .outer__double > .el:nth-child(1) {
  height: 544px;
  padding-top: 57px;
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.1);
  padding-left: 37px;
  padding-right: 37px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  text-align: right;
  background-color: #fff;
  position: relative;
}
.double__article .outer__double > .el:nth-child(1) .btn > a {
  min-width: 170px;
  min-height: 50px;
  border-radius: 7px;
  transition: 0.3s ease all;
}
.double__article .outer__double > .el:nth-child(1) > h6 {
  margin-top: 0px;
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 48px;
  color: #161616;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.double__article .outer__double > .el:nth-child(1) > p {
  max-width: 380px;
  font-size: 16px;
  margin-left: auto;
  line-height: 24px;
  color: #434343;
}
.double__article .outer__double > .el:nth-child(1) .img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  pointer-events: none;
  left: 0px;
  bottom: 0px;
}
.double__article .outer__double > .el:nth-child(1) .img img {
  height: auto;
  max-width: 580px;
}
.double__article + footer {
  margin-top: 0px;
}

.double__article .outer__double > .el.bigger:nth-child(2) {
  background-color: #F1983A;
}

.double__article .outer__double > .el.bigger:nth-child(2) .img img {
  max-width: 600px;
  width: 100%;
}

@media (max-width: 1400px) {
  .double__article .outer__double > .el:nth-child(1) .img img {
    max-width: 500px;
  }
  .double__article .outer__double > .el:nth-child(2) .img img {
    max-width: 380px;
  }
}
@media (max-width: 1280px) {
  .double__article.centered .outer__double .el.bigger .media {
    margin-top: 26px;
  }
  .double__article .outer__double > .el:nth-child(2) > h6 {
    font-size: 36px;
    line-height: 44px;
  }
  .double__article .outer__double > .el:nth-child(1) > h6 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 1200px) {
  .double__article .outer__double > .el:nth-child(1) .img img {
    max-width: 440px;
  }
  .double__article .outer__double > .el:nth-child(2) .img img {
    max-width: 320px;
  }
  .double__article .outer__double > .el:nth-child(2) > h6 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .double__article .outer__double > .el:nth-child(1) > h6 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .double__article.centered .outer__double .el.bigger .media img {
    max-width: 240px;
  }
  .double__article.centered .outer__double .el.bigger .media {
    margin-top: -3px;
  }
  .double__article.centered .outer__double .el.negative-margin .media img {
    max-width: 280px;
  }
  .double__article .outer__double > .el:nth-child(1), .double__article .outer__double > .el:nth-child(2) {
    border-radius: 6px;
    overflow: hidden;
  }
  .double__article {
    padding-bottom: 40px;
  }
  .double__article .outer__double > .el.bigger:nth-child(2) .img img {
    max-width: 420px;
  }
  .double__article .outer__double > .el:nth-child(2).colored > .img > img {
    max-width: 230px;
  }
  .double__article {
    padding-top: 25px;
  }
  .double__article .outer__double {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .double__article .outer__double > .el:nth-child(1), .double__article .outer__double > .el:nth-child(2) {
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .double__article .outer__double > .el:nth-child(2) .img img {
    max-width: 245px;
  }
  .double__article .outer__double > .el:nth-child(1) .img img {
    max-width: 250px;
  }
  .double__article .outer__double > .el:nth-child(1) > p, .double__article .outer__double > .el:nth-child(2) > p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
  }
  .double__article .outer__double > .el:nth-child(1) > h6, .double__article .outer__double > .el:nth-child(2) > h6 {
    font-size: 22px;
    line-height: 27px;
  }
  .double__article .outer__double > .el:nth-child(1) .btn > a, .double__article .outer__double > .el:nth-child(2) .btn > a {
    min-width: 125px;
    min-height: 55px;
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
  }
  .double__article .outer__double > .el:nth-child(1), .double__article .outer__double > .el:nth-child(2) {
    height: 335px;
  }
  .double__article .outer__double > .el:nth-child(1) {
    margin-bottom: 22px;
  }
  body.home .double__article .outer__double > .el:nth-child(1), body.home .double__article .outer__double > .el:nth-child(2), body.reviews .double__article .outer__double > .el:nth-child(1), body.reviews .double__article .outer__double > .el:nth-child(2) {
    height: 308px;
  }
  body.home .double__article .outer__double > .el:nth-child(1) > h6, body.home .double__article .outer__double > .el:nth-child(2) > h6, body.reviews .double__article .outer__double > .el:nth-child(1) > h6, body.reviews .double__article .outer__double > .el:nth-child(2) > h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
  }
  body.home .double__article .outer__double > .el:nth-child(1) .btn > a, body.home .double__article .outer__double > .el:nth-child(2) .btn > a, body.reviews .double__article .outer__double > .el:nth-child(1) .btn > a, body.reviews .double__article .outer__double > .el:nth-child(2) .btn > a {
    min-height: 49px;
    border-radius: 8px;
  }
  body.home .double__article.centered .outer__double .el.negative-margin > p, body.reviews .double__article.centered .outer__double .el.negative-margin > p {
    margin: 5px 0 11px;
  }
  body.home .double__article .outer__double > .el.bigger:nth-child(2) p, body.reviews .double__article .outer__double > .el.bigger:nth-child(2) p {
    max-width: 90%;
    margin: 5px 0 9px;
  }
}
@media (max-width: 480px) {
  .double__article .outer__double > .el.bigger:nth-child(2) .img img {
    max-width: 340px;
  }
}
@media (max-width: 400px) {
  .double__article .outer__double > .el.bigger:nth-child(2) .img img {
    max-width: 280px;
  }
  .double__article .outer__double > .el:nth-child(2) .img img {
    max-width: 215px;
  }
  .double__article .outer__double > .el:nth-child(2).colored > .img > img {
    max-width: 190px;
  }
}
@media (max-width: 360px) {
  .double__article .outer__double > .el:nth-child(2).colored > .img > img {
    max-width: 170px;
  }
  .double__article .outer__double > .el:nth-child(1) .img img {
    max-width: 270px;
  }
  .double__article .outer__double > .el:nth-child(2) .img img {
    max-width: 190px;
  }
}
.blogs__hero {
  padding-top: 250px;
  padding-bottom: 122px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.blogs__hero .outer__blogs {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.blogs__hero .outer__blogs .tags ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.blogs__hero .outer__blogs .tags ul > li {
  margin: 7px;
  padding: 13px 24px;
  font-size: 20px;
  line-height: 26px;
  color: #FFFFFF;
  font-weight: 400;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}
.blogs__hero .outer__blogs .desc {
  max-width: 730px;
  width: 100%;
}
.blogs__hero .outer__blogs .desc > span {
  display: block;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 12px;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.blogs__hero .outer__blogs .desc .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 54px;
}
.blogs__hero .outer__blogs .desc .btn a {
  font-size: 16px;
  line-height: 24px;
  padding: 16px 40px;
  min-width: auto;
}
.blogs__hero .outer__blogs .desc > p {
  margin: 0px;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  font-weight: 400;
}
.blogs__hero .outer__blogs .desc .date {
  margin-bottom: 32px;
}
.blogs__hero .outer__blogs .desc .date > p {
  margin: 0px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  color: #F1983A;
}
.blogs__hero .outer__blogs .desc > h1 {
  margin-top: 0px;
  margin-bottom: 32px;
  font-size: 64px;
  line-height: 72px;
  color: #FFFFFF;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1280px) {
  .blogs__hero .outer__blogs .desc > h1 {
    font-size: 56px;
    line-height: 64px;
  }
  .blogs__hero .outer__blogs .desc {
    max-width: 640px;
  }
}
@media (max-width: 1200px) {
  .blogs__hero {
    padding-top: 105px;
    padding-bottom: 45px;
    margin-top: 75px;
  }
  .blogs__hero .outer__blogs {
    flex-direction: column;
    align-items: flex-start;
  }
  .blogs__hero .outer__blogs .tags {
    margin-top: 180px;
  }
  .blogs__hero .outer__blogs .tags {
    margin-left: -7px;
  }
}
@media (max-width: 991px) {
  .blogs__hero .outer__blogs .desc > span {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 12px;
  }
  .blogs__hero .outer__blogs .desc {
    max-width: 100%;
  }
  .blogs__hero .outer__blogs .desc > h1 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 15px;
  }
  .blogs__hero .outer__blogs .desc .date > p {
    font-size: 16px;
  }
  .blogs__hero .outer__blogs .desc > p {
    font-size: 16px;
    line-height: 24px;
  }
  .blogs__hero .outer__blogs .tags ul > li {
    padding: 5px 15px;
    font-size: 16px;
  }
  .blogs__hero {
    background-position: 70% 0px !important;
  }
}
.featured__blog {
  padding-top: 140px;
  padding-bottom: 145px;
}
.featured__blog .outer__featured {
  display: flex;
  justify-content: space-between;
}
.featured__blog .outer__featured .featured__small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 530px;
  width: 100%;
}
.featured__blog .outer__featured .featured__small > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 32px;
  height: 100%;
  transition: 0.3s ease all;
  border-radius: 20px;
  text-decoration: none;
}
.featured__blog .outer__featured .featured__small > a:hover {
  background-color: #FFF3E6;
}
.featured__blog .outer__featured .featured__small > a > span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 12px;
  color: #b3b3b3;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
.featured__blog .outer__featured .featured__small > a > p {
  margin: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 24px;
  line-height: 32px;
  color: #232536;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.featured__blog .outer__featured .featured__main {
  width: 100%;
  max-width: 750px;
  margin-right: 32px;
  padding: 39px 32px;
  border-radius: 25px;
  border: 2px solid #DDDDDD;
}
.featured__blog .outer__featured .featured__main > h6 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 36px;
  line-height: 120%;
  color: #232536;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
.featured__blog .outer__featured .featured__main .btn {
  margin-top: 35px;
  display: flex;
  justify-content: flex-start;
}
.featured__blog .outer__featured .featured__main .btn > a {
  min-width: auto;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 40px;
}
.featured__blog .outer__featured .featured__main > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434343;
}
.featured__blog .outer__featured .featured__main > span {
  font-size: 14px;
  line-height: 12px;
  letter-spacing: 0.1em;
  color: #434343;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
  display: inline-flex;
}
.featured__blog .outer__featured .featured__main .media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 35px;
}
.featured__blog .outer__featured .featured__main .media ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  left: 15px;
  top: 15px;
  position: absolute;
  width: calc(100% - 30px);
}
.featured__blog .outer__featured .featured__main .media ul > li {
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  font-weight: 400;
  margin: 0px 6px;
  backdrop-filter: blur(12px);
  padding: 8px 10px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
}
.featured__blog .outer__featured .featured__main .media > img {
  max-width: 100%;
  border-radius: 20px;
}
.featured__blog > .container > h2 {
  margin-top: 0px;
  font-size: 48px;
  line-height: 56px;
  color: #161616;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1200px) {
  .featured__blog .outer__featured .featured__small > a > p {
    font-size: 20px;
    line-height: 28px;
  }
  .featured__blog .outer__featured .featured__small > a > span {
    font-size: 16px;
    line-height: 24px;
  }
  .featured__blog .outer__featured .featured__small {
    max-width: 400px;
  }
  .featured__blog {
    padding: 100px 0px;
  }
  .featured__blog > .container > h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .featured__blog .outer__featured {
    flex-direction: column;
  }
  .featured__blog .outer__featured .featured__main {
    max-width: 100%;
  }
  .featured__blog {
    padding: 60px 0px;
  }
  .featured__blog > .container > h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .featured__blog .outer__featured .featured__main > span {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
  }
  .featured__blog .outer__featured .featured__main > h6 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 32px;
  }
  .featured__blog .outer__featured .featured__main > p {
    font-size: 16px;
    line-height: 28px;
  }
  .featured__blog .outer__featured .featured__main .btn {
    margin-top: 20px;
  }
  .featured__blog .outer__featured .featured__main .btn > a {
    min-width: 123px;
    min-height: 37px;
    font-size: 16px;
    line-height: 24px;
  }
  .featured__blog .outer__featured .featured__main {
    padding: 15px;
  }
  .featured__blog .outer__featured .featured__small > a {
    width: 100%;
  }
  .featured__blog .outer__featured .featured__small {
    max-width: 100%;
  }
  .featured__blog .outer__featured .featured__small > a {
    padding: 32px 20px;
  }
  .featured__blog .outer__featured .featured__main .media ul > li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 6px;
  }
  .featured__blog .outer__featured .featured__small > a > span {
    font-size: 14px;
    line-height: 16px;
  }
}
.blog__highlight {
  padding: 85px 0px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.blog__highlight .outer__highlight {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.blog__highlight .outer__highlight .right {
  max-width: 730px;
  text-align: right;
}
.blog__highlight .outer__highlight .right > h2 {
  margin: 0px;
  font-size: 36px;
  line-height: 120%;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 32px;
}
.blog__highlight .outer__highlight .right .btn {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
.blog__highlight .outer__highlight .right .btn a {
  padding: 16px 40px;
  background-color: #682BF5;
  min-width: auto;
  font-size: 16px;
  line-height: 24px;
  margin-top: 50px;
}
.blog__highlight .outer__highlight .right > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
}
.blog__highlight .outer__highlight .right .date {
  margin-bottom: 32px;
  padding-right: 30px;
}
.blog__highlight .outer__highlight .right .date > p {
  margin: 0px;
  font-size: 16px;
  line-height: 30px;
  color: #F1983A;
  font-weight: 400;
}
.blog__highlight .outer__highlight .right > span {
  display: block;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 12px;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.blog__highlight .outer__highlight .tags > ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -7px;
  margin-top: -7px;
}
.blog__highlight .outer__highlight .tags > ul > li {
  white-space: nowrap;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 13px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 7px;
  line-height: 24px;
  color: #FFFFFF;
}

.blog__highlight .outer__highlight .right {
  max-width: 600px;
  margin-left: 40px;
}

@media (max-width: 1200px) {
  .blog__highlight .outer__highlight .right > h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .blog__highlight .outer__highlight .right > span {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 22px;
  }
  .blog__highlight .outer__highlight .right > p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .blog__highlight .outer__highlight .tags > ul {
    flex-wrap: wrap;
  }
  .blog__highlight .outer__highlight .right > h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .blog__highlight .outer__highlight .right .date {
    padding-left: 0px;
    margin-bottom: 26px;
  }
  .blog__highlight .outer__highlight {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .blog__highlight .outer__highlight .right {
    margin-left: 0px;
    max-width: 100%;
    text-align: left;
  }
  .blog__highlight .outer__highlight .right > span {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 12px;
  }
  .blog__highlight {
    padding: 75px 0px 20px;
    background-position: 35% 0px !important;
  }
  .blog__highlight .outer__highlight .tags {
    margin-top: 45px;
  }
  .blog__highlight .outer__highlight .right .btn {
    justify-content: flex-start;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .blog__highlight .outer__highlight .right > p {
    font-size: 16px;
    line-height: 24px;
  }
  .blog__highlight .outer__highlight .right .date {
    padding-right: 0px;
  }
  .blog__highlight .outer__highlight .tags > ul > li {
    padding: 5px 15px;
    font-size: 16px;
    line-height: 28px;
  }
}
header {
  background: #fff;
}

.all__blogs {
  padding-top: 192px;
  padding-bottom: 40px;
}
.all__blogs .outer__all .controls {
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all__blogs .outer__all .controls > a {
  white-space: nowrap;
  margin-right: 20px;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease all;
}
.all__blogs .outer__all .controls > a.disabled {
  color: #C4C4C4;
  pointer-events: none;
}
.all__blogs .outer__all .controls > a:hover {
  color: #F1983A;
}
.all__blogs .outer__all .controls > a:nth-child(2) {
  margin-left: 32px;
}
.all__blogs .outer__all .controls > a:nth-child(3) {
  margin-right: 32px;
}
.all__blogs .outer__all .controls > span {
  width: 100%;
  min-height: 1px;
  background-color: #B0B0B0;
}
.all__blogs .outer__all .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 28px;
}
.all__blogs .outer__all .grid .blog__article {
  padding: 32px 30px;
  border-radius: 25px;
  border: 1px solid #DDDDDD;
  transition: 0.3s ease all;
}
.all__blogs .outer__all .grid .blog__article:hover {
  background-color: #FFF3E6;
  border-color: #FFF3E6;
}
.all__blogs .outer__all .grid .blog__article .desc {
  width: 100%;
}
.all__blogs .outer__all .grid .blog__article .desc > span {
  display: block;
  margin-bottom: 30px;
  text-align: left;
  font-size: 14px;
  line-height: 12px;
  color: #434343;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.all__blogs .outer__all .grid .blog__article .desc .btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
}
.all__blogs .outer__all .grid .blog__article .desc .btn > a {
  text-decoration: underline;
  font-size: 16px;
  line-height: 24px;
  color: #8338EC;
  font-weight: 400;
  transition: 0.3s ease all;
}
.all__blogs .outer__all .grid .blog__article .desc .btn > a:hover {
  opacity: 0.7;
}
.all__blogs .outer__all .grid .blog__article .desc > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  color: #434343;
}
.all__blogs .outer__all .grid .blog__article .desc > h6 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 120%;
  color: #161616;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
}
.all__blogs .outer__all .grid .blog__article .media {
  position: relative;
  padding-bottom: 60%;
  margin-bottom: 25px;
}
.all__blogs .outer__all .grid .blog__article .media > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.all__blogs .outer__all .grid .blog__article .media ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  left: 19px;
  top: 17px;
  margin-top: -6px;
  margin-left: -6px;
  z-index: 2;
}
.all__blogs .outer__all .grid .blog__article .media ul > li {
  margin: 6px;
  padding: 8px 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  border-radius: 8px;
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.2);
}
.all__blogs .outer__all .grid .blog__article .media ul > li.featured {
  background-color: rgba(241, 152, 58, 0.5);
}
.all__blogs .outer__all .grid .blog__article .media > img {
  max-width: 100%;
  border-radius: 20px;
}
.all__blogs .outer__all > .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 38px;
}
.all__blogs .outer__all > .top > h2 {
  margin-top: 0px;
  font-size: 48px;
  line-height: 56px;
  color: #161616;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0px;
}
.all__blogs .outer__all > .top .right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper {
  position: relative;
  width: 285px;
  margin: 0 20px 0 0;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-selection--multiple {
  min-height: 52px;
  border: 1px solid #E6E6E6;
  border-radius: 10px !important;
  padding: 10px 16px;
  background-color: #F2F2F2;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0%;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-selection--multiple.select2-container--focus {
  border-color: unset;
  box-shadow: unset;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
  border: none;
  border-radius: 4px;
  color: #646464;
  padding: 2px 15px 2px 8px;
  margin: 3px 5px 3px 0;
  font-size: 14px;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: #646464;
  margin-left: 10px;
  cursor: pointer;
  border: unset;
  right: 2px;
  left: auto;
  top: 2px;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-selection--multiple .select2-selection--multiple .select2-selection__rendered li:not(.select2-search--inline) ~ .select2-selection__clear,
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-selection--multiple .select2-selection--single .select2-selection__rendered:not(:empty) + .select2-selection__clear {
  display: block;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-results__option {
  padding: 8px 12px;
  font-size: 14px;
}
.all__blogs .outer__all > .top .right .tags-dropdown-wrapper .select2-container--default .select2-results__option--highlighted {
  background-color: #646464;
  color: #646464;
}
.all__blogs .outer__all > .top .right form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background-color: rgba(250, 250, 250, 0.93);
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
  width: 48px;
  height: 52px;
  transition: width 0.5s ease;
}
.all__blogs .outer__all > .top .right form.expanded {
  width: 330px;
}
.all__blogs .outer__all > .top .right form.expanded > input {
  display: block;
}
.all__blogs .outer__all > .top .right form.expanded > a {
  display: inline-flex;
}
.all__blogs .outer__all > .top .right form > svg {
  cursor: pointer;
  margin-left: 2px;
  width: 48px;
}
.all__blogs .outer__all > .top .right form > a {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 8px;
  display: none;
}
.all__blogs .outer__all > .top .right form > input {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 52px;
  border-radius: 8px;
  outline: none;
  background-color: #FAFAFA;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  color: #000;
  background-color: rgba(250, 250, 250, 0.93);
  display: none;
}
.all__blogs .outer__all > .top .right form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  border: 0px;
  outline: none;
  cursor: pointer;
  position: absolute;
  left: 8px;
  background-color: transparent;
  display: none;
}
.all__blogs .outer__all > .top .right > ul {
  list-style-type: none;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 10px 8px;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  font-weight: 400;
  margin-right: 18px;
  flex-wrap: wrap;
  margin-top: 0;
}
.all__blogs .outer__all > .top .right > ul > li {
  margin: 6px;
  white-space: nowrap;
}
.all__blogs .outer__all > .top .right > ul > li > a {
  border-radius: 8px;
  background-color: #F1983A;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  color: #FFFFFF;
  justify-content: center;
  transition: 0.3s ease all;
}
.all__blogs .outer__all > .top .right > ul > li > a:hover {
  background-color: #000000;
}

.all__blogs .outer__all > .top .right > ul > li > a.active,
.all__blogs .outer__all > .top .right > ul > li > a:hover {
  background-color: #161616;
}

.all__blogs .outer__all .grid .blog__article .desc > h6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.all__blogs .outer__all .grid .blog__article .desc > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.all__blogs.standalone {
  padding-top: 248px;
  padding-bottom: 154px;
}
.all__blogs.standalone .long__blog > .elem {
  margin-bottom: 22px;
  display: flex;
  justify-content: flex-start;
  padding: 22px 35px;
  border: 1px solid #DDDDDD;
  border-radius: 25px;
}
.all__blogs.standalone .long__blog > .elem > .desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.all__blogs.standalone .long__blog > .elem > .desc > h6 {
  margin-bottom: 2px;
  font-size: 24px;
  line-height: 40px;
  color: #232536;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
  font-weight: bold;
  margin-top: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.all__blogs.standalone .long__blog > .elem > .desc .btn {
  display: flex;
  margin-top: 20px;
  justify-content: flex-start;
}
.all__blogs.standalone .long__blog > .elem > .desc .btn > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #8338EC;
  transition: 0.3s ease all;
}
.all__blogs.standalone .long__blog > .elem > .desc .btn > a:hover {
  color: #F1983A;
}
.all__blogs.standalone .long__blog > .elem > .desc > p {
  font-size: 16px;
  line-height: 24px;
  color: #434343;
  margin-top: 0px;
  margin-bottom: auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.all__blogs.standalone .long__blog > .elem > .desc > span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 12px;
  color: #301A03;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.all__blogs.standalone .long__blog > .elem .media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.all__blogs.standalone .long__blog > .elem .media img {
  border-radius: 20px;
  max-width: 365px;
}
.all__blogs.standalone .long__blog > .elem:last-child {
  margin-bottom: 0px;
}
.all__blogs.standalone .keyword {
  display: flex;
  align-items: center;
  margin-bottom: 55px;
  justify-content: flex-start;
}
.all__blogs.standalone .keyword > span {
  font-size: 36px;
  line-height: 120%;
  color: #F1983A;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.all__blogs.standalone .keyword > p {
  margin: 0px;
  margin-right: 20px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #301A03;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.all__blogs.standalone .top {
  margin-bottom: 40px;
}
.all__blogs.standalone .controls {
  margin-top: 80px;
}

.all__blogs .outer__all .grid .blog__article .desc .btn > a:hover {
  color: #F1983A;
}

span.high {
  background-color: #FFE6CC;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  font-size: 20px !important;
  margin-top: 0px !important;
}

.select2-container--open .select2-dropdown {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px;
  background-color: #F2F2F2;
  border-color: transparent;
}
.select2-container--open .select2-dropdown ul li {
  padding: 8px 16px;
}

@media (max-width: 1200px) {
  .all__blogs.standalone .keyword {
    margin-bottom: 25px;
  }
  .all__blogs.standalone .top {
    margin-bottom: 25px;
  }
  .all__blogs.standalone .long__blog > .elem > .desc > h6 {
    font-size: 20px;
    line-height: 32px;
  }
  .all__blogs.standalone .long__blog > .elem > .desc > p {
    font-size: 20px;
    line-height: 32px;
  }
  .all__blogs.standalone .long__blog > .elem > .desc > span {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .all__blogs.standalone {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .all__blogs.standalone .keyword > span {
    font-size: 54px;
    line-height: 64px;
  }
  .all__blogs.standalone .keyword > p {
    margin-right: 15px;
    font-size: 18px;
    line-height: 22px;
  }
  .all__blogs {
    padding-bottom: 0px;
  }
  .all__blogs .outer__all .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .all__blogs {
    padding-top: 95px;
  }
  .all__blogs .outer__all > .top {
    flex-direction: column;
    align-items: flex-start;
  }
  .all__blogs .outer__all > .top > h2 {
    margin-top: 0px;
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 40px;
    color: #161616;
  }
  .all__blogs .outer__all > .top .right > ul {
    display: none;
  }
  .all__blogs .outer__all > .top .right {
    width: 100%;
  }
  .all__blogs .outer__all > .top .right form > input {
    background-color: #F2F2F2;
    height: 50px;
  }
  .all__blogs .outer__all > .top .right form {
    max-width: 100%;
    width: 100%;
    min-width: 0px;
    max-width: 100%;
  }
  .all__blogs .outer__all > .top .right form > input {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .all__blogs.standalone .keyword > span {
    font-size: 48px;
    line-height: 54px;
  }
  .all__blogs.standalone .keyword > p {
    font-size: 16px;
    line-height: 20px;
  }
  .all__blogs.standalone .long__blog > .elem {
    flex-direction: column;
  }
  .all__blogs.standalone .long__blog > .elem > .desc > span {
    font-size: 16px;
    line-height: 20px;
  }
  .all__blogs.standalone .long__blog > .elem > .desc {
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .all__blogs.standalone .long__blog > .elem > .desc > h6 {
    margin-bottom: 12px;
  }
  .all__blogs.standalone .long__blog > .elem > .desc > p {
    font-size: 16px;
    line-height: 28px;
  }
  .all__blogs.standalone .long__blog > .elem {
    padding: 28px 15px;
  }
  .all__blogs.standalone .long__blog > .elem .media img {
    border-radius: 8px;
  }
  .all__blogs.standalone .long__blog > .elem .media {
    margin-right: 0px;
    margin-bottom: 25px;
  }
  .all__blogs.standalone .long__blog > .elem .media img {
    max-width: 100%;
    width: 100%;
  }
  .all__blogs .outer__all .grid .blog__article .media ul {
    display: none;
  }
  .all__blogs .outer__all .grid .blog__article {
    padding: 23px 15px;
  }
  .all__blogs .outer__all .grid .blog__article .desc > span {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 18px;
  }
  .all__blogs .outer__all .grid .blog__article .desc > h6 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 32px;
  }
  .all__blogs .outer__all .grid .blog__article .desc .btn > a {
    font-size: 18px;
    line-height: 27px;
  }
  .all__blogs .outer__all .grid .blog__article {
    border-radius: 12px;
  }
  .all__blogs .outer__all .grid .blog__article .desc > p {
    font-size: 16px;
    line-height: 28px;
  }
  .all__blogs .outer__all > .top > h2 {
    font-size: 48px;
    line-height: 56px;
  }
  .all__blogs {
    padding-top: 50px;
  }
  .all__blogs .outer__all > .top .right {
    display: block;
  }
  .all__blogs .outer__all > .top .right .tags-dropdown-wrapper {
    width: 100%;
  }
  .all__blogs .outer__all > .top .right form {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .all__blogs.standalone .keyword > span {
    font-size: 40px;
    line-height: 44px;
  }
  .all__blogs .outer__all .controls {
    margin-top: 30px;
  }
  .all__blogs {
    padding-bottom: 30px;
  }
  .all__blogs .outer__all .controls > a:nth-child(2) {
    margin-left: 8px;
  }
  .all__blogs .outer__all .controls > a:nth-child(3) {
    margin-right: 8px;
  }
  .all__blogs .outer__all .grid {
    grid-template-columns: 1fr;
  }
  .all__blogs .outer__all .grid .blog__article .media > img {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .all__blogs.standalone .keyword > span {
    font-size: 32px;
    line-height: 40px;
  }
}

/*# sourceMappingURL=blogs.css.map */
