@import url(./vendor/bootstrap.min.css);
@import url(./vendor/normalize.css);
@import url(./vendor/slick.css);
/* connect fonts */
@import url(./fonts/fontawesome/faces.min.css);
@import url(./fonts/uniform/faces.css);
.modal {
  font-size: 16px;
}

.modal-header {
  font-size: 24px;
}
.modal-header button {
  border: none;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  font-size: 30px;
  padding-top: 4px;
}

.modal-title {
  font-size: 24px;
}

.custom-checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.custom-checkbox-group label {
  line-height: 24px;
  border-radius: 0.375rem;
}
.custom-checkbox-group label sup {
  color: #ff0184;
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .custom-checkbox {
    margin-right: 20px;
  }
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}
.checkmark.error {
  background-color: #ff0184;
}

.custom-checkbox input:checked ~ .checkmark,
.custom-checkbox input:checked {
  background-color: #fff !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 19px;
  height: 19px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==")
    2px 2px no-repeat;
  -webkit-animation: checkbox 0.3s linear;
  animation: checkbox 0.3s linear;
}

@-webkit-keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 19px;
  }
}

@keyframes checkbox {
  from {
    width: 0;
  }
  to {
    width: 19px;
  }
}
.button {
  background: #fd6b65;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd6b65),
    color-stop(80%, #ff0184)
  );
  background: linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  background: -moz-linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  color: #ffffff;
  font-family: "Uniform 4", sans-serif;
  font-size: 18px;
  line-height: 1;
  padding: 20px 29px;
  padding-right: 24px;
  text-decoration: none;
  letter-spacing: 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 10px;
}
.button i {
  margin-left: 25px;
}
.button:hover,
.button:focus {
  text-decoration: none;
  outline: none;
  color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: "Uniform 4", sans-serif;
  margin-bottom: 56px;
}
@media (max-width: 767.98px) {
  .block-header {
    margin-bottom: 35px;
  }
}
@media (max-width: 575.98px) {
  .block-header {
    margin-bottom: 25px;
  }
}
.block-header.centered {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.block-header.centered .subheader {
  text-align: center;
}
.block-header .subheader {
  font-family: "Uniform 3", sans-serif;
  font-size: 22px;
  line-height: 32px;
  color: #ffffff;
  padding-top: 10px;
}
.block-header .subheader a {
  background: #fd6b65;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd6b65),
    color-stop(80%, #ff0184)
  );
  background: linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  background: -moz-linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Uniform 2", sans-serif;
}
.block-header.icon.icon-inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .block-header.icon.icon-inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.block-header h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: normal;
  color: #2d2d2d;
  padding: 0;
  margin: 0;
}
@media (max-width: 575.98px) {
  .block-header h2 br {
    display: none;
  }
}
.block-header.icon::before {
  content: " ";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/icons/header/code.png") center center no-repeat;
  background-size: contain;
  margin-bottom: 45px;
}
@media (max-width: 767.98px) {
  .block-header.icon::before {
    display: none;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .block-header.icon::before {
    display: none;
  }
}
.block-header.icon.icon-inline::before {
  margin-bottom: 0;
  margin-right: 25px;
}
@media (max-width: 575.98px) {
  .block-header.icon.icon-inline::before {
    display: none;
  }
}

#contact-form {
  padding-top: 125px;
  padding-bottom: 61px;
}
@media (max-width: 767.98px) {
  #contact-form {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #contact-form {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991.98px) {
  #contact-form .row {
    --bs-gutter-x: 36px;
  }
}
@media (max-width: 767.98px) {
  #contact-form .row {
    --bs-gutter-x: 20px;
  }
}
@media (max-width: 991.98px) {
  #contact-form .row > * {
    --bs-gutter-x: 36px;
  }
}
@media (max-width: 767.98px) {
  #contact-form .row > * {
    --bs-gutter-x: 20px;
  }
}

