/*#region Flex */
/*#endregion */
/*#region Animated */
/*#region Transition */
/*#endregion *


/*#endregion */
/*#region Fonts */
/*#endregion */
/*#region Main */
/*#endregion */
/*#region Colors */
/*#endregion */
/*#region Button Colors */
/*#endregion */
/*#region Flex */
/*#endregion */
/*#region Animated */
/*#region Transition */
/*#endregion *


/*#endregion */
/*#region Fonts */
/*#endregion */
/*#region Main */
/*#endregion */
/*#region Colors */
/*#endregion */
/*#region Button Colors */
/*#endregion */
body:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(12, 12, 14, 0.2);
  -webkit-transition: all 0.1s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  -moz-transition: all 0.1s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  z-index: 3;
  visibility: hidden;
}

body.visible {
  overflow: hidden;
}

body.visible:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  -moz-transition: all 1s cubic-bezier(0.1, 0.1, 0.25, 0.9);
}

body.modal-visible {
  overflow: hidden;
}

body.modal-visible:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s cubic-bezier(0.1, 0.1, 0.25, 0.9);
  -moz-transition: all 1s cubic-bezier(0.1, 0.1, 0.25, 0.9);
}

/*#region Form */
form {
  width: 70vw;
  padding: 5vw;
  background: #fff;
  border-radius: .5vw;
  margin-top: 10rem;
}

@media only screen and (max-width: 1024px) {
  form {
    padding: 2rem;
    width: 90%;
    margin-top: 2rem;
  }
}

form .form-item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  margin-bottom: 6rem;
}

@media only screen and (max-width: 1024px) {
  form .form-item {
    margin-bottom: 2rem;
  }
}

form label {
  font-size: 2.4rem;
  color: #0C0C0E;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1024px) {
  form label {
    font-size: 1.6rem;
  }
}

form .textbox input, form .textbox textarea {
  width: 100%;
  height: 7rem;
  padding: 0;
  font-size: 1.5rem;
  color: #0C0C0E;
  border-bottom: solid #ddd 0.1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 2.4rem;
}

@media only screen and (max-width: 1024px) {
  form .textbox input, form .textbox textarea {
    font-size: 1.6rem;
    height: 5rem;
  }
}

form .textbox input:focus, form .textbox textarea:focus {
  background: #fff;
  border-bottom: solid rgba(12, 12, 14, 0.4) 0.1rem;
}

form .textbox input::-webkit-input-placeholder, form .textbox textarea::-webkit-input-placeholder {
  /* Edge */
  color: #9D9DA4;
}

form .textbox input:-ms-input-placeholder, form .textbox textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9D9DA4;
}

form .textbox input::-ms-input-placeholder, form .textbox textarea::-ms-input-placeholder {
  color: #9D9DA4;
}

form .textbox input::placeholder, form .textbox textarea::placeholder {
  color: #9D9DA4;
}

form .textbox textarea {
  font-family: "fonts/Maison Neue", sans-serif;
  resize: none;
  padding: 1rem 0;
  overflow: hidden;
  min-height: 10rem;
  max-height: 15rem;
}

