.field-error {
    display: block;
    color: #e53935;
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
}
.single-input input.error,
.single-input textarea.error,
.single-input select.error {
    border: 1px solid #e53935 !important;
}


/* Main input wrapper */
.input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}


/* Normal fields */
.input-wrapper .single-input {
    flex: 1;
}


/* =========================
   CAPTCHA
========================= */

.captcha-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
}

.captcha-row .captcha-input {
    flex: 1;
}

.captcha-row .captcha-box {
    flex: 1;
}


/* Image + refresh */
.captcha-action {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 55px;
}

.captcha-action img {
    height: 55px;
    max-width: 100%;
    object-fit: contain;
}

.refresh-btn {
    width: 55px;
    height: 55px;
    min-width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;
    background: #ff6500;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .input-wrapper {
        flex-direction: column;
    }

    /*
     * CAPTCHA ko column mat hone dena
     */
    .input-wrapper.captcha-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end;
        gap: 10px;
        width: 100%;
    }

    .captcha-row .captcha-input {
        flex: 1.2;
        min-width: 0;
    }

    .captcha-row .captcha-box {
        flex: 1;
        min-width: 0;
    }

    .captcha-action {
        height: 50px;
        gap: 35px;
    }

    .captcha-action img {
        height: 50px;
        max-width: calc(100% - 55px);
    }

    .refresh-btn {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

}


:root {
  --color-primary: #20282d;
  --color-secondary: #1f1f25;
  --color-blue: #0b4df5;
  --color-sky: #82b440;
  --color-body: #5d666f;
  --color-heading-1: #1c2539;
  --color-title: #141416;
  --color-heading-dark: #141416;
  --transition: 0.3s;
  --bg-dark-1: #1e1e20;
  --color-white: #fff;
  --color-border: #ddd8f9;
  --border-width: 1px;
  --radius: 10px;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "Red Hat Display", serif;
  --font-secondary: "DM Sans", serif;
  --font-3: "fontawesome";
  --font-size-b1: 16px;
  --font-size-b2: 15px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}
* {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}
body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "DM Sans", serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background: #fff;
}
.popup-card {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  animation: fadeIn 0.3s ease;
}
.popup-content {
  width: 380px;
  max-width: 92%;
  background: #fff;
  border-radius: 22px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  animation: popupScale 0.35s ease;
}
.popup-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
}
.popup-icon.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.popup-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1f2937;
  font-weight: 700;
}
.popup-content p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 28px;
}
#closePopup {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #ff6200, #ff8c42);
  transition: 0.3s;
}
#closePopup:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 98, 0, 0.35);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mobile-icons {
  display: none;
}
.mobile-menu-icon {
  display: none;
}
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.header-main-one-wrapper {
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 87px;
  z-index: 9999;
}
.thumbnail-banner-area-accountent {
  position: relative;
  z-index: 1;
}
.thumbnail-banner-area-accountent img {
  width: 100%;
  height: 500px;
}
@media (max-width: 780px) {
  .thumbnail-banner-area-accountent img {
    height: auto;
    margin-top: 65px;
  }
}
#solutions {
  padding: 100px 0;
  background: #f8fafc;
}
.title-style-one.center {
  text-align: center;
  margin-bottom: 6px;
}
.title-style-one .pre {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #f60;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.title-style-one .title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #24324a;
  margin-top: 20px;
}
.service-main-wrapper-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.03);
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7f2;
  border-radius: 24px;
  margin-bottom: 25px;
}
.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.service-content h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #273043;
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
}
.service-card:hover .service-content h5 {
  color: #f60;
}
.service-card:hover .service-icon {
  background: #f60;
}
.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 767px) {
  body,
  html {
    width: 100%;
    overflow-x: hidden;
    background: #f7f9fc;
  }
  .industry-service-area {
    padding-bottom: 50px;
    background: #eaf1f8;
  }
  .service-main-wrapper-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 14px !important;
    margin: 0 !important;
  }
  .single-service-wrapper {
    box-shadow: 0 10px 24px rgba(241, 90, 36, 0.08);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .single-service-wrapper:hover {
    background: linear-gradient(135deg, #fff2ea 0, #fff 100%);
    border-color: #f15a24;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(241, 90, 36, 0.15);
  }
  .single-service-wrapper .in_tool {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 105px !important;
    overflow: hidden;
    transition: all 0.35s ease;
    text-decoration: none !important;
  }
  .single-service-wrapper .in_tool::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
  }
  .single-service-wrapper .in_tool:active {
    transform: scale(0.98);
    background: transparent;
  }
  .single-service-wrapper .thumbnail {
    position: static !important;
    transform: none !important;
    width: 56px !important;
    height: 56px !important;
    flex: 0 0 56px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 8px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    z-index: auto !important;
  }
  .single-service-wrapper .thumbnail img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
  }
  .single-service-wrapper .content {
    width: 100%;
    min-width: 0;
    flex: 1;
    align-items: center;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .single-service-wrapper .content .title {
    margin: 0 !important;
    color: #1e293b !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: break-word !important;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .single-service-wrapper:hover .in_tool {
    transform: translateY(-4px);
    box-shadow:
      0 18px 40px rgba(15, 23, 42, 0.1),
      0 8px 20px rgba(15, 23, 42, 0.06);
  }
  .title-style-one {
    text-align: center;
  }
  .title-style-one .pre {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border-radius: 30px;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    color: #64748b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  .title-style-one .title {
    margin-top: 14px !important;
    font-size: 30px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    color: #0f172a !important;
  }
  .mb-30 {
    margin-bottom: 0 !important;
  }
  .mt--40 {
    margin-top: 25px !important;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .col-lg-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 480px) {
  .single-service-wrapper {
    position: relative;
  }
  .single-service-wrapper .in_tool {
    min-height: 90px;
    overflow: visible;
  }
  .single-service-wrapper .thumbnail {
    width: 66px !important;
    height: 66px !important;
    position: absolute;
    left: 32px !important;
    transform: translateY(-50%);
    padding: 6px;
    border-radius: 14px;
    z-index: 999;
  }
  .single-service-wrapper .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .single-service-wrapper .content .title {
    font-size: 14px;
    line-height: 1.4;
  }
  .title-style-one .title {
    font-size: 26px !important;
  }
}
.contactform-accountentarea {
  padding: 60px 0;
  background: #f7f8fc;
}
.appoinment-area-accountent {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.easy-contact-left-funfacts-8 {
  background: linear-gradient(135deg, #16202c, #1d2d44);
  padding: 35px;
  height: 100%;
  color: #fff;
}
.easy-contact-left-funfacts-8 .pre {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.easy-contact-left-funfacts-8 .title {
  color: #fff;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 30px;
}
.signle-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  margin-bottom: 12px;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: 0.3s;
}
.signle-contact:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.signle-contact .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ff7b1f;
  color: #fff;
  font-size: 18px;
}
.main-contact {
  flex: 1;
}
.main-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-bottom: 4px;
}
.main-contact a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.signle-contact:last-child {
  align-items: flex-start;
}
.signle-contact:last-child .icon {
  margin-top: 3px;
}
.form-area-right {
  padding: 35px;
}
.input-wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.single-input {
  width: 100%;
}
.single-input label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3436;
}
.single-input input,
.single-input select,
.single-input textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  transition: 0.3s;
}
.single-input textarea {
  height: 140px;
  resize: none;
}
.single-input input:focus,
.single-input select:focus,
.single-input textarea:focus {
  outline: 0;
  background: #fff;
  border-color: #ff7b1f;
  box-shadow: 0 0 0 4px rgba(255, 123, 31, 0.12);
}
.rts-btn.btn-primary {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #ff6a00, #ff8c32);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  padding: 15px 20px;
  transition: 0.3s;
}
.rts-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}
.mobile-follow-us {
  display: none;
}
.desktop-follow-us {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  white-space: nowrap;
}
.desktop-follow-us .follow-title {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
}
.desktop-follow-us .follow-title::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #f15a24;
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 5px;
}
.desktop-follow-us .social-area-wrapper-two {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-follow-us .social-area-wrapper-two li {
  margin: 0;
}
.desktop-follow-us .social-area-wrapper-two a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #23407d;
  color: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}
.desktop-follow-us .social-area-wrapper-two a:hover {
  background: #f15a24;
  color: #fff;
  border-color: #f15a24;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(241, 90, 36, 0.25);
}
.desktop-follow-us .social-area-wrapper-two i {
  font-size: 15px;
  color: #fff;
}
@media (max-width: 991px) {
  .easy-contact-left-funfacts-8 {
    padding: 25px;
  }
  .easy-contact-left-funfacts-8 .title {
    font-size: 15px;
    margin-bottom: 22px;
  }
  .form-area-right {
    padding: 25px;
  }
  .desktop-follow-us {
    display: none;
  }
  .mobile-follow-us {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-left: -50px;
  }
  .mobile-follow-us .follow-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
  }
  .mobile-follow-us .social-area-wrapper-two {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-follow-us .social-area-wrapper-two li {
    margin: 0;
  }
  .mobile-follow-us .social-area-wrapper-two a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #23407d;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
  }
  .mobile-follow-us .social-area-wrapper-two a:hover {
    background: #f15a24;
  }
  .mobile-follow-us .social-area-wrapper-two i {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .desktop-follow-us {
    display: none;
  }
  .contactform-accountentarea {
    padding: 40px 0;
  }
  .appoinment-area-accountent {
    border-radius: 18px;
  }
  .easy-contact-left-funfacts-8 {
    padding: 20px;
  }
  .easy-contact-left-funfacts-8 .title {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 18px;
  }
  .signle-contact {
    min-height: 50px;
    padding: 12px;
    gap: 10px;
    margin-bottom: 10px;
    border-radius: 14px;
  }
  .signle-contact .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 15px;
  }
  .main-contact span {
    font-size: 11px;
  }
  .main-contact a {
    font-size: 13px;
    line-height: 1.4;
  }
  .form-area-right {
    padding: 20px;
  }
  .input-wrapper {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
  .single-input input,
  .single-input select,
  .single-input textarea {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 14px;
  }
  .single-input textarea {
    height: 120px;
  }
  .rts-btn.btn-primary {
    padding: 14px;
    font-size: 15px;
    border-radius: 12px;
  }
  .mobile-follow-us {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-left: -50px;
  }
  .mobile-follow-us .follow-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
  }
  .mobile-follow-us .social-area-wrapper-two {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-follow-us .social-area-wrapper-two li {
    margin: 0;
  }
  .mobile-follow-us .social-area-wrapper-two a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #23407d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
  }
  .mobile-follow-us .social-area-wrapper-two a:hover {
    background: #f15a24;
  }
  .mobile-follow-us .social-area-wrapper-two i {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .desktop-follow-us {
    display: none;
  }
  .easy-contact-left-funfacts-8 {
    padding: 16px;
  }
  .easy-contact-left-funfacts-8 .title {
    font-size: 22px;
  }
  .form-area-right {
    padding: 16px;
  }
  .signle-contact {
    min-height: 65px;
  }
  .main-contact a {
    font-size: 12px;
  }
  .mobile-follow-us {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-left: -50px;
  }
  .mobile-follow-us .follow-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
  }
  .mobile-follow-us .social-area-wrapper-two {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-follow-us .social-area-wrapper-two li {
    margin: 0;
  }
  .mobile-follow-us .social-area-wrapper-two a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #23407d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
  }
  .mobile-follow-us .social-area-wrapper-two a:hover {
    background: #f15a24;
  }
  .mobile-follow-us .social-area-wrapper-two i {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .desktop-follow-us {
    display: none;
  }
  .main-header {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 999999999;
    transition: all 0.70s ease !important;
  }
  .mobile-icons {
    display: flex;
    flex-direction: column;
    padding: 12px;
  }
  .mobile-icons a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
  }
  .mobile-icons a i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6200;
    font-size: 16px;
  }
  .mobile-icons a:hover {
    background: #fff3eb;
    color: #ff6200;
    transform: translateX(5px);
  }
  .mobile-menu-icon {
    width: 50px;
    height: 45px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
  }
  .mobile-menu-icon:hover {
    color: #000;
  }
   
  @keyframes menuFade {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .mobile-follow-us {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-left: -50px;
  }
  .mobile-follow-us .follow-title {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    white-space: nowrap;
    margin-left: 5px;
  }
  .mobile-follow-us .social-area-wrapper-two {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-follow-us .social-area-wrapper-two li {
    margin: 0;
  }
  .mobile-follow-us .social-area-wrapper-two a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #23407d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
  }
  .mobile-follow-us .social-area-wrapper-two a:hover {
    background: #f15a24;
  }
  .mobile-follow-us .social-area-wrapper-two i {
    font-size: 14px;
  }
  .nav-area ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .nav-area li {
    list-style: none;
    width: 100%;
  }
  .nav-area a {
    display: block;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
  }
  .button-area a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    margin-top: 10px;
  }
  .mobile-icons {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid #eee;
    z-index: 15;
  }
  .mobile-icons a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 10px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #f1f1f1;
  }
  .mobile-icons a i {
    color: #007bff;
    width: 20px;
  }

  /* Header wrapper */
    .header-main-one-wrapper {
        position: relative !important;
        overflow: visible !important;
        z-index: 999999 !important;
    }

    /* Main menu container */
    .header-main-one-wrapper > .main-header {
        position: absolute !important;

        top: calc(100% + 10px) !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        display: block !important;

        padding: 15px 20px !important;

        background: #ffffff !important;

        border-radius: 0 0 18px 18px !important;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;

        z-index: 999999 !important;

        opacity: 0 !important;
        visibility: hidden !important;

        transform: translateY(-10px) !important;

        transition: all 0.25s ease !important;

        overflow: visible !important;
    }


    /* ============================
       ACTIVE MENU
    ============================ */

    .header-main-one-wrapper > .main-header.active {
        display: block !important;

        height: auto !important;
        min-height: 0 !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: translateY(0) !important;

        overflow: visible !important;
    }


    /* ============================
       NAV AREA
    ============================ */

    .header-main-one-wrapper
    .main-header.active
    .nav-area {
        display: block !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        visibility: visible !important;
        opacity: 1 !important;

        overflow: visible !important;
    }


    /* ============================
       UL
    ============================ */

    .header-main-one-wrapper
    .main-header.active
    .nav-area ul {
        display: flex !important;

        flex-direction: column !important;

        align-items: stretch !important;

        justify-content: flex-start !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 0 !important;

        list-style: none !important;

        visibility: visible !important;
        opacity: 1 !important;

        overflow: visible !important;
    }


    /* ============================
       LI
    ============================ */

    .header-main-one-wrapper
    .main-header.active
    .nav-area ul li {
        display: block !important;

        position: relative !important;

        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        visibility: visible !important;
        opacity: 1 !important;
    }


    /* ============================
       LINKS
    ============================ */

    .header-main-one-wrapper
    .main-header.active
    .nav-area ul li a {
        display: flex !important;

        align-items: center !important;

        width: 100% !important;

        height: auto !important;
        min-height: 48px !important;

        padding: 14px 12px !important;

        margin: 0 !important;

        color: #172554 !important;

        background: transparent !important;

        font-size: 15px !important;

        font-weight: 600 !important;

        line-height: 1.4 !important;

        text-decoration: none !important;

        visibility: visible !important;

        opacity: 1 !important;

        transform: none !important;

        border-bottom: 1px solid #eeeeee !important;
    }


    .header-main-one-wrapper
    .main-header.active
    .nav-area ul li:last-child a {
        border-bottom: none !important;
    }


    /* Hover */
    .header-main-one-wrapper
    .main-header.active
    .nav-area ul li a:hover {
        color: #ff6500 !important;
        background: #fff7f2 !important;
    }


    /* ============================
       HIDE DESKTOP ITEMS
    ============================ */

    .header-main-one-wrapper
    .main-header
    .desktop-follow-us,

    .header-main-one-wrapper
    .main-header
    .button-area {
        display: none !important;
    }


    /* ============================
       MOBILE ICONS
    ============================ */

    .header-main-one-wrapper
    .main-header
    .mobile-icons {
        display: none !important;
    }


}
.single-service-signle-wrapper {
  height: 100%;
  min-height: 310px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.single-service-signle-wrapper .icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-service-signle-wrapper .icons {
  width: 300px;
  height: 200px;
  margin-bottom: 10px;
}
.single-service-signle-wrapper .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.single-service-signle-wrapper p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}
.single-service-signle-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.single-service-signle-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ea946d, #e49e92);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}
.single-service-signle-wrapper:hover::before {
  opacity: 0.05;
}
.single-service-signle-wrapper * {
  position: relative;
  z-index: 1;
}
.single-service-signle-wrapper:hover .icons img {
  transform: scale(1.15);
  transition: 0.4s ease;
}
.arrow-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #06f;
  transition: 0.3s ease;
}
.arrow-right i {
  transition: transform 0.3s ease;
}
.single-service-signle-wrapper:hover .arrow-right i {
  transform: translateX(6px);
}
.single-service-signle-wrapper:hover .arrow-right {
  color: #039;
}
.swiper-slide {
  height: auto;
}
.swiper-wrapper {
  align-items: stretch;
}
.single-service-wrapper .thumbnail img {
  height: 50px;
}
.single-service-wrapper a .content {
  padding: 5px 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    /* overflow: hidden; */
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 767px) {
  body {
    /* overflow: hidden; */
    overflow-x: hidden;
    overflow-y: auto; 
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
menu,
p,
pre,
ul {
  margin: 0;
  margin-bottom: 20px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  font-family: "Red Hat Display", serif;
  line-height: 1.4074;
  color: var(--color-heading-1);
}
.pre {
  border: 2px solid #aaa7a7;
  padding: 8px;
  border-radius: 7px;
}
.service-main-wrapper-list {
  width: 1280px;
}
.row {
  width: 100%;
}
.col {
  width: 100%;
}
.counter-about-area {
  background-color: #ff4500 !important;
}
.main-nav {
  font-family: "DM Sans", serif;
}
.service_p {
  color: gray;
  font-size: 15px;
}
.swiper {
  padding: 30px 0;
}
.contactform-accountentarea {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.contactform-accountentarea .ellips-left {
  position: absolute;
  width: 900px;
  height: 100%;
  left: -140px;
  top: 45%;
  transform: translateY(-50%);
  background-color: rgba(241, 196, 183, 0.23);
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
}
.contactform-accountentarea .container {
  position: relative;
  z-index: 2;
}
.why-chooseus-area {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.why-chooseus-area .ellips-left {
  position: absolute;
  width: 900px;
  height: 100%;
  left: -140px;
  top: 45%;
  transform: translateY(-50%);
  background-color: rgba(241, 196, 183, 0.45);
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
}
.why-chooseus-area .container {
  position: relative;
  z-index: 2;
}
.appoinment-area-accountent .row.align-items-center {
  align-items: stretch !important;
}
.h1,
h1 {
  font-size: var(--h1);
  line-height: 1.3;
  font-weight: 700;
}
.h2,
h2 {
  font-size: var(--h2);
  line-height: 1.1;
}
.h3,
h3 {
  font-size: var(--h3);
  line-height: 1.2;
}
.h4,
h4 {
  font-size: var(--h4);
  line-height: 1.2;
}
.h5,
h5 {
  font-size: var(--h5);
  line-height: 1.2;
}
.h6,
h6 {
  font-size: var(--h6);
  line-height: 1.2;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1,
  h1 {
    font-size: 38px;
  }
  .h2,
  h2 {
    font-size: 32px;
  }
  .h3,
  h3 {
    font-size: 28px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .h1,
  h1 {
    font-size: 34px;
  }
  .h2,
  h2 {
    font-size: 28px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
  font-weight: var(--s-bold);
}
.h4,
.h5,
h4,
h5 {
  font-weight: var(--s-bold);
}
.h6,
h6 {
  font-weight: var(--s-bold);
}
p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p:last-child {
  margin-bottom: 0;
}
ul {
  padding-left: 18px;
}
ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--color-primary);
}
ul ul {
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 1.3;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
footer,
header,
nav,
section {
  display: block;
}
[hidden] {
  display: none;
}
a {
  color: var(--color-heading);
  text-decoration: none;
  outline: 0;
}
a:active,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
  color: var(--color-primary);
}
a:focus {
  outline: 0;
}
address {
  margin: 0 0 24px;
}
strong {
  font-weight: 700;
}
code,
pre {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}
pre {
  font-family: Raleway, sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}
small {
  font-size: smaller;
}
menu,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}
nav ul {
  list-style: none;
  list-style-image: none;
}
li > ul {
  margin: 0;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
svg:not(:root) {
  overflow: hidden;
}
form {
  margin: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}
button,
input {
  line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}
button,
input,
select,
textarea {
  background: 0 0;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}
button:active,
button:focus,
input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
input {
  height: 40px;
  padding: 0 15px;
}
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 20px;
  outline: 0;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
}
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
textarea::placeholder {
  color: var(--body-color);
  opacity: 1;
}
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--body-color);
}
input[type="email"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--body-color);
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: var(--color-primary);
}
input[type="checkbox"],
input[type="radio"] {
  opacity: 1;
  position: relative;
  height: auto !important;
  max-width: 18px;
  width: max-content;
}
input[type="checkbox"] ~ label,
input[type="radio"] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type="checkbox"] ~ label::before,
input[type="radio"] ~ label::before {
  content: " ";
  position: absolute;
  top: 1 px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #5d5d7e;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type="checkbox"] ~ label::after,
input[type="radio"] ~ label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type="checkbox"]:checked ~ label::after,
input[type="radio"]:checked ~ label::after {
  opacity: 1;
}
input[type="radio"] ~ label::before {
  border-radius: 50%;
}
input[type="radio"] ~ label::after {
  width: 8px;
  height: 8px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
}
input[type="submit"] {
  width: auto;
  padding: 0 30px;
  border-radius: 500px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}