#questions-section {
  padding-bottom: 105px;
  padding-top: 58px;
}
@media (max-width: 767.98px) {
  #questions-section {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #questions-section {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

#purposes-section {
  padding-bottom: 100px;
  padding-top: 105px;
  position: relative;
}
#purposes-section:before {
  content: " ";
  display: block;
  width: 43px;
  height: 43px;
  background: url("../images/icons/main/red-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 30%;
}
@media (max-width: 767.98px) {
  #purposes-section:before {
    display: none;
  }
}
#purposes-section:after {
  content: " ";
  display: block;
  width: 43px;
  height: 43px;
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.7;
  position: absolute;
  bottom: 0;
  right: 30%;
}
@media (max-width: 767.98px) {
  #purposes-section:after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #purposes-section {
    padding-bottom: 60px;
    padding-top: 0px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #purposes-section {
    padding-bottom: 60px;
    padding-top: 0px;
  }
}

#process-section {
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 767.98px) {
  #process-section {
    padding-bottom: 80px;
    padding-top: 0px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #process-section {
    padding-bottom: 80px;
    padding-top: 0;
  }
}
#process-section:before {
  content: " ";
  display: block;
  width: 44px;
  height: 44px;
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 20%;
  left: 20%;
}
@media (max-width: 767.98px) {
  #process-section:before {
    display: none;
  }
}
#process-section:after {
  content: " ";
  display: block;
  width: 49px;
  height: 49px;
  background: url("../images/icons/main/red-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  bottom: 31%;
  right: 16%;
}
@media (max-width: 767.98px) {
  #process-section:after {
    display: none;
  }
}

#analitics-section {
  padding-top: 135px;
  padding-bottom: 60px;
  position: relative;
}
#analitics-section .col-lg-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#analitics-section .offset-lg-1 {
  position: relative;
}
#analitics-section .column-image {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  #analitics-section .column-image {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px 0 0 10px;
  }
}
@media (max-width: 767.98px) {
  #analitics-section .column-image {
    border-radius: 10px;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  #analitics-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #analitics-section .row .offset-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 45px;
  }
  #analitics-section .row .col-lg-5 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1320px) {
  #analitics-section {
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  #analitics-section {
    padding-top: 60px;
  }
  #analitics-section .block-text {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #analitics-section {
    padding-top: 60px;
  }
  #analitics-section .block-text {
    margin-bottom: 30px;
  }
}
#analitics-section:before {
  content: " ";
  display: block;
  width: 59px;
  height: 59px;
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.5;
  position: absolute;
  top: 0%;
  left: 40%;
}
@media (max-width: 767.98px) {
  #analitics-section:before {
    display: none;
  }
}
#analitics-section:after {
  content: " ";
  display: block;
  width: 69px;
  height: 69px;
  background: url("../images/icons/main/red-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  bottom: 1%;
  right: 22%;
}
@media (max-width: 767.98px) {
  #analitics-section:after {
    display: none;
  }
}
#analitics-section .round-block {
  top: -90px;
  right: -90px;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background: url("../images/backgrounds/dotted-circle.png") 50% 50% no-repeat;
  z-index: 9;
}
@media (max-width: 767.98px) {
  #analitics-section .round-block {
    display: none;
  }
}

#printing-section {
  padding-top: 150px;
  padding-bottom: 160px;
  position: relative;
}
#printing-section .col-md-6 {
  max-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 991.98px) {
  #printing-section .col-md-6 {
    border-radius: 0 10px 10px 0;
    max-height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#printing-section .col-md-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  #printing-section .col-md-5 {
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #printing-section .col-md-5 {
    padding-top: 30px;
  }
}
#printing-section .column-image {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  #printing-section .column-image {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 10px 10px 0;
  }
}
@media (max-width: 767.98px) {
  #printing-section .column-image {
    border-radius: 10px;
    position: relative;
  }
}
@media (max-width: 1320px) {
  #printing-section {
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  #printing-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #printing-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#printing-section:before {
  content: " ";
  display: block;
  width: 44px;
  height: 44px;
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.8;
  position: absolute;
  top: 22%;
  left: 17%;
  z-index: 3;
}
#printing-section:after {
  content: " ";
  display: block;
  width: 44px;
  height: 44px;
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.8;
  position: absolute;
  bottom: 1%;
  right: 20%;
}
#printing-section .round-block {
  bottom: -90px;
  left: -90px;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background: url("../images/backgrounds/dotted-circle.png") 50% 50% no-repeat;
  z-index: 9;
}
@media (max-width: 767.98px) {
  #printing-section .round-block {
    display: none;
  }
}