/*#endregion */
/*#region Selectric */
.selectbox {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.selectbox .selectric {
  background: none;
  border-radius: .5rem;
  border: solid #ddd 0.1rem;
  border-radius: 0.5rem;
}

.selectbox .selectric .label {
  height: 5.3rem;
  line-height: 5.5rem;
  font-size: 1.6rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.selectbox .selectric .button {
  height: 5.5rem;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.selectbox .selectric .button:after {
  display: none;
}

.selectbox .selectric .button:before {
  content: '';
  background: url("../images/icons/components/icon-arrow.svg") no-repeat center center;
  width: 7rem;
  height: 5rem;
  position: absolute;
}

.selectbox .selectric-open .selectric .button:before {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.selectbox .selectric-items {
  background: #fff;
  border: none;
}

.selectbox .selectric-items ul li {
  line-height: 3.5rem;
  font-size: 1.5rem;
}

.selectbox .selectric-items ul li.selected, .selectbox .selectric-items ul li.highlighted {
  color: #fff;
  background: #381CFF;
}

/*#endregion */
/*#region Checkbox */
.checkbox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
}

@media only screen and (max-width: 1024px) {
  .checkbox {
    height: auto;
    padding-bottom: 2rem;
  }
}

.checkbox .link {
  text-align: left;
  font-size: 1.5rem;
}

.checkbox .link a {
  color: #381CFF;
  text-decoration: underline;
  cursor: pointer;
}

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
  position: relative;
}

.checkbox input:checked + :after {
  content: '';
  background: url(../images/icons/components/check.svg) no-repeat center center;
  background-size: 2.2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 100%;
  text-align: center;
}

.checkbox input:checked + :before {
  background: #381CFF;
}

.checkbox input:checked + label {
  color: #0C0C0E;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  color: #90989F;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .checkbox label {
    font-size: 1.6rem;
  }
}

.checkbox label:before {
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 2.5rem;
      flex-basis: 2.5rem;
  content: '';
  -webkit-appearance: none;
  background: #DDE4E6;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 1rem;
  border-radius: .5rem;
}

/*#endregion */
/*#region Checkbox - Radio Button Text */
.checkbox-radio {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkbox-radio input[type="radio"], .checkbox-radio input[type="checkbox"] {
  opacity: 0;
  display: none;
  margin: 0;
}

.checkbox-radio input[type="radio"] + label, .checkbox-radio input[type="checkbox"] + label {
  cursor: pointer;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 0 2rem;
  color: #0C0C0E;
  border: solid #ddd 0.1rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
}

.checkbox-radio input[type="radio"]:checked + label, .checkbox-radio input[type="checkbox"]:checked + label {
  background: #381CFF;
  border: solid #ddd 0.1rem;
  color: #fff;
}

/*#endregion */
/*#region Radio Button */
.radio-button {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5rem;
}

.radio-button label {
  margin: 0 2rem 0 0;
}

.radio-button [type="radio"]:checked, .radio-button [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-button [type="radio"]:checked + label, .radio-button [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 3.2rem;
  cursor: pointer;
  line-height: 2.4rem;
  display: inline-block;
  color: #0C0C0E;
}

.radio-button [type="radio"]:checked + label:before, .radio-button [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border: solid #ddd 0.1rem;
  border-radius: 100%;
  background: #fff;
}

.radio-button [type="radio"]:checked + label:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: #381CFF;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
}

.radio-button [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #381CFF;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  opacity: 0;
}

.radio-button [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*#endregion */
/*#region Date Picker */
.date-picker {
  position: relative;
}

.date-picker:before {
  content: '';
  width: 5rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/icons/components/icon-calendar.svg) no-repeat center center;
  background-size: 2.5rem;
  opacity: .5;
}

.date-picker input {
  cursor: pointer;
}

#ui-datepicker-div {
  display: none;
  background: #fff;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #78909C;
}

.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 3rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #0C0C0E;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0 .8rem;
  margin: .2rem;
}

.ui-datepicker-calendar tbody td a:hover {
  background: rgba(56, 28, 255, 0.2);
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background: #381CFF;
  color: #fff;
  border-radius: 0.5rem;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
  background: #ECEFF1;
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: 50%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: 50%;
}

.ui-datepicker-header a > span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: #78909C;
  font-weight: 400;
  font-size: 0.75rem;
}

/*#endregion */
/*#region Breadcrumb */
.breadcrumb {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 1.5rem;
  color: #0C0C0E;
  line-height: 5rem;
  padding: 0 1.5rem;
}

.breadcrumb li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb li:after {
  content: '/';
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  width: 4rem;
  color: rgba(12, 12, 14, 0.2);
}