input[type="submit"]:hover {
  background: 0 0;
  color: var(--color-primary);
  transform: translateY(-5px);
}
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #000;
}
.bg_image--1 {
  background-image: url(../images/bg/bg-image-1.jpg);
}
.bg_image--2 {
  background-image: url(../images/bg/bg-image-2.jpg);
}
.bg_image--3 {
  background-image: url(../images/bg/bg-image-3.jpg);
}
.bg_image--4 {
  background-image: url(../images/bg/bg-image-4.jpg);
}
.bg_image--5 {
  background-image: url(../images/bg/bg-image-5.jpg);
}
.bg_image--6 {
  background-image: url(../images/bg/bg-image-6.jpg);
}
.bg_image--7 {
  background-image: url(../images/bg/bg-image-7.jpg);
}
.bg_image--8 {
  background-image: url(../images/bg/bg-image-8.jpg);
}
.bg_image--9 {
  background-image: url(../images/bg/bg-image-9.jpg);
}
.bg_image--10 {
  background-image: url(../images/bg/bg-image-10.jpg);
}
.bg_image--11 {
  background-image: url(../images/bg/bg-image-11.jpg);
}
.bg_image--12 {
  background-image: url(../images/bg/bg-image-12.jpg);
}
.bg_image--13 {
  background-image: url(../images/bg/bg-image-13.jpg);
}
.bg_image--14 {
  background-image: url(../images/bg/bg-image-14.jpg);
}
.bg_image--15 {
  background-image: url(../images/bg/bg-image-15.jpg);
}
.bg_image--16 {
  background-image: url(../images/bg/bg-image-16.jpg);
}
.bg_image--17 {
  background-image: url(../images/bg/bg-image-17.jpg);
}
.bg_image--18 {
  background-image: url(../images/bg/bg-image-18.jpg);
}
.bg_image--19 {
  background-image: url(../images/bg/bg-image-19.jpg);
}
.bg_image--20 {
  background-image: url(../images/bg/bg-image-20.jpg);
}
.bg_image--21 {
  background-image: url(../images/bg/bg-image-21.jpg);
}
.bg_image--22 {
  background-image: url(../images/bg/bg-image-22.jpg);
}
.bg_image--23 {
  background-image: url(../images/bg/bg-image-23.jpg);
}
.bg_image--24 {
  background-image: url(../images/bg/bg-image-24.jpg);
}
.bg_image--25 {
  background-image: url(../images/bg/bg-image-25.jpg);
}
.bg_image--26 {
  background-image: url(../images/bg/bg-image-26.jpg);
}
.bg_image--27 {
  background-image: url(../images/bg/bg-image-27.jpg);
}
.bg_image--28 {
  background-image: url(../images/bg/bg-image-28.jpg);
}
.bg_image--29 {
  background-image: url(../images/bg/bg-image-29.jpg);
}
.bg_image--30 {
  background-image: url(../images/bg/bg-image-30.jpg);
}
.bg_image--31 {
  background-image: url(../images/bg/bg-image-31.jpg);
}
.bg_image--32 {
  background-image: url(../images/bg/bg-image-32.jpg);
}
.bg_image--33 {
  background-image: url(../images/bg/bg-image-33.jpg);
}
.bg_image--34 {
  background-image: url(../images/bg/bg-image-34.jpg);
}
.bg_image--35 {
  background-image: url(../images/bg/bg-image-35.jpg);
}
.bg_image--36 {
  background-image: url(../images/bg/bg-image-36.jpg);
}
.bg_image--37 {
  background-image: url(../images/bg/bg-image-37.jpg);
}
.bg_image--38 {
  background-image: url(../images/bg/bg-image-38.jpg);
}
.bg_image--39 {
  background-image: url(../images/bg/bg-image-39.jpg);
}
.bg_image--40 {
  background-image: url(../images/bg/bg-image-40.jpg);
}
.row--0 {
  margin-left: 0;
  margin-right: 0;
}
.row--0 > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.row--5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row--5 > [class*="col"] {
  padding-left: 5px;
  padding-right: 5px;
}
.row--10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row--10 > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.row--20 {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--20 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--20 > [class*="col-"],
.row--20 > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 > [class*="col-"],
  .row--20 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 > [class*="col-"],
  .row--20 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 > [class*="col-"],
  .row--20 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--20 > [class*="col-"],
  .row--20 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--25 {
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--25 > [class*="col-"],
.row--25 > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 > [class*="col-"],
  .row--25 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 > [class*="col-"],
  .row--25 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 > [class*="col-"],
  .row--25 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 > [class*="col-"],
  .row--25 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--30 > [class*="col-"],
.row--30 > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 > [class*="col-"],
  .row--30 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 > [class*="col-"],
  .row--30 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 > [class*="col-"],
  .row--30 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 > [class*="col-"],
  .row--30 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--45 {
  margin-left: -45px;
  margin-right: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--45 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--45 > [class*="col-"],
.row--45 > [class*="col"] {
  padding-left: 45px;
  padding-right: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 > [class*="col-"],
  .row--45 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 > [class*="col-"],
  .row--45 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 > [class*="col-"],
  .row--45 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--45 > [class*="col-"],
  .row--45 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--40 {
  margin-left: -40px;
  margin-right: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--40 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--40 > [class*="col-"],
.row--40 > [class*="col"] {
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 > [class*="col-"],
  .row--40 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 > [class*="col-"],
  .row--40 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 > [class*="col-"],
  .row--40 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--40 > [class*="col-"],
  .row--40 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--60 {
  margin-left: -60px;
  margin-right: -60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--60 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--60 > [class*="col-"],
.row--60 > [class*="col"] {
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 > [class*="col-"],
  .row--60 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 > [class*="col-"],
  .row--60 > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 > [class*="col-"],
  .row--60 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--60 > [class*="col-"],
  .row--60 > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}
[data-black-overlay],
[data-overlay],
[data-white-overlay] {
  position: relative;
  z-index: 2;
}
[data-black-overlay] > *,
[data-black-overlay] > div,
[data-overlay] > *,
[data-overlay] > div,
[data-white-overlay] > *,
[data-white-overlay] > div {
  position: relative;
  z-index: 2;
}
[data-black-overlay]:before,
[data-overlay]:before,
[data-white-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
[data-overlay]:before {
  background: var(--color-primary);
}
[data-black-overlay]:before {
  background-color: #000;
}
[data-white-overlay]:before {
  background-color: #fff;
}
[data-black-overlay="1"]:before,
[data-overlay="1"]:before,
[data-white-overlay="1"]:before {
  opacity: 0.1;
}
[data-black-overlay="2"]:before,
[data-overlay="2"]:before,
[data-white-overlay="2"]:before {
  opacity: 0.2;
}
[data-black-overlay="3"]:before,
[data-overlay="3"]:before,
[data-white-overlay="3"]:before {
  opacity: 0.3;
}
[data-black-overlay="4"]:before,
[data-overlay="4"]:before,
[data-white-overlay="4"]:before {
  opacity: 0.4;
}
[data-black-overlay="5"]:before,
[data-overlay="5"]:before,
[data-white-overlay="5"]:before {
  opacity: 0.5;
}
[data-black-overlay="6"]:before,
[data-overlay="6"]:before,
[data-white-overlay="6"]:before {
  opacity: 0.6;
}
[data-black-overlay="7"]:before,
[data-overlay="7"]:before,
[data-white-overlay="7"]:before {
  opacity: 0.7;
}
[data-black-overlay="8"]:before,
[data-overlay="8"]:before,
[data-white-overlay="8"]:before {
  opacity: 0.8;
}
[data-black-overlay="9"]:before,
[data-overlay="9"]:before,
[data-white-overlay="9"]:before {
  opacity: 0.9;
}
[data-black-overlay="10"]:before,
[data-overlay="10"]:before,
[data-white-overlay="10"]:before {
  opacity: 1;
} /*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
@-webkit-keyframes bounce {
  20%,
  53%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  20%,
  53%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
    transform: translate3d(0, 50px, 0) scale(0.7);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
    transform: translate3d(0, 20px, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes flash {
  50%,
  from,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  50%,
  from,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes jello {
  11.1%,
  from,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  11.1%,
  from,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@-webkit-keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  transition: 0.2s;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft2 {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp2 {
  from {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInUp3 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
[data-aos="slideInUp2"] {
  opacity: 0;
  transition-property: transform, opacity;
}
@media screen and (min-width: 768px) {
  [data-aos="slideInUp2"] {
    transform: translateY(30px);
  }
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateIt2 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shape-service-1 {
  0% {
    right: -40%;
    top: 30%;
  }
  100% {
    right: -23%;
    top: 0;
  }
}
@keyframes animate-floting {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(40%);
  }
}
@keyframes animate-floting-2 {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-40%);
  }
}
@keyframes animate-floting-3 {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}
@keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }
  50% {
    border-radius: var(--morp-md-value);
  }
  100% {
    border-radius: 40% 60%;
  }
}
@keyframes morpspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
[data-aos="reveal-bottom"],
[data-aos="reveal-end"],
[data-aos="reveal-start"],
[data-aos="reveal-top"] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
[data-aos="reveal-top"] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
[data-aos="reveal-start"] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
[data-aos="reveal-end"] {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
[data-aos="reveal-bottom"] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
[data-aos="reveal-item"] {
  visibility: hidden;
  -webkit-transition-property: visibility;
  transition-property: visibility;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes fadeInUp-small {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp-small {
  -webkit-animation-name: fadeInUp-small;
  animation-name: fadeInUp-small;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.6, 0.6, 0.6);
    transform: scale3d(0.6, 0.6, 0.6);
  }
  50% {
    opacity: 1;
  }
}
.header-top-area-wrapper {
  background: #20282d;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-area-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-top-area-wrapper {
    display: none;
  }
}
.header-top-area-wrapper .header-top-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-area-wrapper .header-top-one-wrapper .left {
  display: flex;
  align-items: center;
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail {
  position: relative;
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a {
  padding: 11px 0;
  display: block;
  color: #fff;
  margin-right: 50px;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a i {
  margin-right: 6px;
}
.header-top-area-wrapper .header-top-one-wrapper .left .mail a:hover::after {
  width: 100%;
}
.header-top-area-wrapper .header-top-one-wrapper .left .working-time p {
  color: #fff;
  font-size: 14px;
}
.header-top-area-wrapper .header-top-one-wrapper .right {
  display: flex;
  justify-content: flex-end;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav li {
  margin: 0;
  margin-right: 20px;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav li a {
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 11px 0;
  display: block;
  color: #fff;
}
.header-top-area-wrapper .header-top-one-wrapper .right .top-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 1px;
  width: 0%;
  background: #fff;
  transition: var(--transition);
}
.header-top-area-wrapper .header-top-one-wrapper .right .social-wrapper-one {
  margin-left: 30px;
  position: relative;
}
.social-wrapper-one {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}
.social-wrapper-one li {
  margin: 0;
}
.social-wrapper-one li a {
  color: #fff;
  margin-right: 20px;
  padding: 11px 0;
}
.social-wrapper-one li a i {
  transition: 0.3s;
  color: #fff;
}
.social-wrapper-one::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
@media only screen and (max-width: 1199px) {
  .header-main-one-wrapper {
    padding: 15px 0;
    gap: 265px;
  }
}
@media only screen and (max-width: 993px) {
  .header-main-one-wrapper {
    gap: 40px;
  }
  .mobile-follow-us {
    margin-left: 35%;
  }
}
@media (max-width: 883px) {
  .mobile-menu-icon {
    width: 50px;
    height: 44px;
  }
  .main-logo {
    height: 50px !important;
  }
}
@media (max-width: 766px){
  .mobile-menu-icon {
    width: 50px;
    height: 44px;
  }
}
@media only screen and (max-width: 413px) {
  .mobile-menu-icon {
    width: 130px;
    height: 44px;
  }
}
@media (max-width: 750px) {
  .header-main-one-wrapper {
    gap: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .mobile-follow-us {
    margin-left: 5%;
  }
  .mobile-menu-icon {
    width: 100px;
    height: 45px;
  }
  .main-logo {
    width: 100% !important;
  }
  .header-main-one-wrapper .thumbnail a img {
    max-width: 130px;
  }
}
.header-main-one-wrapper .main-header {
  display: flex;
  align-items: center;
  z-index: -5;
}
.header-main-one-wrapper .main-header .nav-main ul {
  display: flex;
  align-items: center;
}
.header-main-one-wrapper .main-header .button-area {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .header-main-one-wrapper .button-area .rts-btn.btn-primary {
    display: none !important;
  }
}
.header-one .nav-area {
  margin-right: 80px;
}
#menu-btn,
#search {
  background: #f2f2f2;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: none;
}
#menu-btn i,
#search i {
  color: #1c2539;
  font-size: 18px;
}
.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  z-index: 999;
  width: 100%;
  background: #fff;
  box-shadow: 0 7px 18px rgba(24, 16, 16, 0.0509803922);
  animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.header--sticky.sticky .header-top-area-wrapper {
  display: none;
}
.header--sticky.sticky.header-one {
  background: #fff;
}
@keyframes stickyanimations {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
.header-two .header-top {
  background: #fff;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid #eaecf2;
}
@media only screen and (max-width: 1199px) {
  .header-two .header-top {
    display: none;
  }
}
.header-two .header-top::after {
  position: absolute;
  left: -5%;
  content: "";
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
  transform: skew(-20deg);
}
.header-two .header-top .content {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  height: 45px;
  display: flex;
  align-items: center;
  width: 98%;
}
.header-two .header-top .content .left-header-top p {
  font-size: 16px;
  color: #fff;
}
.header-two .header-top .content .left-header-top p a {
  font-weight: 500;
}
.header-two .header-top .content .left-header-top p a i {
  transition: 0.3s;
}
.header-two .header-top .content .left-header-top p a:hover {
  color: #fff;
}
.header-two .header-top .content .left-header-top p a:hover i {
  margin-left: 6px;
}
.header-two .header-top .content .right-header-top {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header-two .header-top .content .right-header-top .working-time i {
  color: #1c2539;
}
.header-two .header-top .content .right-header-top .working-time span {
  color: #1c2539;
  font-size: 16px;
  font-weight: 400;
  margin-left: 7px;
}
.header-two .main-header {
  justify-content: flex-start;
  display: block;
  background: #fff;
}
.header-two .main-header .content {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 98%;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-two .main-header .content {
    max-width: 97%;
    margin: auto;
  }
}
@media only screen and (max-width: 479px) {
  .header-two .main-header .content {
    max-width: 99%;
  }
}
.header-two .main-header .content .header-left {
  display: flex;
  align-items: center;
}
.header-two .main-header .content .header-left a.thumbnail {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .header-two .main-header .content .header-left a.thumbnail {
    margin-right: 0;
  }
}
.header-two .main-header .content .header-left a.thumbnail img {
  width: 100%;
}
@media only screen and (max-width: 479px) {
  .header-two .main-header .content .header-left a.thumbnail img {
    width: 73%;
  }
}
@media only screen and (max-width: 1199px) {
  .header-two .main-header .content .header-left a {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-two .main-header .content .header-left a {
    padding: 20px 0 20px 15px;
    width: 80%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 479px) {
  .header-two .main-header .content .header-left a {
    width: 90%;
  }
}
.header-two .main-header .content .header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-two .main-header .content .header-right {
    padding-right: 15px;
  }
}
.header-two .main-header .content .header-right .call-area {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header-two .main-header .content .header-right .call-area {
    display: none;
  }
}
.header-two .main-header .content .header-right .call-area .icon {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.header-two .main-header .content .header-right .call-area .icon::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #f6f6f6;
  height: 55px;
  width: 55px;
  z-index: -1;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.header-two .main-header .content .header-right .call-area .icon:hover::after {
  background: #fff;
  box-shadow: 0 9px 18px rgba(24, 16, 16, 0.05);
}
.header-two .main-header .content .header-right a.rts-btn {
  margin-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .main-header .content .header-right a.rts-btn {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .header-two .main-header .content .header-right a.rts-btn {
    margin-left: 0;
    padding: 12px 15px;
    font-size: 14px;
    display: none;
  }
}
.header-two .main-header .content .header-right button {
  max-width: fit-content;
  background: #f7f7f7;
  padding: 19px;
}
.header-two .main-header .content .header-right button:hover {
  background: var(--color-primary) !important;
}
.header-two .main-header nav {
  margin-left: 135px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .main-header nav {
    margin-left: 10px;
  }
}
.header-two .nav-area {
  margin-left: 135px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-two .nav-area {
    margin-left: 50px;
  }
}
.header-five {
  position: absolute;
  width: 100%;
  z-index: 1000;
}
.header-five .main-header .nav-main ul li a {
  padding: 42px 0;
}
.header-five .main-header .nav-main ul li a::after {
  bottom: 46px;
}
.header-five .header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 30px;
}
.header-five .header-top-right .email {
  margin-right: 30px;
}
.header-five .header-top-right .email i {
  margin-right: 10px;
  color: var(--color-primary);
}
.header-five .header-top-right .email a {
  color: #1c2539;
  transition: 0.3s;
  font-weight: 500;
}
.header-five .header-top-right .email a:hover {
  color: var(--color-primary);
}
.header-five .header-top-right .call {
  margin-right: 30px;
}
.header-five .header-top-right .call i {
  margin-right: 10px;
  color: var(--color-primary);
  transform: rotate(-30deg);
}
.header-five .header-top-right .call a {
  color: #1c2539;
  transition: 0.3s;
  font-weight: 500;
}
.header-five .header-top-right .call a:hover {
  color: var(--color-primary);
}
.header-five .button-area-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  padding-right: 57px;
}
@media only screen and (max-width: 575px) {
  .header-five .button-area-wrapper {
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .header-five .button-area-wrapper .rts-btn.btn-primary {
    display: none;
  }
}
.header-five .button-area-wrapper #menu-btn {
  background: #fff;
  height: 55px;
  min-width: 55px;
  max-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: none;
  padding: 0;
  margin-left: 0;
}
.header-five .button-area-wrapper #menu-btn img {
  min-width: max-content;
  transition: 0.3s;
}
.header-five .button-area-wrapper #menu-btn:hover img {
  filter: brightness(0) saturate(100%) invert(92%) sepia(52%) saturate(0)
    hue-rotate(38deg) brightness(109%) contrast(100%);
}
.header-five .button-area-wrapper .header-one-btn.quote-btn:before {
  background: #fff;
}
.header-five.header--sticky.sticky {
  backdrop-filter: none;
  box-shadow: none;
}
.top-transparent-header .header-top-area-wrapper {
  background: 0 0;
  border-bottom: 1px solid #ededed;
}
.top-transparent-header .header-top-area-wrapper * {
  color: #1c2539 !important;
}
.top-transparent-header
  .header-top-area-wrapper
  .header-top-one-wrapper
  .right
  p {
  margin: 0;
  color: #5d666f;
}
.top-transparent-header
  .header-top-area-wrapper
  .header-top-one-wrapper
  .right
  p
  a {
  font-weight: 600;
  color: var(--color-primary) !important;
}
.top-transparent-header
  .header-top-area-wrapper
  .header-top-one-wrapper
  .right
  p
  a
  i {
  color: var(--color-primary) !important;
}
.top-transparent-header
  .header-top-area-wrapper
  .header-top-one-wrapper
  .left
  a {
  font-weight: 600;
}
.top-transparent-header
  .header-top-area-wrapper
  .header-top-one-wrapper
  .left
  a:hover {
  color: var(--color-primary) !important;
}
.header-transparent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
}
.header-transparent.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  backdrop-filter: blur(9px);
  z-index: 999;
  width: 100%;
  box-shadow: 0 7px 18px rgba(24, 16, 16, 0.0509803922);
  background: #20282d;
}
.header-transparent-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-transparent-main-wrapper .main-nav > a {
  color: #fff !important;
}
.header-transparent-main-wrapper .has-dropdown.mega-menu > a::after,
.header-transparent-main-wrapper .has-dropdown::after {
  color: #fff !important;
}
.header-transparent-main-wrapper .rts-btn.btn-primary {
  border-radius: 100px;
}
@media only screen and (max-width: 575px) {
  .header-transparent-main-wrapper .rts-btn.btn-primary {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .nav-area {
    display: none;
  }
}
.nav-area ul {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .nav-area ul {
    gap: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .nav-area ul {
    gap: 35px;
  }
}
.nav-area ul li {
  margin: 0;
  padding: 0;
}
.nav-area ul li a {
  color: #111032;
  font-weight: 600 !important;
}
@media only screen and (max-width: 1199px) {
  header.header-five .header-top-area {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  header.header-five .nav-area ul {
    gap: 25px !important;
  }
}
.has-dropdown.mega-menu > a {
  position: relative;
}
.has-dropdown::after {
  position: absolute;
  content: "\f078";
  right: -22px;
  top: 51%;
  transform: translateY(-50%);
  font-weight: 400;
  color: #1c2539;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 14px;
}
.has-dropdown.mega-menu > a::after {
  position: absolute;
  content: "\f078";
  right: -22px;
  top: 53%;
  transform: translateY(-50%);
  font-weight: 400;
  color: #1c2539;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 14px;
}
.nav-area ul li.main-nav {
  padding: 40px 0;
  cursor: pointer;
}
header .main-nav > a {
  color: #1c2539 !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  header.header-two .nav-area ul {
    gap: 40px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  header.header-five .nav-area ul {
    gap: 40px !important;
  }
}
.social-wrapper-two.menu {
  margin-top: 50px;
  margin-left: 12px;
  padding-left: 0;
}
.social-wrapper-two a {
  margin-right: 40px;
  z-index: 1;
  position: relative;
}
.social-wrapper-two a i {
  color: #fff;
  transition: 0.3s;
  font-size: 16px;
}
.social-wrapper-two a::after {
  position: absolute;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  content: "";
  z-index: -1;
  background: var(--color-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.social-wrapper-two a:hover i {
  color: var(--color-primary);
}
.social-wrapper-two a:hover::after {
  background: #ffecec;
  box-shadow: 0 10px 30px rgba(33, 5, 5, 0.05);
}
.logo-1 {
  display: block;
}
.logo-2 {
  display: none;
}
.logo-3 {
  display: none;
}
.logo-4 {
  display: none;
}
.home-yellow #menu-btn:hover {
  background: var(--color-primary) !important;
}
.home-yellow .logo-1 {
  display: none;
}
.home-yellow .logo-2 {
  display: none;
}
.home-yellow .logo-3 {
  display: block;
}
.home-yellow .social-wrapper-two a::after {
  background: var(--color-primary);
  color: #fff;
}
.home-yellow .social-wrapper-two a:hover {
  color: var(--color-primary);
}
.home-yellow .social-wrapper-two a:hover i {
  color: var(--color-primary);
}
.home-yellow .social-wrapper-two a:hover::after {
  background: rgba(142, 143, 147, 0.0784313725);
  color: var(--color-primary);
}
#anywhere-home {
  /* cursor: url(../images/banner/shape/close.png), auto; */
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 50;
}
.mobile-menu nav ul {
  padding: 0 20px;
}
.mobile-menu nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu nav ul li a {
  display: block;
}
.mobile-menu .social-wrapper-one {
  margin-top: 50px;
}
.mobile-menu nav ul li a {
  display: block;
  padding: 2px 0;
}
@media only screen and (max-width: 1199px) {
  .pl_lg--0 {
    padding-left: 0 !important;
  }
}
.mobile-menu nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
  font-weight: 600;
  color: #20282d;
}
li.has-dropdown {
  position: relative;
}
li.has-dropdown:hover::after {
  content: "\f077";
}
.has-dropdown.mega-menu::after {
  display: none;
}
header .nav-area ul li.main-nav:hover > a {
  transition: 0.3s;
  color: var(--color-primary) !important;
}
header .nav-area ul li.main-nav:hover::after {
  color: var(--color-primary) !important;
}
.rts-mega-menu {
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  transform: scaleY(0);
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: all 0.5s;
  border-radius: 0 0 5px 5px !important;
  background-color: #fff;
  display: inline-block;
  box-shadow: 0 36px 35px rgba(61, 60, 60, 0.08);
  transform-origin: 0 0 0;
  padding: 30px 30px;
}
.has-dropdown.mega-menu {
  position: static !important;
}
.has-dropdown.mega-menu:hover .rts-mega-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: scaleY(1);
}
.has-dropdown.mega-menu:hover > a::after {
  content: "\f077";
  color: var(--color-primary);
}
.rts-mega-menu.service-mega-menu-style {
  padding: 30px 30px 0 30px;
  z-index: 1000;
}
.rts-mega-menu.service-mega-menu-style li {
  margin-bottom: 20px;
}
.rts-mega-menu.service-mega-menu-style li a {
  border: none;
  width: 100%;
  padding: 18px 25px !important;
  border-radius: 5px;
  background: #f9f9f9;
  display: block;
  transition: 0.3s;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu {
  display: flex;
  align-items: flex-start;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu .icon {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu .icon img {
  background: 0 0;
  padding: 0;
  max-width: 40px;
  margin: auto;
}
.rts-mega-menu.service-mega-menu-style li a .single-service-menu .title {
  color: var(--color-title);
  margin-bottom: 11px;
  line-height: 1.3;
}
.rts-mega-menu.service-mega-menu-style li:hover a {
  border: none;
  background: rgba(32, 40, 45, 0.0784313725);
}
header.header--sticky.sticky .nav-area ul li.main-nav {
  padding: 30px 0;
  cursor: pointer;
}
.header-transparent.header--sticky .nav-area ul li.main-nav:hover > a {
  transition: 0.3s;
  color: #fff !important;
}
.header-five .nav-btn {
  height: 50px;
  width: 50px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .header-five .nav-btn {
    display: flex;
  }
}
.header-five .nav-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(42%) saturate(0)
    hue-rotate(345deg) brightness(106%) contrast(106%);
}
.header-four .nav-btn {
  height: 50px;
  width: 50px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .header-four .nav-btn {
    display: flex;
  }
}
.header-four .nav-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(42%) saturate(0)
    hue-rotate(345deg) brightness(106%) contrast(106%);
}
.banner-style-one {
  /* background-image: url(../images/banner/01.webp); */
  height: 850px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .banner-style-one {
    height: auto;
    background-position: 18%, 45%;
  }
  .banner-style-one::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.4509803922);
    z-index: -1;
  }
}
@media only screen and (max-width: 479px) {
  .banner-style-one {
    height: auto;
    background-position: 18%, 45%;
  }
}
.banner-style-one .banner-one-inner {
  width: 57%;
  margin-left: auto;
  padding: 160px 0 190px 0;
  position: relative;
  display: block;
  margin-top: 43px;
}
@media only screen and (max-width: 1199px) {
  .banner-style-one .banner-one-inner {
    margin-left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-style-one .banner-one-inner {
    padding: 106px 5px 126px 5px;
  }
}
.banner-style-one .banner-one-inner .pre-title {
  color: #1c2539;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}
.banner-style-one .banner-one-inner .pre-title span {
  color: var(--color-primary);
  font-weight: 800;
}
.banner-style-one .banner-one-inner .title {
  font-weight: 700;
  line-height: 82px;
  margin-bottom: 23px;
  font-size: 60px;
  color: var(--color-primary);
  line-height: 1.3;
}
@media only screen and (max-width: 575px) {
  .banner-style-one .banner-one-inner .title {
    font-size: 36px;
  }
}
.banner-style-one .banner-one-inner .title span {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 70px;
  line-height: 1.3;
}
@media only screen and (max-width: 575px) {
  .banner-style-one .banner-one-inner .title span {
    font-size: 36px;
  }
}
.rts-banner-area-two {
  /* background-image: url(../images/banner/02.webp); */
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 575px) {
  .rts-banner-area-two {
    height: 580px;
  }
}
/* .rts-banner-area-two.two {
  background-image: url(../images/banner/20.webp);
} */
.banner-inner-two-content {
  text-align: center;
  max-width: 80%;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .banner-inner-two-content {
    max-width: 100%;
  }
}
.banner-inner-two-content .pre-title {
  margin-bottom: 25px;
  text-transform: uppercase;
}
.banner-inner-two-content .pre-title span {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.banner-inner-two-content * {
  color: #fff;
}
.banner-inner-two-content .title {
  font-size: 80px;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-inner-two-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-inner-two-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-inner-two-content .title {
    font-size: 36px;
  }
}
.banner-inner-two-content .rts-btn {
  margin: auto;
}
.banner-inner-two-content p.disc {
  max-width: 65%;
  margin: auto;
  margin-bottom: 40px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .banner-inner-two-content p.disc {
    max-width: 100%;
  }
}
.banner-four-area-main-wrapper {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    81.536% 93.689%,
    50.99% 100%,
    25.313% 93.689%,
    0 100%,
    0 0
  );
}
.banner-four-area-main-wrapper .banner-four-bg {
  /* background-image: url(../images/banner/03.webp); */
  height: 824px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
/* .banner-four-area-main-wrapper .banner-four-bg.two {
  background-image: url(../images/banner/25.webp);
} */
@media only screen and (max-width: 767px) {
  .banner-four-area-main-wrapper .banner-four-bg {
    height: 600px;
  }
}
.banner-four-area-main-wrapper
  .banner-four-bg
  .inner-content-wrapper-four-banner
  span {
  display: flex;
  justify-content: center;
}
.inner-content-wrapper-four-banner .pre {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .inner-content-wrapper-four-banner .pre {
    text-align: center;
  }
}
.inner-content-wrapper-four-banner .title {
  font-weight: 900;
  font-size: 100px;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 25px;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-content-wrapper-four-banner .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-content-wrapper-four-banner .title {
    font-size: 66px;
  }
}
@media only screen and (max-width: 991px) {
  .inner-content-wrapper-four-banner .title {
    font-size: 32px;
  }
}
.inner-content-wrapper-four-banner .title span.in {
  -webkit-text-stroke-color: #1c2539;
  -webkit-text-stroke: 1px;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.inner-content-wrapper-four-banner p.disc {
  max-width: 60%;
  margin: auto;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  margin-bottom: 45px;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .inner-content-wrapper-four-banner p.disc {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .inner-content-wrapper-four-banner p.disc {
    font-size: 16px;
    font-weight: 400;
  }
}
.inner-content-wrapper-four-banner .button-wrapper {
  justify-content: center;
}
.button-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.rts-banner-area-two {
  position: relative;
}
.mySwiper-banner-two {
  position: relative;
}
.banner-four-area-main-wrapper {
  position: relative;
}
.banner-four-area-main-wrapper .swiper-pagination {
  position: absolute;
  left: auto;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  max-width: max-content;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .banner-four-area-main-wrapper .swiper-pagination {
    display: none;
  }
}
.banner-four-area-main-wrapper {
  position: relative;
  z-index: 1;
}
.banner-five-content {
  padding-top: 283px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .banner-five-content {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-five-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.banner-five-content .title-area {
  flex-basis: 54%;
}
.banner-five-content .title-area p.pre {
  font-size: 18px;
  text-transform: uppercase;
  color: #5d666f;
  margin-bottom: 28px;
}
.banner-five-content .title-area p.pre span {
  font-weight: 700;
  color: var(--color-primary);
}
.banner-five-content .title-area .title {
  font-size: 86px;
  line-height: 1.1;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .banner-five-content .title-area .title {
    font-size: 54px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-five-content .title-area .title {
    font-size: 54px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-five-content .title-area .title {
    font-size: 38px;
  }
}
.banner-five-content .title-area .title span {
  font-weight: 500;
  font-style: italic;
}
.banner-five-content .description-area {
  flex-basis: 40%;
  padding-left: 6%;
  margin-bottom: 17px;
}
@media only screen and (max-width: 991px) {
  .banner-five-content .description-area {
    padding-left: 0;
  }
}
.banner-image-primary-five {
  border-radius: 20px;
  overflow: hidden;
  display: block;
}
.banner-image-primary-five img {
  transition: 0.3s;
}
.banner-contact-form-five {
  background: var(--color-primary);
  padding: 30px;
  border-radius: 16px;
  margin-left: -86px;
  position: relative;
  z-index: 30;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .banner-contact-form-five {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .banner-contact-form-five {
    padding: 22px;
  }
}
.banner-contact-form-five .title {
  color: #fff;
  margin-bottom: 26px;
  font-size: 24px;
}
.banner-contact-form-five input {
  height: 52px;
  background: #363d42;
  margin-bottom: 20px;
  border: none;
  color: #e0e0e0;
  padding: 15px;
}
.banner-contact-form-five textarea {
  height: 110px;
  background: #363d42;
  margin-bottom: 20px;
  border: none;
  color: #e0e0e0;
  padding: 15px;
}
.banner-contact-form-five .rts-btn {
  border-radius: 10px !important;
  max-width: 100%;
}
.banner-contact-form-five .rts-btn::before {
  background: #0f141f !important;
}
.bg_banner-five {
  /* background-image: url(../images/banner/06.webp); */
  height: 900px;
}
@media only screen and (max-width: 575px) {
  .bg_banner-five {
    height: 730px;
  }
}
.rts-banner-area-9 {
  background: #f2f2f2;
  height: 850px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area-9 {
    height: 630px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-banner-area-9 {
    height: 710px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-banner-area-9 {
    height: 500px;
  }
}
.rts-banner-area-9 span.pre {
  text-transform: uppercase;
  color: #1c2539;
  display: block;
  margin-bottom: 12px;
}
.rts-banner-area-9 p.disc {
  font-size: 18px;
  color: #5d666f;
  line-height: 1.7;
}
@media only screen and (max-width: 575px) {
  .rts-banner-area-9 .circle-text-main {
    position: absolute;
    left: 74%;
    bottom: 15px;
    transform: translateX(-50%);
  }
}
.easy-contact-left-funfacts-8 {
  background: #20282d;
  padding: 89px 66px;
  border-radius: 10px 0 0;
  margin-right: -40px;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .easy-contact-left-funfacts-8 {
    margin-right: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .easy-contact-left-funfacts-8 {
    padding: 25px;
  }
}
.easy-contact-left-funfacts-8 .signle-contact {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 479px) {
  .easy-contact-left-funfacts-8 .signle-contact {
    flex-direction: column;
    gap: 15px;
  }
}
.easy-contact-left-funfacts-8 .signle-contact:last-child {
  margin-bottom: 0;
}
.easy-contact-left-funfacts-8 .signle-contact .icon {
  height: 51px;
  min-width: 51px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
.easy-contact-left-funfacts-8 .signle-contact .icon i {
  color: #20282d;
}
.easy-contact-left-funfacts-8 .signle-contact .main-contact span {
  display: block;
  color: #b3b7c1;
  font-size: 20px;
  margin-bottom: 10px;
}
.easy-contact-left-funfacts-8 .signle-contact .main-contact a {
  font-size: 22px;
  color: #fff;
}
.banner-bg_12 {
  height: 900px;
  /* background-image: url(../images/banner/13.webp); */
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .banner-bg_12 {
    height: 650px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-bg_12 {
    background-position: 75% center;
  }
}
.banner-inner-content-12 .pre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #fff;
}
.banner-inner-content-12 .title {
  font-size: 80px;
  line-height: 1.1;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .banner-inner-content-12 .title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-inner-content-12 .title {
    font-size: 36px;
  }
}
.banner-inner-content-12 p.disc {
  font-size: 18px;
  color: #fff;
  max-width: 55%;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 53px;
}
@media only screen and (max-width: 991px) {
  .banner-inner-content-12 p.disc {
    max-width: 75%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-inner-content-12 p.disc {
    max-width: 100%;
  }
}
.rts-banner-five-wrapper {
  position: relative;
  z-index: 1;
}
.banner-accountent-bg {
  /* background-image: url(../images/banner/28.webp); */
  height: 900px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .banner-accountent-bg {
    height: 110vh;
  }
}
.banner-accountent-content .pre-title {
  display: flex;
  align-content: center;
  gap: 10px;
  font-size: 20px;
  color: #1c2539;
  margin-bottom: 10px;
}
.banner-accountent-content .title {
  font-size: 80px;
}
@media only screen and (max-width: 767px) {
  .banner-accountent-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-accountent-content .title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 479px) {
  .banner-accountent-content .title {
    font-size: 32px;
  }
}
.banner-accountent-content p.disc {
  font-size: 18px;
  color: gray;
  text-align: justify;
}
.thumbnail-banner-area-accountent {
  position: relative;
  z-index: 1;
}
.rts-banner-accountent-two {
  /* background-image: url(../images/banner/29.webp); */
  height: 1020px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .rts-banner-accountent-two {
    height: 700px;
  }
}
.rts-banner-accountent-two .banner-accountent-content {
  padding: 45px 51px;
  background: rgba(32, 40, 45, 0.34);
  border-radius: 7px 30px 30px 7px;
  border-left: 7px solid var(--color-primary);
}
@media only screen and (max-width: 575px) {
  .rts-banner-accountent-two .banner-accountent-content {
    padding: 40px 20px;
  }
}
.rts-banner-accountent-two .banner-accountent-content .pre-title,
.rts-banner-accountent-two .banner-accountent-content .title,
.rts-banner-accountent-two .banner-accountent-content p.disc {
  color: #fff;
}
.rts-banner-accountent-two .banner-accountent-content .pre-title img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(7488%)
    hue-rotate(268deg) brightness(125%) contrast(99%);
}
.rts-banner-hr {
  clip-path: polygon(
    0 92.405%,
    0 0,
    100% 0,
    100% 92.405%,
    100% 92.405%,
    98.982% 94.447%,
    97.636% 96.315%,
    95.99% 97.904%,
    94.075% 99.109%,
    91.919% 99.825%,
    89.553% 99.948%,
    87.005% 99.372%,
    84.305% 97.993%,
    81.483% 95.706%,
    78.568% 92.405%,
    78.568% 92.405%,
    75.926% 89.487%,
    73.234% 87.448%,
    70.533% 86.201%,
    67.866% 85.661%,
    65.277% 85.74%,
    62.806% 86.352%,
    60.498% 87.411%,
    58.395% 88.83%,
    56.54% 90.524%,
    54.974% 92.405%,
    54.974% 92.405%,
    53.091% 94.564%,
    51.053% 96.359%,
    48.84% 97.748%,
    46.432% 98.686%,
    43.809% 99.13%,
    40.949% 99.035%,
    37.833% 98.359%,
    34.441% 97.058%,
    30.751% 95.088%,
    26.745% 92.405%,
    26.745% 92.405%,
    22.475% 89.584%,
    18.583% 87.6%,
    15.059% 86.373%,
    11.895% 85.825%,
    9.083% 85.878%,
    6.613% 86.453%,
    4.479% 87.472%,
    2.671% 88.856%,
    1.181% 90.526%,
    0 92.405%
  );
  height: 947.81px;
  /* background-image: url(../images/banner/30.webp); */
}
@media only screen and (max-width: 767px) {
  .rts-banner-hr {
    height: 600px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-banner-hr {
    height: 500px;
  }
}
.rts-banner-hr {
  display: flex;
  align-items: center;
}
.rts-banner-hr .banner-hr-content-wrapper {
  text-align: center;
  max-width: 614px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.rts-banner-hr .banner-hr-content-wrapper::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 506px;
  height: 506px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: #493bff;
  opacity: 0.3;
  z-index: -1;
}
.rts-banner-hr .banner-hr-content-wrapper::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 710px;
  height: 710px;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background: #493bff;
  opacity: 0.3;
  z-index: -1;
}
.rts-banner-hr .banner-hr-content-wrapper .disc,
.rts-banner-hr .banner-hr-content-wrapper .pre-title,
.rts-banner-hr .banner-hr-content-wrapper .title {
  color: #fff;
}
.rts-banner-hr .banner-hr-content-wrapper .pre-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.rts-banner-hr .banner-hr-content-wrapper .pre-title img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7500%)
    hue-rotate(292deg) brightness(117%) contrast(105%);
}
.rts-banner-hr .banner-hr-content-wrapper .rts-btn {
  margin: auto;
}
.mySwiper-brand-banner {
  max-width: max-content;
  max-width: 700px;
}
.rts-technology-banner-area {
  /* background-image: url(../images/banner/33.webp); */
  height: 1007px;
}
@media only screen and (max-width: 575px) {
  .rts-technology-banner-area {
    height: 767px;
  }
}
.demo-technology .rts-btn {
  border-radius: 15px !important;
}
.inner-content-technology-banner {
  max-width: 943px;
  margin: auto;
  text-align: center;
  margin-top: -95px;
}
@media only screen and (max-width: 991px) {
  .inner-content-technology-banner {
    margin-top: -200px;
  }
}
.inner-content-technology-banner .title {
  color: #fff;
  font-size: 100px;
  line-height: 105px;
}
@media only screen and (max-width: 1199px) {
  .inner-content-technology-banner .title {
    font-size: 74px;
    line-height: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-content-technology-banner .title {
    font-size: 54px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .inner-content-technology-banner .title {
    font-style: 44px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 575px) {
  .inner-content-technology-banner .title {
    font-size: 32px;
  }
}
.inner-content-technology-banner p.disc {
  color: #fff;
  font-size: 24px;
  line-height: 34px;
}
@media only screen and (max-width: 575px) {
  .inner-content-technology-banner p.disc {
    font-size: 16px;
    line-height: 1.4;
  }
}
.inner-content-technology-banner .button-wrapper {
  justify-content: center;
}
.rts-btn {
  height: 55px;
  max-width: max-content;
  padding: 13px 29px;
  border: none;
  box-shadow: none;
  min-width: max-content;
  border-radius: 15px;
  transition: 0.8s;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .rts-btn {
    height: 47px;
    padding: 13px 20px;
    display: flex !important;
    align-items: center !important;
  }
}
.rts-btn.btn-primary {
  background: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.rts-btn.btn-primary::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #f2f2f2;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.rts-btn.btn-primary:hover {
  background: #f2f2f2;
  color: var(--color-primary);
}
.rts-btn.btn-primary:hover::before {
  top: -40%;
}
.rts-btn:focus {
  border: none;
  box-shadow: none;
}
.about-content-left-one .rts-btn {
  margin-top: 40px;
  padding: 13px 36px;
}
.thumbnail-about-1 {
  border-radius: 600px;
  overflow: hidden;
}
.thumbnail-about-1 img {
  width: 100%;
}
.thumbnail-about-and-progress-1 {
  max-width: 600px;
  margin: auto;
  position: relative;
}
.thumbnail-about-and-progress-1 .progress-area-wrapper {
  position: absolute;
  left: -10%;
  bottom: 20px;
  background: var(--color-primary);
  padding: 28px 25px;
  border-radius: 10px;
  transform: translateX(-40%);
}
.thumbnail-about-and-progress-1 .progress-area-wrapper .title {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}
.thumbnail-about-and-progress-1 .single-progress-circle {
  display: flex;
  justify-content: center;
  position: relative;
}
.thumbnail-about-and-progress-1 .single-progress-circle .small-text {
  position: absolute;
  top: 55%;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1f1f21;
  font-family: var(--font-primary);
}
.left-thumbnail-about-area-two {
  display: flex;
  justify-content: center;
  max-width: 490px;
  margin: auto;
  position: relative;
}
.left-thumbnail-about-area-two .small-image {
  position: absolute;
  right: -63px;
  bottom: 40px;
  max-width: 211px;
  animation: jump-2 5s linear infinite;
}
@media only screen and (max-width: 1199px) {
  .left-thumbnail-about-area-two .small-image {
    right: 15px;
  }
}
.about-inner-content-two {
  padding-left: 20px;
}
.about-inner-content-two .about-between-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .about-inner-content-two .about-between-wrapper {
    flex-wrap: wrap;
  }
}
.about-inner-content-two .about-between-wrapper p.disc {
  max-width: 333px;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-inner-content-two .about-between-wrapper p.disc {
    margin-bottom: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .about-inner-content-two .about-between-wrapper p.disc {
    max-width: 100%;
  }
}
.about-inner-content-two
  .about-between-wrapper
  .check-wrapper-area
  .single-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}
.about-inner-content-two
  .about-between-wrapper
  .check-wrapper-area
  .single-check
  i {
  color: #20282d;
}
.about-inner-content-two
  .about-between-wrapper
  .check-wrapper-area
  .single-check
  p {
  margin: 0;
  color: #1c2539;
  font-size: 16px;
}
.rts-about-area-two {
  position: relative;
}
.thumbnail-business-area-right-two {
  position: relative;
}
.thumbnail-business-area-right-two .small-thumbnail {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  max-width: 301px;
  z-index: 10;
}
@media only screen and (max-width: 575px) {
  .thumbnail-business-area-right-two .small-thumbnail {
    top: 65%;
    max-width: 195px;
  }
}
.left-thumbnail-about-area-two {
  position: relative;
}
.left-thumbnail-about-area-two .counter-about-area {
  position: absolute;
  padding: 50px 33px;
  background: #20282d;
  position: absolute;
  top: 50px;
  left: -75px;
  text-align: center;
  border-radius: 15px;
}
@media (max-width: 575px) {
  .counter-about-area {
    width: clamp(100px, 32vw, 140px);
    height: clamp(100px, 22vw, 140px);
    padding: 12px;
    margin-top: -40px;
    margin-left: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .counter-about-area h2 {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1;
    margin-bottom: 5px;
  }
  .counter-about-area span {
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.3;
  }
  .counter-about-area h2 span {
    font-size: 30px;
  }
  .left-thumbnail-about-area-two .counter-about-area {
    padding: 0 !important;
  }
}
.left-thumbnail-about-area-two .counter-about-area .title {
  font-size: 48px;
  margin-bottom: 5px;
}
.left-thumbnail-about-area-two .counter-about-area * {
  color: #fff;
}
.about-bg-four {
  /* background-image: url(../images/about/07.webp); */
  margin-top: -70px;
}
.thumbnail-about-right-4 {
  position: relative;
}
.thumbnail-about-right-4 .small-image {
  clip-path: polygon(
    48.93% 0.356%,
    48.93% 0.356%,
    49.136% 0.264%,
    49.349% 0.194%,
    49.568% 0.143%,
    49.791% 0.113%,
    50.015% 0.103%,
    50.24% 0.113%,
    50.463% 0.143%,
    50.681% 0.194%,
    50.895% 0.264%,
    51.101% 0.356%,
    98.912% 24.359%,
    98.912% 24.359%,
    99.106% 24.469%,
    99.283% 24.594%,
    99.444% 24.734%,
    99.586% 24.887%,
    99.708% 25.052%,
    99.811% 25.227%,
    99.892% 25.411%,
    99.951% 25.602%,
    99.988% 25.798%,
    100% 26%,
    100% 74%,
    100% 74%,
    99.988% 74.202%,
    99.951% 74.398%,
    99.892% 74.589%,
    99.811% 74.773%,
    99.708% 74.948%,
    99.586% 75.113%,
    99.444% 75.266%,
    99.283% 75.406%,
    99.106% 75.531%,
    98.912% 75.641%,
    51.101% 99.645%,
    51.101% 99.645%,
    50.895% 99.736%,
    50.681% 99.806%,
    50.463% 99.857%,
    50.24% 99.887%,
    50.015% 99.897%,
    49.791% 99.887%,
    49.568% 99.857%,
    49.349% 99.806%,
    49.136% 99.736%,
    48.93% 99.645%,
    1.119% 75.641%,
    1.119% 75.641%,
    0.925% 75.531%,
    0.747% 75.406%,
    0.587% 75.266%,
    0.445% 75.113%,
    0.322% 74.948%,
    0.22% 74.773%,
    0.138% 74.589%,
    0.079% 74.398%,
    0.043% 74.202%,
    0.031% 74%,
    0.031% 26%,
    0.031% 26%,
    0.043% 25.798%,
    0.079% 25.602%,
    0.138% 25.411%,
    0.22% 25.227%,
    0.322% 25.052%,
    0.445% 24.887%,
    0.587% 24.734%,
    0.747% 24.594%,
    0.925% 24.469%,
    1.119% 24.359%,
    48.93% 0.356%
  );
}
.thumbnail-about-right-4 .small-image {
  position: absolute;
  left: -140px;
  bottom: -36px;
  max-width: 219px;
  z-index: 10;
}
@media only screen and (max-width: 575px) {
  .thumbnail-about-right-4 .small-image {
    left: 0;
  }
}
.about-content-four-left p.disc {
  padding-left: 65px;
  position: relative;
  margin-bottom: 40px;
  margin-top: 10px;
}
@media only screen and (max-width: 575px) {
  .about-content-four-left p.disc {
    padding-left: 0;
  }
}
.about-content-four-left p.disc::after {
  content: "";
  position: absolute;
  left: 0;
  width: 51px;
  height: 3px;
  background: var(--color-primary);
  top: 8px;
}
@media only screen and (max-width: 575px) {
  .about-content-four-left p.disc::after {
    display: none;
  }
}
.thumbnail-about-five {
  border-radius: 0 10px 10px 0;
  display: block;
  overflow: hidden;
}
.about-content-inner-five {
  max-width: 65%;
}
@media only screen and (max-width: 1199px) {
  .about-content-inner-five {
    max-width: 95%;
  }
}
@media only screen and (max-width: 991px) {
  .about-content-inner-five {
    padding-left: 15px;
  }
}
.about-content-inner-five .about-single-home-7 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-content-inner-five .about-single-home-7 {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-content-inner-five .about-single-home-7 {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .about-content-inner-five .about-single-home-7 {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.about-content-inner-five .about-single-home-7:last-child {
  margin-bottom: 0;
}
.about-content-inner-five .about-single-home-7:last-child::after {
  display: none;
}
.about-content-inner-five .about-single-home-7::after {
  position: absolute;
  content: "";
  left: 30px;
  top: 65%;
  bottom: 0;
  height: 120px;
  width: 1px;
  background: #d9d9d9;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-content-inner-five .about-single-home-7::after {
    left: 21px;
    top: 39%;
  }
}
@media only screen and (max-width: 1199px) {
  .about-content-inner-five .about-single-home-7::after {
    left: 21px;
    top: 39%;
  }
}
@media only screen and (max-width: 991px) {
  .about-content-inner-five .about-single-home-7::after {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .about-content-inner-five .about-single-home-7::after {
    display: none;
  }
}
.about-content-inner-five .about-single-home-7 .icon {
  margin-right: 25px;
}
.about-content-inner-five .about-single-home-7 .icon img {
  border-radius: 50%;
}
.about-6-thumbnail-left-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-left: -70px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about-6-thumbnail-left-wrapper {
    margin-left: 0;
  }
}
.about-6-thumbnail-left-wrapper .progress-area-wrapper {
  position: absolute;
  left: 32%;
  bottom: -40px;
  background: var(--color-primary);
  padding: 28px 25px;
  border-radius: 10px;
  transform: translateX(-40%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-6-thumbnail-left-wrapper .progress-area-wrapper {
    left: 51%;
  }
}
.about-6-thumbnail-left-wrapper .progress-area-wrapper .title {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}
.about-6-thumbnail-left-wrapper .single-progress-circle {
  display: flex;
  justify-content: center;
  position: relative;
}
.about-6-thumbnail-left-wrapper .single-progress-circle .small-text {
  position: absolute;
  top: 55%;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1f1f21;
  font-family: var(--font-primary);
}
.about-6-inner-content-content p.disc {
  color: #5d666f;
  font-size: 16px;
}
.about-6-inner-content-content .rts-btn {
  margin-top: 40px;
  padding: 13px 36px;
}
.rts-about-us-area-8 span.pre {
  color: #fff;
}
.rts-about-us-area-8 .title {
  color: #fff;
}
.rts-about-us-area-8 .title span {
  font-weight: 400;
}
.rts-about-us-area-8 p.disc {
  color: #b3b7c1;
}
.counter-up-main-wrapper-8 {
  display: flex;
  align-items: center;
  gap: 95px;
}
@media only screen and (max-width: 991px) {
  .counter-up-main-wrapper-8 {
    flex-wrap: wrap;
    gap: 35px;
  }
}
.rts-about-us-area-8 {
  position: relative;
}
.rts-about-us-area-8 .right-content-image {
  position: absolute;
  right: 315px;
  bottom: 0;
  max-width: 479px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-about-us-area-8 .right-content-image {
    right: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-about-us-area-8 .right-content-image {
    right: 20px;
    max-width: 340px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-about-us-area-8 .right-content-image {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .rts-about-us-area-8 .right-content-image {
    display: none;
  }
}
.rts-about-us-area-8 .text-stock-area {
  margin-right: -111px;
}
@media only screen and (max-width: 767px) {
  .rts-about-us-area-8 .text-stock-area {
    margin-right: 0;
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .rts-about-us-area-8 .text-stock-area {
    display: none;
  }
}
.thumbnail-about-10-wrapper {
  max-width: 487px;
  margin: auto;
}
.about-area-wrapper-content-10 .single-progress {
  padding: 10px;
  border: 1px solid #000;
  border-radius: 33px;
}
.about-area-wrapper-content-10 .single-progress .progress {
  background: 0 0;
  background-color: transparent;
}
.about-area-wrapper-content-10 p.disc {
  padding-left: 70px;
  position: relative;
  font-size: 16px;
  color: #5d666f;
}
@media only screen and (max-width: 575px) {
  .about-area-wrapper-content-10 p.disc {
    padding-left: 0;
  }
}
.about-area-wrapper-content-10 p.disc::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 51px;
  background: var(--color-primary);
  left: 0;
  top: 7px;
  border-radius: 5px;
}
@media only screen and (max-width: 575px) {
  .about-area-wrapper-content-10 p.disc::after {
    display: none;
  }
}
.thumbnail-about-10-wrapper {
  position: relative;
}
.thumbnail-about-10-wrapper .top-counter-area {
  background: var(--color-primary);
  padding: 30px 38px;
  border-radius: 10px;
  max-width: 234px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: -70px;
}
@media only screen and (max-width: 575px) {
  .thumbnail-about-10-wrapper .top-counter-area {
    left: 0;
    padding: 15px;
  }
}
.thumbnail-about-10-wrapper .top-counter-area .title {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 19px;
}
.thumbnail-about-10-wrapper .top-counter-area p {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: #b3b7c1;
  min-width: max-content;
}
.thumbnail-accountent-why-choose {
  position: relative;
}
.thumbnail-accountent-why-choose img {
  width: 700px;
  height: 500px;
}
.thumbnail-accountent-why-choose .counter-about-area {
  position: absolute;
  padding: 28px 19px;
  background: #20282d;
  position: absolute;
  top: 50px;
  left: -20px;
  text-align: center;
  border-radius: 15px;
}
@media (max-width:1400px) {
    
  .service-main-wrapper-list {
    width: auto;
  }
}

@media (max-width:1200px) {
    
  .thumbnail-accountent-why-choose .counter-about-area {
    position: absolute;
    padding: 25px 25px;
    background: #20282d;
    position: absolute;
    top: 50px;
    left: 0;
    text-align: center;
    border-radius: 15px;
  }
}

@media (max-width:984px) {
  
  .thumbnail-accountent-why-choose .counter-about-area {
    position: absolute;
    padding: 25px 25px;
    background: #20282d;
    position: absolute;
    top: 50px;
    left: 30px;
    text-align: center;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .thumbnail-accountent-why-choose img {
    height: 300px;
  }
  .thumbnail-accountent-why-choose .counter-about-area {
    padding: 20px;
    left: 6px;
  }
}
.thumbnail-accountent-why-choose .counter-about-area .title {
  font-size: 48px;
  margin-bottom: 5px;
}
.thumbnail-accountent-why-choose .counter-about-area * {
  color: #fff;
}
.thumbnail-accountent-why-choose.style-two .counter-about-area {
  top: 0;
  left: 0;
  padding: 27px 33px;
}
.feature-between-flex {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 575px) {
  .feature-between-flex {
    flex-wrap: wrap;
  }
}
.feature-between-flex .single-feature-service-wrapper-8 {
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .feature-between-flex .single-feature-service-wrapper-8 {
    align-items: flex-start;
  }
}
section.main-wrapper-sticky {
  height: 735px;
}
@media only screen and (max-width: 1199px) {
  section.main-wrapper-sticky {
    height: auto;
  }
}
.service-bg-style-one-wrapper {
  /* background-image: url(../images/service/01.webp); */
  padding: 80px 100px 50px 100px;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .service-bg-style-one-wrapper {
    padding: 15px;
  }
}
.single-service-signle-wrapper {
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
@media only screen and (max-width: 991px) {
  .single-service-signle-wrapper {
    flex-direction: column;
    padding: 22px;
  }
}
.single-service-signle-wrapper .icons {
  min-width: max-content;
}
.single-service-signle-wrapper .information .title {
  font-size: 22px;
  font-weight: 700;
}
.single-service-signle-wrapper .information p.disc {
  line-height: 1.5;
  color: #5d666f;
  margin-bottom: 25px;
}
.single-service-signle-wrapper .information .arrow-right {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1c2539;
}
.single-service-signle-wrapper .information .arrow-right i {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #1c2539;
  box-shadow: 0 9px 18px rgba(24, 16, 16, 0.05);
}
.service-style-swiper-wrapper-two {
  position: relative;
}
.service-style-swiper-wrapper-two .mySwiper-service-1 {
  padding-bottom: 90px;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media only screen and (max-width: 575px) {
  .swiper-pagination {
    gap: 1px;
  }
}
.service-single-main-wrapper-five {
  background: #f2f2f2;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}
.service-single-main-wrapper-five .icon {
  height: 85px;
  width: 85px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  background: #fff;
  border-radius: 100%;
}
.service-single-main-wrapper-five .title {
  font-weight: 700;
  font-weight: 24px;
}
.service-single-main-wrapper-five p.disc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.service-single-main-wrapper-five .rts-btn {
  max-width: max-content;
  margin: auto;
  background: #fff !important;
}
.top--120 {
  top: 120px;
}
@media only screen and (max-width: 1199px) {
  br {
    display: none;
  }
}
.rts-service-main-wrapper-10 {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e3e0e6;
}
.rts-service-main-wrapper-10 .signle-service-style-10 {
  flex-basis: 50%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
  overflow: hidden;
  display: block;
}
@media only screen and (max-width: 767px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail {
    width: 100%;
  }
}
.rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 .thumbnail img {
    width: 100%;
  }
}
.rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
  padding: 30px 50px;
  flex-basis: 50%;
  min-width: 50%;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
    flex-basis: 35%;
    min-width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .rts-service-main-wrapper-10 .signle-service-style-10 .content-area-wrapper {
    padding: 22px;
  }
}
.rts-service-main-wrapper-10
  .signle-service-style-10
  .content-area-wrapper
  .icon {
  margin-bottom: 45px;
}
@media only screen and (max-width: 1199px) {
  .rts-service-main-wrapper-10
    .signle-service-style-10
    .content-area-wrapper
    .icon {
    margin-bottom: 11px;
  }
}
.rts-service-main-wrapper-10
  .signle-service-style-10
  .content-area-wrapper
  .title {
  margin-bottom: 12px;
}
.rts-service-main-wrapper-10
  .signle-service-style-10
  .content-area-wrapper
  p.disc {
  margin-bottom: 14px;
}
.rts-service-main-wrapper-10
  .signle-service-style-10
  .content-area-wrapper
  .arrow-right-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.rts-service-main-wrapper-10 .signle-service-style-10:hover .thumbnail img {
  transform: scale(1.1);
}
.container-1754 {
  max-width: 1754px;
  margin: auto;
}
.rts-single-wized {
  background: #20282d;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
}
.rts-single-wized:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 479px) {
  .rts-single-wized {
    padding: 20px;
  }
}
.rts-single-wized.service {
  border-radius: 0;
}
.rts-single-wized.contact {
  background: #1c2539;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
}
@media only screen and (max-width: 479px) {
  .rts-single-wized.contact {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-single-wized.contact:last-child {
    margin-bottom: 0;
  }
}
.rts-single-wized.contact .wized-body {
  text-align: center;
}
.rts-single-wized.contact .wized-body .title {
  color: #fff;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 32px;
}
.rts-single-wized.contact .wized-body a.rts-btn {
  display: block;
  max-width: max-content;
  margin: auto;
}
.rts-single-wized .wized-header .title {
  margin-bottom: 10px;
  color: #fff;
}
.rts-single-wized .wized-body {
  margin-top: 30px;
}
.rts-single-wized .wized-body .rts-search-wrapper {
  position: relative;
}
.rts-single-wized .wized-body .rts-search-wrapper input {
  background: #fff;
  height: 55px;
  border-radius: 5px;
  padding-right: 70px;
  padding-left: 25px;
  border: 1px solid transparent;
}
.rts-single-wized .wized-body .rts-search-wrapper input:focus {
  border: 1px solid var(--color-primary);
}
.rts-single-wized .wized-body .rts-search-wrapper button {
  position: absolute;
  max-width: max-content;
  height: 55px;
  width: 55px;
  border-radius: 5px;
  background: var(--color-primary);
  display: inline-block;
  padding: 0 19px;
  right: 0;
}
.rts-single-wized .wized-body .rts-search-wrapper button i {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
}
.title-area-between-hr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .title-area-between-hr {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.title-area-between-hr .title-area-hr-left .pre {
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  border: 1px solid #999;
  border-radius: 10px;
  display: block;
  margin-bottom: 15px;
  max-width: max-content;
}
.title-area-between-hr .title-area-hr-left .title {
  font-size: 48px;
  color: #1c2539;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .title-area-between-hr .title-area-hr-left .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .title-area-between-hr .title-area-hr-left .title {
    font-size: 28px;
  }
}
.title-area-between-hr .rts-btn {
  border: 1px solid #999;
  color: #1c2539;
}
.title-area-between-hr .rts-btn::before {
  background: var(--color-primary);
}
.title-area-between-hr .rts-btn:hover {
  color: #fff;
}
.banner-service-wrapper-bg {
  background: #f2f2f2;
}
.single-service-hr {
  background: #fff;
  padding: 22px 22px 30px 22px;
  border-radius: 10px;
  text-align: center;
}
.single-service-hr .rts-btn {
  margin: auto;
}
.single-service-hr .inner {
  z-index: 2;
  position: relative;
  margin-top: -40px;
}
.single-service-hr .inner .icon-area {
  height: 85px;
  width: 85px;
  margin: auto;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 30px;
}
.single-service-hr .inner .disc {
  margin-bottom: 25px;
}
.service-main-wrapper-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.service-main-wrapper-list .single-service-wrapper {
  display: flex;
  align-items: center;
  width: auto;
  min-height: 100px;
  margin: 10px 0;
  overflow: hidden;
}
.service-main-wrapper-list .single-service-wrapper .thumbnail {
  width: 95px;
  height: 95px;
  flex: 0 0 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7f3;
}
.service-main-wrapper-list .single-service-wrapper .thumbnail img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.service-main-wrapper-list .single-service-wrapper a.in_tool {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.service-main-wrapper-list .single-service-wrapper .content {
  width: 100%;
  padding: 0 28px;
}
.service-main-wrapper-list .single-service-wrapper .content .title {
  margin: 0;
  padding: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.service-main-wrapper-list .single-service-wrapper .thumbnail img {
  transition: 0.6s;
}
.service-main-wrapper-list .single-service-wrapper:hover {
  transform: translateY(-5px);
}
.service-main-wrapper-list .single-service-wrapper:hover .thumbnail img {
  transform: scale(1.08);
}
.title-style-one .pre {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #e9e9e9;
  font-size: 16px;
  color: #5d666f;
  display: flex;
  max-width: max-content;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 700;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .title-style-one .pre {
    margin-bottom: 15px;
  }
}
.title-style-one .title {
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (max-width: 1199px) {
  .title-style-one .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .title-style-one .title {
    font-size: 32px;
    line-height: 1.4;
  }
  .title-style-one .title br {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-one .title {
    font-size: 28px;
  }
}
.title-style-one.left {
  text-align: left;
}
.title-style-one.center {
  text-align: center;
}
.title-style-one.center .pre {
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .title-style-one.center .pre {
    margin-bottom: 15px;
  }
}
.title-style-two {
  position: relative;
  z-index: 1;
}
.title-style-two .bg-content {
  font-size: 150px;
  position: absolute;
  font-weight: 900;
  letter-spacing: 0;
  left: -90px;
  z-index: -1;
  top: -65px;
  font-family: var(--font-primary);
  min-width: max-content;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}
@media only screen and (max-width: 575px) {
  .title-style-two .bg-content {
    font-size: 100px;
  }
}
.title-style-two .bg-content::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.8855917367) 0,
    rgba(255, 255, 255, 0.6082808123) 35%,
    rgba(255, 255, 255, 0) 100%
  );
}
.title-style-two .pre {
  font-size: 16px;
  color: #000;
  display: flex;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 2px;
}
.title-style-two .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-style-two .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1199px) {
  .title-style-two .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .title-style-two .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-two .title {
    font-size: 26px;
  }
}
.title-style-two.center {
  text-align: center;
}
.title-style-two.center .pre {
  text-align: center;
  justify-content: center;
}
.title-style-two.center .bg-content {
  left: 50%;
  transform: translateX(-50%);
}
.container {
  padding: 0 15px;
}
.grow {
  transform: scale(1.25);
}
.title-style-four .pre {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5d666f;
}
.title-style-four .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  text-transform: uppercase;
  color: #1c2539;
  -webkit-text-stroke-color: #1c2539;
  -webkit-text-stroke: 1px;
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  .title-style-four .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .title-style-four .title {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767px) {
  .title-style-four .title {
    font-size: 28px;
    line-height: 1.3;
  }
}
.title-style-four .title span {
  font-size: 48px;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
@media only screen and (max-width: 1199px) {
  .title-style-four .title span {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .title-style-four .title span {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 991px) {
  .title-style-four .title span {
    font-size: 28px;
    line-height: 1.3;
  }
}
.title-style-four.center {
  text-align: center;
}
.title-style-four.center span {
  font-size: unset;
}
.title-style-five.center {
  text-align: center;
}
.title-style-five span.pre {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5d666f;
}
@media only screen and (max-width: 575px) {
  .title-style-five span.pre {
    font-size: 14px;
  }
}
.title-style-five .title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-style-five .title {
    font-size: 36px;
  }
  .title-style-five .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .title-style-five .title {
    font-size: 36px;
  }
  .title-style-five .title br {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-five .title {
    font-size: 28px;
    line-height: 1.3;
  }
}
.bg-main {
  background: #20282d;
}
.bg-main .title-style-one .pre {
  border: 1px solid #e9e9e9;
  color: #fff;
  border-radius: 6px;
}
@media only screen and (max-width: 575px) {
  .bg-main .title-style-one .pre {
    font-size: 14px;
  }
}
.bg-main .title-style-one .title {
  color: #fff;
}
.bg-main .title-style-one.left {
  text-align: left;
}
.bg-main .title-style-one.center {
  text-align: center;
}
.bg-main .title-style-one.center .pre {
  margin: auto;
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .bg-main .title-style-one.center .pre {
    font-size: 14px;
  }
}
.container-2 {
  max-width: 1680px;
  margin: auto;
}
.container-1680 {
  max-width: 1680px;
  margin: auto;
}
.index-five .rts-btn {
  border-radius: 100px;
}
.index-five #menu-btn {
  border-radius: 50% !important;
}
.bg_primary {
  background: var(--color-primary);
}
.title-style-10 {
  text-align: center;
}
.title-style-10 span.pre {
  font-size: 18px;
}
@media only screen and (max-width: 575px) {
  .title-style-10 span.pre {
    font-size: 14px;
  }
}
.title-style-10 .title {
  font-size: 60px;
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .title-style-10 .title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .title-style-10 .title {
    font-size: 46px;
  }
  .title-style-10 .title br {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .title-style-10 .title {
    font-size: 34px;
  }
}
.title-style-10.left {
  text-align: left;
}
.pagination {
  margin: auto;
  max-width: max-content;
  margin-top: 25px;
}
.pagination button {
  max-width: max-content;
  padding: 15px;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  margin-right: 10px;
  color: #1c2539;
  font-weight: 700;
  height: 50px;
  width: 50px;
  line-height: 18px;
}
.pagination button:hover {
  background: var(--color-primary);
  color: #fff;
}
.pagination button:last-child {
  margin-right: 0;
  font-size: 24px;
}
.pagination button:last-child i {
  margin-top: -3px;
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100% !important;
  }
}
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.color-yellow-demo {
  --color-primary: #e04700;
}
.color-yellow-demo .why-choose-8-wrapper-content {
  max-width: 100%;
}
.color-yellow-demo .title-area-client-client::after,
.color-yellow-demo .title-area-client-client::before {
  background: #20282d;
}
.color-yellow-demo .single-feature-service-wrapper-8 .icon {
  height: 60px;
  width: 60px;
  border-radius: 10px;
}
.swiper-pagination {
  width: 100% !important;
  bottom: 8px !important;
}
.single-working-process-one {
  display: flex;
  align-items: center;
  gap: 110px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .single-working-process-one {
    gap: 25px;
  }
}
@media only screen and (max-width: 479px) {
  .single-working-process-one {
    gap: 10px;
  }
}
.single-working-process-one:last-child {
  margin-bottom: 0;
}
.single-working-process-one .left {
  position: relative;
  z-index: 5;
}
.single-working-process-one .left .icon {
  height: 110px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3e484e;
  border-radius: 100%;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .single-working-process-one .left .icon {
    height: 90px;
    width: 90px;
  }
}
@media only screen and (max-width: 479px) {
  .single-working-process-one .left .icon {
    height: 75px;
    width: 75px;
  }
}
.single-working-process-one .left .icon::after {
  position: absolute;
  content: "";
  /* background-image: url(../images/process/01.png); */
  height: 19px;
  width: 19px;
  background-repeat: no-repeat;
  background-position: center;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 575px) {
  .single-working-process-one .left .icon::after {
    display: none;
  }
}
.single-working-process-one .inner-content {
  border-radius: 10px;
  padding: 40px 50px;
  background: #3e484e;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 479px) {
  .single-working-process-one .inner-content {
    padding: 15px 5px 15px 50px;
  }
}
.single-working-process-one .inner-content .title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}
.single-working-process-one .inner-content p.disc {
  color: #c9c9c9;
}
.business-process-hr-left-thumbnail {
  display: flex;
  justify-content: center;
  max-width: 456px;
  margin: auto;
  position: relative;
}
.business-process-hr-left-thumbnail .right-top {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 35px;
  border-radius: 20px;
  border: 1px solid #e3e0e6;
  position: absolute;
  top: 40px;
  right: -60px;
  background: #fff;
}
@media only screen and (max-width: 1199px) {
  .business-process-hr-left-thumbnail .right-top {
    right: 15px;
  }
}
.business-process-hr-left-thumbnail .right-top .title {
  margin-bottom: 0;
  font-size: 36px;
}
.business-process-hr-content .title {
  margin-top: 20px;
}
.business-process-hr-content p.disc {
  margin-top: 20px;
  margin-bottom: 40px;
}
.index-one {
  overflow-x: visible;
}
@media only screen and (max-width: 1199px) {
  .index-one {
    overflow-x: hidden;
  }
}
.title-area-between-9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .title-area-between-9 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-between-9 {
    gap: 0;
  }
}
.title-area-between-9 > div {
  flex-basis: 112%;
}
.single-team-area-one-start {
  position: relative;
}
.single-team-area-one-start .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 15px;
}
.single-team-area-one-start .thumbnail img {
  transition: 0.5s;
}
.single-team-area-one-start:hover img {
  transform: scale(1.07);
}
.single-team-area-one-start .inner-content {
  position: absolute;
  left: 50%;
  background: #fff;
  box-shadow: 0 4px 27px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  text-align: center;
  margin-top: -96px;
  transform: translateX(-50%);
  width: max-content;
}
.single-team-area-one-start .inner-content .title {
  margin-bottom: 5px;
}
.single-team-area-one-start .inner-content .text-top {
  border-bottom: 1px solid #f0f0f0;
  padding: 21px 60px 15px 60px;
}
.single-team-area-one-start .inner-content .social-one-wrapper {
  display: flex;
  justify-content: center;
}
.single-team-area-one-start .inner-content .social-one-wrapper ul {
  padding: 0;
  display: flex;
  align-items: center;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.single-team-area-one-start .inner-content .social-one-wrapper ul li {
  margin: 0;
  padding: 0;
}
.single-team-area-one-start .inner-content .social-one-wrapper ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #f6f6f6;
  border-radius: 50%;
  color: #1c2539;
  transition: 0.4s;
}
.single-team-area-one-start .inner-content .social-one-wrapper ul li a:hover {
  background: #1c2539;
  color: #fff;
}
.team-single-one-start {
  background: #fff;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 12px 52px rgba(27, 23, 23, 0.03);
  border-radius: 8px;
}
.team-single-one-start:hover {
  transform: translateY(-20px);
}
.team-single-one-start .team-image-area a {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.team-single-one-start .team-image-area a:hover img {
  transform: scale(1.1);
}
.team-single-one-start .team-image-area a img {
  width: 100%;
  transition: 0.3s;
}
.team-single-one-start .team-image-area a .team-social {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.team-single-one-start .team-image-area a .team-social .main i {
  padding: 16px;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 12px;
  font-weight: 600;
  color: var(--color-primary);
  transition: 0.3s;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.team-single-one-start .team-image-area a .team-social:hover .main i {
  background: var(--color-primary);
  color: #fff;
}
.team-single-one-start .team-image-area a .team-social .team-social-one {
  display: flex;
  flex-direction: column;
  position: absolute;
  transform: translateY(50px);
  transition: 1s;
  opacity: 0;
}
.team-single-one-start .team-image-area a .team-social .team-social-one i {
  background: #fff;
  border-radius: 60%;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: var(--color-primary);
  transition: 0.3s;
  margin-bottom: 10px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-single-one-start
  .team-image-area
  a
  .team-social
  .team-social-one
  i:hover {
  background: var(--color-primary);
  color: #fff;
}
.team-single-one-start .team-image-area a .team-social:hover .main {
  opacity: 0;
}
.team-single-one-start .team-image-area a .team-social:hover .team-social-one {
  transform: translateY(-96%);
  z-index: 2;
  opacity: 1;
}
.rts-team-area-start-four .single-team-area-one-start {
  position: relative;
}
.rts-team-area-start-four .single-team-area-one-start::after {
  position: absolute;
  left: 50%;
  bottom: -82px;
  content: "";
  height: 200px;
  width: 200px;
  background: rgba(28, 37, 57, 0.1803921569);
  filter: blur(79px);
  transform: translateX(-50%);
  z-index: -1;
}
.rts-team-area-start-four .single-team-area-one-start .inner-content {
  margin-top: -165px;
  height: 308px;
  width: 280px;
  margin-left: auto;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(
    48.93% 0.356%,
    48.93% 0.356%,
    49.136% 0.264%,
    49.349% 0.194%,
    49.568% 0.143%,
    49.791% 0.113%,
    50.015% 0.103%,
    50.24% 0.113%,
    50.463% 0.143%,
    50.681% 0.194%,
    50.895% 0.264%,
    51.101% 0.356%,
    98.912% 24.359%,
    98.912% 24.359%,
    99.106% 24.469%,
    99.283% 24.594%,
    99.444% 24.734%,
    99.586% 24.887%,
    99.708% 25.052%,
    99.811% 25.227%,
    99.892% 25.411%,
    99.951% 25.602%,
    99.988% 25.798%,
    100% 26%,
    100% 74%,
    100% 74%,
    99.988% 74.202%,
    99.951% 74.398%,
    99.892% 74.589%,
    99.811% 74.773%,
    99.708% 74.948%,
    99.586% 75.113%,
    99.444% 75.266%,
    99.283% 75.406%,
    99.106% 75.531%,
    98.912% 75.641%,
    51.101% 99.645%,
    51.101% 99.645%,
    50.895% 99.736%,
    50.681% 99.806%,
    50.463% 99.857%,
    50.24% 99.887%,
    50.015% 99.897%,
    49.791% 99.887%,
    49.568% 99.857%,
    49.349% 99.806%,
    49.136% 99.736%,
    48.93% 99.645%,
    1.119% 75.641%,
    1.119% 75.641%,
    0.925% 75.531%,
    0.747% 75.406%,
    0.587% 75.266%,
    0.445% 75.113%,
    0.322% 74.948%,
    0.22% 74.773%,
    0.138% 74.589%,
    0.079% 74.398%,
    0.043% 74.202%,
    0.031% 74%,
    0.031% 26%,
    0.031% 26%,
    0.043% 25.798%,
    0.079% 25.602%,
    0.138% 25.411%,
    0.22% 25.227%,
    0.322% 25.052%,
    0.445% 24.887%,
    0.587% 24.734%,
    0.747% 24.594%,
    0.925% 24.469%,
    1.119% 24.359%,
    48.93% 0.356%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.rts-team-area-start-four .single-team-area-one-start .inner-content .text-top {
  padding: 21px 70px 15px 70px;
}
.single-team-style-5 .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}
.single-team-style-5 .thumbnail img {
  transition: 0.3s;
}
.single-team-style-5 .inner a .title {
  margin-bottom: 10px;
  font-size: 24px;
}
.single-team-style-5 .inner span {
  font-size: 16px;
  font-weight: 400;
}
.single-team-style-5:hover .thumbnail img {
  transform: scale(1.05);
}
.bg_team-area-five {
  /* background-image: url(../images/team/bg.webp); */
}
.check {
  font-size: 18px;
}
.check i {
  color: #28a745;
}
.cross i {
  color: #dc3545;
  font-size: 18px;
}
.sticky-wrapper-main {
  height: auto;
}
.rts-call-to-action-area-two {
  /* background-image: url(../images/cta/02.webp); */
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .rts-call-to-action-area-two {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
/* .bg_cts-10 {
  background-image: url(../images/cta/09.webp);
} */
.footer-bg-two {
  background: url(../images/footer/02.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: auto;
  border-radius: 0;
}
.footer-two-single-wized.right {
  margin-top: 77px;
}
@media only screen and (max-width: 767px) {
  .footer-two-single-wized.right {
    margin-top: 0;
  }
}
.footer-two-single-wized.left .title {
  font-size: 36px;
  color: #1c2539;
  line-height: 46px;
}
.footer-two-single-wized.left .title span {
  font-weight: 300;
}
.footer-two-single-wized.left p.disc {
  font-size: 16px;
  color: #5d666f;
  line-height: 26px;
}
.footer-two-single-wized.left a.rts-btn:hover {
  background: #fff;
  box-shadow: 0 2px 20px rgba(24, 16, 16, 0.07);
}
.footer-two-single-wized .wized-title-area .wized-title {
  margin-bottom: 4px;
}
.footer-two-single-wized .wized-2-body ul {
  list-style: none;
  padding-left: 0;
}
.footer-two-single-wized .wized-2-body ul li a {
  color: #5d666f;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.footer-two-single-wized .wized-2-body ul li a i {
  font-size: 14px;
  margin-right: 10px;
}
.footer-two-single-wized .wized-2-body ul li a:hover {
  color: var(--color-primary-2);
}
.footer-two-single-wized .wized-2-body ul li a:hover {
  color: var(--color-primary-2);
  margin-left: 10px;
}
.rts-footer-area-two {
  background-color: #20282d;
}
.bg-footer-two {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-image: url(../images/footer/01.webp);
}
.footer-two .margin-left-65 {
  margin-left: 65px;
}
@media only screen and (max-width: 991px) {
  .footer-two .margin-left-65 {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-two .margin-left-65 {
    margin-left: 10px;
  }
}
.footer-two .rts-copyright-area {
  border-top: 1px solid #3d4352;
  padding: 30px 0;
}
.footer-two .rts-copyright-area p {
  font-size: 16px;
  color: #fff;
}
.footer-two .footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}
.footer-two .footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}
.footer-two .footer-one-single-wized .quick-link-inner {
  display: flex;
}
.footer-two .footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}
.footer-two .footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}
.footer-two .footer-one-single-wized .wized-title .title {
  color: #fff;
  margin-bottom: 10px;
}
.footer-two .footer-one-single-wized .quick-link-inner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer-two .footer-one-single-wized .quick-link-inner {
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-two .footer-one-single-wized .quick-link-inner {
    flex-direction: column;
  }
}
.footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
  margin-left: 70px;
}
@media only screen and (max-width: 479px) {
  .footer-two .footer-one-single-wized .quick-link-inner .links.margin-left-70 {
    margin-left: 0;
  }
}
.footer-two .footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li {
  margin-top: 0;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a {
  color: #8b8f99;
  transition: var(--transition);
  position: relative;
  max-width: max-content;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  left: 29px;
  bottom: 0;
  transition: 0.3s;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a i {
  margin-right: 12px;
  transition: 0.3s;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a:hover {
  color: #fff;
}
.footer-two
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a:hover::after {
  position: absolute;
  width: 76%;
}
.footer-two .footer-one-single-wized .quick-link-inner .links li a:hover i {
  color: #fff;
}
.mb--310 {
  margin-bottom: 310px;
}
.footer-8-area-bg {
  background: #f8fafc;
  border-top: 2px solid #f15a24;
}
.footer-logo-area-left-8 {
  text-align: left;
  color: #000;
}
.footer-logo-area-left-8 .logo {
  display: block;
  margin-bottom: 25px;
}
.footer-logo-area-left-8 p.disc {
  color: #444;
  font-size: 16px;
  line-height: 1.9;
  margin-top: 20px;
}
.footer-logo-area-left-8 ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.footer-logo-area-left-8 ul li a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e3a6d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-logo-area-left-8 ul li a i {
  color: #fff;
}
.footer-logo-area-left-8 ul li a:hover {
  background: #f15a24;
  transform: translateY(-4px);
  padding-left: 6px;
}
.footer-8-area-bg .footer-one-single-wized .wized-title {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .footer-8-area-bg .footer-one-single-wized .wized-title {
    margin-top: 15px;
  }
}
.footer-8-area-bg .footer-one-single-wized .wized-title .title {
  color: #222;
  margin-bottom: 10px;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner {
  display: flex;
}
@media only screen and (max-width: 479px) {
  .footer-8-area-bg .footer-one-single-wized .quick-link-inner {
    flex-direction: column;
  }
}
.footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links.margin-left-70 {
  margin-left: 70px;
}
@media only screen and (max-width: 1199px) {
  .footer-8-area-bg
    .footer-one-single-wized
    .quick-link-inner
    .links.margin-left-70 {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-8-area-bg
    .footer-one-single-wized
    .quick-link-inner
    .links.margin-left-70 {
    margin-left: 0;
  }
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li {
  margin-top: 0;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a {
  color: #8b8f99;
  transition: var(--transition);
  position: relative;
  max-width: max-content;
}
.footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  left: 29px;
  bottom: 0;
  transition: 0.3s;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a i {
  margin-right: 12px;
  transition: 0.3s;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a:hover {
  color: var(--color-white);
}
.footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a:hover::after {
  position: absolute;
  width: 76%;
}
.footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a:hover
  i {
  color: #fff;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.signle-footer-contact-8 .icon {
  width: 28px;
  min-width: 28px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: 0 0;
  border: none;
  box-shadow: none;
}
.footer-8-area-bg .footer-one-single-wized .signle-footer-contact-8 .icon i {
  line-height: 2;
  color: #f15a24;
  font-size: 22px;
}
.signle-footer-contact-8:hover .icon {
  background: #f15a24;
}
.signle-footer-contact-8:hover .icon i {
  color: #fff;
}
.footer-8-area-bg
  .footer-one-single-wized
  .signle-footer-contact-8
  .inner-content
  .title {
  color: #fff;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 400;
}
.footer-8-area-bg
  .footer-one-single-wized
  .signle-footer-contact-8
  .inner-content
  a {
  color: #8b8f99;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
}
.footer-8-area-bg
  .footer-one-single-wized
  .signle-footer-contact-8
  .inner-content
  a:hover {
  color: #fff;
}
.copyright-area-main-wrapper {
  padding: 22px 10px;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  border-top: 1px solid #c5cbd4;
}
.copyright-8-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .copyright-8-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.copyright-8-wrapper p {
  margin: 0;
  padding: 30px 0;
}
@media only screen and (max-width: 575px) {
  .copyright-8-wrapper p {
    padding: 30px 0 0 0;
    text-align: center;
  }
}
.copyright-8-wrapper * {
  color: #fff;
}
.copyright-8-wrapper ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
@media only screen and (max-width: 575px) {
  .copyright-8-wrapper ul {
    padding-left: 0;
  }
}
.copyright-8-wrapper ul li {
  padding: 0;
  margin: 0;
}
.copyright-8-wrapper ul li a:hover {
  color: #fff;
}
.with-hr-demo.rts-footer-area {
  clip-path: polygon(
    0 11.526%,
    0 100%,
    100% 100%,
    100% 11.526%,
    100% 11.526%,
    98.982% 8.419%,
    97.636% 5.577%,
    95.99% 3.159%,
    94.075% 1.325%,
    91.919% 0.235%,
    89.553% 0.048%,
    87.005% 0.924%,
    84.305% 3.023%,
    81.483% 6.504%,
    78.568% 11.526%,
    78.568% 11.526%,
    75.926% 15.966%,
    73.234% 19.069%,
    70.533% 20.966%,
    67.866% 21.789%,
    65.277% 21.669%,
    62.806% 20.737%,
    60.498% 19.126%,
    58.395% 16.966%,
    56.54% 14.389%,
    54.974% 11.526%,
    54.974% 11.526%,
    53.091% 8.241%,
    51.053% 5.509%,
    48.84% 3.396%,
    46.432% 1.968%,
    43.809% 1.293%,
    40.949% 1.437%,
    37.833% 2.465%,
    34.441% 4.446%,
    30.751% 7.444%,
    26.745% 11.526%,
    26.745% 11.526%,
    22.475% 15.818%,
    18.583% 18.838%,
    15.059% 20.706%,
    11.895% 21.539%,
    9.083% 21.459%,
    6.613% 20.583%,
    4.479% 19.033%,
    2.671% 16.927%,
    1.181% 14.385%,
    0 11.526%
  );
  padding-top: 200px;
}
@media only screen and (max-width: 991px) {
  .with-hr-demo.rts-footer-area {
    clip-path: none;
    padding-top: 80px;
  }
}
.rts-quote-area {
  padding: 50px;
  background: #f6f6f6;
  border-radius: 15px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-quote-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-quote-area {
    padding: 10px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-quote-area {
    margin-top: 15px;
  }
}
.rts-quote-area .title {
  margin-bottom: 25px;
  font-size: 24px;
}
@media only screen and (max-width: 479px) {
  .rts-quote-area .title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.rts-quote-area .name {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 700;
}
.rts-quote-area span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #5d666f;
}
.project-style-one {
  position: relative;
}
.project-style-one .inner-content {
  position: absolute;
  padding: 32px;
  border-radius: 15px;
  background: #fff;
  left: 30px;
  bottom: 44px;
  min-width: 337px;
}
.project-style-one .inner-content .title {
  margin-bottom: 5px;
  font-size: 24px;
}
.project-style-one .inner-content span {
  color: #5d666f;
  font-size: 16px;
}
.bg_project-5 {
  background-image: url(../images/project/10.webp);
}
.bg_project-5 .title-style-five * {
  color: #fff !important;
}
.project-content-left-5 {
  background: #fff;
  border-radius: 15px;
  padding: 102px 50px 63px 50px;
}
@media only screen and (max-width: 767px) {
  .project-content-left-5 {
    padding: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .project-content-left-5 {
    padding: 25px;
  }
}
.project-content-left-5 .title-area {
  margin-bottom: 30px;
  margin-top: 25px;
}
.project-content-left-5 .title-area .title {
  margin-bottom: 7px;
  font-size: 30px;
  font-weight: 700;
  color: #1c2539;
}
.project-content-left-5 p.disc {
  margin-bottom: 35px;
}
.project-content-left-5 .rts-btn {
  border-radius: 15px;
}
.mySwiper-project-five {
  padding-bottom: 90px;
  position: relative;
}
.single-project-area-main-wrapper-6 .thumbnail {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.single-project-area-main-wrapper-6 .thumbnail img {
  transition: 0.3s;
}
.single-project-area-main-wrapper-6 .inner {
  margin-top: 30px;
}
.single-project-area-main-wrapper-6 .inner .title {
  font-size: 30px;
}
.single-project-area-main-wrapper-6 .inner p.disc {
  margin-bottom: 0;
  font-size: 16px;
}
.single-project-area-main-wrapper-6:hover .thumbnail img {
  transform: scale(1.058);
}
.rts-project-area.without-bg-image .project-content-left-5 {
  background: #20282d;
  border-radius: 0;
}
.rts-project-area.without-bg-image .project-content-left-5 .title,
.rts-project-area.without-bg-image .project-content-left-5 p.disc,
.rts-project-area.without-bg-image .project-content-left-5 span {
  color: #fff;
}
.thumbnail-project-5 {
  height: 100%;
}
.thumbnail-project-5 img {
  height: auto;
  object-fit: cover;
}
.title-area-client-client {
  position: relative;
}
.title-area-client-client p.client-title {
  max-width: max-content;
  margin: auto;
  font-weight: 700;
  color: #1c2539;
  text-transform: uppercase;
}
.title-area-client-client::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  width: 41%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: -14px;
}
@media only screen and (max-width: 1199px) {
  .title-area-client-client::after {
    width: 38%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-client-client::after {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-client-client::after {
    width: 30%;
  }
}
@media only screen and (max-width: 575px) {
  .title-area-client-client::after {
    display: none;
  }
}
.title-area-client-client::before {
  content: "";
  position: absolute;
  left: 59%;
  width: 100%;
  height: 2px;
  width: 41%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
  .title-area-client-client::before {
    left: 62%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-client-client::before {
    left: 65%;
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-client-client::before {
    left: 69%;
    width: 30%;
  }
}
@media only screen and (max-width: 575px) {
  .title-area-client-client::before {
    display: none;
  }
}
.client-wrapper-one {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .client-wrapper-one {
    justify-content: center;
  }
}
@media only screen and (max-width: 1199px) {
  .client-wrapper-one {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .client-wrapper-one {
    position: relative;
    z-index: 50;
    gap: 15px;
  }
}
.client-wrapper-one a img {
  transition: var(--transition);
  max-width: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .client-wrapper-one a img {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .client-wrapper-one a img {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .client-wrapper-one a img {
    max-width: 80px;
  }
}
.client-wrapper-one a:hover img {
  transform: scale(1.1) translateY(-5px);
}
.counter-bg {
  /*background-image: url(../images/counterup/01.webp);*/
  height: 762px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 991px) {
  .counter-bg {
    height: auto;
  }
}
.counter-bg .single-counter {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 767px) {
  .counter-bg .single-counter {
    justify-content: flex-start !important;
    padding-left: 0 !important;
    margin: 15px 0;
  }
}
.counter-bg .single-counter .icon {
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-main-wrapper-area-start-6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(32, 40, 45, 0.1294117647);
}
@media only screen and (max-width: 1199px) {
  .counter-main-wrapper-area-start-6 {
    flex-wrap: wrap;
  }
}
.counter-main-wrapper-area-start-6 .single-counter-area-main {
  padding: 90px 55px 73px 55px;
  border-right: 1px solid rgba(32, 40, 45, 0.1294117647);
}
@media only screen and (max-width: 1199px) {
  .counter-main-wrapper-area-start-6 .single-counter-area-main {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .counter-main-wrapper-area-start-6 .single-counter-area-main {
    padding: 25px;
  }
}
.counter-main-wrapper-area-start-6 .single-counter-area-main .title {
  font-size: 70px;
  margin-bottom: 3px;
}
@media only screen and (max-width: 575px) {
  .counter-main-wrapper-area-start-6 .single-counter-area-main .title {
    font-size: 32px;
  }
}
.counter-main-wrapper-area-start-6 .single-counter-area-main:last-child {
  border: none;
}
.mr--0 {
  margin-right: 0 !important;
}
.brand-list-area-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .brand-list-area-wrapper {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}
.brand-list-area-wrapper .right-brand-area-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .brand-list-area-wrapper .right-brand-area-wrapper {
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.brand-list-area-wrapper .right-brand-area-wrapper img {
  max-width: 130px;
}
@media only screen and (max-width: 575px) {
  .brand-list-area-wrapper .right-brand-area-wrapper img {
    max-width: 90px;
  }
}
.brand-area-main-wrapper--box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .brand-area-main-wrapper--box {
    gap: 20px;
    justify-content: center;
  }
}
.brand-area-main-wrapper--box .single-brand {
  width: 33.1%;
  height: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(32, 40, 45, 0.21);
  border-top: 1px solid rgba(32, 40, 45, 0.21);
}
@media only screen and (max-width: 991px) {
  .brand-area-main-wrapper--box .single-brand {
    height: auto;
    border: none !important;
    width: auto;
  }
  .brand-area-main-wrapper--box .single-brand img {
    max-width: 95px;
  }
}
.brand-area-main-wrapper--box .single-brand:last-child {
  border-right: 1px solid rgba(32, 40, 45, 0.21);
}
.progress-wrapper-about-4 {
  max-width: 85%;
}
@media only screen and (max-width: 575px) {
  .progress-wrapper-about-4 {
    max-width: 100%;
  }
}
.single-progress {
  position: relative;
  margin-bottom: 25px;
}
.single-progress .title {
  position: absolute;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.single-progress .progress {
  height: 40px;
  background: linear-gradient(
    90deg,
    rgba(32, 40, 45, 0.1607843137) 0,
    rgba(242, 242, 242, 0.0196078431) 100%
  );
  opacity: 1;
  border-radius: 40px;
  background-color: transparent;
}
.single-progress .progress span {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
}
.progress-circle-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .progress-circle-main-wrapper {
    gap: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .progress-circle-main-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .progress-circle-main-wrapper {
    justify-content: center;
  }
}
.progress-circle-main-wrapper .single-progress-circle {
  display: flex;
  justify-content: center;
  position: relative;
}
.progress-circle-main-wrapper .single-progress-circle .small-text {
  position: absolute;
  top: 55%;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1f1f21;
  font-family: var(--font-primary);
}
.progress-circle-main-wrapper .single-progress-area {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media only screen and (max-width: 479px) {
  .progress-circle-main-wrapper .single-progress-area {
    flex-direction: column;
    align-items: center;
  }
}
.progress-circle-main-wrapper .single-progress-area::after {
  position: absolute;
  right: -86px;
  height: 100%;
  width: 1px;
  background: #d9d9d9;
  content: "";
}
@media only screen and (max-width: 1199px) {
  .progress-circle-main-wrapper .single-progress-area::after {
    display: none;
  }
}
.progress-circle-main-wrapper .single-progress-area:last-child::after {
  display: none;
}
.progress-circle-main-wrapper .single-progress-area svg text {
  opacity: 0;
}
.progress-circle-main-wrapper .single-progress-area img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.progress-circle-main-wrapper .single-progress-area .right-counter .title {
  margin-bottom: 0;
  font-size: 48px;
}
.progress-circle-main-wrapper .single-progress-area .right-counter p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5d666f;
}
.progress-area-wrapper.style-8 {
  display: flex;
  align-items: center;
  gap: 26px;
}
.progress-area-wrapper.style-8 .title {
  font-size: 20px;
  margin-bottom: 7px;
}
.progress-area-wrapper.style-8 p.disc {
  margin-bottom: 0;
  font-weight: 400;
  color: #5d666f;
}
/* .faq-bg-one {
  background-image: url(../images/faq/bg.webp);
} */
.faq-one-thumbnail-wrapper-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-one-thumbnail-wrapper-right .thumbnail {
  max-width: 520px;
  clip-path: polygon(
    48.93% 0.356%,
    48.93% 0.356%,
    49.136% 0.264%,
    49.349% 0.194%,
    49.568% 0.143%,
    49.791% 0.113%,
    50.015% 0.103%,
    50.24% 0.113%,
    50.463% 0.143%,
    50.681% 0.194%,
    50.895% 0.264%,
    51.101% 0.356%,
    98.912% 24.359%,
    98.912% 24.359%,
    99.106% 24.469%,
    99.283% 24.594%,
    99.444% 24.734%,
    99.586% 24.887%,
    99.708% 25.052%,
    99.811% 25.227%,
    99.892% 25.411%,
    99.951% 25.602%,
    99.988% 25.798%,
    100% 26%,
    100% 74%,
    100% 74%,
    99.988% 74.202%,
    99.951% 74.398%,
    99.892% 74.589%,
    99.811% 74.773%,
    99.708% 74.948%,
    99.586% 75.113%,
    99.444% 75.266%,
    99.283% 75.406%,
    99.106% 75.531%,
    98.912% 75.641%,
    51.101% 99.645%,
    51.101% 99.645%,
    50.895% 99.736%,
    50.681% 99.806%,
    50.463% 99.857%,
    50.24% 99.887%,
    50.015% 99.897%,
    49.791% 99.887%,
    49.568% 99.857%,
    49.349% 99.806%,
    49.136% 99.736%,
    48.93% 99.645%,
    1.119% 75.641%,
    1.119% 75.641%,
    0.925% 75.531%,
    0.747% 75.406%,
    0.587% 75.266%,
    0.445% 75.113%,
    0.322% 74.948%,
    0.22% 74.773%,
    0.138% 74.589%,
    0.079% 74.398%,
    0.043% 74.202%,
    0.031% 74%,
    0.031% 26%,
    0.031% 26%,
    0.043% 25.798%,
    0.079% 25.602%,
    0.138% 25.411%,
    0.22% 25.227%,
    0.322% 25.052%,
    0.445% 24.887%,
    0.587% 24.734%,
    0.747% 24.594%,
    0.925% 24.469%,
    1.119% 24.359%,
    48.93% 0.356%
  );
}
.faq-main-wrapper-content-inner-four .title-style-four {
  margin-right: -50px;
}
.faq-main-wrapper-content-inner-four .title-style-four * {
  color: #fff;
}
.working-process-bg {
  background-image: url(../images/wokring-process/bg-01.jpg);
  max-width: 1680px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: polygon(
    6.399% 10.697%,
    11.726% 0,
    100% 0,
    100% 50%,
    100% 81.841%,
    95.268% 90.112%,
    89.702% 100%,
    0 100%,
    0 22.948%,
    6.399% 10.697%
  );
}
@media only screen and (max-width: 767px) {
  .working-process-bg {
    clip-path: none;
  }
}
@media only screen and (max-width: 1199px) {
  .working-process-one.bg-main.rts-section-gap {
    z-index: -1 !important;
    overflow: hidden;
  }
}
.rts-working-process-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rts-working-process-1 .inner {
  width: 192px;
  height: 192px;
  border: 2px dashed rgba(32, 40, 45, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 33px;
  transition: 0.3s;
  position: relative;
}
.rts-working-process-1 .inner.two::after {
  content: "02";
}
.rts-working-process-1 .inner.four::after {
  content: "04";
}
.rts-working-process-1 .inner::after {
  position: absolute;
  right: 5px;
  top: 7px;
  content: "01";
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  transform: scale(0);
  transition: 0.3s;
}
.rts-working-process-1 .inner .icon {
  height: 144px;
  width: 144px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rts-working-process-1 .content .title {
  margin-bottom: 7px;
}
.rts-working-process-1.process-lg .inner {
  width: 245px;
  height: 245px;
}
.rts-working-process-1.process-lg .inner::after {
  width: 60px;
  height: 60px;
}
.rts-working-process-1.process-lg .inner .icon {
  width: 193.03px;
  height: 193.03px;
}
.rts-working-process-1:hover .inner {
  border: 2px dashed var(--color-primary);
}
.rts-working-process-1:hover .inner::after {
  transform: scale(1);
}
.single-why-choose-four {
  position: relative;
}
.single-why-choose-four .thumbnail {
  z-index: 1;
  display: block;
  position: relative;
  overflow: hidden;
}
.single-why-choose-four .thumbnail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 24.52%,
    rgba(6, 9, 12, 0.85) 87.86%
  );
  border-radius: 10px;
}
.single-why-choose-four .inner-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  text-align: center;
  min-width: max-content;
  z-index: 5;
}
@media only screen and (max-width: 1199px) {
  .single-why-choose-four .inner-content {
    min-width: 100%;
  }
}
.single-why-choose-four .inner-content .icon {
  margin-bottom: 20px;
}
.single-why-choose-four .inner-content .title {
  margin-bottom: 10px;
}
.single-why-choose-four .inner-content * {
  color: #fff;
}
.single-why-choose-four .inner-content p.disc {
  max-width: 55%;
  font-weight: 500;
  font-size: 16px;
  margin: auto;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .single-why-choose-four .inner-content p.disc {
    max-width: 100%;
  }
}
.business-solution-area-left-thumbnail {
  display: flex;
  justify-content: center;
  position: relative;
}
.business-solution-area-left-thumbnail .small-mobile {
  position: absolute;
  bottom: -41px;
  left: 0;
  max-width: 235px;
}
@media only screen and (max-width: 575px) {
  .business-solution-area-left-thumbnail .small-mobile {
    max-width: 160px;
  }
}
.rts-why-choose-us-section-8 {
  background: #f2f2f2;
}
@media only screen and (max-width: 1199px) {
  .rts-why-choose-us-section-8 {
    background: 0 0;
  }
}
.why-choose-8-wrapper-content {
  max-width: 70%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .why-choose-8-wrapper-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .why-choose-8-wrapper-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .why-choose-8-wrapper-content {
    max-width: 100%;
  }
}
.single-feature-service-wrapper-8 {
  display: flex;
  align-items: flex-start;
  gap: 29px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1199px) {
  .single-feature-service-wrapper-8 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .single-feature-service-wrapper-8 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-feature-service-wrapper-8 .icon {
  height: 60px;
  min-width: 60px;
  background: #20282d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.single-feature-service-wrapper-8 .inner-wrapper .title {
  margin-bottom: 5px;
}
.single-feature-service-wrapper-8 .inner-wrapper p.disc {
  max-width: 85%;
  font-size: 16px;
}
.appoinment-wrapper-one-start {
  background: #fff;
  box-shadow: 0 21px 46px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin-right: -20px;
}
@media only screen and (max-width: 991px) {
  .appoinment-wrapper-one-start {
    margin-right: 0;
  }
}
.appoinment-wrapper-one-start {
  padding: 73px 100px;
}
@media only screen and (max-width: 767px) {
  .single-feature-service-wrapper-8 .inner-wrapper p.disc {
    max-width: 98%;
  }
  .inner-wrapper .disc {
    width: 100%;
    text-align: justify;
  }
  .appoinment-wrapper-one-start {
    padding: 25px;
    margin-right: 0;
  }
}
.appoinment-wrapper-one-start form input {
  background: #f6f6f6;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
}
.appoinment-wrapper-one-start form input:focus {
  border: 1px solid var(--color-primary) !important;
}
.appoinment-wrapper-one-start form textarea {
  background: #f6f6f6;
  height: 150px;
  padding: 15px;
  border: none;
  border: 1px solid transparent !important;
}
.appoinment-wrapper-one-start form textarea:focus {
  border: 1px solid var(--color-primary) !important;
}
.appoinment-wrapper-one-start form .single-input {
  margin-bottom: 20px;
}
.appoinment-wrapper-one-start form .single-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.appoinment-wrapper-one-start form .single-input-wrapper .single-input {
  width: 100%;
}
.appoinment-wrapper-one-start form .single-input-wrapper .single-input input {
  background: #f6f6f6;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
}
.appoinment-thumbnail {
  margin-left: -30px;
}
@media only screen and (max-width: 991px) {
  .appoinment-thumbnail {
    margin-left: 0;
  }
}
.appoinment-area-four-wrapper {
  /* background-image: url(../images/appoinment/02.webp); */
  height: calc(100% - 8px);
}
.appoinment-area-four-wrapper .inner {
  padding: 83px 120px;
}
@media only screen and (max-width: 1199px) {
  .appoinment-area-four-wrapper .inner {
    padding: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .appoinment-area-four-wrapper .inner {
    padding: 25px !important;
    padding-bottom: 60px;
  }
}
.appoinment-area-four-wrapper .inner .title-style-four * {
  color: #fff;
}
.appoinment-area-four-wrapper form {
  max-width: 77%;
}
@media only screen and (max-width: 1199px) {
  .appoinment-area-four-wrapper form {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .appoinment-area-four-wrapper form {
    max-width: 100%;
  }
}
.appoinment-area-four-wrapper form .single-input {
  margin-bottom: 20px;
}
.appoinment-area-four-wrapper form .single-input input {
  background: #fff;
  height: 55px;
}
.appoinment-area-four-wrapper form textarea {
  height: 160px;
  background: #fff;
  padding: 15px;
  margin-bottom: 25px;
}
.appoinment-main-wrapper-7 {
  max-width: 712px;
  padding: 61px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.281);
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .appoinment-main-wrapper-7 {
    padding: 25px;
  }
}
.appoinment-main-wrapper-7 span {
  padding: 3px 12px;
  display: block;
  border-radius: 33px;
  border: 1px solid #e9e9e9;
  max-width: max-content;
  font-size: 16px;
  color: #fff;
}
.appoinment-main-wrapper-7 .title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 40px;
  margin-top: 25px;
}
.appoinment-main-wrapper-7 .signle-input {
  width: 100%;
  margin-bottom: 20px;
}
.appoinment-main-wrapper-7 input {
  height: 55px;
  background: #fff;
  border-radius: 15px;
}
.appoinment-main-wrapper-7 textarea {
  height: 150px;
  background: #f6f6f6;
  padding: 15px;
  border-radius: 15px;
}
.appoinment-main-wrapper-7 .btn-primary {
  border-radius: 15px;
  margin-top: 30px;
}
.rts-appoinment-area-9 {
  /* background-image: url(../images/appoinment/04.webp); */
}
.appoinment-area-9 {
  background: #fff;
  border-radius: 0 10px 10px 0;
  padding: 70px 53px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .appoinment-area-9 {
    padding: 25px;
  }
}
.appoinment-area-9 .single-input {
  width: 100%;
}
.appoinment-area-9 input {
  width: 100%;
  margin-bottom: 20px;
  height: 55px;
  border-radius: 15px;
  background: #f6f6f6;
  border: 1px solid transparent;
}
.appoinment-area-9 textarea {
  height: 150px;
  border-radius: 15px;
  background: #f6f6f6;
  margin-bottom: 30px;
  border: 1px solid transparent;
  padding: 15px;
}
.appoinment-area-9 textarea:focus {
  border: 1px solid var(--color-primary);
}
.appoinment-area-accountent {
  background: #fff;
  border-radius: 10px;
}
.appoinment-area-accountent .form-area-right {
  padding: 60px 62px;
}
@media only screen and (max-width: 575px) {
  .appoinment-area-accountent .form-area-right {
    padding: 20px;
  }
}
.appoinment-area-accountent .form-area-right .input-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.appoinment-area-accountent .form-area-right .input-wrapper .single-input {
  flex-basis: 50%;
}
.appoinment-area-accountent .form-area-right .single-input .form-select {
  width: 100%;
  height: 55px;
  border-radius: 15px;
  background: #f6f6f6;
  font-size: 16px;
  color: #5d666f;
  border: 1px solid lightgray;
  padding: 15px;
}
.appoinment-area-accountent .form-area-right label {
  color: #20282d;
  font-size: 18px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 575px) {
  .appoinment-area-accountent .form-area-right label {
    font-size: 14px;
  }
}
.appoinment-area-accountent .form-area-right input {
  height: 55px;
  border-radius: 15px;
  background: #f6f6f6;
  border: 1px solid lightgray;
  font-size: 16px;
  color: #5d666f;
}
.appoinment-area-accountent .form-area-right textarea {
  border: 1px solid lightgray;
  height: 150px;
  border-radius: 15px;
  background: #f6f6f6;
  padding: 15px;
  font-size: 16px;
}
.title-area-between-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bg-client-r-h2 {
  /* background-image: url(../images/testimonials/02.webp); */
  background-position: top center;
  background-repeat: no-repeat;
}
.title-between-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .title-between-area {
    flex-direction: column;
    align-items: flex-start;
  }
}
.title-area-between-wrapper {
  position: relative;
}
.title-area-between-wrapper .pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-wrap::after {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 1px solid var(--color-primary);
  border: none !important;
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}
.progress-wrap:hover::after {
  opacity: 1;
  content: "\f077";
}
.progress-wrap::before {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-wrap:hover::before {
  opacity: 0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: 0 0;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4px;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-wrap::after {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 1px solid var(--color-primary);
  border: none !important;
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}
.progress-wrap:hover::after {
  opacity: 1;
  content: "\f077";
}
.progress-wrap::before {
  position: absolute;
  font-family: var(--font-3);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-wrap:hover::before {
  opacity: 0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: 0 0;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4px;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.search-input-area {
  transition: all 0.5s ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: #fff;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .search-input-area {
    padding: 70px 0 30px 0;
  }
}
.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}
@media only screen and (max-width: 575px) {
  .search-input-area .search-input-inner .input-div {
    width: 100%;
  }
}
.search-input-area .search-input-inner .input-div input {
  background: #f7f7f7;
  border-radius: 5px;
  height: 57px;
  border: 1px solid transparent;
}
.search-input-area .search-input-inner .input-div input:focus {
  border: 1px solid var(--color-primary);
}
.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18px 21px;
  background: var(--color-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
}
.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 22px;
}
@media only screen and (max-width: 575px) {
  .search-input-area .search-close-icon {
    right: 20px;
    top: 15px;
  }
}
.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i:hover {
  color: #f7f7f7;
}
.search-input-area .search-close-icon i:hover::after {
  background: var(--color-primary);
}
.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: rgba(85, 60, 223, 0.0784313725);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}
#anywhere-home {
  /* cursor: url(../images/banner/shape/close.png), auto; */
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 50;
}
.circle-text-main {
  position: absolute;
  left: 52%;
  bottom: 75px;
  transform: translateX(-50%);
}
.circle-text-main .circle {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
}
.circle-text-main .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle-text-main .text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: consolas;
  color: #1c2539;
  text-transform: uppercase;
  font-size: 17px;
  animation: textRotation 8s linear infinite;
}
.circle-text-main .text-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: consolas;
  color: #1c2539;
  text-transform: uppercase;
  font-size: 17px;
  animation: textRotation 8s linear infinite;
}
@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}
.circle-text-main .text span {
  position: absolute;
  left: 50%;
  transform-origin: 0 84px;
}
.circle-text-main .text-1 span {
  position: absolute;
  left: 50%;
  transform-origin: 0 84px;
}
.bg_primary .title-style-five * {
  color: #fff;
}
.contact-form-p {
  margin-left: -90px;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(32, 40, 45, 0.2);
}
@media only screen and (max-width: 991px) {
  .contact-form-p {
    margin-left: 0;
    padding: 25px;
  }
}
.contact-form-p input {
  height: 54px;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
}
.contact-form-p textarea {
  margin-bottom: 30px;
  border: 1px solid rgba(32, 40, 45, 0.2);
  border-radius: 6px;
  height: 92px;
  padding: 10px 15px;
}
.contact-form-p textarea:focus {
  border: 1px solid var(--color-primary);
}
.contact-form-p.new {
  margin-left: 0;
}
.thumbnail-contact-form {
  margin: 0 -30px;
}
@media only screen and (max-width: 767px) {
  .thumbnail-contact-form {
    margin: 0 0;
  }
}
.contactform-accountentarea {
  /* background-image: url(../images/appoinment/07.webp); */
}
.contactform-accountentarea .appoinment-left {
  height: 100%;
}
.contactform-accountentarea .appoinment-left .easy-contact-left-funfacts-8 {
  height: 100%;
  padding: 30px;
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .pre {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .title {
  font-size: 25px;
  color: #d3d3d3;
  font-weight: 500;
  margin-bottom: 55px;
  margin-top: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contactform-accountentarea
    .appoinment-left
    .easy-contact-left-funfacts-8
    .title {
    font-style: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contactform-accountentarea
    .appoinment-left
    .easy-contact-left-funfacts-8
    .title {
    font-size: 28px;
  }
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .signle-contact {
  margin-bottom: 30px;
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .signle-contact
  .icon {
  background: #3e484e;
  height: 59.81px;
  width: 59.81px;
  border-radius: 8px;
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .signle-contact
  .icon
  i {
  color: #fff;
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .signle-contact
  .main-contact
  span {
  color: #fff;
  font-size: 24px;
}
.contactform-accountentarea
  .appoinment-left
  .easy-contact-left-funfacts-8
  .signle-contact
  .main-contact
  a {
  color: #8b8f99;
  font-size: 19px;
}
.swiper-container-h1 {
  border-radius: 16px;
}
.pl-lg-5 {
  padding-left: 4rem !important;
}
.img-wrapper {
  position: relative;
  margin-top: 15px;
}
.img-wrapper img {
  width: 100%;
}
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--color-white);
  width: 50%;
  height: 100%;
  z-index: 5000;
}
.loader-wrapper .loader-section.section-left {
  left: 0;
}
.loader-wrapper .loader-section.section-right {
  right: 0;
}
.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 4px solid transparent;
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 5001;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
[dir="rtl"] .header-one .nav-area {
  margin-left: 80px;
}
[dir="rtl"] .ml--20 {
  margin-right: 20px !important;
  margin-left: 0 !important;
}
[dir="rtl"] .banner-style-one .banner-one-inner {
  text-align: right !important;
}
[dir="rtl"] .banner-style-one .banner-one-inner .title {
  text-align: right !important;
  direction: ltr;
}
[dir="rtl"] .business-solution-area-left-thumbnail .small-mobile {
  left: unset;
  right: 0;
}
@media only screen and (max-width: 991px) {
  [dir="rtl"] .banner-contact-form-five {
    margin-right: 0;
    margin-top: 30px;
  }
}
[dir="rtl"] .has-dropdown.mega-menu > a::after {
  left: -22px;
  right: auto;
}
[dir="rtl"] .has-dropdown::after {
  left: -22px;
  right: auto;
}
[dir="rtl"] .header-two .nav-area {
  margin-right: 135px;
  margin-left: 0;
}
[dir="rtl"] .header-two .main-header .content .header-right {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .header-two .main-header .content .header-right a.rts-btn {
  margin-right: 40px;
  margin-left: 0;
}
[dir="rtl"] .col-lg-7.pl--100.pl_md--0.mt_md--80.pl_sm--0.mt_sm--80 {
  padding-right: 70px;
  padding-left: 0;
}
[dir="rtl"] .title-style-one.left {
  text-align: right;
}
[dir="rtl"] .title-style-one.left .title {
  direction: ltr;
  text-align: right;
}
[dir="rtl"] .col-lg-6.pl--50.pl_sm--15.mt_md--100.mt_sm--100 {
  padding-left: 0;
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  [dir="rtl"] .pl_sm--0 {
    padding-right: 0 !important;
  }
}
[dir="rtl"] .title-style-one.center .title {
  direction: ltr;
}
[dir="rtl"] .left-thumbnail-about-area-two .counter-about-area {
  right: -75px;
  left: auto;
}
@media only screen and (max-width: 767px) {
  [dir="rtl"] .left-thumbnail-about-area-two .counter-about-area {
    right: 10px;
  }
}
[dir="rtl"] .title-style-two.center .title {
  direction: ltr;
}
[dir="rtl"]
  .service-style-swiper-wrapper-two
  .mySwiper-service-1
  .swiper-wrapper {
  direction: ltr;
}
[dir="rtl"] .appoinment-thumbnail {
  margin-left: 0;
  margin-right: -30px;
}
[dir="rtl"] .title-style-two {
  direction: ltr;
  text-align: right;
}
[dir="rtl"] .title-style-two .pre {
  direction: rtl;
}
[dir="rtl"] .faq-main-wrapper-content-inner-four .title-style-four {
  margin-left: -50px;
  margin-right: unset;
}
[dir="rtl"] .project-style-one .inner-content {
  right: 30px;
  left: auto;
}
[dir="rtl"] .title-style-two.center {
  text-align: center !important;
}
[dir="rtl"] .title-style-two.center .title {
  text-align: center;
}
[dir="rtl"] .title-style-two .bg-content {
  right: -90px;
  left: unset;
}
[dir="rtl"]
  .footer-two
  .footer-one-single-wized
  .quick-link-inner
  .links.margin-left-70 {
  margin-right: 70px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  [dir="rtl"]
    .footer-two
    .footer-one-single-wized
    .quick-link-inner
    .links.margin-left-70 {
    margin-right: 0;
  }
}
[dir="rtl"]
  .footer-two
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a
  i {
  margin-left: 12px;
  margin-right: 0;
}
[dir="rtl"]
  .footer-two
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a
  i::before {
  content: "\f060";
}
[dir="rtl"] .footer-two-single-wized .wized-2-body ul li a i {
  margin-right: 0;
  margin-left: 10px;
}
[dir="rtl"] .footer-two-single-wized .wized-2-body ul li a i::before {
  content: "\f323";
}
[dir="rtl"] .about-content-inner-five .about-single-home-7 .icon {
  margin-left: 25px;
  margin-right: 0;
}
[dir="rtl"] .header-two .header-top::after {
  left: unset;
  right: -5%;
}
[dir="rtl"] .header-two .header-top .content .right-header-top {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .title-style-five .title {
  direction: ltr;
  text-align: right;
}
[dir="rtl"] .title-style-five.center {
  text-align: center;
}
[dir="rtl"] .title-style-five.center .title {
  direction: ltr;
  text-align: center;
}
[dir="rtl"] .col-lg-6.pr--40.pr_sm--10 {
  padding-left: 40px;
  padding-right: 0;
}
[dir="rtl"] .col-lg-6.pr--30.pr_sm--10 {
  padding-left: 30px;
}
[dir="rtl"] .rts-about-us-area-8 .right-content-image {
  left: 315px;
  max-width: 479px;
  right: auto;
}
[dir="rtl"] .footer-logo-area-left-8 {
  text-align: right;
}
[dir="rtl"]
  .footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links.margin-left-70 {
  margin-left: 0;
  margin-right: 70px;
}
[dir="rtl"] .pl--30 {
  padding-right: 30px;
  padding-left: unset;
}
[dir="rtl"] .about-6-thumbnail-left-wrapper {
  margin-right: -70px;
  margin-left: 0;
}
[dir="rtl"] .rts-banner-area-9 .title {
  text-align: right !important;
  direction: ltr;
}
[dir="rtl"] .col-lg-6.pl--50.pl_sm--10.mt_md--50.mt_sm--50.pb_md--50.pb_sm--40 {
  padding-right: 50px;
  padding-left: 0;
}
[dir="rtl"]
  .footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a
  i {
  margin-left: 12px;
  margin-right: 0;
}
[dir="rtl"]
  .footer-8-area-bg
  .footer-one-single-wized
  .quick-link-inner
  .links
  li
  a
  i::before {
  content: "\f060";
}
[dir="rtl"]
  .rts-service-main-wrapper-10
  .signle-service-style-10
  .content-area-wrapper
  .arrow-right-btn
  i::before {
  content: "\f060";
}
[dir="rtl"] .title-style-10.left {
  text-align: right;
}
[dir="rtl"] .thumbnail-about-10-wrapper .top-counter-area {
  right: -70px;
  left: auto;
}
[dir="rtl"] .banner-inner-content-12 .title {
  text-align: right;
}
[dir="rtl"] .banner-inner-content-12 .pre {
  justify-content: end;
}
[dir="rtl"] .banner-inner-content-12 p.disc {
  margin-left: auto;
  margin-right: 0;
  text-align: end;
}
[dir="rtl"] .banner-inner-content-12 .button-wrapper {
  justify-content: end;
}
[dir="rtl"] .title-style-10 .title {
  direction: ltr;
}
[dir="rtl"] .rts-banner-area-start-11 .circle-text-main {
  left: 282px;
  right: auto;
}
[dir="rtl"] .col-lg-6.pl--35.pl_sm--15.mt_md--30.mt_sm--50 {
  padding-right: 35px;
  padding-left: 0;
}
[dir="rtl"] .progress-circle-main-wrapper .single-progress-area::after {
  display: none;
}
[dir="rtl"] .title-style-two .title {
  direction: ltr;
  text-align: right;
}
[dir="rtl"] .rts-single-wized .wized-body .rts-search-wrapper button {
  left: 0;
  right: auto;
}
[dir="rtl"] .rts-single-wized .wized-body .rts-search-wrapper input {
  padding-left: 70px;
  padding-right: 25px;
}
[dir="rtl"] button#menu-btn {
  margin-right: 0;
  margin-left: 0;
}
[dir="rtl"]
  .header-top-area-wrapper
  .header-top-one-wrapper
  .right
  .social-wrapper-one {
  margin-right: 30px;
  position: relative;
  margin-left: 0;
}
[dir="rtl"] .social-wrapper-one li a {
  margin-left: 20px;
  margin-right: 0;
}
[dir="rtl"] .social-wrapper-one::after {
  right: -25px;
  left: auto;
}
[dir="rtl"]
  .header-top-area-wrapper
  .header-top-one-wrapper
  .right
  .top-nav
  li {
  margin-right: 0;
  margin-left: 20px;
}
[dir="rtl"] .header-top-area-wrapper .header-top-one-wrapper .left .mail a {
  margin-left: 50px;
  margin-right: 0;
}
[dir="rtl"]
  .header-top-area-wrapper
  .header-top-one-wrapper
  .left
  .mail::after {
  left: 25px;
  right: unset;
}
[dir="rtl"] .col-lg-4.pl--20.pl_md--0.pl_sm--0 {
  padding-left: 0;
  padding-right: 20px;
}
[dir="rtl"] .pagination button {
  margin-left: 10px;
  margin-right: 0;
}
[dir="rtl"] .search-input-area .search-input-inner .input-div button {
  border-radius: 5px 0 0 5px;
}
[dir="rtl"] .search-input-area .search-close-icon {
  left: 38px;
  right: unset;
}
[dir="rtl"]
  .top-transparent-header
  .header-top-area-wrapper
  .header-top-one-wrapper
  .right
  p
  a
  i {
  transform: scaleX(-1);
}
[dir="rtl"] .project-content-left-5 {
  direction: rtl !important;
  margin-left: auto;
}
@media (min-width: 992px) {
  [dir="rtl"] .offset-lg-1 {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
}
[dir="rtl"] .about-content-inner-five .about-single-home-7::after {
  right: 30px;
  left: unset;
}
[dir="rtl"] .single-working-process-one .left .icon::after {
  right: auto;
  left: -8px;
}
[dir="rtl"] .rts-banner-accountent-two .banner-accountent-content {
  padding: 45px 51px;
  border-radius: 30px 7px 7px 30px;
  border-right: 7px solid var(--color-primary);
  border-left: none;
}
[dir="rtl"] .single-service-signle-wrapper .information .arrow-right i {
  transform: scaleX(-1);
}
[dir="rtl"] .pl-lg-5 {
  padding-right: 4rem !important;
  padding-left: 0 !important;
}
@media (min-width: 768px) {
  [dir="rtl"] .offset-md-7 {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
}
[dir="rtl"] .header-top-area-wrapper .header-top-one-wrapper .left .mail a i {
  margin-left: 6px;
  margin-right: 0;
}
[dir="rtl"] .header-five .button-area-wrapper #menu-btn {
  margin-right: 0 !important;
}
[dir="rtl"] .header-five .button-area-wrapper {
  padding-left: 57px;
  padding-right: 0;
}
[dir="rtl"] .header-five .header-top-right {
  margin-right: 0;
  margin-left: 30px;
}
[dir="rtl"] .header-five .header-top-right .call,
[dir="rtl"] .header-five .header-top-right .email {
  margin-right: 0;
  margin-left: 30px;
}
[dir="rtl"] .header-five .header-top-right .call i,
[dir="rtl"] .header-five .header-top-right .email i {
  margin-right: 0;
  margin-left: 10px;
}
[dir="rtl"] .banner-contact-form-five {
  margin-left: unset;
  margin-right: -86px;
}
@media only screen and (max-width: 991px) {
  [dir="rtl"] .banner-contact-form-five {
    margin-right: 0;
  }
}
[dir="rtl"] .pr--70 {
  padding-left: 70px;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  [dir="rtl"] .pr_sm--0 {
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  [dir="rtl"] .about-content-inner-five {
    padding-right: 15px;
    padding-left: unset;
  }
}
[dir="rtl"]
  .counter-main-wrapper-area-start-6
  .single-counter-area-main:last-child {
  border-right: 1px solid rgba(32, 40, 45, 0.1294117647);
}
[dir="rtl"].demo-technology .single-working-process-one .inner-content {
  padding: 15px 50px 15px 5px;
}
[dir="rtl"] .pl--60 {
  padding-right: 60px;
  padding-left: 0;
}
[dir="rtl"] .appoinment-area-9 {
  border-radius: 10px 0 0 10px;
}
[dir="rtl"] .thumbnail-appoinment-9 img {
  transform: scaleX(-1);
}
[dir="rtl"] .about-area-wrapper-content-10 p.disc {
  padding-left: 0;
  padding-right: 70px;
}
[dir="rtl"] .about-area-wrapper-content-10 p.disc::after {
  right: 0;
  left: unset;
}
[dir="rtl"] .about-area-wrapper-content-10 .single-progress .progress {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 991px) {
  [dir="rtl"] .appoinment-thumbnail {
    margin-right: 0;
  }
}
[dir="rtl"] .thumbnail-accountent-why-choose .counter-about-area {
  top: 50px;
  right: -75px;
  left: auto;
}
@media only screen and (max-width: 575px) {
  [dir="rtl"] .thumbnail-accountent-why-choose .counter-about-area {
    right: -10px;
  }
}
[dir="rtl"] .title-area-between-hr .title-area-hr-left .title {
  direction: ltr;
  text-align: right;
}
[dir="rtl"] .pagination button:last-child i {
  transform: scaleX(-1);
}
[dir="rtl"] .progress-wrap {
  right: auto;
  left: 30px;
}
.rts-banner-area-start-11 {
  /* background-image: url(../images/banner/14.webp); */
  position: relative;
}
/* .rts-banner-area-start-11.two {
  background-image: url(../images/banner/15.webp);
}
.rts-banner-area-start-11.four {
  background-image: url(../images/banner/17.webp);
}
.rts-banner-area-start-11.five {
  background-image: url(../images/banner/18.webp);
} */
.rts-banner-area-start-11 .circle-text-main {
  position: absolute;
  right: 282px;
  top: 64%;
  transform: translateY(-50%);
  max-width: max-content;
  left: auto;
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area-start-11 .circle-text-main {
    right: 120px;
    top: 76%;
  }
}
@media only screen and (max-width: 575px) {
  .rts-banner-area-start-11 .circle-text-main {
    display: none;
  }
}
.rts-banner-area-start-11 .circle-text-main .circle {
  width: 255px;
  height: 255px;
  background: var(--color-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-banner-area-start-11 .circle-text-main .circle {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .rts-banner-area-start-11 .circle-text-main .circle {
    display: none;
  }
}
.rts-banner-area-start-11 .circle-text-main .circle .logo img {
  max-width: max-content;
}
.rts-banner-area-start-11 .circle-text-main .circle * {
  color: #fff;
}
.rts-banner-area-start-11 .circle-text-main .text span {
  position: absolute;
  left: 50%;
  transform-origin: 0 126px;
}
.rts-banner-area-start-11 .circle-text-main .text-1 span {
  position: absolute;
  left: 50%;
  transform-origin: 0 126px;
}
.m--0 {
  margin: 0;
}
.rts-section-gap {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 60px 0;
  }
}
.rts-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}
.rts-section-gap2 {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2 {
    padding: 60px 0;
  }
}
.rts-section-gap2Top {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2Top {
    padding-top: 60px;
  }
}
.rts-section-gap3 {
  padding: 150px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap3 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap3 {
    padding: 60px 0;
  }
}
.rts-section-gap3Top {
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap3Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap3Top {
    padding-top: 60px;
  }
}
.pl--0 {
  padding-left: 0;
}
.pr--0 {
  padding-right: 0;
}
.pt--0 {
  padding-top: 0;
}
.pb--0 {
  padding-bottom: 0;
}
.mr--0 {
  margin-right: 0;
}
.ml--0 {
  margin-left: 0;
}
.mt--0 {
  margin-top: 0;
}
.mb--0 {
  margin-bottom: 0;
}
.pt--5 {
  padding-top: 5px;
}
.pb--5 {
  padding-bottom: 5px;
}
.pl--5 {
  padding-left: 5px;
}
.pr--5 {
  padding-right: 5px;
}
.mt--5 {
  margin-top: 5px;
}
.mb--5 {
  margin-bottom: 5px;
}
.mr--5 {
  margin-right: 5px;
}
.ml--5 {
  margin-left: 5px;
}
.pt--10 {
  padding-top: 10px;
}
.pb--10 {
  padding-bottom: 10px;
}
.pl--10 {
  padding-left: 10px;
}
.pr--10 {
  padding-right: 10px;
}
.mt--10 {
  margin-top: 10px;
}
.mb--10 {
  margin-bottom: 10px;
}
.mr--10 {
  margin-right: 10px;
}
.ml--10 {
  margin-left: 10px;
}
.pt--15 {
  padding-top: 15px;
}
.pb--15 {
  padding-bottom: 15px;
}
.pl--15 {
  padding-left: 15px;
}
.pr--15 {
  padding-right: 15px;
}
.mt--15 {
  margin-top: 15px;
}
.mb--15 {
  margin-bottom: 15px;
}
.mr--15 {
  margin-right: 15px;
}
.ml--15 {
  margin-left: 15px;
}
.pt--20 {
  padding-top: 20px;
}
.pb--20 {
  padding-bottom: 20px;
}
.pl--20 {
  padding-left: 20px;
}
.pr--20 {
  padding-right: 20px;
}
.mt--20 {
  margin-top: 20px;
}
.mb--20 {
  margin-bottom: 20px;
}
.mr--20 {
  margin-right: 20px;
}
.ml--20 {
  margin-left: 20px;
}
.pt--25 {
  padding-top: 25px;
}
.pb--25 {
  padding-bottom: 25px;
}
.pl--25 {
  padding-left: 25px;
}
.pr--25 {
  padding-right: 25px;
}
.mt--25 {
  margin-top: 25px;
}
.mb--25 {
  margin-bottom: 25px;
}
.mr--25 {
  margin-right: 25px;
}
.ml--25 {
  margin-left: 25px;
}
.pt--30 {
  padding-top: 30px;
}
.pb--30 {
  padding-bottom: 30px;
}
.pl--30 {
  padding-left: 30px;
}
.pr--30 {
  padding-right: 30px;
}
.mt--30 {
  margin-top: 30px;
}
.mb--30 {
  margin-bottom: 30px;
}
.mr--30 {
  margin-right: 30px;
}
.ml--30 {
  margin-left: 30px;
}
.pt--35 {
  padding-top: 35px;
}
.pb--35 {
  padding-bottom: 35px;
}
.pl--35 {
  padding-left: 35px;
}
.pr--35 {
  padding-right: 35px;
}
.mt--35 {
  margin-top: 35px;
}
.mb--35 {
  margin-bottom: 35px;
}
.mr--35 {
  margin-right: 35px;
}
.ml--35 {
  margin-left: 35px;
}
.pt--40 {
  padding-top: 40px;
}
.pb--40 {
  padding-bottom: 40px;
}
.pl--40 {
  padding-left: 40px;
}
.pr--40 {
  padding-right: 40px;
}
.mt--40 {
  margin-top: 40px;
}
.mb--40 {
  margin-bottom: 40px;
}
.mr--40 {
  margin-right: 40px;
}
.ml--40 {
  margin-left: 40px;
}
.pt--45 {
  padding-top: 45px;
}
.pb--45 {
  padding-bottom: 45px;
}
.pl--45 {
  padding-left: 45px;
}
.pr--45 {
  padding-right: 45px;
}
.mt--45 {
  margin-top: 45px;
}
.mb--45 {
  margin-bottom: 45px;
}
.mr--45 {
  margin-right: 45px;
}
.ml--45 {
  margin-left: 45px;
}
.pt--50 {
  padding-top: 50px;
}
.pb--50 {
  padding-bottom: 50px;
}
.pl--50 {
  padding-left: 50px;
}
.pr--50 {
  padding-right: 50px;
}
.mt--50 {
  margin-top: 50px;
}
.mb--50 {
  margin-bottom: 50px;
}
.mr--50 {
  margin-right: 50px;
}
.ml--50 {
  margin-left: 50px;
}
.pt--55 {
  padding-top: 55px;
}
.pb--55 {
  padding-bottom: 55px;
}
.pl--55 {
  padding-left: 55px;
}
.pr--55 {
  padding-right: 55px;
}
.mt--55 {
  margin-top: 55px;
}
.mb--55 {
  margin-bottom: 55px;
}
.mr--55 {
  margin-right: 55px;
}
.ml--55 {
  margin-left: 55px;
}
.pt--60 {
  padding-top: 60px;
}
.pb--60 {
  padding-bottom: 60px;
}
.pl--60 {
  padding-left: 60px;
}
.pr--60 {
  padding-right: 60px;
}
.mt--60 {
  margin-top: 60px;
}
.mb--60 {
  margin-bottom: 60px;
}
.mr--60 {
  margin-right: 60px;
}
.ml--60 {
  margin-left: 60px;
}
.pt--65 {
  padding-top: 65px;
}
.pb--65 {
  padding-bottom: 20px;
}
.pl--65 {
  padding-left: 65px;
}
.pr--65 {
  padding-right: 65px;
}
.mt--65 {
  margin-top: 65px;
}
.mb--65 {
  margin-bottom: 65px;
}
.mr--65 {
  margin-right: 65px;
}
.ml--65 {
  margin-left: 65px;
}
.pt--70 {
  padding-top: 70px;
}
.pb--70 {
  padding-bottom: 70px;
}
.pl--70 {
  padding-left: 70px;
}
.pr--70 {
  padding-right: 70px;
}
.mt--70 {
  margin-top: 70px;
}
.mb--70 {
  margin-bottom: 70px;
}
.mr--70 {
  margin-right: 70px;
}
.ml--70 {
  margin-left: 70px;
}
.pt--75 {
  padding-top: 75px;
}
.pb--75 {
  padding-bottom: 75px;
}
.pl--75 {
  padding-left: 75px;
}
.pr--75 {
  padding-right: 75px;
}
.mt--75 {
  margin-top: 75px;
}
.mb--75 {
  margin-bottom: 75px;
}
.mr--75 {
  margin-right: 75px;
}
.ml--75 {
  margin-left: 75px;
}
.pt--80 {
  padding-top: 80px;
}
.pb--80 {
  padding-bottom: 80px;
}
.pl--80 {
  padding-left: 80px;
}
.pr--80 {
  padding-right: 80px;
}
.mt--80 {
  margin-top: 80px;
}
.mb--80 {
  margin-bottom: 80px;
}
.mr--80 {
  margin-right: 80px;
}
.ml--80 {
  margin-left: 80px;
}
.pt--85 {
  padding-top: 85px;
}
.pb--85 {
  padding-bottom: 85px;
}
.pl--85 {
  padding-left: 85px;
}
.pr--85 {
  padding-right: 85px;
}
.mt--85 {
  margin-top: 85px;
}
.mb--85 {
  margin-bottom: 85px;
}
.mr--85 {
  margin-right: 85px;
}
.ml--85 {
  margin-left: 85px;
}
.pt--90 {
  padding-top: 90px;
}
.pb--90 {
  padding-bottom: 90px;
}
.pl--90 {
  padding-left: 90px;
}
.pr--90 {
  padding-right: 90px;
}
.mt--90 {
  margin-top: 90px;
}
.mb--90 {
  margin-bottom: 90px;
}
.mr--90 {
  margin-right: 90px;
}
.ml--90 {
  margin-left: 90px;
}
.pt--95 {
  padding-top: 95px;
}
.pb--95 {
  padding-bottom: 95px;
}
.pl--95 {
  padding-left: 95px;
}
.pr--95 {
  padding-right: 95px;
}
.mt--95 {
  margin-top: 95px;
}
.mb--95 {
  margin-bottom: 95px;
}
.mr--95 {
  margin-right: 95px;
}
.ml--95 {
  margin-left: 95px;
}
.pt--100 {
  padding-top: 100px;
}
.pb--100 {
  padding-bottom: 100px;
}
.pl--100 {
  padding-left: 100px;
}
.pr--100 {
  padding-right: 100px;
}
.mt--100 {
  margin-top: 100px;
}
.mb--100 {
  margin-bottom: 100px;
}
.mr--100 {
  margin-right: 100px;
}
.ml--100 {
  margin-left: 100px;
}
.pt--105 {
  padding-top: 105px;
}
.pb--105 {
  padding-bottom: 105px;
}
.pl--105 {
  padding-left: 105px;
}
.pr--105 {
  padding-right: 105px;
}
.mt--105 {
  margin-top: 105px;
}
.mb--105 {
  margin-bottom: 105px;
}
.mr--105 {
  margin-right: 105px;
}
.ml--105 {
  margin-left: 105px;
}
.pt--110 {
  padding-top: 110px;
}
.pb--110 {
  padding-bottom: 110px;
}
.pl--110 {
  padding-left: 110px;
}
.pr--110 {
  padding-right: 110px;
}
.mt--110 {
  margin-top: 110px;
}
.mb--110 {
  margin-bottom: 110px;
}
.mr--110 {
  margin-right: 110px;
}
.ml--110 {
  margin-left: 110px;
}
.pt--115 {
  padding-top: 115px;
}
.pb--115 {
  padding-bottom: 115px;
}
.pl--115 {
  padding-left: 115px;
}
.pr--115 {
  padding-right: 115px;
}
.mt--115 {
  margin-top: 115px;
}
.mb--115 {
  margin-bottom: 115px;
}
.mr--115 {
  margin-right: 115px;
}
.ml--115 {
  margin-left: 115px;
}
.pt--120 {
  padding-top: 120px;
}
.pb--120 {
  padding-bottom: 120px;
}
.pl--120 {
  padding-left: 120px;
}
.pr--120 {
  padding-right: 120px;
}
.mt--120 {
  margin-top: 120px;
}
.mb--120 {
  margin-bottom: 120px;
}
.mr--120 {
  margin-right: 120px;
}
.ml--120 {
  margin-left: 120px;
}
.pt--125 {
  padding-top: 125px;
}
.pb--125 {
  padding-bottom: 125px;
}
.pl--125 {
  padding-left: 125px;
}
.pr--125 {
  padding-right: 125px;
}
.mt--125 {
  margin-top: 125px;
}
.mb--125 {
  margin-bottom: 125px;
}
.mr--125 {
  margin-right: 125px;
}
.ml--125 {
  margin-left: 125px;
}
.pt--130 {
  padding-top: 130px;
}
.pb--130 {
  padding-bottom: 130px;
}
.pl--130 {
  padding-left: 130px;
}
.pr--130 {
  padding-right: 130px;
}
.mt--130 {
  margin-top: 130px;
}
.mb--130 {
  margin-bottom: 130px;
}
.mr--130 {
  margin-right: 130px;
}
.ml--130 {
  margin-left: 130px;
}
.pt--135 {
  padding-top: 135px;
}
.pb--135 {
  padding-bottom: 135px;
}
.pl--135 {
  padding-left: 135px;
}
.pr--135 {
  padding-right: 135px;
}
.mt--135 {
  margin-top: 135px;
}
.mb--135 {
  margin-bottom: 135px;
}
.mr--135 {
  margin-right: 135px;
}
.ml--135 {
  margin-left: 135px;
}
.pt--140 {
  padding-top: 140px;
}
.pb--140 {
  padding-bottom: 140px;
}
.pl--140 {
  padding-left: 140px;
}
.pr--140 {
  padding-right: 140px;
}
.mt--140 {
  margin-top: 140px;
}
.mb--140 {
  margin-bottom: 140px;
}
.mr--140 {
  margin-right: 140px;
}
.ml--140 {
  margin-left: 140px;
}
.pt--145 {
  padding-top: 145px;
}
.pb--145 {
  padding-bottom: 145px;
}
.pl--145 {
  padding-left: 145px;
}
.pr--145 {
  padding-right: 145px;
}
.mt--145 {
  margin-top: 145px;
}
.mb--145 {
  margin-bottom: 145px;
}
.mr--145 {
  margin-right: 145px;
}
.ml--145 {
  margin-left: 145px;
}
.pt--150 {
  padding-top: 150px;
}
.pb--150 {
  padding-bottom: 150px;
}
.pl--150 {
  padding-left: 150px;
}
.pr--150 {
  padding-right: 150px;
}
.mt--150 {
  margin-top: 150px;
}
.mb--150 {
  margin-bottom: 150px;
}
.mr--150 {
  margin-right: 150px;
}
.ml--150 {
  margin-left: 150px;
}
.pt--155 {
  padding-top: 155px;
}
.pb--155 {
  padding-bottom: 155px;
}
.pl--155 {
  padding-left: 155px;
}
.pr--155 {
  padding-right: 155px;
}
.mt--155 {
  margin-top: 155px;
}
.mb--155 {
  margin-bottom: 155px;
}
.mr--155 {
  margin-right: 155px;
}
.ml--155 {
  margin-left: 155px;
}
.pt--160 {
  padding-top: 160px;
}
.pb--160 {
  padding-bottom: 160px;
}
.pl--160 {
  padding-left: 160px;
}
.pr--160 {
  padding-right: 160px;
}
.mt--160 {
  margin-top: 160px;
}
.mb--160 {
  margin-bottom: 160px;
}
.mr--160 {
  margin-right: 160px;
}
.ml--160 {
  margin-left: 160px;
}
.pt--165 {
  padding-top: 165px;
}
.pb--165 {
  padding-bottom: 165px;
}
.pl--165 {
  padding-left: 165px;
}
.pr--165 {
  padding-right: 165px;
}
.mt--165 {
  margin-top: 165px;
}
.mb--165 {
  margin-bottom: 165px;
}
.mr--165 {
  margin-right: 165px;
}
.ml--165 {
  margin-left: 165px;
}
.pt--170 {
  padding-top: 170px;
}
.pb--170 {
  padding-bottom: 170px;
}
.pl--170 {
  padding-left: 170px;
}
.pr--170 {
  padding-right: 170px;
}
.mt--170 {
  margin-top: 170px;
}
.mb--170 {
  margin-bottom: 170px;
}
.mr--170 {
  margin-right: 170px;
}
.ml--170 {
  margin-left: 170px;
}
.pt--175 {
  padding-top: 175px;
}
.pb--175 {
  padding-bottom: 175px;
}
.pl--175 {
  padding-left: 175px;
}
.pr--175 {
  padding-right: 175px;
}
.mt--175 {
  margin-top: 175px;
}
.mb--175 {
  margin-bottom: 175px;
}
.mr--175 {
  margin-right: 175px;
}
.ml--175 {
  margin-left: 175px;
}
.pt--180 {
  padding-top: 180px;
}
.pb--180 {
  padding-bottom: 180px;
}
.pl--180 {
  padding-left: 180px;
}
.pr--180 {
  padding-right: 180px;
}
.mt--180 {
  margin-top: 180px;
}
.mb--180 {
  margin-bottom: 180px;
}
.mr--180 {
  margin-right: 180px;
}
.ml--180 {
  margin-left: 180px;
}
.pt--185 {
  padding-top: 185px;
}
.pb--185 {
  padding-bottom: 185px;
}
.pl--185 {
  padding-left: 185px;
}
.pr--185 {
  padding-right: 185px;
}
.mt--185 {
  margin-top: 185px;
}
.mb--185 {
  margin-bottom: 185px;
}
.mr--185 {
  margin-right: 185px;
}
.ml--185 {
  margin-left: 185px;
}
.pt--190 {
  padding-top: 190px;
}
.pb--190 {
  padding-bottom: 190px;
}
.pl--190 {
  padding-left: 190px;
}
.pr--190 {
  padding-right: 190px;
}
.mt--190 {
  margin-top: 190px;
}
.mb--190 {
  margin-bottom: 190px;
}
.mr--190 {
  margin-right: 190px;
}
.ml--190 {
  margin-left: 190px;
}
.pt--195 {
  padding-top: 195px;
}
.pb--195 {
  padding-bottom: 195px;
}
.pl--195 {
  padding-left: 195px;
}
.pr--195 {
  padding-right: 195px;
}
.mt--195 {
  margin-top: 195px;
}
.mb--195 {
  margin-bottom: 195px;
}
.mr--195 {
  margin-right: 195px;
}
.ml--195 {
  margin-left: 195px;
}
.pt--200 {
  padding-top: 200px;
}
.pb--200 {
  padding-bottom: 200px;
}
.pl--200 {
  padding-left: 200px;
}
.pr--200 {
  padding-right: 200px;
}
.mt--200 {
  margin-top: 200px;
}
.mb--200 {
  margin-bottom: 200px;
}
.mr--200 {
  margin-right: 200px;
}
.ml--200 {
  margin-left: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt_lg--5 {
    padding-top: 5px;
  }
  .pb_lg--5 {
    padding-bottom: 5px;
  }
  .pl_lg--5 {
    padding-left: 5px;
  }
  .pr_lg--5 {
    padding-right: 5px;
  }
  .mt_lg--5 {
    margin-top: 5px;
  }
  .mb_lg--5 {
    margin-bottom: 5px;
  }
  .ml_lg--5 {
    margin-left: 5px;
  }
  .pt_lg--10 {
    padding-top: 10px;
  }
  .pb_lg--10 {
    padding-bottom: 10px;
  }
  .pl_lg--10 {
    padding-left: 10px;
  }
  .pr_lg--10 {
    padding-right: 10px;
  }
  .mt_lg--10 {
    margin-top: 10px;
  }
  .mb_lg--10 {
    margin-bottom: 10px;
  }
  .ml_lg--10 {
    margin-left: 10px;
  }
  .pt_lg--15 {
    padding-top: 15px;
  }
  .pb_lg--15 {
    padding-bottom: 15px;
  }
  .pl_lg--15 {
    padding-left: 15px;
  }
  .pr_lg--15 {
    padding-right: 15px;
  }
  .mt_lg--15 {
    margin-top: 15px;
  }
  .mb_lg--15 {
    margin-bottom: 15px;
  }
  .ml_lg--15 {
    margin-left: 15px;
  }
  .pt_lg--20 {
    padding-top: 20px;
  }
  .pb_lg--20 {
    padding-bottom: 20px;
  }
  .pl_lg--20 {
    padding-left: 20px;
  }
  .pr_lg--20 {
    padding-right: 20px;
  }
  .mt_lg--20 {
    margin-top: 20px;
  }
  .mb_lg--20 {
    margin-bottom: 20px;
  }
  .ml_lg--20 {
    margin-left: 20px;
  }
  .pt_lg--25 {
    padding-top: 25px;
  }
  .pb_lg--25 {
    padding-bottom: 25px;
  }
  .pl_lg--25 {
    padding-left: 25px;
  }
  .pr_lg--25 {
    padding-right: 25px;
  }
  .mt_lg--25 {
    margin-top: 25px;
  }
  .mb_lg--25 {
    margin-bottom: 25px;
  }
  .ml_lg--25 {
    margin-left: 25px;
  }
  .pt_lg--30 {
    padding-top: 30px;
  }
  .pb_lg--30 {
    padding-bottom: 30px;
  }
  .pl_lg--30 {
    padding-left: 30px;
  }
  .pr_lg--30 {
    padding-right: 30px;
  }
  .mt_lg--30 {
    margin-top: 30px;
  }
  .mb_lg--30 {
    margin-bottom: 30px;
  }
  .ml_lg--30 {
    margin-left: 30px;
  }
  .pt_lg--35 {
    padding-top: 35px;
  }
  .pb_lg--35 {
    padding-bottom: 35px;
  }
  .pl_lg--35 {
    padding-left: 35px;
  }
  .pr_lg--35 {
    padding-right: 35px;
  }
  .mt_lg--35 {
    margin-top: 35px;
  }
  .mb_lg--35 {
    margin-bottom: 35px;
  }
  .ml_lg--35 {
    margin-left: 35px;
  }
  .pt_lg--40 {
    padding-top: 40px;
  }
  .pb_lg--40 {
    padding-bottom: 40px;
  }
  .pl_lg--40 {
    padding-left: 40px;
  }
  .pr_lg--40 {
    padding-right: 40px;
  }
  .mt_lg--40 {
    margin-top: 40px;
  }
  .mb_lg--40 {
    margin-bottom: 40px;
  }
  .ml_lg--40 {
    margin-left: 40px;
  }
  .pt_lg--45 {
    padding-top: 45px;
  }
  .pb_lg--45 {
    padding-bottom: 45px;
  }
  .pl_lg--45 {
    padding-left: 45px;
  }
  .pr_lg--45 {
    padding-right: 45px;
  }
  .mt_lg--45 {
    margin-top: 45px;
  }
  .mb_lg--45 {
    margin-bottom: 45px;
  }
  .ml_lg--45 {
    margin-left: 45px;
  }
  .pt_lg--50 {
    padding-top: 50px;
  }
  .pb_lg--50 {
    padding-bottom: 50px;
  }
  .pl_lg--50 {
    padding-left: 50px;
  }
  .pr_lg--50 {
    padding-right: 50px;
  }
  .mt_lg--50 {
    margin-top: 50px;
  }
  .mb_lg--50 {
    margin-bottom: 50px;
  }
  .ml_lg--50 {
    margin-left: 50px;
  }
  .pt_lg--55 {
    padding-top: 55px;
  }
  .pb_lg--55 {
    padding-bottom: 55px;
  }
  .pl_lg--55 {
    padding-left: 55px;
  }
  .pr_lg--55 {
    padding-right: 55px;
  }
  .mt_lg--55 {
    margin-top: 55px;
  }
  .mb_lg--55 {
    margin-bottom: 55px;
  }
  .ml_lg--55 {
    margin-left: 55px;
  }
  .pt_lg--60 {
    padding-top: 60px;
  }
  .pb_lg--60 {
    padding-bottom: 60px;
  }
  .pl_lg--60 {
    padding-left: 60px;
  }
  .pr_lg--60 {
    padding-right: 60px;
  }
  .mt_lg--60 {
    margin-top: 60px;
  }
  .mb_lg--60 {
    margin-bottom: 60px;
  }
  .ml_lg--60 {
    margin-left: 60px;
  }
  .pt_lg--65 {
    padding-top: 65px;
  }
  .pb_lg--65 {
    padding-bottom: 65px;
  }
  .pl_lg--65 {
    padding-left: 65px;
  }
  .pr_lg--65 {
    padding-right: 65px;
  }
  .mt_lg--65 {
    margin-top: 65px;
  }
  .mb_lg--65 {
    margin-bottom: 65px;
  }
  .ml_lg--65 {
    margin-left: 65px;
  }
  .pt_lg--70 {
    padding-top: 70px;
  }
  .pb_lg--70 {
    padding-bottom: 70px;
  }
  .pl_lg--70 {
    padding-left: 70px;
  }
  .pr_lg--70 {
    padding-right: 70px;
  }
  .mt_lg--70 {
    margin-top: 70px;
  }
  .mb_lg--70 {
    margin-bottom: 70px;
  }
  .ml_lg--70 {
    margin-left: 70px;
  }
  .pt_lg--75 {
    padding-top: 75px;
  }
  .pb_lg--75 {
    padding-bottom: 75px;
  }
  .pl_lg--75 {
    padding-left: 75px;
  }
  .pr_lg--75 {
    padding-right: 75px;
  }
  .mt_lg--75 {
    margin-top: 75px;
  }
  .mb_lg--75 {
    margin-bottom: 75px;
  }
  .ml_lg--75 {
    margin-left: 75px;
  }
  .pt_lg--80 {
    padding-top: 80px;
  }
  .pb_lg--80 {
    padding-bottom: 80px;
  }
  .pl_lg--80 {
    padding-left: 80px;
  }
  .pr_lg--80 {
    padding-right: 80px;
  }
  .mt_lg--80 {
    margin-top: 80px;
  }
  .mb_lg--80 {
    margin-bottom: 80px;
  }
  .ml_lg--80 {
    margin-left: 80px;
  }
  .pt_lg--85 {
    padding-top: 85px;
  }
  .pb_lg--85 {
    padding-bottom: 85px;
  }
  .pl_lg--85 {
    padding-left: 85px;
  }
  .pr_lg--85 {
    padding-right: 85px;
  }
  .mt_lg--85 {
    margin-top: 85px;
  }
  .mb_lg--85 {
    margin-bottom: 85px;
  }
  .ml_lg--85 {
    margin-left: 85px;
  }
  .pt_lg--90 {
    padding-top: 90px;
  }
  .pb_lg--90 {
    padding-bottom: 90px;
  }
  .pl_lg--90 {
    padding-left: 90px;
  }
  .pr_lg--90 {
    padding-right: 90px;
  }
  .mt_lg--90 {
    margin-top: 90px;
  }
  .mb_lg--90 {
    margin-bottom: 90px;
  }
  .ml_lg--90 {
    margin-left: 90px;
  }
  .pt_lg--95 {
    padding-top: 95px;
  }
  .pb_lg--95 {
    padding-bottom: 95px;
  }
  .pl_lg--95 {
    padding-left: 95px;
  }
  .pr_lg--95 {
    padding-right: 95px;
  }
  .mt_lg--95 {
    margin-top: 95px;
  }
  .mb_lg--95 {
    margin-bottom: 95px;
  }
  .ml_lg--95 {
    margin-left: 95px;
  }
  .pt_lg--100 {
    padding-top: 100px;
  }
  .pb_lg--100 {
    padding-bottom: 100px;
  }
  .pl_lg--100 {
    padding-left: 100px;
  }
  .pr_lg--100 {
    padding-right: 100px;
  }
  .mt_lg--100 {
    margin-top: 100px;
  }
  .mb_lg--100 {
    margin-bottom: 100px;
  }
  .ml_lg--100 {
    margin-left: 100px;
  }
  .pt_lg--105 {
    padding-top: 105px;
  }
  .pb_lg--105 {
    padding-bottom: 105px;
  }
  .pl_lg--105 {
    padding-left: 105px;
  }
  .pr_lg--105 {
    padding-right: 105px;
  }
  .mt_lg--105 {
    margin-top: 105px;
  }
  .mb_lg--105 {
    margin-bottom: 105px;
  }
  .ml_lg--105 {
    margin-left: 105px;
  }
  .pt_lg--110 {
    padding-top: 110px;
  }
  .pb_lg--110 {
    padding-bottom: 110px;
  }
  .pl_lg--110 {
    padding-left: 110px;
  }
  .pr_lg--110 {
    padding-right: 110px;
  }
  .mt_lg--110 {
    margin-top: 110px;
  }
  .mb_lg--110 {
    margin-bottom: 110px;
  }
  .ml_lg--110 {
    margin-left: 110px;
  }
  .pt_lg--115 {
    padding-top: 115px;
  }
  .pb_lg--115 {
    padding-bottom: 115px;
  }
  .pl_lg--115 {
    padding-left: 115px;
  }
  .pr_lg--115 {
    padding-right: 115px;
  }
  .mt_lg--115 {
    margin-top: 115px;
  }
  .mb_lg--115 {
    margin-bottom: 115px;
  }
  .ml_lg--115 {
    margin-left: 115px;
  }
  .pt_lg--120 {
    padding-top: 120px;
  }
  .pb_lg--120 {
    padding-bottom: 120px;
  }
  .pl_lg--120 {
    padding-left: 120px;
  }
  .pr_lg--120 {
    padding-right: 120px;
  }
  .mt_lg--120 {
    margin-top: 120px;
  }
  .mb_lg--120 {
    margin-bottom: 120px;
  }
  .ml_lg--120 {
    margin-left: 120px;
  }
  .pt_lg--125 {
    padding-top: 125px;
  }
  .pb_lg--125 {
    padding-bottom: 125px;
  }
  .pl_lg--125 {
    padding-left: 125px;
  }
  .pr_lg--125 {
    padding-right: 125px;
  }
  .mt_lg--125 {
    margin-top: 125px;
  }
  .mb_lg--125 {
    margin-bottom: 125px;
  }
  .ml_lg--125 {
    margin-left: 125px;
  }
  .pt_lg--130 {
    padding-top: 130px;
  }
  .pb_lg--130 {
    padding-bottom: 130px;
  }
  .pl_lg--130 {
    padding-left: 130px;
  }
  .pr_lg--130 {
    padding-right: 130px;
  }
  .mt_lg--130 {
    margin-top: 130px;
  }
  .mb_lg--130 {
    margin-bottom: 130px;
  }
  .ml_lg--130 {
    margin-left: 130px;
  }
  .pt_lg--135 {
    padding-top: 135px;
  }
  .pb_lg--135 {
    padding-bottom: 135px;
  }
  .pl_lg--135 {
    padding-left: 135px;
  }
  .pr_lg--135 {
    padding-right: 135px;
  }
  .mt_lg--135 {
    margin-top: 135px;
  }
  .mb_lg--135 {
    margin-bottom: 135px;
  }
  .ml_lg--135 {
    margin-left: 135px;
  }
  .pt_lg--140 {
    padding-top: 140px;
  }
  .pb_lg--140 {
    padding-bottom: 140px;
  }
  .pl_lg--140 {
    padding-left: 140px;
  }
  .pr_lg--140 {
    padding-right: 140px;
  }
  .mt_lg--140 {
    margin-top: 140px;
  }
  .mb_lg--140 {
    margin-bottom: 140px;
  }
  .ml_lg--140 {
    margin-left: 140px;
  }
  .pt_lg--145 {
    padding-top: 145px;
  }
  .pb_lg--145 {
    padding-bottom: 145px;
  }
  .pl_lg--145 {
    padding-left: 145px;
  }
  .pr_lg--145 {
    padding-right: 145px;
  }
  .mt_lg--145 {
    margin-top: 145px;
  }
  .mb_lg--145 {
    margin-bottom: 145px;
  }
  .ml_lg--145 {
    margin-left: 145px;
  }
  .pt_lg--150 {
    padding-top: 150px;
  }
  .pb_lg--150 {
    padding-bottom: 150px;
  }
  .pl_lg--150 {
    padding-left: 150px;
  }
  .pr_lg--150 {
    padding-right: 150px;
  }
  .mt_lg--150 {
    margin-top: 150px;
  }
  .mb_lg--150 {
    margin-bottom: 150px;
  }
  .ml_lg--150 {
    margin-left: 150px;
  }
  .pt_lg--155 {
    padding-top: 155px;
  }
  .pb_lg--155 {
    padding-bottom: 155px;
  }
  .pl_lg--155 {
    padding-left: 155px;
  }
  .pr_lg--155 {
    padding-right: 155px;
  }
  .mt_lg--155 {
    margin-top: 155px;
  }
  .mb_lg--155 {
    margin-bottom: 155px;
  }
  .ml_lg--155 {
    margin-left: 155px;
  }
  .pt_lg--160 {
    padding-top: 160px;
  }
  .pb_lg--160 {
    padding-bottom: 160px;
  }
  .pl_lg--160 {
    padding-left: 160px;
  }
  .pr_lg--160 {
    padding-right: 160px;
  }
  .mt_lg--160 {
    margin-top: 160px;
  }
  .mb_lg--160 {
    margin-bottom: 160px;
  }
  .ml_lg--160 {
    margin-left: 160px;
  }
  .pt_lg--165 {
    padding-top: 165px;
  }
  .pb_lg--165 {
    padding-bottom: 165px;
  }
  .pl_lg--165 {
    padding-left: 165px;
  }
  .pr_lg--165 {
    padding-right: 165px;
  }
  .mt_lg--165 {
    margin-top: 165px;
  }
  .mb_lg--165 {
    margin-bottom: 165px;
  }
  .ml_lg--165 {
    margin-left: 165px;
  }
  .pt_lg--170 {
    padding-top: 170px;
  }
  .pb_lg--170 {
    padding-bottom: 170px;
  }
  .pl_lg--170 {
    padding-left: 170px;
  }
  .pr_lg--170 {
    padding-right: 170px;
  }
  .mt_lg--170 {
    margin-top: 170px;
  }
  .mb_lg--170 {
    margin-bottom: 170px;
  }
  .ml_lg--170 {
    margin-left: 170px;
  }
  .pt_lg--175 {
    padding-top: 175px;
  }
  .pb_lg--175 {
    padding-bottom: 175px;
  }
  .pl_lg--175 {
    padding-left: 175px;
  }
  .pr_lg--175 {
    padding-right: 175px;
  }
  .mt_lg--175 {
    margin-top: 175px;
  }
  .mb_lg--175 {
    margin-bottom: 175px;
  }
  .ml_lg--175 {
    margin-left: 175px;
  }
  .pt_lg--180 {
    padding-top: 180px;
  }
  .pb_lg--180 {
    padding-bottom: 180px;
  }
  .pl_lg--180 {
    padding-left: 180px;
  }
  .pr_lg--180 {
    padding-right: 180px;
  }
  .mt_lg--180 {
    margin-top: 180px;
  }
  .mb_lg--180 {
    margin-bottom: 180px;
  }
  .ml_lg--180 {
    margin-left: 180px;
  }
  .pt_lg--185 {
    padding-top: 185px;
  }
  .pb_lg--185 {
    padding-bottom: 185px;
  }
  .pl_lg--185 {
    padding-left: 185px;
  }
  .pr_lg--185 {
    padding-right: 185px;
  }
  .mt_lg--185 {
    margin-top: 185px;
  }
  .mb_lg--185 {
    margin-bottom: 185px;
  }
  .ml_lg--185 {
    margin-left: 185px;
  }
  .pt_lg--190 {
    padding-top: 190px;
  }
  .pb_lg--190 {
    padding-bottom: 190px;
  }
  .pl_lg--190 {
    padding-left: 190px;
  }
  .pr_lg--190 {
    padding-right: 190px;
  }
  .mt_lg--190 {
    margin-top: 190px;
  }
  .mb_lg--190 {
    margin-bottom: 190px;
  }
  .ml_lg--190 {
    margin-left: 190px;
  }
  .pt_lg--195 {
    padding-top: 195px;
  }
  .pb_lg--195 {
    padding-bottom: 195px;
  }
  .pl_lg--195 {
    padding-left: 195px;
  }
  .pr_lg--195 {
    padding-right: 195px;
  }
  .mt_lg--195 {
    margin-top: 195px;
  }
  .mb_lg--195 {
    margin-bottom: 195px;
  }
  .ml_lg--195 {
    margin-left: 195px;
  }
  .pt_lg--200 {
    padding-top: 200px;
  }
  .pb_lg--200 {
    padding-bottom: 200px;
  }
  .pl_lg--200 {
    padding-left: 200px;
  }
  .pr_lg--200 {
    padding-right: 200px;
  }
  .mt_lg--200 {
    margin-top: 200px;
  }
  .mb_lg--200 {
    margin-bottom: 200px;
  }
  .ml_lg--200 {
    margin-left: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pl_md--0 {
    padding-left: 0;
  }
  .pr_md--0 {
    padding-right: 0;
  }
  .pt_md--0 {
    padding-top: 0;
  }
  .pb_md--0 {
    padding-bottom: 0;
  }
  .mr_md--0 {
    margin-right: 0;
  }
  .ml_md--0 {
    margin-left: 0;
  }
  .mt_md--0 {
    margin-top: 0;
  }
  .mb_md--0 {
    margin-bottom: 0;
  }
  .pt_md--5 {
    padding-top: 5px;
  }
  .pb_md--5 {
    padding-bottom: 5px;
  }
  .pl_md--5 {
    padding-left: 5px;
  }
  .pr_md--5 {
    padding-right: 5px;
  }
  .mt_md--5 {
    margin-top: 5px;
  }
  .mb_md--5 {
    margin-bottom: 5px;
  }
  .pt_md--10 {
    padding-top: 10px;
  }
  .pb_md--10 {
    padding-bottom: 10px;
  }
  .pl_md--10 {
    padding-left: 10px;
  }
  .pr_md--10 {
    padding-right: 10px;
  }
  .mt_md--10 {
    margin-top: 10px;
  }
  .mb_md--10 {
    margin-bottom: 10px;
  }
  .pt_md--15 {
    padding-top: 15px;
  }
  .pb_md--15 {
    padding-bottom: 15px;
  }
  .pl_md--15 {
    padding-left: 15px;
  }
  .pr_md--15 {
    padding-right: 15px;
  }
  .mt_md--15 {
    margin-top: 15px;
  }
  .mb_md--15 {
    margin-bottom: 15px;
  }
  .pt_md--20 {
    padding-top: 20px;
  }
  .pb_md--20 {
    padding-bottom: 20px;
  }
  .pl_md--20 {
    padding-left: 20px;
  }
  .pr_md--20 {
    padding-right: 20px;
  }
  .mt_md--20 {
    margin-top: 20px;
  }
  .mb_md--20 {
    margin-bottom: 20px;
  }
  .pt_md--25 {
    padding-top: 25px;
  }
  .pb_md--25 {
    padding-bottom: 25px;
  }
  .pl_md--25 {
    padding-left: 25px;
  }
  .pr_md--25 {
    padding-right: 25px;
  }
  .mt_md--25 {
    margin-top: 25px;
  }
  .mb_md--25 {
    margin-bottom: 25px;
  }
  .pt_md--30 {
    padding-top: 30px;
  }
  .pb_md--30 {
    padding-bottom: 30px;
  }
  .pl_md--30 {
    padding-left: 30px;
  }
  .pr_md--30 {
    padding-right: 30px;
  }
  .mt_md--30 {
    margin-top: 30px;
  }
  .mb_md--30 {
    margin-bottom: 30px;
  }
  .pt_md--35 {
    padding-top: 35px;
  }
  .pb_md--35 {
    padding-bottom: 35px;
  }
  .pl_md--35 {
    padding-left: 35px;
  }
  .pr_md--35 {
    padding-right: 35px;
  }
  .mt_md--35 {
    margin-top: 35px;
  }
  .mb_md--35 {
    margin-bottom: 35px;
  }
  .pt_md--40 {
    padding-top: 40px;
  }
  .pb_md--40 {
    padding-bottom: 40px;
  }
  .pl_md--40 {
    padding-left: 40px;
  }
  .pr_md--40 {
    padding-right: 40px;
  }
  .mt_md--40 {
    margin-top: 40px;
  }
  .mb_md--40 {
    margin-bottom: 40px;
  }
  .pt_md--45 {
    padding-top: 45px;
  }
  .pb_md--45 {
    padding-bottom: 45px;
  }
  .pl_md--45 {
    padding-left: 45px;
  }
  .pr_md--45 {
    padding-right: 45px;
  }
  .mt_md--45 {
    margin-top: 45px;
  }
  .mb_md--45 {
    margin-bottom: 45px;
  }
  .pt_md--50 {
    padding-top: 50px;
  }
  .pb_md--50 {
    padding-bottom: 50px;
  }
  .pl_md--50 {
    padding-left: 50px;
  }
  .pr_md--50 {
    padding-right: 50px;
  }
  .mt_md--50 {
    margin-top: 50px;
  }
  .mb_md--50 {
    margin-bottom: 50px;
  }
  .pt_md--55 {
    padding-top: 55px;
  }
  .pb_md--55 {
    padding-bottom: 55px;
  }
  .pl_md--55 {
    padding-left: 55px;
  }
  .pr_md--55 {
    padding-right: 55px;
  }
  .mt_md--55 {
    margin-top: 55px;
  }
  .mb_md--55 {
    margin-bottom: 55px;
  }
  .pt_md--60 {
    padding-top: 60px;
  }
  .pb_md--60 {
    padding-bottom: 60px;
  }
  .pl_md--60 {
    padding-left: 60px;
  }
  .pr_md--60 {
    padding-right: 60px;
  }
  .mt_md--60 {
    margin-top: 60px;
  }
  .mb_md--60 {
    margin-bottom: 60px;
  }
  .pt_md--65 {
    padding-top: 65px;
  }
  .pb_md--65 {
    padding-bottom: 65px;
  }
  .pl_md--65 {
    padding-left: 65px;
  }
  .pr_md--65 {
    padding-right: 65px;
  }
  .mt_md--65 {
    margin-top: 65px;
  }
  .mb_md--65 {
    margin-bottom: 65px;
  }
  .pt_md--70 {
    padding-top: 70px;
  }
  .pb_md--70 {
    padding-bottom: 70px;
  }
  .pl_md--70 {
    padding-left: 70px;
  }
  .pr_md--70 {
    padding-right: 70px;
  }
  .mt_md--70 {
    margin-top: 70px;
  }
  .mb_md--70 {
    margin-bottom: 70px;
  }
  .pt_md--75 {
    padding-top: 75px;
  }
  .pb_md--75 {
    padding-bottom: 75px;
  }
  .pl_md--75 {
    padding-left: 75px;
  }
  .pr_md--75 {
    padding-right: 75px;
  }
  .mt_md--75 {
    margin-top: 75px;
  }
  .mb_md--75 {
    margin-bottom: 75px;
  }
  .pt_md--80 {
    padding-top: 80px;
  }
  .pb_md--80 {
    padding-bottom: 80px;
  }
  .pl_md--80 {
    padding-left: 80px;
  }
  .pr_md--80 {
    padding-right: 80px;
  }
  .mt_md--80 {
    margin-top: 80px;
  }
  .mb_md--80 {
    margin-bottom: 80px;
  }
  .pt_md--85 {
    padding-top: 85px;
  }
  .pb_md--85 {
    padding-bottom: 85px;
  }
  .pl_md--85 {
    padding-left: 85px;
  }
  .pr_md--85 {
    padding-right: 85px;
  }
  .mt_md--85 {
    margin-top: 85px;
  }
  .mb_md--85 {
    margin-bottom: 85px;
  }
  .pt_md--90 {
    padding-top: 90px;
  }
  .pb_md--90 {
    padding-bottom: 90px;
  }
  .pl_md--90 {
    padding-left: 90px;
  }
  .pr_md--90 {
    padding-right: 90px;
  }
  .mt_md--90 {
    margin-top: 90px;
  }
  .mb_md--90 {
    margin-bottom: 90px;
  }
  .pt_md--95 {
    padding-top: 95px;
  }
  .pb_md--95 {
    padding-bottom: 95px;
  }
  .pl_md--95 {
    padding-left: 95px;
  }
  .pr_md--95 {
    padding-right: 95px;
  }
  .mt_md--95 {
    margin-top: 95px;
  }
  .mb_md--95 {
    margin-bottom: 95px;
  }
  .pt_md--100 {
    padding-top: 100px;
  }
  .pb_md--100 {
    padding-bottom: 100px;
  }
  .pl_md--100 {
    padding-left: 100px;
  }
  .pr_md--100 {
    padding-right: 100px;
  }
  .mt_md--100 {
    margin-top: 100px;
  }
  .mb_md--100 {
    margin-bottom: 100px;
  }
  .pt_md--105 {
    padding-top: 105px;
  }
  .pb_md--105 {
    padding-bottom: 105px;
  }
  .pl_md--105 {
    padding-left: 105px;
  }
  .pr_md--105 {
    padding-right: 105px;
  }
  .mt_md--105 {
    margin-top: 105px;
  }
  .mb_md--105 {
    margin-bottom: 105px;
  }
  .pt_md--110 {
    padding-top: 110px;
  }
  .pb_md--110 {
    padding-bottom: 110px;
  }
  .pl_md--110 {
    padding-left: 110px;
  }
  .pr_md--110 {
    padding-right: 110px;
  }
  .mt_md--110 {
    margin-top: 110px;
  }
  .mb_md--110 {
    margin-bottom: 110px;
  }
  .pt_md--115 {
    padding-top: 115px;
  }
  .pb_md--115 {
    padding-bottom: 115px;
  }
  .pl_md--115 {
    padding-left: 115px;
  }
  .pr_md--115 {
    padding-right: 115px;
  }
  .mt_md--115 {
    margin-top: 115px;
  }
  .mb_md--115 {
    margin-bottom: 115px;
  }
  .pt_md--120 {
    padding-top: 120px;
  }
  .pb_md--120 {
    padding-bottom: 120px;
  }
  .pl_md--120 {
    padding-left: 120px;
  }
  .pr_md--120 {
    padding-right: 120px;
  }
  .mt_md--120 {
    margin-top: 120px;
  }
  .mb_md--120 {
    margin-bottom: 120px;
  }
  .pt_md--125 {
    padding-top: 125px;
  }
  .pb_md--125 {
    padding-bottom: 125px;
  }
  .pl_md--125 {
    padding-left: 125px;
  }
  .pr_md--125 {
    padding-right: 125px;
  }
  .mt_md--125 {
    margin-top: 125px;
  }
  .mb_md--125 {
    margin-bottom: 125px;
  }
  .pt_md--130 {
    padding-top: 130px;
  }
  .pb_md--130 {
    padding-bottom: 130px;
  }
  .pl_md--130 {
    padding-left: 130px;
  }
  .pr_md--130 {
    padding-right: 130px;
  }
  .mt_md--130 {
    margin-top: 130px;
  }
  .mb_md--130 {
    margin-bottom: 130px;
  }
  .pt_md--135 {
    padding-top: 135px;
  }
  .pb_md--135 {
    padding-bottom: 135px;
  }
  .pl_md--135 {
    padding-left: 135px;
  }
  .pr_md--135 {
    padding-right: 135px;
  }
  .mt_md--135 {
    margin-top: 135px;
  }
  .mb_md--135 {
    margin-bottom: 135px;
  }
  .pt_md--140 {
    padding-top: 140px;
  }
  .pb_md--140 {
    padding-bottom: 140px;
  }
  .pl_md--140 {
    padding-left: 140px;
  }
  .pr_md--140 {
    padding-right: 140px;
  }
  .mt_md--140 {
    margin-top: 140px;
  }
  .mb_md--140 {
    margin-bottom: 140px;
  }
  .pt_md--145 {
    padding-top: 145px;
  }
  .pb_md--145 {
    padding-bottom: 145px;
  }
  .pl_md--145 {
    padding-left: 145px;
  }
  .pr_md--145 {
    padding-right: 145px;
  }
  .mt_md--145 {
    margin-top: 145px;
  }
  .mb_md--145 {
    margin-bottom: 145px;
  }
  .pt_md--150 {
    padding-top: 150px;
  }
  .pb_md--150 {
    padding-bottom: 150px;
  }
  .pl_md--150 {
    padding-left: 150px;
  }
  .pr_md--150 {
    padding-right: 150px;
  }
  .mt_md--150 {
    margin-top: 150px;
  }
  .mb_md--150 {
    margin-bottom: 150px;
  }
  .pt_md--155 {
    padding-top: 155px;
  }
  .pb_md--155 {
    padding-bottom: 155px;
  }
  .pl_md--155 {
    padding-left: 155px;
  }
  .pr_md--155 {
    padding-right: 155px;
  }
  .mt_md--155 {
    margin-top: 155px;
  }
  .mb_md--155 {
    margin-bottom: 155px;
  }
  .pt_md--160 {
    padding-top: 160px;
  }
  .pb_md--160 {
    padding-bottom: 160px;
  }
  .pl_md--160 {
    padding-left: 160px;
  }
  .pr_md--160 {
    padding-right: 160px;
  }
  .mt_md--160 {
    margin-top: 160px;
  }
  .mb_md--160 {
    margin-bottom: 160px;
  }
  .pt_md--165 {
    padding-top: 165px;
  }
  .pb_md--165 {
    padding-bottom: 165px;
  }
  .pl_md--165 {
    padding-left: 165px;
  }
  .pr_md--165 {
    padding-right: 165px;
  }
  .mt_md--165 {
    margin-top: 165px;
  }
  .mb_md--165 {
    margin-bottom: 165px;
  }
  .pt_md--170 {
    padding-top: 170px;
  }
  .pb_md--170 {
    padding-bottom: 170px;
  }
  .pl_md--170 {
    padding-left: 170px;
  }
  .pr_md--170 {
    padding-right: 170px;
  }
  .mt_md--170 {
    margin-top: 170px;
  }
  .mb_md--170 {
    margin-bottom: 170px;
  }
  .pt_md--175 {
    padding-top: 175px;
  }
  .pb_md--175 {
    padding-bottom: 175px;
  }
  .pl_md--175 {
    padding-left: 175px;
  }
  .pr_md--175 {
    padding-right: 175px;
  }
  .mt_md--175 {
    margin-top: 175px;
  }
  .mb_md--175 {
    margin-bottom: 175px;
  }
  .pt_md--180 {
    padding-top: 180px;
  }
  .pb_md--180 {
    padding-bottom: 180px;
  }
  .pl_md--180 {
    padding-left: 180px;
  }
  .pr_md--180 {
    padding-right: 180px;
  }
  .mt_md--180 {
    margin-top: 180px;
  }
  .mb_md--180 {
    margin-bottom: 180px;
  }
  .pt_md--185 {
    padding-top: 185px;
  }
  .pb_md--185 {
    padding-bottom: 185px;
  }
  .pl_md--185 {
    padding-left: 185px;
  }
  .pr_md--185 {
    padding-right: 185px;
  }
  .mt_md--185 {
    margin-top: 185px;
  }
  .mb_md--185 {
    margin-bottom: 185px;
  }
  .pt_md--190 {
    padding-top: 190px;
  }
  .pb_md--190 {
    padding-bottom: 190px;
  }
  .pl_md--190 {
    padding-left: 190px;
  }
  .pr_md--190 {
    padding-right: 190px;
  }
  .mt_md--190 {
    margin-top: 190px;
  }
  .mb_md--190 {
    margin-bottom: 190px;
  }
  .pt_md--195 {
    padding-top: 195px;
  }
  .pb_md--195 {
    padding-bottom: 195px;
  }
  .pl_md--195 {
    padding-left: 195px;
  }
  .pr_md--195 {
    padding-right: 195px;
  }
  .mt_md--195 {
    margin-top: 195px;
  }
  .mb_md--195 {
    margin-bottom: 195px;
  }
  .pt_md--200 {
    padding-top: 200px;
  }
  .pb_md--200 {
    padding-bottom: 200px;
  }
  .pl_md--200 {
    padding-left: 200px;
  }
  .pr_md--200 {
    padding-right: 200px;
  }
  .mt_md--200 {
    margin-top: 200px;
  }
  .mb_md--200 {
    margin-bottom: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .pl_sm--0 {
    padding-left: 0;
  }
  .pr_sm--0 {
    padding-right: 0;
  }
  .pt_sm--0 {
    padding-top: 0;
  }
  .pb_sm--0 {
    padding-bottom: 0;
  }
  .mr_sm--0 {
    margin-right: 0;
  }
  .ml_sm--0 {
    margin-left: 0;
  }
  .mt_sm--0 {
    margin-top: 0;
  }
  .mb_sm--0 {
    margin-bottom: 0;
  }
  .pt_sm--150 {
    padding-top: 150px;
  }
  .pb_sm--110 {
    padding-bottom: 110px;
  }
  .pt_sm--5 {
    padding-top: 5px;
  }
  .pb_sm--5 {
    padding-bottom: 5px;
  }
  .pl_sm--5 {
    padding-left: 5px;
  }
  .pr_sm--5 {
    padding-right: 5px;
  }
  .mt_sm--5 {
    margin-top: 5px;
  }
  .ml_sm--5 {
    margin-left: 5px;
  }
  .mr_sm--5 {
    margin-right: 5px;
  }
  .mb_sm--5 {
    margin-bottom: 5px;
  }
  .pt_sm--10 {
    padding-top: 10px;
  }
  .pb_sm--10 {
    padding-bottom: 10px;
  }
  .pl_sm--10 {
    padding-left: 10px;
  }
  .pr_sm--10 {
    padding-right: 10px;
  }
  .mt_sm--10 {
    margin-top: 10px;
  }
  .ml_sm--10 {
    margin-left: 10px;
  }
  .mr_sm--10 {
    margin-right: 10px;
  }
  .mb_sm--10 {
    margin-bottom: 10px;
  }
  .pt_sm--15 {
    padding-top: 15px;
  }
  .pb_sm--15 {
    padding-bottom: 15px;
  }
  .pl_sm--15 {
    padding-left: 15px;
  }
  .pr_sm--15 {
    padding-right: 15px;
  }
  .mt_sm--15 {
    margin-top: 15px;
  }
  .ml_sm--15 {
    margin-left: 15px;
  }
  .mr_sm--15 {
    margin-right: 15px;
  }
  .mb_sm--15 {
    margin-bottom: 15px;
  }
  .pt_sm--20 {
    padding-top: 20px;
  }
  .pb_sm--20 {
    padding-bottom: 20px;
  }
  .pl_sm--20 {
    padding-left: 20px;
  }
  .pr_sm--20 {
    padding-right: 20px;
  }
  .mt_sm--20 {
    margin-top: 20px;
  }
  .ml_sm--20 {
    margin-left: 20px;
  }
  .mr_sm--20 {
    margin-right: 20px;
  }
  .mb_sm--20 {
    margin-bottom: 20px;
  }
  .pt_sm--25 {
    padding-top: 25px;
  }
  .pb_sm--25 {
    padding-bottom: 25px;
  }
  .pl_sm--25 {
    padding-left: 25px;
  }
  .pr_sm--25 {
    padding-right: 25px;
  }
  .mt_sm--25 {
    margin-top: 25px;
  }
  .ml_sm--25 {
    margin-left: 25px;
  }
  .mr_sm--25 {
    margin-right: 25px;
  }
  .mb_sm--25 {
    margin-bottom: 25px;
  }
  .pt_sm--30 {
    padding-top: 30px;
  }
  .pb_sm--30 {
    padding-bottom: 30px;
  }
  .pl_sm--30 {
    padding-left: 30px;
  }
  .pr_sm--30 {
    padding-right: 30px;
  }
  .mt_sm--30 {
    margin-top: 30px;
  }
  .ml_sm--30 {
    margin-left: 30px;
  }
  .mr_sm--30 {
    margin-right: 30px;
  }
  .mb_sm--30 {
    margin-bottom: 30px;
  }
  .pt_sm--35 {
    padding-top: 35px;
  }
  .pb_sm--35 {
    padding-bottom: 35px;
  }
  .pl_sm--35 {
    padding-left: 35px;
  }
  .pr_sm--35 {
    padding-right: 35px;
  }
  .mt_sm--35 {
    margin-top: 35px;
  }
  .ml_sm--35 {
    margin-left: 35px;
  }
  .mr_sm--35 {
    margin-right: 35px;
  }
  .mb_sm--35 {
    margin-bottom: 35px;
  }
  .pt_sm--40 {
    padding-top: 40px;
  }
  .pb_sm--40 {
    padding-bottom: 40px;
  }
  .pl_sm--40 {
    padding-left: 40px;
  }
  .pr_sm--40 {
    padding-right: 40px;
  }
  .mt_sm--40 {
    margin-top: 40px;
  }
  .ml_sm--40 {
    margin-left: 40px;
  }
  .mr_sm--40 {
    margin-right: 40px;
  }
  .mb_sm--40 {
    margin-bottom: 40px;
  }
  .pt_sm--45 {
    padding-top: 45px;
  }
  .pb_sm--45 {
    padding-bottom: 45px;
  }
  .pl_sm--45 {
    padding-left: 45px;
  }
  .pr_sm--45 {
    padding-right: 45px;
  }
  .mt_sm--45 {
    margin-top: 45px;
  }
  .ml_sm--45 {
    margin-left: 45px;
  }
  .mr_sm--45 {
    margin-right: 45px;
  }
  .mb_sm--45 {
    margin-bottom: 45px;
  }
  .pt_sm--50 {
    padding-top: 50px;
  }
  .pb_sm--50 {
    padding-bottom: 50px;
  }
  .pl_sm--50 {
    padding-left: 50px;
  }
  .pr_sm--50 {
    padding-right: 50px;
  }
  .mt_sm--50 {
    margin-top: 50px;
  }
  .ml_sm--50 {
    margin-left: 50px;
  }
  .mr_sm--50 {
    margin-right: 50px;
  }
  .mb_sm--50 {
    margin-bottom: 50px;
  }
  .pt_sm--55 {
    padding-top: 55px;
  }
  .pb_sm--55 {
    padding-bottom: 55px;
  }
  .pl_sm--55 {
    padding-left: 55px;
  }
  .pr_sm--55 {
    padding-right: 55px;
  }
  .mt_sm--55 {
    margin-top: 55px;
  }
  .ml_sm--55 {
    margin-left: 55px;
  }
  .mr_sm--55 {
    margin-right: 55px;
  }
  .mb_sm--55 {
    margin-bottom: 55px;
  }
  .pt_sm--60 {
    padding-top: 60px;
  }
  .pb_sm--60 {
    padding-bottom: 60px;
  }
  .pl_sm--60 {
    padding-left: 60px;
  }
  .pr_sm--60 {
    padding-right: 60px;
  }
  .mt_sm--60 {
    margin-top: 60px;
  }
  .ml_sm--60 {
    margin-left: 60px;
  }
  .mr_sm--60 {
    margin-right: 60px;
  }
  .mb_sm--60 {
    margin-bottom: 60px;
  }
  .pt_sm--65 {
    padding-top: 65px;
  }
  .pb_sm--65 {
    padding-bottom: 65px;
  }
  .pl_sm--65 {
    padding-left: 65px;
  }
  .pr_sm--65 {
    padding-right: 65px;
  }
  .mt_sm--65 {
    margin-top: 65px;
  }
  .ml_sm--65 {
    margin-left: 65px;
  }
  .mr_sm--65 {
    margin-right: 65px;
  }
  .mb_sm--65 {
    margin-bottom: 65px;
  }
  .pt_sm--70 {
    padding-top: 70px;
  }
  .pb_sm--70 {
    padding-bottom: 70px;
  }
  .pl_sm--70 {
    padding-left: 70px;
  }
  .pr_sm--70 {
    padding-right: 70px;
  }
  .mt_sm--70 {
    margin-top: 70px;
  }
  .ml_sm--70 {
    margin-left: 70px;
  }
  .mr_sm--70 {
    margin-right: 70px;
  }
  .mb_sm--70 {
    margin-bottom: 70px;
  }
  .pt_sm--75 {
    padding-top: 75px;
  }
  .pb_sm--75 {
    padding-bottom: 75px;
  }
  .pl_sm--75 {
    padding-left: 75px;
  }
  .pr_sm--75 {
    padding-right: 75px;
  }
  .mt_sm--75 {
    margin-top: 75px;
  }
  .ml_sm--75 {
    margin-left: 75px;
  }
  .mr_sm--75 {
    margin-right: 75px;
  }
  .mb_sm--75 {
    margin-bottom: 75px;
  }
  .pt_sm--80 {
    padding-top: 80px;
  }
  .pb_sm--80 {
    padding-bottom: 80px;
  }
  .pl_sm--80 {
    padding-left: 80px;
  }
  .pr_sm--80 {
    padding-right: 80px;
  }
  .mt_sm--80 {
    margin-top: 80px;
  }
  .ml_sm--80 {
    margin-left: 80px;
  }
  .mr_sm--80 {
    margin-right: 80px;
  }
  .mb_sm--80 {
    margin-bottom: 80px;
  }
  .pt_sm--85 {
    padding-top: 85px;
  }
  .pb_sm--85 {
    padding-bottom: 85px;
  }
  .pl_sm--85 {
    padding-left: 85px;
  }
  .pr_sm--85 {
    padding-right: 85px;
  }
  .mt_sm--85 {
    margin-top: 85px;
  }
  .ml_sm--85 {
    margin-left: 85px;
  }
  .mr_sm--85 {
    margin-right: 85px;
  }
  .mb_sm--85 {
    margin-bottom: 85px;
  }
  .pt_sm--90 {
    padding-top: 90px;
  }
  .pb_sm--90 {
    padding-bottom: 90px;
  }
  .pl_sm--90 {
    padding-left: 90px;
  }
  .pr_sm--90 {
    padding-right: 90px;
  }
  .mt_sm--90 {
    margin-top: 90px;
  }
  .ml_sm--90 {
    margin-left: 90px;
  }
  .mr_sm--90 {
    margin-right: 90px;
  }
  .mb_sm--90 {
    margin-bottom: 90px;
  }
  .pt_sm--95 {
    padding-top: 95px;
  }
  .pb_sm--95 {
    padding-bottom: 95px;
  }
  .pl_sm--95 {
    padding-left: 95px;
  }
  .pr_sm--95 {
    padding-right: 95px;
  }
  .mt_sm--95 {
    margin-top: 95px;
  }
  .ml_sm--95 {
    margin-left: 95px;
  }
  .mr_sm--95 {
    margin-right: 95px;
  }
  .mb_sm--95 {
    margin-bottom: 95px;
  }
  .pt_sm--100 {
    padding-top: 100px;
  }
  .pb_sm--100 {
    padding-bottom: 100px;
  }
  .pl_sm--100 {
    padding-left: 100px;
  }
  .pr_sm--100 {
    padding-right: 100px;
  }
  .mt_sm--100 {
    margin-top: 100px;
  }
  .ml_sm--100 {
    margin-left: 100px;
  }
  .mr_sm--100 {
    margin-right: 100px;
  }
  .mb_sm--100 {
    margin-bottom: 100px;
  }
  .pt_sm--105 {
    padding-top: 105px;
  }
  .pb_sm--105 {
    padding-bottom: 105px;
  }
  .pl_sm--105 {
    padding-left: 105px;
  }
  .pr_sm--105 {
    padding-right: 105px;
  }
  .mt_sm--105 {
    margin-top: 105px;
  }
  .ml_sm--105 {
    margin-left: 105px;
  }
  .mr_sm--105 {
    margin-right: 105px;
  }
  .mb_sm--105 {
    margin-bottom: 105px;
  }
  .pt_sm--110 {
    padding-top: 110px;
  }
  .pb_sm--110 {
    padding-bottom: 110px;
  }
  .pl_sm--110 {
    padding-left: 110px;
  }
  .pr_sm--110 {
    padding-right: 110px;
  }
  .mt_sm--110 {
    margin-top: 110px;
  }
  .ml_sm--110 {
    margin-left: 110px;
  }
  .mr_sm--110 {
    margin-right: 110px;
  }
  .mb_sm--110 {
    margin-bottom: 110px;
  }
  .pt_sm--115 {
    padding-top: 115px;
  }
  .pb_sm--115 {
    padding-bottom: 115px;
  }
  .pl_sm--115 {
    padding-left: 115px;
  }
  .pr_sm--115 {
    padding-right: 115px;
  }
  .mt_sm--115 {
    margin-top: 115px;
  }
  .ml_sm--115 {
    margin-left: 115px;
  }
  .mr_sm--115 {
    margin-right: 115px;
  }
  .mb_sm--115 {
    margin-bottom: 115px;
  }
  .pt_sm--120 {
    padding-top: 120px;
  }
  .pb_sm--120 {
    padding-bottom: 120px;
  }
  .pl_sm--120 {
    padding-left: 120px;
  }
  .pr_sm--120 {
    padding-right: 120px;
  }
  .mt_sm--120 {
    margin-top: 120px;
  }
  .ml_sm--120 {
    margin-left: 120px;
  }
  .mr_sm--120 {
    margin-right: 120px;
  }
  .mb_sm--120 {
    margin-bottom: 120px;
  }
  .pt_sm--125 {
    padding-top: 125px;
  }
  .pb_sm--125 {
    padding-bottom: 125px;
  }
  .pl_sm--125 {
    padding-left: 125px;
  }
  .pr_sm--125 {
    padding-right: 125px;
  }
  .mt_sm--125 {
    margin-top: 125px;
  }
  .ml_sm--125 {
    margin-left: 125px;
  }
  .mr_sm--125 {
    margin-right: 125px;
  }
  .mb_sm--125 {
    margin-bottom: 125px;
  }
  .pt_sm--130 {
    padding-top: 130px;
  }
  .pb_sm--130 {
    padding-bottom: 130px;
  }
  .pl_sm--130 {
    padding-left: 130px;
  }
  .pr_sm--130 {
    padding-right: 130px;
  }
  .mt_sm--130 {
    margin-top: 130px;
  }
  .ml_sm--130 {
    margin-left: 130px;
  }
  .mr_sm--130 {
    margin-right: 130px;
  }
  .mb_sm--130 {
    margin-bottom: 130px;
  }
  .pt_sm--135 {
    padding-top: 135px;
  }
  .pb_sm--135 {
    padding-bottom: 135px;
  }
  .pl_sm--135 {
    padding-left: 135px;
  }
  .pr_sm--135 {
    padding-right: 135px;
  }
  .mt_sm--135 {
    margin-top: 135px;
  }
  .ml_sm--135 {
    margin-left: 135px;
  }
  .mr_sm--135 {
    margin-right: 135px;
  }
  .mb_sm--135 {
    margin-bottom: 135px;
  }
  .pt_sm--140 {
    padding-top: 140px;
  }
  .pb_sm--140 {
    padding-bottom: 140px;
  }
  .pl_sm--140 {
    padding-left: 140px;
  }
  .pr_sm--140 {
    padding-right: 140px;
  }
  .mt_sm--140 {
    margin-top: 140px;
  }
  .ml_sm--140 {
    margin-left: 140px;
  }
  .mr_sm--140 {
    margin-right: 140px;
  }
  .mb_sm--140 {
    margin-bottom: 140px;
  }
  .pt_sm--145 {
    padding-top: 145px;
  }
  .pb_sm--145 {
    padding-bottom: 145px;
  }
  .pl_sm--145 {
    padding-left: 145px;
  }
  .pr_sm--145 {
    padding-right: 145px;
  }
  .mt_sm--145 {
    margin-top: 145px;
  }
  .ml_sm--145 {
    margin-left: 145px;
  }
  .mr_sm--145 {
    margin-right: 145px;
  }
  .mb_sm--145 {
    margin-bottom: 145px;
  }
  .pt_sm--150 {
    padding-top: 150px;
  }
  .pb_sm--150 {
    padding-bottom: 150px;
  }
  .pl_sm--150 {
    padding-left: 150px;
  }
  .pr_sm--150 {
    padding-right: 150px;
  }
  .mt_sm--150 {
    margin-top: 150px;
  }
  .ml_sm--150 {
    margin-left: 150px;
  }
  .mr_sm--150 {
    margin-right: 150px;
  }
  .mb_sm--150 {
    margin-bottom: 150px;
  }
  .pt_sm--155 {
    padding-top: 155px;
  }
  .pb_sm--155 {
    padding-bottom: 155px;
  }
  .pl_sm--155 {
    padding-left: 155px;
  }
  .pr_sm--155 {
    padding-right: 155px;
  }
  .mt_sm--155 {
    margin-top: 155px;
  }
  .ml_sm--155 {
    margin-left: 155px;
  }
  .mr_sm--155 {
    margin-right: 155px;
  }
  .mb_sm--155 {
    margin-bottom: 155px;
  }
  .pt_sm--160 {
    padding-top: 160px;
  }
  .pb_sm--160 {
    padding-bottom: 160px;
  }
  .pl_sm--160 {
    padding-left: 160px;
  }
  .pr_sm--160 {
    padding-right: 160px;
  }
  .mt_sm--160 {
    margin-top: 160px;
  }
  .ml_sm--160 {
    margin-left: 160px;
  }
  .mr_sm--160 {
    margin-right: 160px;
  }
  .mb_sm--160 {
    margin-bottom: 160px;
  }
  .pt_sm--165 {
    padding-top: 165px;
  }
  .pb_sm--165 {
    padding-bottom: 165px;
  }
  .pl_sm--165 {
    padding-left: 165px;
  }
  .pr_sm--165 {
    padding-right: 165px;
  }
  .mt_sm--165 {
    margin-top: 165px;
  }
  .ml_sm--165 {
    margin-left: 165px;
  }
  .mr_sm--165 {
    margin-right: 165px;
  }
  .mb_sm--165 {
    margin-bottom: 165px;
  }
  .pt_sm--170 {
    padding-top: 170px;
  }
  .pb_sm--170 {
    padding-bottom: 170px;
  }
  .pl_sm--170 {
    padding-left: 170px;
  }
  .pr_sm--170 {
    padding-right: 170px;
  }
  .mt_sm--170 {
    margin-top: 170px;
  }
  .ml_sm--170 {
    margin-left: 170px;
  }
  .mr_sm--170 {
    margin-right: 170px;
  }
  .mb_sm--170 {
    margin-bottom: 170px;
  }
  .pt_sm--175 {
    padding-top: 175px;
  }
  .pb_sm--175 {
    padding-bottom: 175px;
  }
  .pl_sm--175 {
    padding-left: 175px;
  }
  .pr_sm--175 {
    padding-right: 175px;
  }
  .mt_sm--175 {
    margin-top: 175px;
  }
  .ml_sm--175 {
    margin-left: 175px;
  }
  .mr_sm--175 {
    margin-right: 175px;
  }
  .mb_sm--175 {
    margin-bottom: 175px;
  }
  .pt_sm--180 {
    padding-top: 180px;
  }
  .pb_sm--180 {
    padding-bottom: 180px;
  }
  .pl_sm--180 {
    padding-left: 180px;
  }
  .pr_sm--180 {
    padding-right: 180px;
  }
  .mt_sm--180 {
    margin-top: 180px;
  }
  .ml_sm--180 {
    margin-left: 180px;
  }
  .mr_sm--180 {
    margin-right: 180px;
  }
  .mb_sm--180 {
    margin-bottom: 180px;
  }
  .pt_sm--185 {
    padding-top: 185px;
  }
  .pb_sm--185 {
    padding-bottom: 185px;
  }
  .pl_sm--185 {
    padding-left: 185px;
  }
  .pr_sm--185 {
    padding-right: 185px;
  }
  .mt_sm--185 {
    margin-top: 185px;
  }
  .ml_sm--185 {
    margin-left: 185px;
  }
  .mr_sm--185 {
    margin-right: 185px;
  }
  .mb_sm--185 {
    margin-bottom: 185px;
  }
  .pt_sm--190 {
    padding-top: 190px;
  }
  .pb_sm--190 {
    padding-bottom: 190px;
  }
  .pl_sm--190 {
    padding-left: 190px;
  }
  .pr_sm--190 {
    padding-right: 190px;
  }
  .mt_sm--190 {
    margin-top: 190px;
  }
  .ml_sm--190 {
    margin-left: 190px;
  }
  .mr_sm--190 {
    margin-right: 190px;
  }
  .mb_sm--190 {
    margin-bottom: 190px;
  }
  .pt_sm--195 {
    padding-top: 195px;
  }
  .pb_sm--195 {
    padding-bottom: 195px;
  }
  .pl_sm--195 {
    padding-left: 195px;
  }
  .pr_sm--195 {
    padding-right: 195px;
  }
  .mt_sm--195 {
    margin-top: 195px;
  }
  .ml_sm--195 {
    margin-left: 195px;
  }
  .mr_sm--195 {
    margin-right: 195px;
  }
  .mb_sm--195 {
    margin-bottom: 195px;
  }
  .pt_sm--200 {
    padding-top: 200px;
  }
  .pb_sm--200 {
    padding-bottom: 200px;
  }
  .pl_sm--200 {
    padding-left: 200px;
  }
  .pr_sm--200 {
    padding-right: 200px;
  }
  .mt_sm--200 {
    margin-top: 200px;
  }
  .ml_sm--200 {
    margin-left: 200px;
  }
  .mr_sm--200 {
    margin-right: 200px;
  }
  .mb_sm--200 {
    margin-bottom: 200px;
  }
  .pl_sm--0 {
    padding-left: 0;
  }
  .pr_sm--0 {
    padding-right: 0;
  }
  .pt_sm--0 {
    padding-top: 0;
  }
  .pb_sm--0 {
    padding-bottom: 0;
  }
  .mr_sm--0 {
    margin-right: 0;
  }
  .ml_sm--0 {
    margin-left: 0;
  }
  .mt_sm--0 {
    margin-top: 0;
  }
  .mb_sm--0 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .pt_mobile--5 {
    padding-top: 5px;
  }
  .pb_mobile--5 {
    padding-bottom: 5px;
  }
  .pl_mobile--5 {
    padding-left: 5px;
  }
  .pr_mobile--5 {
    padding-right: 5px;
  }
  .mt_mobile--5 {
    margin-top: 5px;
  }
  .mb_mobile--5 {
    margin-bottom: 5px;
  }
  .pt_mobile--10 {
    padding-top: 10px;
  }
  .pb_mobile--10 {
    padding-bottom: 10px;
  }
  .pl_mobile--10 {
    padding-left: 10px;
  }
  .pr_mobile--10 {
    padding-right: 10px;
  }
  .mt_mobile--10 {
    margin-top: 10px;
  }
  .mb_mobile--10 {
    margin-bottom: 10px;
  }
  .pt_mobile--15 {
    padding-top: 15px;
  }
  .pb_mobile--15 {
    padding-bottom: 15px;
  }
  .pl_mobile--15 {
    padding-left: 15px;
  }
  .pr_mobile--15 {
    padding-right: 15px;
  }
  .mt_mobile--15 {
    margin-top: 15px;
  }
  .mb_mobile--15 {
    margin-bottom: 15px;
  }
  .pt_mobile--20 {
    padding-top: 20px;
  }
  .pb_mobile--20 {
    padding-bottom: 20px;
  }
  .pl_mobile--20 {
    padding-left: 20px;
  }
  .pr_mobile--20 {
    padding-right: 20px;
  }
  .mt_mobile--20 {
    margin-top: 20px;
  }
  .mb_mobile--20 {
    margin-bottom: 20px;
  }
  .pt_mobile--25 {
    padding-top: 25px;
  }
  .pb_mobile--25 {
    padding-bottom: 25px;
  }
  .pl_mobile--25 {
    padding-left: 25px;
  }
  .pr_mobile--25 {
    padding-right: 25px;
  }
  .mt_mobile--25 {
    margin-top: 25px;
  }
  .mb_mobile--25 {
    margin-bottom: 25px;
  }
  .pt_mobile--30 {
    padding-top: 30px;
  }
  .pb_mobile--30 {
    padding-bottom: 30px;
  }
  .pl_mobile--30 {
    padding-left: 30px;
  }
  .pr_mobile--30 {
    padding-right: 30px;
  }
  .mt_mobile--30 {
    margin-top: 30px;
  }
  .mb_mobile--30 {
    margin-bottom: 30px;
  }
  .pt_mobile--35 {
    padding-top: 35px;
  }
  .pb_mobile--35 {
    padding-bottom: 35px;
  }
  .pl_mobile--35 {
    padding-left: 35px;
  }
  .pr_mobile--35 {
    padding-right: 35px;
  }
  .mt_mobile--35 {
    margin-top: 35px;
  }
  .mb_mobile--35 {
    margin-bottom: 35px;
  }
  .pt_mobile--40 {
    padding-top: 40px;
  }
  .pb_mobile--40 {
    padding-bottom: 40px;
  }
  .pl_mobile--40 {
    padding-left: 40px;
  }
  .pr_mobile--40 {
    padding-right: 40px;
  }
  .mt_mobile--40 {
    margin-top: 40px;
  }
  .mb_mobile--40 {
    margin-bottom: 40px;
  }
  .pt_mobile--45 {
    padding-top: 45px;
  }
  .pb_mobile--45 {
    padding-bottom: 45px;
  }
  .pl_mobile--45 {
    padding-left: 45px;
  }
  .pr_mobile--45 {
    padding-right: 45px;
  }
  .mt_mobile--45 {
    margin-top: 45px;
  }
  .mb_mobile--45 {
    margin-bottom: 45px;
  }
  .pt_mobile--50 {
    padding-top: 50px;
  }
  .pb_mobile--50 {
    padding-bottom: 50px;
  }
  .pl_mobile--50 {
    padding-left: 50px;
  }
  .pr_mobile--50 {
    padding-right: 50px;
  }
  .mt_mobile--50 {
    margin-top: 50px;
  }
  .mb_mobile--50 {
    margin-bottom: 50px;
  }
  .pt_mobile--55 {
    padding-top: 55px;
  }
  .pb_mobile--55 {
    padding-bottom: 55px;
  }
  .pl_mobile--55 {
    padding-left: 55px;
  }
  .pr_mobile--55 {
    padding-right: 55px;
  }
  .mt_mobile--55 {
    margin-top: 55px;
  }
  .mb_mobile--55 {
    margin-bottom: 55px;
  }
  .pt_mobile--60 {
    padding-top: 60px;
  }
  .pb_mobile--60 {
    padding-bottom: 60px;
  }
  .pl_mobile--60 {
    padding-left: 60px;
  }
  .pr_mobile--60 {
    padding-right: 60px;
  }
  .mt_mobile--60 {
    margin-top: 60px;
  }
  .mb_mobile--60 {
    margin-bottom: 60px;
  }
  .pt_mobile--65 {
    padding-top: 65px;
  }
  .pb_mobile--65 {
    padding-bottom: 65px;
  }
  .pl_mobile--65 {
    padding-left: 65px;
  }
  .pr_mobile--65 {
    padding-right: 65px;
  }
  .mt_mobile--65 {
    margin-top: 65px;
  }
  .mb_mobile--65 {
    margin-bottom: 65px;
  }
  .pt_mobile--70 {
    padding-top: 70px;
  }
  .pb_mobile--70 {
    padding-bottom: 70px;
  }
  .pl_mobile--70 {
    padding-left: 70px;
  }
  .pr_mobile--70 {
    padding-right: 70px;
  }
  .mt_mobile--70 {
    margin-top: 70px;
  }
  .mb_mobile--70 {
    margin-bottom: 70px;
  }
  .pt_mobile--75 {
    padding-top: 75px;
  }
  .pb_mobile--75 {
    padding-bottom: 75px;
  }
  .pl_mobile--75 {
    padding-left: 75px;
  }
  .pr_mobile--75 {
    padding-right: 75px;
  }
  .mt_mobile--75 {
    margin-top: 75px;
  }
  .mb_mobile--75 {
    margin-bottom: 75px;
  }
  .pt_mobile--80 {
    padding-top: 80px;
  }
  .pb_mobile--80 {
    padding-bottom: 80px;
  }
  .pl_mobile--80 {
    padding-left: 80px;
  }
  .pr_mobile--80 {
    padding-right: 80px;
  }
  .mt_mobile--80 {
    margin-top: 80px;
  }
  .mb_mobile--80 {
    margin-bottom: 80px;
  }
  .pt_mobile--85 {
    padding-top: 85px;
  }
  .pb_mobile--85 {
    padding-bottom: 85px;
  }
  .pl_mobile--85 {
    padding-left: 85px;
  }
  .pr_mobile--85 {
    padding-right: 85px;
  }
  .mt_mobile--85 {
    margin-top: 85px;
  }
  .mb_mobile--85 {
    margin-bottom: 85px;
  }
  .pt_mobile--90 {
    padding-top: 90px;
  }
  .pb_mobile--90 {
    padding-bottom: 90px;
  }
  .pl_mobile--90 {
    padding-left: 90px;
  }
  .pr_mobile--90 {
    padding-right: 90px;
  }
  .mt_mobile--90 {
    margin-top: 90px;
  }
  .mb_mobile--90 {
    margin-bottom: 90px;
  }
  .pt_mobile--95 {
    padding-top: 95px;
  }
  .pb_mobile--95 {
    padding-bottom: 95px;
  }
  .pl_mobile--95 {
    padding-left: 95px;
  }
  .pr_mobile--95 {
    padding-right: 95px;
  }
  .mt_mobile--95 {
    margin-top: 95px;
  }
  .mb_mobile--95 {
    margin-bottom: 95px;
  }
  .pt_mobile--100 {
    padding-top: 100px;
  }
  .pb_mobile--100 {
    padding-bottom: 100px;
  }
  .pl_mobile--100 {
    padding-left: 100px;
  }
  .pr_mobile--100 {
    padding-right: 100px;
  }
  .mt_mobile--100 {
    margin-top: 100px;
  }
  .mb_mobile--100 {
    margin-bottom: 100px;
  }
}
.main-logo {
  width: 240px;
  height: auto;
  display: block;
}
.thumbnail {
  width: 260px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
* {
  font-family: Roboto, sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1d2b4f;
}
p {
  font-family: Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #5b6475;
}
.single-service-signle-wrapper .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.single-service-signle-wrapper .disc {
  font-size: 17px;
  line-height: 1.8;
  color: #687385;
}
.header-main-one-wrapper {
  display: flex;
  align-items: center;
  height: 90px;
}
.header-main-one-wrapper .thumbnail {
  width: 180px !important;
  height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 0 !important;
}
.header-main-one-wrapper .thumbnail .main-logo {
  width: 150px !important;
  height: 50px !important;
  max-width: 150px !important;
  max-height: 50px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
}
@media (max-width: 883px) {
  .header-main-one-wrapper {
    height: 80px;
  }
  .header-main-one-wrapper .thumbnail {
    width: 180px !important;
    height: 80px !important;
  }
  .header-main-one-wrapper .thumbnail .main-logo {
    width: 150px !important;
    height: 50px !important;
    max-width: 150px !important;
    max-height: 50px !important;
  }
}
#solutions {
  padding: 100px 0;
  background: #fafbfd;
}
#solutions .service-main-wrapper-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  align-items: stretch;
}
#solutions .single-service-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #dee0e3;
  border-radius: 18px;
  padding: 18px;
  transition: 0.35s ease;
  overflow: hidden;
  height: 120px;
}
#solutions .single-service-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: #ff7b29;
}
#solutions .thumbnail {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
#solutions .thumbnail img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: 0.35s;
}
#solutions .single-service-wrapper:hover .thumbnail img {
  transform: scale(1.12);
}
#solutions .content {
  flex: 1;
}
#solutions .content .title {
  font-size: 20px;
  font-weight: 700;
  color: #17233c;
  margin: 0;
  line-height: 1.45;
  padding: 0 !important;
}
#solutions .content p {
  margin-top: 8px;
  color: #6b7280;
  font-size: 15px;
}
@media (max-width: 768px) {
  #solutions .single-service-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dee0e3;
    border-radius: 18px;
    padding: 18px;
    transition: 0.35s ease;
    overflow: hidden;
    height: 120px;
  }
  #solutions {
    padding: 0;
  }
  #solutions .service-main-wrapper-list {
    grid-template-columns: 1fr;
  }
  #solutions .single-service-wrapper {
    padding: 13px;
  }
  #solutions .thumbnail {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  #solutions .thumbnail img {
    width: 42px;
    height: 42px;
  }
  #solutions .content .title {
    font-size: 18px;
  }

  
}
.cloud-section {
  padding: 100px 0;
  background: #fff;
}
.cloud-section .title {
  font-size: 48px;
  font-weight: 700;
  color: #1e2a44;
  margin-top: 10px;
}
.cloud-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0, #f8fbff 100%);
}
.cloud-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.cloud-card img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
}
.cloud-card span {
  font-size: 16px;
  font-weight: 700;
  color: #1d2b4f;
}
.cloud-card {
  width: 363px;
  height: 125px;
  background: #fff;
  border: 1px solid #d9dbdd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 0 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.cloud-card:hover {
  transform: translateY(-6px);
  border-color: #ff6b00;
  box-shadow: 0 18px 40px rgba(255, 102, 0, 0.18);
}
.cloud-card {
  cursor: pointer;
}
.cloud-card:hover {
  transform: translateY(-8px);
}
.erp-card img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.in_tool img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.mobile-app-section {
  padding: 100px 0;
}
@media (max-width: 700px) {
  .mobile-app-section {
    padding: 0;
  }
}
.fa-brands,
.fa-solid,
.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.mobile-description {
  max-width: 1050px;
  margin: 35px auto;
  font-size: 21px;
  line-height: 2;
  text-align: justify;
  color: #5d6785;
}
.mobile-description strong {
  color: #17345d;
  font-weight: 700;
}
.tech-stack {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.tech-stack span {
  padding: 14px 26px;
  border-radius: 50px;
  background: #f7f9fc;
  border: 1px solid #e7edf7;
  color: #17345d;
  font-weight: 600;
  transition: 0.35s;
  cursor: default;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  font-size: 15px;
}
.tech-stack span i {
  margin-right: 8px;
  color: #f60;
}
.tech-stack span:hover {
  transform: translateY(-6px);
  background: #f60;
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.25);
}
.tech-stack span:hover i {
  color: #fff;
}
.mobile-title {
  font-size: 58px;
  font-weight: 700;
  color: #17345d;
  margin-bottom: 25px;
  position: relative;
}
.mobile-title::after {
  content: "";
  width: 90px;
  height: 4px;
  display: block;
  margin: 18px auto 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #f60, #17345d);
}
.mobile-description {
  max-width: 1050px;
  margin: 35px auto 45px;
  font-size: 21px;
  line-height: 2;
  color: #5d6785;
}
.mobile-description strong {
  color: #17345d;
  font-weight: 700;
}
.cloud-note {
  font-size: 16px;
  color: #6c757d;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .mobile-title {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.solution-card .icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.footer-8-area-bg .footer-one-single-wized .wized-title .title {
  color: #222;
}
.footer-logo-area-left-8 p.disc {
  color: #444;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner ul li a {
  color: #333;
}
.signle-footer-contact-8 .inner-content h5 {
  color: #222;
}
.signle-footer-contact-8 .inner-content a {
  color: #444;
}
.copyright-8-wrapper p,
.copyright-8-wrapper ul li a {
  color: #333;
}
.footer-8-area-bg .footer-one-single-wized .wized-title .title {
  color: #222 !important;
}
.footer-logo-area-left-8 p.disc {
  color: #444 !important;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner ul li a {
  color: #333 !important;
}
.signle-footer-contact-8 .inner-content h5 {
  color: #222 !important;
}
.signle-footer-contact-8 .inner-content a {
  color: #444 !important;
}
.copyright-8-wrapper p,
.copyright-8-wrapper ul li a {
  color: #333 !important;
}
.footer-logo-area-left-8 ul li a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1f3b6d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-logo-area-left-8 ul li a i {
  color: #fff;
  font-size: 15px;
}
.footer-logo-area-left-8 ul li a:hover {
  background: #f15a24;
  transform: translateY(-4px);
}
.footer-8-area-bg .wized-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.footer-logo-area-left-8 img {
  width: 260px;
}
.signle-footer-contact-8 .title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.signle-footer-contact-8 .title i {
  color: #ff5a00;
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.signle-footer-contact-8 a,
.signle-footer-contact-8 address {
  color: #444;
  text-decoration: none;
  font-style: normal;
  line-height: 1.8;
  margin-left: 30px;
  font-size: 15px;
}
.signle-footer-contact-8 a:hover {
  color: #ff5a00;
}
.message-box {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 320px;
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(100%);
  transition: 0.3s ease;
  z-index: 99999;
}
.message-box.success {
  background: #16a34a;
}


#home {
    scroll-margin-top: 180px;
}
#about {
    scroll-margin-top: 180px;
}
#solutions {
    scroll-margin-top: 180px;
}
#myForm {
    scroll-margin-top: 180px;
}
#contact {
    scroll-margin-top: 180px;
}






.mySwiper-service-1 {
  width: 100%;
  overflow: hidden;
}

.mySwiper-service-1 .swiper-wrapper {
  touch-action: pan-y;
}

.mySwiper-service-1 .swiper-slide {
  touch-action: pan-y;
}

.in_tool {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