#why-section {
  padding-top: 85px;
  position: relative;
}
@media (max-width: 767.98px) {
  #why-section {
    padding-top: 80px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #why-section {
    padding-top: 80px;
  }
}
#why-section:after {
  content: " ";
  display: block;
  width: 69px;
  height: 69px;
  background: url("../images/icons/main/red-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  bottom: -8%;
  right: 34%;
}
@media (max-width: 767.98px) {
  #why-section:after {
    display: none;
  }
}

#about-section {
  font-size: 36px;
  line-height: 44px;
  color: #2c2c2c;
  padding-top: 177px;
  position: relative;
}
@media (max-width: 991.98px) {
  #about-section br {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #about-section {
    padding-top: 80px;
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 767.98px) {
  #about-section {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  #about-section {
    padding-top: 95px;
    font-size: 30px;
    line-height: 38px;
  }
}
#about-section:after {
  content: " ";
  display: block;
  width: 73px;
  height: 73px;
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.5;
  position: absolute;
  bottom: -20%;
  right: 20%;
}

.contact-section {
  background: #212121;
  color: #edede8;
}
.contact-section .block-header h2 {
  color: #ffffff;
}

.form {
  font-family: "Uniform 3", sans-serif;
  font-size: 16px;
  line-height: 30px;
  max-width: 880px;
  width: 100%;
}
.form .button {
  margin-top: 30px;
  margin-bottom: 44px;
}
.form .error {
  color: #ff0184;
}
@media (max-width: 767.98px) {
  .form {
    margin-top: 0;
  }
}

.form-group label sup {
  color: #ff0184;
}

input.form-control {
  height: 60px;
  font-size: 16px;
  border: none;
}
input.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

textarea.form-control {
  height: 230px;
  font-size: 16px;
  border: none;
}
textarea.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.copyright {
  font-size: 13px;
  font-family: "Uniform 3", sans-serif;
  color: #b4b4b4;
}
.copyright a {
  color: #b4b4b4;
}

.toggled-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 15px;
}
.toggled-item {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 28px;
  padding-left: 34px;
  border-radius: 10px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  background: #fd6b65;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd6b65),
    color-stop(80%, #ff0184)
  );
  background: linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  background: -moz-linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
}
.toggled-item.opened {
  background: #ffffff;
  box-shadow: 0px 0px 14px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 14px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px -4px rgba(0, 0, 0, 0.75);
}
.toggled-item.opened .toggled-title {
  color: #2d2d2d;
}
@media (max-width: 575.98px) {
  .toggled-item {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-right: 20px;
  }
}
.toggled-title {
  font-size: 26px;
  line-height: 1;
  font-family: "Uniform 4", sans-serif;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .toggled-title {
    font-size: 24px;
    line-height: 28px;
  }
}
.toggled-text {
  font-size: 18px;
  line-height: 26px;
  color: #2d2d2d;
  border-top: 1px solid #d5d5d5;
  margin-right: 72px;
  margin-top: 18px;
  padding-top: 18px;
}
@media (max-width: 767.98px) {
  .toggled-text {
    margin-right: 0;
  }
}
.toggled-button {
  cursor: pointer;
}
.toggled-button i.fa-chevron-right {
  /*@include gradientText();*/
  color: #ffffff;
}
.toggled-button i.fa-times {
  display: none;
}
.toggled-button.opened i.fa-times {
  display: block;
  color: #282828;
}
.toggled-button.opened i.fa-chevron-right {
  display: none;
}