.breadcrumb li a {
  font-size: 1.5rem;
  color: #381CFF;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb li svg {
  width: 1.7rem;
  fill: #381CFF;
}

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

.breadcrumb.solid svg, .breadcrumb.dark svg {
  width: 1.7rem;
  fill: #fff;
}

.breadcrumb.solid {
  background: #381CFF;
  color: #fff;
  border-radius: 0.5rem;
}

.breadcrumb.solid li:after {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb.solid li a {
  color: #fff;
}

.breadcrumb.dark {
  background: #0C0C0E;
  color: #fff;
  border-radius: 0.5rem;
}

.breadcrumb.dark li:after {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb.dark li a {
  color: #fff;
}

.breadcrumb.icon li:after {
  content: '>';
}

/*#endregion */
/*#region Pagination */
.pagination {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.pagination button {
  min-width: 4rem;
  height: 4rem;
  cursor: pointer;
  background: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  color: #0C0C0E;
  font-size: 1.4rem;
}

.pagination button span {
  padding: 0 1.5rem;
  font-size: 1.4rem;
}

.pagination button:hover {
  color: #381CFF;
}

.pagination button:hover svg {
  fill: #381CFF;
}

.pagination svg {
  width: .6rem;
  fill: #0C0C0E;
}

.pagination .radius {
  border-radius: 100% !important;
}

.pagination.solid button.active {
  background: #1d00e8;
}

.pagination.border button.active, .pagination.light button.active {
  background: #381CFF;
  color: #fff;
  border: solid #381CFF 0.1rem;
  border-radius: 0.5rem;
}

.pagination.border button.active {
  border-radius: 0;
}

.pagination.border {
  border: solid #ddd 0.1rem;
}

.pagination.border button {
  border-right: solid #ddd 0.1rem;
}

.pagination.border button:last-child {
  border: none;
}

.pagination.solid {
  background: #381CFF;
  border-radius: 0.5rem;
}

.pagination.solid button {
  border-right: solid #ddd 0.1rem;
  color: #fff;
}

.pagination.solid button:hover {
  background: #1d00e8;
  color: #fff;
}

.pagination.solid button:hover svg {
  fill: #fff;
}

.pagination.solid button:last-child {
  border: none;
}

.pagination.solid button.active {
  color: #fff;
  border-right: solid #ddd 0.1rem;
  border-radius: 0;
}

.pagination.solid button svg {
  fill: #fff;
}

.pagination.dark {
  background: #535360;
  border-radius: 0.5rem;
}

.pagination.dark button {
  border-right: solid #ddd 0.1rem;
  color: #fff;
}

.pagination.dark button:hover {
  background: #0C0C0E;
  color: #fff;
}

.pagination.dark button:hover svg {
  fill: #fff;
}

.pagination.dark button:last-child {
  border: none;
}

.pagination.dark button.active {
  color: #fff;
  background: #0C0C0E;
}

.pagination.dark button svg {
  fill: #fff;
}

/*#endregion */
/*#region Modal */
.modalbox-content {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 40rem;
  background: #D4D7DE;
  border-radius: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.modal-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 10;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  visibility: hidden;
}

.modal-box.visible {
  visibility: visible;
}

.modal, .modal-demo {
  max-width: 60rem;
  width: 100%;
  background: #fff;
  border-radius: 0.5rem;
}

.modal .modal-head, .modal-demo .modal-head {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 0 0 1.5rem;
}

.modal .modal-head .title, .modal-demo .modal-head .title {
  font-size: 2rem;
  color: #0C0C0E;
}

.modal .modal-head .close-modalbox, .modal-demo .modal-head .close-modalbox {
  width: 6rem;
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.modal .modal-head .close-modalbox img, .modal-demo .modal-head .close-modalbox img {
  width: 1.2rem;
}

.modal .modal-content, .modal-demo .modal-content {
  padding: 1.5rem;
}

.modal .modal-content p, .modal-demo .modal-content p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #0C0C0E;
}

.modal .open-modalbox, .modal-demo .open-modalbox {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #381CFF;
  font-weight: 500;
  margin-top: 1rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.modal .modal-buttons, .modal-demo .modal-buttons {
  width: 100%;
  padding: 2rem 1.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.modal .modal-buttons button, .modal-demo .modal-buttons button {
  margin-left: 1rem;
}

/*#endregion */
.start-banner {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.start-banner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: .8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 20%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.start-banner.services {
  position: relative;
}

.start-banner.services .banner {
  background: url("../../images/pages/services/services-banner.jpg") no-repeat fixed 50% 0;
}

.start-banner.technology {
  position: relative;
}

.start-banner.technology .banner {
  background: url("../../images/pages/technology/technologies-banner.jpg") no-repeat fixed 50% 0;
}

.start-banner.about-us {
  position: relative;
}

.start-banner.about-us .banner {
  background: url("../../images/pages/about-us/about-banner.jpg") no-repeat fixed 50% 0;
}

.start-banner.partners {
  position: relative;
}

.start-banner.partners .banner {
  background: url("../../images/pages/partners/partners-banner.jpg") no-repeat fixed 50% 0;
}

.start-banner.susbansibility {
  position: relative;
}

.start-banner.susbansibility .banner {
  background: url("../../images/pages/susbansibility/sustainability-banner.jpg") no-repeat fixed 50% 0;
}

.start-banner .banner {
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  background-size: cover;
  color: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-name: image-scale;
          animation-name: image-scale;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.start-banner .banner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 20%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 0;
}

.start-banner .banner.image-zoom-scale {
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.start-banner .banner.image-zoom-scale .caption {
  opacity: 0;
  visibility: 0;
}

.start-banner .banner.image-zoom-scale:before {
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: .8;
}

@-webkit-keyframes image-scale {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes image-scale {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.start-banner .caption {
  color: #fff;
  z-index: 1;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5vw 0 2vw 5vw;
}

@media only screen and (max-width: 1024px) {
  .start-banner .caption {
    padding: 0 1.2rem 2rem;
  }
}

.start-banner .caption .info {
  margin-top: 2rem;
}

.start-banner .caption span {
  font-size: 6vw;
  line-height: 6vw;
  font-weight: 600;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1600px) {
  .start-banner .caption span {
    font-size: 10rem;
    line-height: 10rem;
  }
}

@media only screen and (max-width: 1024px) {
  .start-banner .caption span {
    font-size: 5rem;
    line-height: 5rem;
    margin: 0;
  }
}

.start-banner .caption small {
  font-size: 1.2vw;
}

@media only screen and (max-width: 1600px) {
  .start-banner .caption small {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 1024px) {
  .start-banner .caption small {
    font-size: 1.8rem;
  }
}

.content .services .item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content .services .items, .content .about .items {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .content .services .items, .content .about .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content .services .items .icon, .content .about .items .icon {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .icon, .content .about .items .icon {
    padding: 4rem 0;
  }
}

.content .services .items .icon img, .content .about .items .icon img {
  max-width: 70%;
  height: auto;
}

.content .services .items .reveal, .content .about .items .reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.content .services .items .reveal img, .content .about .items .reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content .services .items:nth-child(odd), .content .about .items:nth-child(odd) {
  background: #0C0C0E;
}

.content .services .items:nth-child(even), .content .about .items:nth-child(even) {
  background: #141416;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 1024px) {
  .content .services .items:nth-child(even), .content .about .items:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content .services .items:nth-child(even) .item:nth-child(odd), .content .about .items:nth-child(even) .item:nth-child(odd) {
  width: 40%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1024px) {
  .content .services .items:nth-child(even) .item:nth-child(odd), .content .about .items:nth-child(even) .item:nth-child(odd) {
    width: 100%;
  }
}

.content .services .items:nth-child(even) .item:nth-child(even), .content .about .items:nth-child(even) .item:nth-child(even) {
  width: 60%;
  padding: 5vw;
}

@media only screen and (max-width: 1024px) {
  .content .services .items:nth-child(even) .item:nth-child(even), .content .about .items:nth-child(even) .item:nth-child(even) {
    width: 100%;
  }
}

.content .services .items .item, .content .about .items .item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

.content .services .items .item:nth-child(odd), .content .about .items .item:nth-child(odd) {
  width: 40%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .item:nth-child(odd), .content .about .items .item:nth-child(odd) {
    width: 100%;
  }
}

.content .services .items .item:nth-child(even), .content .about .items .item:nth-child(even) {
  width: 60%;
  padding: 5vw;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .item:nth-child(even), .content .about .items .item:nth-child(even) {
    width: 100%;
    padding: 2rem 2rem 5rem !important;
  }
}

.content .services .items .item .title, .content .about .items .item .title {
  font-size: 6vw;
  line-height: 6vw;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .item .title, .content .about .items .item .title {
    font-size: 4rem;
    line-height: 4.4rem;
  }
}

.content .services .items .item p, .content .about .items .item p {
  font-size: 2.2vw;
  margin: 10rem 0;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .item p, .content .about .items .item p {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    margin: 2rem 0;
  }
}

.content .services .items .item ol, .content .about .items .item ol {
  padding-left: 2.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2vw 0;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .item ol, .content .about .items .item ol {
    margin: 3rem 0 1rem;
  }
}

.content .services .items .item ol li, .content .about .items .item ol li {
  font-size: 1.2vw;
  line-height: 2vw;
  list-style: circle;
}

@media only screen and (max-width: 1024px) {
  .content .services .items .item ol li, .content .about .items .item ol li {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

.content .about .caption {
  padding: 2vw 5vw;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1024px) {
  .content .about .caption {
    padding: 2.8rem;
  }
}

.content .about .caption span {
  font-size: 2.1vw;
  margin-bottom: 5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1600px) {
  .content .about .caption span {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

.content .about .caption p {
  font-size: 1.6vw;
}

@media only screen and (max-width: 1600px) {
  .content .about .caption p {
    font-size: 2.4rem;
  }
}

.content .about .info {
  padding: 5vw 0;
}

.content .about .info .caption {
  color: #0C0C0E;
}

.content .about .features {
  width: 100%;
  height: 100vh;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../../images/pages/about-us/about-features.jpg") center no-repeat;
  background-size: cover;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .content .about .features {
    height: auto;
  }
}

.content .about .features:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: .8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 20%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.content .about .features .caption {
  color: #fff;
}

.content .about .features .caption i {
  width: 3vw;
  height: 3vw;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  margin-bottom: 2rem;
}

.content .about .team {
  padding: 3vw;
}

@media only screen and (max-width: 1024px) {
  .content .about .team {
    padding: 2.8rem;
  }
}

.content .about .team .head {
  font-size: 6vw;
  line-height: 6vw;
  color: #0C0C0E;
  font-weight: 500;
  margin: 6vw 0;
}

.content .about .team .person {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1vw;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.content .about .team .person:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
}

.content .about .team .person .image {
  overflow: hidden;
}

.content .about .team .person .image img {
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
}

.content .about .team .person figcaption {
  margin-top: 4rem;
  color: #0C0C0E;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content .about .team .person figcaption .name {
  font-size: 1.5vw;
}

@media only screen and (max-width: 1024px) {
  .content .about .team .person figcaption .name {
    font-size: 1.8rem;
  }
}

.content .about .team .person figcaption .title {
  font-size: 1.3vw;
}

@media only screen and (max-width: 1024px) {
  .content .about .team .person figcaption .title {
    font-size: 2.2rem;
  }
}

.content .partners .items, .content .sustainability .items {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .content .partners .items, .content .sustainability .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content .partners .items .icon, .content .sustainability .items .icon {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  justify-content: center;
}

.content .partners .items .icon img, .content .sustainability .items .icon img {
  max-width: 70%;
  height: auto;
}

.content .partners .items:nth-child(even), .content .sustainability .items:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 1024px) {
  .content .partners .items:nth-child(even), .content .sustainability .items:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content .partners .items:nth-child(even) .item:nth-child(odd), .content .sustainability .items:nth-child(even) .item:nth-child(odd) {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content .partners .items:nth-child(even) .item:nth-child(even), .content .sustainability .items:nth-child(even) .item:nth-child(even) {
  padding: 5vw;
}

.content .partners .items .item, .content .sustainability .items .item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0C0C0E;
  width: 50%;
  padding: 5vw;
}

@media only screen and (max-width: 1024px) {
  .content .partners .items .item, .content .sustainability .items .item {
    width: 100%;
    padding: 2rem;
  }
}

.content .partners .items .item .caption, .content .sustainability .items .item .caption {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.content .partners .items .item span, .content .sustainability .items .item span {
  font-size: 5vw;
  line-height: 5vw;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 1024px) {
  .content .partners .items .item span, .content .sustainability .items .item span {
    font-size: 5rem;
  }
}

.content .partners .items .item p, .content .sustainability .items .item p {
  font-size: 1.6vw;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 1024px) {
  .content .partners .items .item p, .content .sustainability .items .item p {
    font-size: 2rem;
  }
}

.content .sustainability .logo {
  width: 5vw;
  height: auto;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 1024px) {
  .content .sustainability .logo {
    width: 10rem;
  }
}

.content .sustainability ol {
  padding-left: 2.5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2vw 0;
}

@media only screen and (max-width: 1024px) {
  .content .sustainability ol {
    margin: 3rem 0 1rem;
  }
}

.content .sustainability ol li {
  font-size: 1.2vw;
  line-height: 2vw;
  list-style: decimal;
}

@media only screen and (max-width: 1024px) {
  .content .sustainability ol li {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

.drag-slider {
  width: 100%;
  background: #0C0C0E;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drag-slider .head {
  font-size: 6vw;
  line-height: 6vw;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin: 6vw 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 1024px) {
  .drag-slider .head {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
}

.drag-slider .head small {
  font-size: 1.8vw;
  line-height: 2.4vw;
  color: #6D6D6E;
  margin-top: 5rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .drag-slider .head small {
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 0 2rem;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.drag-slider .swiper-pagination-fraction {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  /* justify-content: end;
        padding-right: 5rem;*/
}

.drag-slider .swiper-pagination-fraction span {
  padding: 0 .5rem;
}

.drag-slider .carousel-brand {
  padding: 0 10rem 7rem 5rem;
}

.drag-slider .swiper-wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.drag-slider .swiper-wrapper .swiper-container {
  position: relative;
}

.drag-slider .swiper-wrapper .swiper-slide {
  background: #141416;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.5rem;
  height: auto;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drag-slider .swiper-wrapper .swiper-slide:before {
  content: '';
  float: left;
  padding-top: 100%;
}

.drag-slider .swiper-wrapper .swiper-slide .caption {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drag-slider .swiper-wrapper .swiper-slide i {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drag-slider .swiper-wrapper .swiper-slide i img {
  max-width: 15rem;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
  .drag-slider .swiper-wrapper .swiper-slide i img {
    max-width: 5rem;
  }
}

.meet-normie {
  width: 100%;
  height: 80vh;
  background: white;
  background: -webkit-gradient(linear, right top, left top, from(white), color-stop(11%, #fde4cf), color-stop(22%, #f7d7d4), color-stop(44%, #efc1db), color-stop(60%, #e8b0df), color-stop(79%, #bf9dd8), to(#7484c6));
  background: linear-gradient(-90deg, white 0%, #fde4cf 11%, #f7d7d4 22%, #efc1db 44%, #e8b0df 60%, #bf9dd8 79%, #7484c6 100%);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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 only screen and (max-width: 1024px) {
  .meet-normie {
    height: 50vh;
  }
}

.meet-normie .caption {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.meet-normie .caption .small {
  font-size: 4vw;
}

@media only screen and (max-width: 1024px) {
  .meet-normie .caption .small {
    font-size: 4rem;
  }
}

.meet-normie .caption .large {
  font-size: 10vw;
}

@media only screen and (max-width: 1024px) {
  .meet-normie .caption .large {
    font-size: 7rem;
  }
}

.meet-normie .caption small {
  font-size: 1.2vw;
}

@media only screen and (max-width: 1024px) {
  .meet-normie .caption small {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.meet-normie .button {
  margin-top: 1vw;
}

.contact-content {
  margin: 27rem 10rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

@media only screen and (max-width: 1024px) {
  .contact-content {
    margin: 15rem 0 5rem;
  }
}

.contact-content .head {
  text-align: center;
}

.contact-content .head span {
  font-size: 6vw;
  font-weight: 600;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 1024px) {
  .contact-content .head span {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

.contact-content .head small {
  font-size: 1.2vw;
  line-height: 1.6vw;
  margin-top: 5rem;
}

@media only screen and (max-width: 1024px) {
  .contact-content .head small {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 0 4rem;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem;
  }
}

.contact-content .bottom {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
  .contact-content .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company-info {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}

@media only screen and (max-width: 1024px) {
  .company-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.company-info .map {
  width: 35vw;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .company-info .map {
    width: 100%;
    height: 30vh;
  }
}

.company-info .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.company-info .address {
  width: 65vw;
  padding: 5vw;
}

@media only screen and (max-width: 1024px) {
  .company-info .address {
    width: 100%;
  }
}

.company-info .address h2 {
  font-size: 5vw;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .company-info .address h2 {
    font-size: 3rem;
  }
}

.company-info .address span {
  font-size: 1.2vw;
  line-height: 1.8vw;
}

@media only screen and (max-width: 1024px) {
  .company-info .address span {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.company-info .address .item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5vw;
}

.company-info .address .item .social {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1024px) {
  .company-info .address .item .social {
    margin-top: 2rem;
  }
}

.company-info .address .item .social img {
  width: 3rem;
  margin-right: 2.8rem;
}

@media only screen and (max-width: 1024px) {
  .company-info .address .item .social img {
    width: 2.4rem;
    margin-right: 3rem;
  }
}
/*# sourceMappingURL=common.css.map */


.content .caption {
  padding: 2vw 5vw;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.content .caption  p {
  font-size: 1.8rem;
  line-height: 1.4;
}

.content .info {
  padding: 5vw 0;
}


/* Tablo genel stili */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 1.4rem;
  margin: 2rem 0 4rem;
  border: 1px solid #ddd;
}

@media only screen and (max-width: 648px) {
  .table {
    width: 35rem !important;
  }
}

.table td, .table th {
  border: 1px solid #ccc;
  padding: 8px;
}

.table tbody td {
  font-weight: normal;
}

.table tbody td:first-child {
  font-weight: bold;
  width: 30%;
}

@media only screen and (max-width: 648px) {
  .table tbody td:first-child {
    font-weight: bold;
    width: 20%;
  }
}

@media only screen and (max-width: 648px) {
  .table tbody td:nth-child(3) {
    font-weight: bold;
    width: 15rem !important;
  }
}


/* Satır hücrelerinin kenarlık ve iç boşlukları */
.table td {
  border-bottom: 1px solid #ddd;
  padding: 12px 8px;
  overflow-wrap: break-word;
}

@media only screen and (max-width: 648px) {
  .table td {
    border-bottom: 1px solid #ddd;
    padding: 8px 2px;
    overflow-wrap: break-word;
    text-align: center;
  }  
}