.icons-set .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Uniform 4", sans-serif;
  margin-bottom: 30px;
}
.icons-set .icon-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.icons-set .icon-image i {
  font-size: 60px;
  background: #fd6b65;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd6b65),
    color-stop(80%, #ff0184)
  );
  background: linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  background: -moz-linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icons-set .icon-name {
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  color: #2d2d2d;
}
@media (max-width: 991.98px) {
  .icons-set {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
}
@media (max-width: 767.98px) {
  .icons-set {
    padding-top: 30px;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}

.process {
  overflow: hidden;
}
.process .block-header {
  margin-bottom: 76px;
}
@media (max-width: 767.98px) {
  .process .block-header {
    margin-bottom: 35px;
    text-align: left !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
}
.process .position-relative:after {
  content: " ";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 40px;
  background: #d0d0d0;
}
@media (max-width: 767.98px) {
  .process .position-relative:after {
    left: 52px;
  }
}
.process .button {
  position: relative;
  z-index: 2;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 55px 1fr;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 33px;
  column-gap: 33px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .process-row {
    grid-template-columns: 55px 1fr;
    margin-bottom: 60px;
    row-gap: 33px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .process-row .process-number {
    grid-area: 1/1/2/2;
  }
  .process-row .porcess-icons {
    grid-area: 2/2/3/3;
  }
}
.process-row .process-number {
  background: #212121;
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-family: "Uniform 4", sans-serif;
  color: #ffffff;
  border-radius: 50%;
}
.process-row .porcess-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.process-row .porcess-icons .process-icon {
  background: #f1f1f1;
  width: 85px;
  height: 85px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.process-row .porcess-icons .process-icon.active {
  background: #ffffff;
  box-shadow: 0px 0px 14px -2px rgba(61, 57, 57, 0.75);
  -webkit-box-shadow: 0px 0px 14px -2px rgba(61, 57, 57, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(61, 57, 57, 0.75);
}
@media (max-width: 575.98px) {
  .process-row .porcess-icons .process-icon {
    width: 80px;
    height: 80px;
  }
}
.process-row .porcess-icons.align-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .process-row .porcess-icons.align-right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.process-row .process-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.process-row .process-description.align-right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.process-row .process-description.align-right .process-name {
  text-align: right;
}
@media (max-width: 1199.98px) {
  .process-row .process-description.align-right .process-name br {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .process-row .process-description.align-right .process-name {
    text-align: left;
  }
}
.process-row .process-description.align-right .process-tieser {
  text-align: right;
}
@media (max-width: 1199.98px) {
  .process-row .process-description.align-right .process-tieser br {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .process-row .process-description.align-right .process-tieser {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .process-row .process-description.align-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.process-row .process-name {
  font-size: 24px;
  line-height: 24px;
  font-family: "Uniform 4", sans-serif;
}
@media (max-width: 767.98px) {
  .process-row .process-name {
    text-align: left;
  }
}
.process-row .process-tieser {
  font-size: 18px;
  line-height: 26px;
  padding-top: 8px;
}
@media (max-width: 767.98px) {
  .process-row .process-tieser {
    text-align: left;
  }
  .process-row .process-tieser br {
    display: none;
  }
}

.process-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .process-link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

/*columned content styles start */
.columned-content {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #2d2d2d;
}
.columned-content .container {
  position: relative;
}
.columned-content .block-header {
  margin-bottom: 17px;
}
@media (max-width: 767.98px) {
  .columned-content .block-header {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .columned-content .block-header * {
    text-align: center;
  }
}
.columned-content p {
  margin-bottom: 17px;
}
@media (max-width: 767.98px) {
  .columned-content .block-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .columned-content .block-text * {
    text-align: center;
  }
}

img.column-image {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/*columned content styles end */
.gallery-carousel .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 140px;
}
@media (max-width: 991.98px) {
  .gallery-carousel .slick-track {
    gap: 50px;
  }
}
.gallery-carousel .slick-slide img {
  max-height: 300px;
}
@media (max-width: 991.98px) {
  .gallery-carousel .slick-slide img {
    max-width: 270px;
  }
}

.icons-grid .icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 33px;
  grid-auto-rows: 220px;
}
@media (max-width: 991.98px) {
  .icons-grid .icons {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
  }
}
@media (max-width: 767.98px) {
  .icons-grid .icons {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .icons-grid .icons {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-gap: 15px;
  }
}
.icons-grid .icons .icon {
  background: #ffffff;
  box-shadow: 0px 0px 14px -2px rgba(61, 57, 57, 0.75);
  -webkit-box-shadow: 0px 0px 14px -2px rgba(61, 57, 57, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(61, 57, 57, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.icons-grid .icons .icon .icon-image {
  height: 54%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.icons-grid .icons .icon .icon-image img {
  margin-top: auto;
}
@media (max-width: 575.98px) {
  .icons-grid .icons .icon .icon-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (max-width: 575.98px) {
  .icons-grid .icons .icon .icon-image {
    height: auto;
    display: block;
    width: 60px;
    margin-right: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.icons-grid .icons .icon .icon-name {
  font-family: "Uniform 4", sans-serif;
  font-size: 20px;
  line-height: 24px;
  padding-top: 20px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .icons-grid .icons .icon .icon-name {
    padding-top: 0;
    text-align: left;
  }
  .icons-grid .icons .icon .icon-name br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .icons-grid .icons .icon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 26px;
  }
}

.navbar-line {
  background: #fd6b65;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd6b65),
    color-stop(80%, #ff0184)
  );
  background: linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  background: -moz-linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  height: 5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar {
  top: 5px;
  padding-top: 56px;
  padding-bottom: 30px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.navbar > .container {
  position: relative;
}
.navbar > .container:before {
  content: " ";
  display: block;
  width: 134px;
  height: 134px;
  position: absolute;
  top: -25px;
  left: -25px;
  background: url("../images/backgrounds/nav-circle.png") 50% 50% no-repeat;
}
@media (max-width: 991.98px) {
  .navbar > .container:before {
    left: 8px;
  }
}
@media (max-width: 767.98px) {
  .navbar > .container:before {
    display: none;
  }
}
.navbar .navbar-brand img {
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .navbar .navbar-brand img {
    height: 60px;
  }
}
.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-shadow: 0px 0px 49px -17px #212121;
  box-shadow: 0px 0px 49px -17px #212121;
  overflow: hidden;
  background: url("../images/backgrounds/scroll.png") 0 0 no-repeat;
  background-size: cover;
}
.navbar.scrolled .container:before {
  display: none;
}
@media (max-width: 767.98px) {
  .navbar {
    padding-top: 25px;
    padding-bottom: 25px;
    overflow: hidden;
  }
}

.navbar-toggler {
  font-size: 18px;
  line-height: 1;
  font-family: "Uniform 4", sans-serif;
  background: #212121;
  color: #ffffff;
  border: none;
  padding: 19px 24px 16px 28px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.navbar-toggler .lines {
  margin-left: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px;
}
.navbar-toggler .lines:before {
  content: " ";
  display: block;
  width: 21px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.navbar-toggler .lines:after {
  content: " ";
  display: block;
  width: 15px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (max-width: 767.98px) {
  .navbar-toggler .lines {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .navbar-toggler span {
    display: none;
  }
}
.navbar-toggler:focus {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar-toggler.opened {
  z-index: 10;
  background: none !important;
  position: fixed;
  top: 45px;
  right: 45px;
}
@media (max-width: 767.98px) {
  .navbar-toggler.opened {
    top: 20px;
    right: 10px;
  }
}
.navbar-toggler.opened span {
  display: none;
}
.navbar-toggler.opened .lines {
  margin: 0;
}
.navbar-toggler.opened .lines:before {
  width: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #ffffff !important;
}
.navbar-toggler.opened .lines:after {
  width: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #ffffff !important;
}
@media (max-width: 767.98px) {
  .navbar-toggler {
    padding: 24px 20px 21px 20px;
  }
}

.main-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  max-width: 817px;
  height: 100%;
  padding-left: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fd6b65;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fd6b65),
    color-stop(80%, #ff0184)
  );
  background: linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  background: -moz-linear-gradient(90deg, #fd6b65 0%, #ff0184 80%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (max-width: 767.98px) {
  .main-menu {
    padding-left: 67px;
  }
}
.main-menu.opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.main-menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767.98px) {
  .main-menu ul {
    gap: 30px;
  }
}
.main-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
  font-family: "Uniform 3", sans-serif;
}
@media (max-width: 767.98px) {
  .main-menu ul li a {
    font-size: 24px;
  }
}
.main-menu:before {
  content: " ";
  display: block;
  width: 45px;
  height: 45px;
  background: url("../images/icons/main/white-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 78px;
  left: 70px;
}
@media (max-width: 767.98px) {
  .main-menu:before {
    top: 64px;
    left: -5px;
  }
}
.main-menu:after {
  content: " ";
  display: block;
  width: 73px;
  height: 73px;
  background: url("../images/icons/main/white-cross.png") 50% 50% no-repeat;
  background-size: cover;
  opacity: 0.7;
  position: absolute;
  bottom: -9px;
  right: 185px;
}
@media (max-width: 767.98px) {
  .main-menu:after {
    bottom: -9px;
    right: 93px;
  }
}
.main-menu .menu-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  max-width: 609px;
  height: 100%;
  background: url("../images/backgrounds/menu.png") 0 0 no-repeat;
  background-size: cover;
}

/* main-banner styles start */
.main-banner {
  height: 100%;
  color: #ffffff;
  background: url("../images/backgrounds/main-banner.jpg") 0 0 no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 88px;
  position: relative;
}
.main-banner > .container {
  z-index: 9;
  position: relative;
}
@media (max-width: 767.98px) {
  .main-banner > .container {
    position: static;
  }
}
.main-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.main-banner:after {
  content: "";
  position: absolute;
  width: 824px;
  height: 824px;
  left: 20%;
  bottom: -230px;
  background: url("../images/backgrounds/ball.png") 50% 50% no-repeat;
}
@media (max-width: 1199.98px) {
  .main-banner:after {
    left: 10%;
  }
}
@media (max-width: 991.98px) {
  .main-banner:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 825px) {
  .main-banner:after {
    width: 100%;
    background: url("../images/backgrounds/ball.png") 50% 50% no-repeat;
    background-size: cover;
  }
}
.main-banner .banner-text {
  font-size: 24px;
  line-height: 32px;
  font-weight: normal;
  margin-bottom: 24px;
  font-family: "Uniform 3", sans-serif;
}
@media (max-width: 767.98px) {
  .main-banner .banner-text {
    display: none;
  }
}
.main-banner .banner-title {
  font-size: 80px;
  line-height: 80px;
  font-family: "Uniform 2", sans-serif;
  margin: 0;
}
@media (max-width: 575.98px) {
  .main-banner .banner-title {
    font-size: 55px;
    line-height: 55px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .main-banner .banner-title {
    font-size: 60px;
    line-height: 60px;
  }
}
.main-banner .banner-subtitle {
  font-family: "Uniform 4", sans-serif;
  font-size: 80px;
  line-height: 80px;
}
@media (max-width: 767.98px) {
  .main-banner .banner-subtitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .main-banner .banner-subtitle {
    font-size: 55px;
    line-height: 55px;
  }
}
@media (min-width: 992px) and (max-height: 567px) {
  .main-banner .banner-subtitle {
    font-size: 60px;
    line-height: 60px;
  }
}
.main-banner .banner-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.main-banner .banner-image {
  position: absolute;
  right: 55px;
  bottom: -135px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .main-banner .banner-image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
  }
}
.main-banner .banner-image img {
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .main-banner .banner-image img {
    max-width: 545px;
  }
}
@media (max-width: 767.98px) {
  .main-banner .banner-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    border-radius: 0;
  }
}
.main-banner .banner-image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(-100%, #000000),
    color-stop(65%, transparent)
  );
  background: linear-gradient(90deg, #000000 -100%, transparent 65%);
  background: -moz-linear-gradient(0deg, #000000 -100%, transparent 65%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767.98px) {
  .main-banner .banner-image:before {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(-100%, #000000),
      color-stop(165%, transparent)
    );
    background: linear-gradient(90deg, #000000 -100%, transparent 165%);
    background: -moz-linear-gradient(0deg, #000000 -100%, transparent 165%);
    border-radius: 0;
  }
}
.main-banner .banner-icons {
  position: absolute;
  top: 195px;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 102px) 12px;
  grid-template-rows: 102px 102px;
  grid-gap: 12px;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .main-banner .banner-icons {
    right: -110px;
  }
}
@media (max-width: 767.98px) {
  .main-banner .banner-icons {
    right: 0px;
    top: 115px;
  }
}
@media (max-width: 575.98px) {
  .main-banner .banner-icons {
    grid-template-columns: repeat(3, 68px) 12px;
    grid-template-rows: 68px 68px;
    grid-gap: 9px;
  }
}
.main-banner .banner-icons .banner-icon {
  width: 102px;
  height: 102px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .main-banner .banner-icons .banner-icon {
    width: 68px;
    height: 68px;
  }
  .main-banner .banner-icons .banner-icon img {
    width: 50%;
  }
}
.main-banner .banner-icons .banner-icon:nth-child(4) {
  grid-area: 2/2/2/3;
}
.main-banner .banner-icons .banner-icon:nth-child(5) {
  grid-area: 2/3/2/4;
}
.main-banner .banner-icons .banner-icon:nth-child(6) {
  grid-area: 2/4/2/5;
  width: 12px;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.main-banner .scroll-info {
  position: absolute;
  top: calc(100% - 75px);
  left: 100%;
  width: 155px;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 9;
  padding-top: 15px;
}
@media (max-width: 991.98px) {
  .main-banner .scroll-info {
    padding-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .main-banner .scroll-info {
    display: none;
  }
}
.main-banner .star {
  position: absolute;
}
.main-banner .star.yellow {
  background: url("../images/icons/main/yellow-cross.png") 50% 50% no-repeat;
  background-size: cover;
  width: 45px;
  height: 45px;
  top: 50%;
  left: 10%;
}
@media (max-width: 767.98px) {
  .main-banner .star.yellow {
    z-index: 9;
    top: 30%;
    left: -10px;
  }
}
.main-banner .star.red {
  background: url("../images/icons/main/red-cross.png") 50% 50% no-repeat;
  background-size: cover;
  width: 72px;
  height: 72px;
  top: 110px;
  right: 28%;
  z-index: 11;
}
@media (max-width: 767.98px) {
  .main-banner .star.red {
    top: -10px;
  }
}
.main-banner .star.white {
  background: url("../images/icons/main/white-cross.png") 50% 50% no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  bottom: 37px;
  right: 49.3%;
  z-index: 11;
}
@media (max-width: 767.98px) {
  .main-banner .star.white {
    right: 30px;
  }
}

/* main-banner styles end  */
/* root styles start */
html {
  overflow-x: hidden;
}

html,
body {
  font-family: "Uniform 3", sans-serif;
  font-size: 10px;
  color: #2d2d2d;
  scroll-behavior: smooth;
  position: absolute;
  width: 100%;
  height: 100%;
}

.container {
  --bs-gutter-x: 30px;
}
@media (max-width: 1320px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container {
    --bs-gutter-x: 100px;
  }
}
@media (max-width: 767.98px) {
  .container {
    --bs-gutter-x: 50px;
  }
}

.row {
  --bs-gutter-x: 30px;
}
@media (max-width: 991.98px) {
  .row {
    --bs-gutter-x: 100px;
  }
}
@media (max-width: 767.98px) {
  .row {
    --bs-gutter-x: 50px;
  }
}
.row > * {
  --bs-gutter-x: 30px;
}
@media (max-width: 991.98px) {
  .row > * {
    --bs-gutter-x: 100px;
  }
}
@media (max-width: 767.98px) {
  .row > * {
    --bs-gutter-x: 50px;
  }
}

/* root styles end */
