@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, image {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

a,
button {
  display: inline-block;
  text-decoration: none;
}
a:hover, a:focus, a:visited,
button:hover,
button:focus,
button:visited {
  outline: none;
  color: inherit;
}

img {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

* {
  font-family: "Poppins", sans-serif, Verdana, Geneva, Tahoma, sans-serif;
}

body {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
body.body-overflow {
  overflow: hidden;
}
body.body-overflow::after {
  content: "";
  background-color: #fff;
  position: fixed;
  inset: 0;
  z-index: 99;
}
body.error-page-template {
  background-color: #efefef;
}
body ::selection {
  background: #ff936d;
  color: #101010;
  text-shadow: none;
}

main {
  margin-top: -50px;
}

.container {
  width: 100%;
  max-width: 1545px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 971px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 747px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 550px;
  }
}

.section-indent {
  padding: 48px;
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-underline {
  text-decoration: underline;
}

.whitespace-nowrap {
  white-space: nowrap;
}

a,
button,
input,
textarea {
  transition: 0.4s ease-in-out;
}

@keyframes reveal {
  0% {
    transform: translateY(100%);
  }
  100% {
    height: 100%;
    transform: none;
  }
}
@keyframes reveal-footer-letters {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  section:not(.contact-form) {
    margin: 0 15px;
  }
}

.section-animate:not(.hero-section) {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-out, transform 0.8s ease-out;
}

.section-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  padding: 0.5em 2em;
  font-weight: 300;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.5em 0.75em;
  }
}
.btn span {
  position: relative;
  transition: 0.4s ease-in-out;
}
.btn span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #101010;
  transition: 0.4s ease-in-out;
}
.btn:hover span::after {
  opacity: 0;
}
.btn-primary {
  background-color: #262224;
  color: #fff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-decoration: underline;
  font-size: 16px;
}
.btn-primary:hover {
  background-color: #101010;
}
@media (max-width: 767px) {
  .btn-primary:hover {
    background-color: #262224;
  }
}
.btn-secondary {
  background-color: transparent;
  position: relative;
  padding: 0;
  font-weight: 400;
  letter-spacing: -1px;
  color: #101010;
  font-size: 16px;
}
.btn-secondary::before {
  content: "[";
  color: #ff936d;
  margin-right: 8px;
}
.btn-secondary::after {
  content: "]";
  color: #ff936d;
  margin-left: 8px;
}
.btn-secondary i {
  margin-left: 8px;
}
.btn-secondary [class*=fa-arrow] {
  color: #101010;
  opacity: 20%;
}
.btn-secondary span {
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .btn-secondary {
    color: #101010;
  }
}
.btn:has(.circle-white) {
  padding-right: 12px;
}

a.btn-primary {
  color: #fff;
}
@media (max-width: 767px) {
  a.btn-primary {
    color: #fff;
  }
}

.circle {
  width: 8px;
  height: 8px;
  background-color: #101010;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.circle.active {
  background-color: #ff936d;
}

@font-face {
  font-family: "fonticons";
  src: url("../scss/icons/fonticons.eot");
  src: url("../scss/icons/fonticons.eot?#iefix") format("eot"), url("../scss/icons/fonticons.woff2") format("woff2"), url("../scss/icons/fonticons.woff") format("woff"), url("../scss/icons/fonticons.ttf") format("truetype"), url("../scss/icons/fonticons.svg#fonticons") format("svg");
}
.icon-twitter-brands:before, .icon-shop:before, .icon-scissors:before, .icon-paw-solid:before, .icon-instagram-brands:before, .icon-hospital-alt-solid:before, .icon-facebook-f-brands:before, .icon-dog:before, .icon-dog-training:before, .icon-chevron-up-solid:before, .icon-chevron-right-solid:before, .icon-chevron-left-solid:before, .icon-chevron-down-solid:before {
  font-family: "fonticons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-chevron-down-solid:before {
  content: "\e001";
}

.icon-chevron-left-solid:before {
  content: "\e002";
}

.icon-chevron-right-solid:before {
  content: "\e003";
}

.icon-chevron-up-solid:before {
  content: "\e004";
}

.icon-dog-training:before {
  content: "\e005";
}

.icon-dog:before {
  content: "\e006";
}

.icon-facebook-f-brands:before {
  content: "\e007";
}

.icon-hospital-alt-solid:before {
  content: "\e008";
}

.icon-instagram-brands:before {
  content: "\e009";
}

.icon-paw-solid:before {
  content: "\e00a";
}

.icon-scissors:before {
  content: "\e00b";
}

.icon-shop:before {
  content: "\e00c";
}

.icon-twitter-brands:before {
  content: "\e00d";
}

.site-header__nav a {
  color: #101010;
  font-weight: 500;
  font-size: 16px;
}

.section-title {
  font-size: 38px;
  line-height: 48px;
}
.section-title-big {
  font-weight: 700;
  font-size: 60px;
  line-height: 90px;
}
@media (max-width: 1199px) {
  .section-title-big {
    font-size: 40px;
    line-height: 50px;
  }
}
.section-title-small {
  font-size: 32px;
}

.gdpr-popup {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  max-width: 475px;
  width: 100%;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  backdrop-filter: blur(35px);
  padding: 40px 25px;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .gdpr-popup {
    max-width: 90%;
    bottom: 15px;
    padding: 20px;
  }
}
.gdpr-popup.close {
  right: -1000%;
}
.gdpr-popup--left {
  display: flex;
  width: 62px;
}
.gdpr-popup--left span {
  width: 20px;
  height: 40px;
  background-color: #f8f8f8;
  border-radius: 50%;
  display: block;
  margin-left: -5px;
}
.gdpr-popup--right {
  margin-left: 28px;
  max-width: 345px;
  width: 100%;
}
@media (max-width: 767px) {
  .gdpr-popup--right {
    max-width: 245px;
    margin-left: 15px;
  }
}
.gdpr-popup--right h5 {
  font-size: 14px;
  color: #101010;
  line-height: 18px;
  margin-bottom: 6px;
}
.gdpr-popup--right p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .gdpr-popup--right p {
    font-size: 11px;
    line-height: 14px;
  }
}
.gdpr-popup--right p a {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  color: #101010;
  padding: 0;
}
.gdpr-popup--right p a:hover {
  text-decoration: none;
}
.gdpr-popup--right a {
  font-size: 16px;
}
@media (max-width: 767px) {
  .gdpr-popup--right a {
    padding: 5px 10px;
    width: fit-content;
    margin-bottom: 15px;
    font-size: 13px;
  }
  .gdpr-popup--right a:last-of-type {
    margin-bottom: 0;
  }
}
.gdpr-popup--right a.btn-primary {
  background-color: #fff;
  color: #101010;
}
@media (max-width: 767px) {
  .gdpr-popup--right a.btn-primary {
    margin-right: 10px;
  }
}
.gdpr-popup--right a.btn-primary:hover {
  background-color: #101010;
  color: #fff;
}
.gdpr-popup--right a.btn-secondary {
  padding: 0;
}

@supports not (backdrop-filter: blur(35px)) {
  .gdpr-popup {
    background: rgba(16, 16, 16, 0.8);
  }
}
.site-footer {
  background-color: #101010;
  padding: 210px 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 212px 15px 0;
  }
}
.site-footer__gradient {
  background: linear-gradient(to top, #afefcd, #101010);
  height: 250px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.site-footer--top {
  margin-bottom: 65px;
}
.site-footer--top-left {
  max-width: 250px;
  margin-right: auto;
}
.site-footer--top-left img {
  max-width: 100px;
  width: 100%;
}
.site-footer--top-left p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 30px;
  color: #a3a3a3;
  margin-top: 20px;
}
.site-footer--top-left p br {
  content: "";
  display: block;
  margin-bottom: 20px;
}
.site-footer--top-left p:last-of-type {
  margin-bottom: 0;
}
.site-footer--top-right h3 {
  margin-bottom: 62px;
  font-size: 20px;
  line-height: 22px;
  color: #a3a3a3;
  font-weight: 400;
}
.site-footer--top-right ul li a {
  font-size: 20px;
  line-height: 26px;
  color: #f8f8f8;
}
.site-footer--top-right ul li a:hover {
  text-decoration: underline;
}
.site-footer--top-right span {
  color: #a3a3a3;
}
.site-footer--top-right .site-footer-top-right-col {
  margin-left: 70px;
}
.site-footer--top-right .site-footer-top-right-col a {
  color: #f8f8f8;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .site-footer--top-right .site-footer-top-right-col a {
    margin-bottom: 16px;
  }
}
.site-footer--top-right .site-footer-top-right-col a:hover {
  text-decoration: underline;
}
.site-footer--top-right .site-footer-top-right-col .email a {
  position: relative;
}
.site-footer--top-right .site-footer-top-right-col .email a::before {
  content: "[";
  color: #ff936d;
  margin-right: 8px;
}
.site-footer--top-right .site-footer-top-right-col .email a::after {
  content: "]";
  color: #ff936d;
  margin-left: 8px;
}
.site-footer--top-right .site-footer-top-right-col .email a span {
  position: relative;
  color: #f8f8f8;
}
.site-footer--top-right .site-footer-top-right-col .email a span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f8f8f8;
  transition: 0.4s ease-in-out;
  opacity: 0;
}
.site-footer--top-right .site-footer-top-right-col .email a:hover {
  text-decoration: none;
}
.site-footer--top-right .site-footer-top-right-col .email a:hover span::after {
  opacity: 1;
}
.site-footer--top-right .site-footer-top-right-col .address a {
  text-decoration: none;
}
.site-footer--top-right .site-footer-top-right-col .address a i {
  transform: rotate(-45deg);
  color: #ff936d;
}
.site-footer--top-right .site-footer-top-right-col .address a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: #f8f8f8;
}
.site-footer--top-right .site-footer-top-right-col .address a:hover i {
  color: #f8f8f8;
}
.site-footer--top-right .site-footer-top-right-col .phone a:hover {
  color: #f8f8f8;
  text-decoration: underline;
}
.site-footer--bottom {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .site-footer--bottom {
    padding: 30px 0 0;
  }
}
.site-footer--bottom .site-footer__reveal {
  width: 100%;
  font-size: 430px;
  color: #f8f8f8;
  font-weight: 400;
  font-size: 16.7cqw;
  font-size: 19vw;
  letter-spacing: -3.5vw;
  line-height: normal;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(1) {
  animation-delay: 0s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(2) {
  animation-delay: 0.1s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(3) {
  animation-delay: 0.2s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(4) {
  animation-delay: 0.3s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(5) {
  animation-delay: 0.4s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(6) {
  animation-delay: 0.5s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(7) {
  animation-delay: 0.6s;
}
.site-footer--bottom .site-footer__reveal.animate span:nth-child(8) {
  animation-delay: 0.7s;
}
.site-footer--bottom .copy {
  padding: 10px 15px;
  border-radius: 30px;
  background-color: #f8f8f8;
  color: #101010;
  text-align: center;
  font-weight: 600;
  position: absolute;
  bottom: 80px;
  left: 350px;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .site-footer--bottom .copy {
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    width: 160px;
    padding: 8px 15px;
  }
}
.site-footer--bottom .copy strong {
  font-weight: 800;
  font-style: italic;
}
.site-footer--bottom .copy:hover {
  background-color: #101010;
  color: #f8f8f8;
}
.site-footer--bottom #email {
  display: none;
}
.site-footer--middle {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 20px;
  z-index: 20;
}
.site-footer--middle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.site-footer--middle ul {
  display: flex;
}
.site-footer--middle ul li {
  margin-left: 15px;
}
.site-footer--middle ul li a {
  font-size: 15px;
  color: rgba(248, 248, 248, 0.7);
}
.site-footer--middle ul li a:hover {
  text-decoration: underline;
}
.site-footer .back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #f8f8f8;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  position: fixed;
  bottom: 300px;
  right: 100px;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transform-origin: center;
  z-index: 999;
}
@media (max-width: 991px) {
  .site-footer .back-to-top {
    right: 20px;
  }
}
.site-footer .back-to-top.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.site-footer .back-to-top-100 {
  bottom: 100px;
}
.site-footer .back-to-top img {
  transform: rotate(-90deg);
  max-width: 18px;
  width: 100%;
}
.site-footer .back-to-top:hover {
  background-color: #6d6d6d;
}

@media (max-width: 991px) {
  .site-footer--top {
    flex-direction: column;
  }
  .site-footer--top-right {
    flex-direction: column;
  }
  .site-footer--top-right .site-footer-top-right-col {
    margin-left: 0;
  }
  .site-footer--top-right h3 {
    margin: 51px 0;
  }
  .site-footer--middle {
    justify-content: flex-start;
  }
  .site-footer--middle ul li {
    margin-left: 0;
    margin-right: 15px;
  }
  .site-footer--bottom {
    min-height: 100%;
  }
  .site-footer__gradient {
    height: 25vh;
  }
}
.site-header {
  position: sticky;
  top: 40px;
  z-index: 1000;
  max-width: 1720px;
  margin: 0 auto;
  width: 100%;
}
.site-header__wrapper {
  padding: 0 19px;
}
@media (max-width: 767px) {
  .site-header__wrapper {
    padding: 0;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(100% 100% at 0% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(35px);
  padding: 12px 12px 12px 36px;
  border-radius: 300px;
}
@media (max-width: 1199px) {
  .site-header__inner {
    padding: 12px;
  }
  .site-header__inner > a {
    padding-left: 19px;
  }
}
.site-header__logo {
  max-width: 130px;
}
.site-header__logo--light {
  display: none;
}
.site-header__nav {
  gap: 40px;
}
.site-header__nav a:hover {
  text-decoration: underline;
}
.site-header .circle-white {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 30px;
}
.site-header .circle-white::after {
  display: none;
}
.site-header .fa-arrow-right {
  color: #ff936d;
}
.site-header .hamburger {
  display: none;
}
.site-header .contact-info {
  display: none;
}
.site-header .contact-info span, .site-header .contact-info a {
  color: #fff;
}
.site-header__mobile-wrapper {
  display: contents;
}
.site-header .timezone-wrapper span {
  font-size: 16px;
}

@media (max-width: 1199px) {
  .site-header {
    transition: 0.4s ease-in-out;
    top: 25px;
    max-width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    position: fixed;
  }
  .site-header__mobile-wrapper {
    display: none;
  }
  .site-header.menu-open {
    position: fixed;
    height: calc(100dvh - 30px);
    bottom: 0;
    background-color: #101010;
  }
  .site-header.menu-open .site-header__logo {
    display: none;
  }
  .site-header.menu-open .site-header__logo--light {
    display: block;
  }
  .site-header.menu-open .site-header__wrapper {
    height: 100%;
  }
  .site-header.menu-open .site-header__inner {
    background: initial;
    backdrop-filter: initial;
    padding-top: 14px;
  }
  .site-header.menu-open .site-header--right {
    margin-top: 30px;
  }
  .site-header.menu-open .hamburger {
    rotate: 45deg;
  }
  .site-header.menu-open .hamburger span {
    background-color: #fff;
  }
  .site-header.menu-open .site-header__nav {
    flex-direction: column;
    gap: 5px;
  }
  .site-header.menu-open .site-header__nav li {
    margin: 0 0 15px;
  }
  .site-header.menu-open .site-header__nav li:last-of-type {
    margin-bottom: 0;
  }
  .site-header.menu-open .site-header__nav li a {
    color: #fff;
    font-size: 24px;
  }
  .site-header.menu-open .site-header__mobile-wrapper {
    display: flex;
    align-items: flex-start;
    position: absolute;
    top: 30px;
    flex-direction: column;
    height: 80%;
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .site-header.menu-open .site-header__mobile-wrapper {
    height: 100%;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .site-header.menu-open .site-header__mobile-wrapper {
    padding: 0 19px;
  }
}
@media (max-width: 1199px) {
  .site-header.menu-open .timezone-wrapper {
    color: #fff;
    order: -1;
    padding-bottom: 8px;
    margin-bottom: 30px;
    margin-top: 70px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .site-header.menu-open .timezone-wrapper {
    position: relative;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .site-header.menu-open .timezone-wrapper::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 85vw;
    background-color: #fff;
    opacity: 40%;
    top: 40px;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .site-header.menu-open .timezone-wrapper::after {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .site-header .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-right: 12px;
  }
  .site-header .hamburger span {
    width: 22px;
    height: 2px;
    background-color: #101010;
    border-radius: 2px;
    transition: 0.3s;
  }
  .site-header .hamburger.white span {
    background-color: #fff;
  }
}
@media (max-width: 1199px) {
  .site-header .contact-info {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .site-header .contact-info {
    margin-top: auto;
  }
}
@media (max-width: 1199px) {
  .site-header .contact-info img {
    max-width: 130px;
    width: 100%;
    margin-bottom: 32px;
  }
}
@media (max-width: 1199px) {
  .site-header .contact-info::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 85vw;
    background-color: #fff;
    opacity: 40%;
    bottom: 70px;
    left: 0;
    right: 0;
    display: none;
  }
}
@media (max-width: 1199px) {
  .site-header .contact-info span {
    margin-right: 3px;
    color: #a3a3a3;
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .site-header .contact-info a {
    font-size: 18px;
    letter-spacing: normal;
  }
}
@media (max-width: 1199px) {
  .site-header--right .btn {
    background-color: #fff;
    color: #101010;
  }
  .site-header--right .btn .circle-white {
    background-color: #101010;
  }
}
.two-column {
  padding-bottom: 90px;
}
.two-column--box {
  max-width: calc(50% - 10px);
  margin: 0 0 20px;
  position: relative;
  border-radius: 16px;
}
.two-column--box:nth-child(even) {
  position: relative;
  top: -120px;
}
.two-column--box:nth-child(4n+1) {
  background-color: #ffdc92;
  max-height: 741px;
}
@media (max-width: 767px) {
  .two-column--box:nth-child(4n+1) {
    max-height: inherit;
  }
}
.two-column--box:nth-child(4n+2), .two-column--box:nth-child(4n+3) {
  background-color: #e8e8e8;
}
.two-column--box:nth-child(4n+3) {
  top: -40px;
}
@media (max-width: 767px) {
  .two-column--box:nth-child(4n+3) {
    top: 0;
  }
}
.two-column--box:nth-child(4n) {
  background-color: #ff9c9c;
}
.two-column--box-top {
  position: relative;
  height: 400px;
  width: 100%;
}
@media (max-width: 767px) {
  .two-column--box-top {
    height: 246px;
  }
}
.two-column--box-top a {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.two-column--box-top a:hover img {
  transform: scale(1.05);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.two-column--box-top img {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  inset: 0;
  height: 100%;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
.two-column--box-bottom {
  padding-top: 29px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (max-width: 767px) {
  .two-column--box-bottom {
    padding: 15px 30px 30px;
  }
}
.two-column--box-bottom .date {
  display: inline-block;
  font-size: 13px;
  color: #101010;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .two-column--box-bottom .date {
    margin-bottom: 22px;
  }
}
.two-column--box-bottom h3 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #101010;
  letter-spacing: -2px;
  position: relative;
  text-decoration: none;
}
@media (max-width: 767px) {
  .two-column--box-bottom h3 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 10px;
  }
}
.two-column--box-bottom h3 a {
  color: #101010;
  text-decoration: none;
  text-decoration-thickness: 1px;
}
@media (max-width: 767px) {
  .two-column--box-bottom h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Maksimalno 3 reda */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: 108px; /* Prilagodi na osnovu line-height */
    line-height: 36px; /* Prilagodi visinu reda */
  }
}
.two-column--box-bottom h3:hover a {
  text-decoration: underline;
}
.two-column--box-bottom p {
  font-weight: 500;
  color: #101010;
}
@media (max-width: 767px) {
  .two-column--box-bottom p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .two-column--box-bottom p {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Maksimalno 3 reda */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: 66px; /* Prilagodi na osnovu line-height */
    line-height: 22px; /* Prilagodi visinu reda */
  }
}
.two-column--box-bottom .btn-primary {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .two-column--box-bottom .btn-primary {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.two-column__title {
  max-width: 500px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.two-column__title .low-opacity {
  color: rgba(16, 16, 16, 0.7);
}
.two-column__description {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .two-column--box {
    max-width: 100%;
    margin: 0 0 10px;
  }
  .two-column--box:nth-child(even) {
    position: static;
  }
  .two-column__description {
    padding: 0 15px;
  }
  .two-column .container {
    padding: 0;
  }
}
.text-image {
  min-height: 655px;
  padding-bottom: 60px;
  position: relative;
}
.text-image.text-image--blue {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .text-image.text-image--blue {
    margin-bottom: 60px;
  }
  .text-image.text-image--blue .container {
    padding: 0;
  }
}
@media (max-width: 374px) {
  .text-image.text-image--blue .text-image__left-action {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image.text-image--blue .text-image__left-action .btn-primary {
    margin-bottom: 15px;
  }
}
.text-image__wrapper {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
}
.text-image--blue .text-image__wrapper {
  background: linear-gradient(253.63deg, #95c9ee 0%, #afefcd 100%);
  padding: 30px;
  border-radius: 30px;
}
.text-image--blue .text-image__left {
  background: initial;
  padding-top: 0;
}
@media (max-width: 767px) {
  .text-image--blue .text-image__left {
    padding: 0 0 50px;
  }
}
.text-image__left {
  background: linear-gradient(253.63deg, #ffdc92 0%, #f8f8f8 100%);
  width: 33%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .text-image__left {
    width: 60%;
  }
}
.text-image__left-stars {
  max-width: 130px;
}
@media (max-width: 767px) {
  .text-image__left-stars {
    margin-bottom: 11px;
  }
}
.text-image__left .section-title {
  line-height: 70px;
}
@media (max-width: 767px) {
  .text-image__left .section-title {
    font-size: 40px;
    line-height: 45px;
  }
}
.text-image__left-title-wrapper {
  display: inline-flex;
  gap: 12px;
}
.text-image__left-text {
  text-transform: capitalize;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .text-image__left-text {
    font-size: 18px;
    line-height: 28px;
  }
}
.text-image__left-content-indent {
  max-width: 450px;
}
.text-image__left-action, .text-image__left-slide-controls {
  margin-top: 48px;
  position: relative;
}
.text-image__left-action {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .text-image__left-action .btn-primary {
    padding: 8px 25px;
  }
}
.text-image__right {
  width: 70%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin-left: 20px;
}
.text-image__right img {
  border-radius: 30px;
  height: auto;
  width: 100%;
}
.text-image--blue .text-image__right, .text-image--blue .text-image__right img {
  border-radius: 30px;
}
.text-image__right .text-image__slide-box {
  position: relative;
}
.text-image__right .slick-dots {
  left: 0;
  bottom: -50px;
  text-align: left;
  z-index: 999;
}
.text-image__right .slick-dots li {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background-color: #101010;
  transition: 0.4s ease-in-out;
  padding: 0;
}
.text-image__right .slick-dots li.slick-active {
  background-color: #ff936d;
}
.text-image__right .slick-dots li button {
  font-size: 0;
  padding: 0;
  margin: 0;
  width: 0;
  height: 0;
}
.text-image__right .slick-dots li button::before {
  display: none;
}
.text-image__right .slick-slide {
  border-radius: 30px;
}
.text-image__right .slick-track {
  height: 655px;
}
.text-image__inner {
  border-radius: 30px;
}
.text-image__inner img {
  border-radius: 30px;
}

@media (max-width: 991px) {
  .text-image__wrapper {
    background: linear-gradient(253.63deg, #ffdc92 0%, #f8f8f8 100%);
    flex-direction: column;
  }
  .text-image__left {
    background: initial;
    width: 100%;
  }
}
.two-column-content {
  padding-bottom: 60px;
}
.two-column-content--wrapper {
  align-items: end;
}
@media (max-width: 767px) {
  .two-column-content--wrapper {
    align-items: flex-start;
  }
}
.two-column-content.about .two-column-content--wrapper {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .two-column-content.about .container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .two-column-content.about {
    padding-bottom: 0;
  }
}

.two-column-content--wrapper-left,
.two-column-content--wrapper-right {
  flex: 50%;
}

.two-column-content--wrapper-left__title {
  font-weight: 700;
  font-size: 32px;
}
.two-column-content--wrapper-left__title > span:first-child {
  padding-left: 12px;
}
.two-column-content--wrapper-left__title-wrapper {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}
.two-column-content--wrapper-left__title-break {
  display: block;
  margin-top: 12px;
}
.two-column-content--wrapper-left__subtitle {
  font-weight: 600;
  font-size: 24px;
}
.two-column-content--wrapper-left .custom-shape {
  display: inline-block;
  width: 90px;
  height: 58px;
  border-radius: 103px;
  background: linear-gradient(253.63deg, #95c9ee 0%, #f8f8f8 100%);
}
@media (max-width: 767px) {
  .two-column-content--wrapper-left {
    margin-top: 14px;
  }
}

.two-column-content--wrapper-right {
  font-size: 36px;
  line-height: 47px;
  letter-spacing: -2px;
}
.two-column-content--wrapper-right .low-opacity {
  color: #a3a3a3;
}
.two-column-content--wrapper-right__btn-wrapper {
  padding-left: 30px;
  position: relative;
}
.two-column-content--wrapper-right__btn-wrapper .btn-secondary {
  background: #fff;
  padding: 0 12px;
}
.two-column-content--wrapper-right__btn-wrapper::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ff936d;
  top: 30px;
  left: 0;
  width: 100%;
}

.two-column-content--wrapper-full {
  display: flex;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  padding: 60px 0;
  gap: 60px;
  position: relative;
  padding: 0;
  height: 0;
  opacity: 0;
  transition: height 0.5s ease-in-out, opacity 0.3s ease-in-out, padding 0.5s ease-in-out;
  letter-spacing: -1px;
}
.two-column-content--wrapper-full.expanded {
  height: auto;
  opacity: 1;
  padding: 60px 0;
}
.two-column-content--wrapper-full__column {
  flex: 0.3333333333;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.two-column-content--wrapper-full__btn-wrapper {
  padding-left: 30px;
  position: relative;
}
.two-column-content--wrapper-full__btn-wrapper .btn-secondary {
  background: #fff;
  padding: 0 12px;
}
.two-column-content--wrapper-full__btn-wrapper::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #ff936d;
  top: 12.5px;
  left: 0;
  width: 100%;
}

#twoColumnContentSeeLessBtn {
  opacity: 0;
}

@media (max-width: 991px) {
  .two-column-content--wrapper {
    flex-direction: column;
    gap: 64px;
  }
  .two-column-content--wrapper-full {
    flex-direction: column;
    padding: 30px 0;
  }
  .two-column-content--wrapper-full.expanded {
    padding: 30px 0;
  }
}
.image-slider {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .image-slider {
    padding-bottom: 85px;
  }
  .image-slider .container {
    padding: 0;
  }
}
.image-slider__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #101010;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .image-slider__wrapper {
    padding: 55px 30px 30px;
  }
}
.image-slider__title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.image-slider__title-break {
  display: block;
  margin-top: 8px;
  margin-bottom: 48px;
}
.image-slider .circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background-color: rgba(232, 232, 232, 0.3);
  margin-right: 8px;
  transition: 0.4s ease-in-out;
}
.image-slider .circle:hover {
  background-color: rgba(109, 109, 109, 0.3);
}
.image-slider .circle img {
  max-width: 16px;
  width: 100%;
}
.image-slider .circle.img-prev-arrow img {
  transform: rotate(180deg);
}
.image-slider__logos {
  display: flex;
  align-items: center;
  gap: 100px;
}
.image-slider__logos img {
  width: auto;
}
.image-slider__left {
  max-width: 250px;
  width: 100%;
}
.image-slider__right {
  max-width: calc(100% - 400px);
  width: 100%;
}
.image-slider__right .slick-track {
  display: flex;
  align-items: center;
}
.image-slider .image-slider__box {
  cursor: grab;
}

@media (max-width: 991px) {
  .image-slider__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }
}
@media screen and (max-width: 1366px) {
  .image-slider__right {
    max-width: calc(100% - 300px);
  }
}
@media screen and (max-width: 991px) {
  .image-slider__right {
    max-width: unset;
  }
  .image-slider__wrapper {
    padding-right: 0;
  }
}
.accordion {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .accordion {
    margin-bottom: 40px;
  }
}
.accordion__wrapper {
  display: flex;
  gap: 60px;
}
@media (max-width: 1199px) {
  .accordion__wrapper {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .accordion__wrapper {
    gap: 10px;
  }
}
.accordion__title-wrapper {
  align-items: center;
}
@media (max-width: 1199px) {
  .accordion__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.accordion__wrapper-left {
  flex: 60%;
}
@media (max-width: 1199px) {
  .accordion__wrapper-left {
    flex: 50%;
  }
}
@media (max-width: 767px) {
  .accordion__wrapper-left {
    padding: 0 15px;
  }
  .accordion__wrapper-left .section-title {
    font-size: 35px;
  }
}
.accordion__list {
  padding-top: 48px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .accordion__list {
    padding-top: 56px;
  }
}
.accordion__item {
  display: flex;
  cursor: pointer;
  font-size: 32px;
  line-height: 37.12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}
.accordion__item:hover {
  opacity: 1;
}
@media (max-width: 1199px) {
  .accordion__item:hover {
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .accordion__item {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.accordion__item img {
  margin-left: auto;
  transition: transform 0.5s ease-in-out;
  max-width: 30px;
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
}
.accordion__item.active {
  border-bottom: 1px solid #101010;
  opacity: 1;
}
@media (max-width: 767px) {
  .accordion__item.active {
    border-bottom: none;
  }
}
.accordion__item.active img {
  opacity: 1;
  transform: translateX(0);
}
.accordion__wrapper-right {
  flex: 40%;
  background-color: #efefef;
  padding: 38px 45px;
  border-radius: 11px;
}
@media (max-width: 1199px) {
  .accordion__wrapper-right {
    flex: 50%;
  }
}
.accordion__wrapper-right .content-item {
  display: block;
}
.accordion__wrapper-right .content-item.hidden {
  display: none;
}
.accordion__wrapper-right .content-item__logos {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 767px) {
  .accordion__wrapper-right .content-item__logos {
    margin-bottom: 49px;
  }
}
.accordion__wrapper-right .content-item__logos > div {
  display: flex;
  align-items: center;
}
.accordion__wrapper-right .content-item__logos-text {
  font-weight: 400;
  font-size: 34px;
  line-height: normal;
}
@media (max-width: 767px) {
  .accordion__wrapper-right .content-item__logos-text {
    font-size: 22px;
    line-height: 28px;
  }
}
.accordion__wrapper-right .content-item__logos img {
  width: auto;
}
.accordion__wrapper-right .content-item__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.accordion__wrapper-right .content-item__text a {
  width: fit-content;
}
@media (max-width: 767px) {
  .accordion__wrapper-right .content-item__text a {
    padding: 10px 25px;
  }
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}
@media (max-width: 991px) {
  .accordion .container {
    padding: 0;
  }
  .accordion .section-indent {
    padding: 0;
  }
  .accordion__wrapper {
    flex-direction: column;
  }
  .accordion__wrapper-right {
    padding: 57px 32px;
    margin-top: 50px;
  }
  .accordion__wrapper-right .content-item__logos img {
    width: 90%;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .accordion__wrapper-left .accordion__list-wrapp {
    overflow-x: auto; /* Omogućava horizontalni skrol */
    white-space: nowrap; /* Sprečava prelamanje elemenata u novi red */
    -webkit-overflow-scrolling: touch; /* Poboljšava skrol na mobilnim uređajima */
  }
  .accordion__wrapper-left .accordion__list-wrapp ::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 991px) {
  .accordion__title-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .accordion__list {
    flex-direction: row;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .accordion__item {
    font-size: 26px;
    line-height: 32px;
    flex: 0 0 auto;
  }
  .accordion__item img {
    display: none;
  }
}
.contact-form {
  z-index: 10;
  width: 100%;
  position: relative;
}
.contact-form .container {
  max-width: 1515px;
  position: relative;
}
.contact-form .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 188px);
  background-color: #efefef;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-form .container::after {
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.contact-form-greeting-second-part {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 12px;
}
.contact-form-wrapper {
  max-width: 1074px;
  width: 100%;
  margin: 0 auto -136px;
  background-color: #f8f8f8;
  border-radius: 30px;
  padding: 90px 155px 45px;
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    width: calc(100% - 10px);
  }
}
.contact-form-wrapper h2 {
  font-weight: 500;
  font-size: 44px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.3019607843);
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-form-wrapper h2 span br {
  display: none;
}
@media (max-width: 767px) {
  .contact-form-wrapper h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .contact-form-wrapper h2 img {
    max-width: 50px;
  }
}
.contact-form-wrapper-top {
  padding-bottom: 100px;
}
.contact-form-wrapper-top .email {
  padding-top: 12px;
}
.contact-form-wrapper-top .email > span {
  color: #6d6d6d;
}
.contact-form-wrapper-top .email a span {
  position: relative;
  margin: 0;
}
.contact-form-wrapper-top .email a span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #101010;
  transition: 0.4s ease-in-out;
}
.contact-form-wrapper-top .email a:hover span::after {
  opacity: 0;
}
.contact-form-wrapper-top img {
  max-width: 80px;
  width: 100%;
  vertical-align: middle;
}
.contact-form-wrapper-bottom {
  position: relative;
}
.contact-form-wrapper-bottom form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: 0.4s ease-in-out;
}
.contact-form-wrapper-bottom form.hidden {
  opacity: 0;
  visibility: hidden;
}
.contact-form-wrapper-bottom form .contact-form-box {
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}
.contact-form-wrapper-bottom form .contact-form-box.half {
  max-width: calc(50% - 10px);
}
.contact-form-wrapper-bottom form .contact-form-box.full {
  max-width: 100%;
}
.contact-form-wrapper-bottom form .contact-form-box input,
.contact-form-wrapper-bottom form .contact-form-box textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #101010;
  background: transparent;
  font-size: 16px;
  outline: none;
}
.contact-form-wrapper-bottom form .contact-form-box textarea {
  resize: none;
}
.contact-form-wrapper-bottom form .contact-form-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  position: relative;
}
.contact-form-wrapper-bottom form .contact-form-box label::after {
  content: "*";
  color: #ff936d;
  font-weight: 500;
}
.contact-form-wrapper-bottom form .contact-form-box.submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .contact-form-wrapper-bottom form .contact-form-box.submit {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .contact-form-wrapper-bottom form .contact-form-box.submit .g-recaptcha {
    margin-bottom: 25px;
  }
}
.contact-form-wrapper-bottom form .contact-form-box.submit button {
  color: #fff;
  background-color: #262224;
  padding: 17px 20px;
}
.contact-form-wrapper-bottom form .contact-form-box.submit button:hover {
  background-color: #101010;
}
.contact-form-wrapper-bottom form .contact-form-box.submit button:disabled {
  pointer-events: none;
  background-color: #a3a3a3;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: -29px;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden i {
  color: #101010;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.success {
  color: #00602C;
  opacity: 1;
  visibility: visible;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.success::before {
  content: "";
  font-family: "Poppins", sans-serif;
  width: 57px;
  height: 23px;
  background-color: #AFEFCD;
  border-radius: 30px;
  position: absolute;
  top: -33px;
  right: 0;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.success i.fa-xmark {
  display: none;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.success i.fa-check {
  display: block;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.error {
  color: #AB0000;
  opacity: 1;
  visibility: visible;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.error::before {
  content: "";
  font-family: "Poppins", sans-serif;
  width: 57px;
  height: 23px;
  background-color: #FF936D;
  border-radius: 30px;
  position: absolute;
  top: -33px;
  right: 0;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.error i.fa-xmark {
  display: block;
}
.contact-form-wrapper-bottom form .contact-form-box .hidden.error i.fa-check {
  display: none;
}
.contact-form-wrapper-bottom form .contact-form-box:nth-child(4) .hidden::before {
  top: -40px;
}
.contact-form-wrapper-bottom form .contact-form-box:nth-child(4) .hidden span {
  top: -36px;
}
.contact-form-wrapper-bottom .thank-you-shape {
  width: 760px;
  height: 367px;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  padding: 47px 64px;
  background-color: #e7e7e7;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .contact-form-wrapper-bottom .thank-you-shape {
    width: 100%;
    padding: 20px;
    justify-content: center;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    min-height: 287px;
    height: auto;
  }
  .contact-form-wrapper-bottom .thank-you-shape a.btn {
    padding: 15px 25px;
  }
}
.contact-form-wrapper-bottom .thank-you-shape.visible {
  opacity: 1;
  visibility: visible;
}
.contact-form-wrapper-bottom .thank-you-shape__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 45.76px;
}
@media (max-width: 767px) {
  .contact-form-wrapper-bottom .thank-you-shape__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
  }
}
.contact-form-wrapper-bottom .thank-you-shape__desc {
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 767px) {
  .contact-form-wrapper-bottom .thank-you-shape__desc {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .contact-form-wrapper {
    padding: 30px;
  }
  .contact-form-wrapper-top {
    padding-bottom: 20px;
  }
  .contact-form-wrapper-top .email {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .contact-form-wrapper-bottom form .contact-form-box.half {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-form-wrapper h2 {
    flex-direction: column;
    align-items: normal;
    gap: 0;
    font-size: 35px;
    line-height: 43px;
  }
  .contact-form-wrapper h2 span br {
    display: block;
  }
}
.text-slider {
  position: relative;
}
.text-slider-wrapper {
  background-color: #efefef;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media (max-width: 767px) {
  .text-slider-wrapper {
    padding: 50px 25px;
  }
}
.text-slider-wrapper-left {
  max-width: 267px;
}
@media screen and (max-width: 1199px) {
  .text-slider-wrapper-left {
    flex: 0 0 267px;
  }
}
@media screen and (max-width: 991px) {
  .text-slider-wrapper-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.text-slider-wrapper-left__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 36px;
}
.text-slider-wrapper-left span {
  color: #6d6d6d;
}
.text-slider-wrapper-right {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .text-slider-wrapper-right {
    flex: 0 0 calc(100% - 267px);
    max-width: calc(100% - 267px);
  }
}
@media screen and (max-width: 991px) {
  .text-slider-wrapper-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.text-slider-wrapper-right .circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #dadada;
  margin-right: 8px;
  color: #101010;
  transition: 0.4s ease-in-out;
}
.text-slider-wrapper-right .circle:hover {
  background-color: #a3a3a3;
}
.text-slider-wrapper-right .circle .fa-solid {
  color: #101010;
}
.text-slider-inner-wrapper {
  padding-top: 48px;
}
@media (max-width: 767px) {
  .text-slider-inner-wrapper {
    padding-top: 24px;
  }
}
.text-slider__logo {
  width: 224px;
}
@media (max-width: 767px) {
  .text-slider__logo {
    width: 160px;
  }
}
.text-slider-box-top {
  position: relative;
  font-weight: 500;
  font-size: 30px;
  line-height: 43.32px;
  letter-spacing: -1.5px;
  padding-left: 75px;
}
@media screen and (max-width: 991px) {
  .text-slider-box-top {
    padding-left: 0;
    margin-top: 89px;
    padding-top: 24px;
  }
}
.text-slider-box-top::before {
  content: "‘’";
  position: absolute;
  font-size: 150px;
  top: 30px;
  left: 0;
  color: #ff936d;
  z-index: 999;
  letter-spacing: -12px;
}
@media screen and (max-width: 991px) {
  .text-slider-box-top::before {
    top: 0;
  }
}
.text-slider-box-top-text {
  margin-bottom: 24px;
}
.text-slider-box-top .text-slider-box-top-apo {
  font-family: "Poppins", sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 150px;
  color: #6d6d6d;
  opacity: 30%;
}
@media screen and (max-width: 991px) {
  .text-slider-box-top .text-slider-box-top-apo {
    display: inline-flex;
    position: static;
    transform: translateY(90px);
    display: none;
  }
}
.text-slider-box-bottom {
  margin-top: 60px;
  padding-left: 75px;
}
@media screen and (max-width: 991px) {
  .text-slider-box-bottom {
    padding-left: 0;
  }
}
.text-slider-box-bottom-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}
.text-slider-box-bottom h3 {
  color: #6d6d6d;
  border-bottom: 1px solid rgba(16, 16, 16, 0.3);
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .text-slider-box-bottom h3 {
    font-size: 22px;
  }
}
.text-slider-box-bottom-content-left {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.text-slider-box-bottom-content-left img {
  position: absolute;
  object-fit: cover;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-position: center center;
}
.text-slider-box-bottom-content-right {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
.text-slider-box-bottom-content-right h4 {
  font-size: 24px;
  line-height: 27.6px;
  letter-spacing: 0px;
}
.text-slider-box-bottom-content-right .role {
  color: #a3a3a3;
  font-size: 18px;
}
.text-slider-circles {
  margin-left: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  .text-slider-circles {
    position: static;
    padding-top: 48px;
  }
}
.text-slider-box {
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  cursor: grab;
}
.text-slider-box.slick-slide {
  display: flex !important;
  min-height: 458px;
}
.text-slider .slick-list:focus {
  outline: none;
}

@media (max-width: 991px) {
  .text-slider-inner-wrapper {
    flex-direction: column;
  }
  .text-slider .container {
    padding: 0;
  }
}
.error-block {
  background-color: #efefef;
}
.error-block .container {
  height: 100%;
  position: relative;
  background-image: url("../images/404-shape.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 160px;
}
@media (max-width: 1366px) {
  .error-block .container {
    background-position: center 175px;
  }
}
@media (max-width: 1199px) {
  .error-block .container {
    background-position: center 125px;
  }
}
@media (max-width: 991px) {
  .error-block .container {
    background-position: center 215px;
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .error-block .container {
    position: absolute;
    background-image: url("../images/404-shape-mob.svg");
    position: relative;
    background-size: cover;
    background-position: center 145px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .error-block .container a.btn {
    padding: 8px 29px;
  }
}
.error-block-wrapper {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  min-height: 700px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  position: relative;
  z-index: 100;
  padding-bottom: 75px;
  letter-spacing: -0.5px;
}
@media (max-width: 1366px) {
  .error-block-wrapper {
    padding-bottom: 25px;
    min-height: 600px;
  }
}
@media (max-width: 1199px) {
  .error-block-wrapper {
    min-height: 545px;
  }
}
@media (max-width: 767px) {
  .error-block-wrapper {
    max-width: 64%;
    padding-bottom: 25px;
  }
}
.error-block-title {
  font-size: 60px;
  line-height: 58px;
  color: #101010;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .error-block-title {
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .error-block-title {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -3px;
    margin-bottom: 15px;
  }
}
.error-block-content {
  font-size: 18px;
  font-weight: 500;
  color: #101010;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .error-block-content {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }
}
.error-block-background {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 55%;
  width: 100%;
  z-index: 10;
}
.error-block-background.desktop {
  display: inline-block;
}
@media (max-width: 767px) {
  .error-block-background.desktop {
    display: none;
  }
}
.error-block-background.mobile {
  display: none;
}
@media (max-width: 767px) {
  .error-block-background.mobile {
    display: inline-block;
  }
}
@media (max-width: 1199px) {
  .error-block-background {
    max-width: 75%;
  }
}
@media (max-width: 767px) {
  .error-block-background {
    max-width: 100%;
    bottom: -36px;
  }
}

.error-page-template .site-footer {
  padding-top: 100px;
}

.hero-section {
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section {
    margin: 65px 15px 100px !important;
  }
}
.hero-section__wrapper {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .hero-section__wrapper {
    flex-wrap: wrap;
  }
}
.hero-section__left {
  width: 603px;
  margin-right: 20px;
  background: linear-gradient(253.63deg, #ffdc92 0%, #f8f8f8 100%);
  border-radius: 30px;
  padding-top: 150px;
  align-self: flex-start;
}
@media (max-width: 1440px) {
  .hero-section__left {
    width: 600px;
    margin-left: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .hero-section__left {
    width: 100%;
    background: unset;
  }
}
@media (max-width: 767px) {
  .hero-section__left {
    margin: 0;
    padding-left: 0;
  }
}
.hero-section__left-stars {
  max-width: 130px;
}
.hero-section__left .section-title {
  line-height: 70px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero-section__left .section-title {
    line-height: 55px;
    font-size: 50px;
  }
}
.hero-section__left-title-wrapper {
  display: inline-flex;
  gap: 12px;
}
.hero-section__left-text {
  margin-top: 24px;
  text-transform: capitalize;
}
.hero-section__left .reveal-wrapp {
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-section__left .text-image__left-text {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
.hero-section__left-content-indent {
  max-width: 350px;
}
.hero-section__left-action, .hero-section__left-slide-controls {
  margin-top: 48px;
  position: relative;
}
@media (max-width: 767px) {
  .hero-section__left-action, .hero-section__left-slide-controls {
    margin-top: 30px;
  }
}
.hero-section__left-action {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .hero-section__left .text-image__left-action .btn-primary {
    padding: 8px 20px !important;
  }
}
@media (max-width: 767px) {
  .hero-section__left .text-image__left-action .btn-secondary::after {
    margin-left: 5px;
  }
  .hero-section__left .text-image__left-action .btn-secondary::before {
    margin-right: 5px;
  }
}
.hero-section__right {
  width: calc(100% - 603px);
}
@media (max-width: 1440px) {
  .hero-section__right {
    width: calc(100% - 603px);
  }
}
@media screen and (max-width: 1199px) {
  .hero-section__right {
    width: 100%;
    padding: 25px 0 29px 33px;
  }
}
@media (max-width: 767px) {
  .hero-section__right {
    padding-top: 0;
    padding-left: 13px;
  }
}
.hero-section__right img {
  border-radius: 30px;
  height: auto;
  width: 100%;
}
.hero-section__right .slick-dots {
  left: 0;
  bottom: -50px;
  text-align: left;
  z-index: 999;
}
.hero-section__right .slick-dots li {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background-color: #101010;
  transition: 0.4s ease-in-out;
  padding: 0;
}
.hero-section__right .slick-dots li.slick-active {
  background-color: #ff936d;
}
.hero-section__right .slick-dots li button {
  display: none;
}
.hero-section__right .slick-slide {
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .hero-section__right .slick-slide::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
}
.hero-section__right .slick-track {
  height: 619px;
  display: flex;
  transition: none;
  will-change: transform;
}
.hero-section__right .hero-section__slide-box {
  width: 836px !important;
  position: relative;
  margin-right: 20px;
  border-radius: 30px;
  cursor: grab;
}
@media screen and (max-width: 1440px) {
  .hero-section__right .hero-section__slide-box {
    width: 50vw !important;
  }
}
.hero-section__right .hero-section__slide-box img {
  width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
}
.hero-section .text-image__left-content-indent {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero-section .text-image__left-content-indent.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-section-dots {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .hero-section-dots {
    margin-top: 30px;
  }
}
.hero-section-dots ul {
  padding: 0;
  margin: 0;
  position: static;
  text-align: left;
}
.hero-section-dots ul li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #101010;
}
.hero-section-dots ul li.slick-active {
  background-color: #ff936d;
}
.hero-section-dots ul li button {
  display: none;
}

.hero-section__slide {
  height: 100%;
  margin-bottom: 0 !important;
}
.hero-section__slide .slick-list {
  height: 100%;
}
.hero-section__slide .slick-track {
  height: 100%;
}

@media screen and (max-width: 1366px) {
  .hero-section__right .hero-section__slide-box {
    width: 45vw !important;
  }
}
@media screen and (max-width: 1199px) {
  .hero-section__right .hero-section__slide-box {
    width: calc(100vw - 106px) !important;
  }
}
.hero-section .text-image-padding {
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .hero-section .text-image-padding {
    background-image: linear-gradient(253.63deg, #ffdc92 0%, #f8f8f8 100%);
  }
}
@media (max-width: 767px) {
  .hero-section .section-indent {
    padding: 110px 0 18px;
  }
}

.content-page-template-list {
  padding: 55px 0;
}
.content-page-template-list .content-page .desktop {
  display: block;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page .desktop {
    display: none;
  }
}
.content-page-template-list .content-page .mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page .mobile {
    display: block;
  }
}
.content-page-template-list .content-page__title-box {
  margin-bottom: 70px;
  border: 1px solid #101010;
  border-radius: 30px;
  padding: 40px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__title-box {
    padding: 20px 30px;
  }
}
.content-page-template-list .content-page__title-box h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__title-box h3 {
    line-height: 44px;
    margin-bottom: 30px;
  }
}
.content-page-template-list .content-page__title-box p {
  letter-spacing: -0.45px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(16, 16, 16, 0.7);
}
.content-page-template-list .content-page__title-box p.desktop {
  display: block;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__title-box p.desktop {
    display: none;
  }
}
.content-page-template-list .content-page__title-box p.mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__title-box p.mobile {
    display: block;
  }
}
.content-page-template-list .content-page__small-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 35px;
}
.content-page-template-list .content-page__bottom-info {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-page-template-list .content-page__bottom-info p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  color: #101010;
}
.content-page-template-list .content-page__bottom-info p span {
  font-size: 20px;
  color: #ff936d;
}
.content-page-template-list .content-page__bottom-info p i {
  color: rgba(16, 16, 16, 0.2);
}
.content-page-template-list .content-page__bottom-info span {
  font-size: 30px;
  line-height: 45px;
  color: rgba(16, 16, 16, 0.5);
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__bottom-info span {
    font-size: 24px;
  }
}
.content-page-template-list .content-page__buttons-box {
  padding-bottom: 15px;
  border-bottom: 1px solid #101010;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__buttons-box {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__buttons-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__buttons-box {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__buttons-box.disabled a {
  background-color: #a3a3a3;
}
.content-page-template-list .content-page__buttons-box.hover a, .content-page-template-list .content-page__buttons-box.clicked a {
  background-color: #101010;
}
.content-page-template-list .content-page__buttons-box.hover a:active, .content-page-template-list .content-page__buttons-box.clicked a:active {
  background-color: #101010;
}
.content-page-template-list .content-page__typography-box {
  padding-bottom: 15px;
  border-bottom: 1px solid #101010;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__typography-box {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__typography-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__typography-box {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__typography-box .content-page__bottom-info p {
  font-size: 14px;
  font-weight: 400;
}
.content-page-template-list .content-page__typography-box h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -3px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__typography-box h1 {
    font-size: 50px;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__typography-box h1 {
    line-height: 50px;
  }
}
.content-page-template-list .content-page__typography-box h1 span {
  text-decoration: underline;
}
.content-page-template-list .content-page__typography-box.typo-600 h2 {
  font-weight: 600;
  font-size: 38px;
  line-height: 48px;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__typography-box.typo-600 h2 {
    letter-spacing: -2px;
  }
}
.content-page-template-list .content-page__typography-box.typo-500 h2 {
  font-weight: 500;
  font-size: 38px;
  line-height: 48px;
  letter-spacing: -2px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__typography-box.typo-500 h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.content-page-template-list .content-page__typography-box.typo-400 h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}
.content-page-template-list .content-page__typography-box.typo-400 h3.content-page__small-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__typography-box.typo-400 h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.content-page-template-list .content-page__typography-box h4 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.35px;
  font-weight: 400;
}
.content-page-template-list .content-page__typography-box h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.content-page-template-list .content-page__typography-box h6 {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #a3a3a3;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__typography-box h6 {
    font-size: 16px;
  }
}
.content-page-template-list .content-page__typography-box img {
  max-width: 70px;
  width: 100%;
}
.content-page-template-list .content-page__typography-box p {
  max-width: 576px;
  width: 100%;
  font-size: 20px;
  line-height: 33px;
  font-weight: 400;
  color: #101010;
}
.content-page-template-list .content-page__typography-box.typo-letter-spacing-2 h4 {
  letter-spacing: -1%;
}
.content-page-template-list .content-page__typography-box.quotes p {
  font-size: 30px;
  line-height: 43px;
  font-weight: 500;
  max-width: 1100px;
  width: 100%;
}
.content-page-template-list .content-page__typography-box.quotes .content-page__bottom-info p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.content-page-template-list .content-page__typography-box.p-14 p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  max-width: 100%;
}
.content-page-template-list .content-page__typography-box.p-14 .content-page__bottom-info p {
  font-weight: 400;
}
.content-page-template-list .content-page__typography-box.mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__typography-box.mobile {
    display: block;
    margin-top: 30px;
  }
  .content-page-template-list .content-page__typography-box.mobile h4 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
  }
}
.content-page-template-list .content-page__link-box {
  padding-bottom: 15px;
  border-bottom: 1px solid #101010;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__link-box {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__link-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__link-box {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__link-box a:hover span::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__link-box a:hover {
    color: #101010;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__link-box.hover {
    display: none;
  }
}
.content-page-template-list .content-page__link-box.hover a span::after {
  opacity: 0;
}
.content-page-template-list .content-page__link-box.disabled a {
  color: #a3a3a3;
}
.content-page-template-list .content-page__link-box.disabled a::after, .content-page-template-list .content-page__link-box.disabled a::before {
  color: #a3a3a3;
}
.content-page-template-list .content-page__link-box.disabled a i {
  color: #a3a3a3;
  opacity: 1;
}
.content-page-template-list .content-page__link-box.disabled a span::after {
  background-color: #a3a3a3;
}
.content-page-template-list .content-page__link-box .content-page__bottom-info p.desktop {
  display: block;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__link-box .content-page__bottom-info p.desktop {
    display: none;
  }
}
.content-page-template-list .content-page__link-box .content-page__bottom-info p.mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__link-box .content-page__bottom-info p.mobile {
    display: block;
  }
}
.content-page-template-list .content-page__icons {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__icons {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__icons {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__icons {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__icons-box {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__icons-box {
    justify-content: center;
  }
}
.content-page-template-list .content-page__icons img {
  max-height: 80px;
  width: auto;
  margin-right: 25px;
}
.content-page-template-list .content-page__icons img:last-of-type {
  margin-right: 0;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__icons img {
    margin: 0 15px 25px;
  }
}
.content-page-template-list .content-page__table {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__table {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__table {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__table {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__table .table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-page-template-list .content-page__table .custom-table-title {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
.content-page-template-list .content-page__table .custom-table-title:not(:first-of-type) {
  margin-top: 36px;
}
.content-page-template-list .content-page__table .custom-table-wrapper {
  overflow-x: auto;
  border: 1px solid #95c9ee;
  border-radius: 10px;
}
.content-page-template-list .content-page__table .custom-table {
  border-collapse: collapse;
  width: 100%;
  overflow: hidden;
}
.content-page-template-list .content-page__table .custom-table th {
  background-color: #95c9ee;
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  text-align: left;
  height: 45px;
  vertical-align: middle;
  padding: 0 20px;
}
.content-page-template-list .content-page__table .custom-table th:first-of-type {
  width: 34px;
  padding-right: 0;
}
.content-page-template-list .content-page__table .custom-table th .custom-table-checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #95c9ee;
  border-radius: 3px;
  position: relative;
  background-color: #fff;
  display: block;
  cursor: pointer;
}
.content-page-template-list .content-page__table .custom-table th .custom-table-checkbox.selected {
  background-image: url("../images/check.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #95c9ee;
  border-color: #fff;
}
.content-page-template-list .content-page__table .custom-table th .custom-table-checkbox.not-all::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #95c9ee;
}
.content-page-template-list .content-page__table .custom-table tbody tr:last-of-type td {
  border-bottom: unset;
}
.content-page-template-list .content-page__table .custom-table tbody tr.selected {
  background-color: rgba(149, 201, 238, 0.2);
  font-weight: 600;
}
.content-page-template-list .content-page__table .custom-table td {
  padding: 0 20px;
  vertical-align: middle;
  border-bottom: 1px solid #95c9ee;
  height: 50px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 19px;
}
.content-page-template-list .content-page__table .custom-table td:first-of-type {
  width: 34px;
  padding-right: 0;
}
.content-page-template-list .content-page__table .custom-table td .custom-table-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  position: relative;
  background-color: transparent;
  display: block;
  border: 1px solid #9E9E9E;
  cursor: pointer;
}
.content-page-template-list .content-page__table .custom-table td .custom-table-checkbox.selected {
  background-color: #95c9ee;
  border-color: #95c9ee;
  background-image: url("../images/check.png");
  background-repeat: no-repeat;
  background-position: center;
}
.content-page-template-list .content-page__table .custom-table .table-star {
  display: inline-flex;
  align-items: center;
  width: 14px;
}
.content-page-template-list .content-page__table .custom-table .table-star.opacity {
  opacity: 0.3;
}
@media (max-width: 600px) {
  .content-page-template-list .content-page__table .table-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.content-page-template-list .content-page__form {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__form {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__form {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__form {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__form .content-page__title-box p span {
  color: #ff936d;
}
.content-page-template-list .content-page__form-box {
  display: flex;
  flex-wrap: wrap;
}
.content-page-template-list .content-page__form-box-wrapper {
  width: 500px;
  margin-right: 25px;
  margin-bottom: 75px;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__form-box-wrapper {
    margin-right: 0;
    width: 100%;
    margin-bottom: 60px;
  }
  .content-page-template-list .content-page__form-box-wrapper:last-of-type {
    margin-bottom: 0;
  }
}
.content-page-template-list .content-page__form-box-wrapper.filled input::placeholder {
  color: #101010;
}
.content-page-template-list .content-page__form-box-wrapper.disabled input,
.content-page-template-list .content-page__form-box-wrapper.disabled label {
  opacity: 0.2;
  pointer-events: none;
}
.content-page-template-list .content-page__form .contact-form-box {
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}
.content-page-template-list .content-page__form .contact-form-box input,
.content-page-template-list .content-page__form .contact-form-box textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #101010;
  background: transparent;
  font-size: 16px;
  outline: none;
}
.content-page-template-list .content-page__form .contact-form-box textarea {
  resize: none;
}
.content-page-template-list .content-page__form .contact-form-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  position: relative;
}
.content-page-template-list .content-page__form .contact-form-box label::after {
  content: "*";
  color: #ff936d;
  font-weight: 500;
}
.content-page-template-list .content-page__form .contact-form-box .hidden {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.content-page-template-list .content-page__form .contact-form-box .hidden span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: -29px;
}
.content-page-template-list .content-page__form .contact-form-box .hidden i {
  color: #101010;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.success {
  color: #00602C;
  opacity: 1;
  visibility: visible;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.success::before {
  content: "";
  font-family: "Poppins", sans-serif;
  width: 57px;
  height: 23px;
  background-color: #AFEFCD;
  border-radius: 30px;
  position: absolute;
  top: -33px;
  right: 0;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.success i.fa-xmark {
  display: none;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.success i.fa-check {
  display: block;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.error {
  color: #AB0000;
  opacity: 1;
  visibility: visible;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.error::before {
  content: "";
  font-family: "Poppins", sans-serif;
  width: 57px;
  height: 23px;
  background-color: #FF936D;
  border-radius: 30px;
  position: absolute;
  top: -33px;
  right: 0;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.error i.fa-xmark {
  display: block;
}
.content-page-template-list .content-page__form .contact-form-box .hidden.error i.fa-check {
  display: none;
}
.content-page-template-list .content-page__blog-list {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__blog-list {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__blog-list {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__blog-list {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__blog-list .two-column--box {
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 30px;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__blog-list .two-column--box {
    padding: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__blog-list .two-column--box {
    flex-direction: column;
  }
}
.content-page-template-list .content-page__blog-list .two-column--box:nth-child(even) {
  top: 0;
}
.content-page-template-list .content-page__blog-list .two-column--box:nth-child(3) {
  background-color: #ff9c9c;
  top: 0;
}
.content-page-template-list .content-page__blog-list .two-column--box:nth-child(4) {
  background-color: #e8e8e8;
}
.content-page-template-list .content-page__blog-list .two-column--box-top {
  width: 432px;
  height: 287px;
  margin-right: 30px;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__blog-list .two-column--box-top {
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.content-page-template-list .content-page__blog-list .two-column--box-top a,
.content-page-template-list .content-page__blog-list .two-column--box-top img {
  border-radius: 16px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__blog-list .two-column--box-top a,
.content-page-template-list .content-page__blog-list .two-column--box-top img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.content-page-template-list .content-page__blog-list .two-column--box-bottom {
  max-width: calc(100% - 462px);
  width: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__blog-list .two-column--box-bottom {
    max-width: 100%;
    margin-top: 25px;
    padding: 0 30px 30px;
  }
}
.content-page-template-list .content-page__blog-list .two-column--box:last-of-type {
  margin-bottom: 0;
}
.content-page-template-list .content-page__features {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__features {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__features {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__features {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__features .accordion__title {
  display: flex;
  font-size: 32px;
  line-height: 37.12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.content-page-template-list .content-page__features .accordion__title:hover {
  opacity: 1;
}
.content-page-template-list .content-page__features .accordion__title img {
  margin-left: auto;
  transition: transform 0.5s ease-in-out;
  max-width: 30px;
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
}
.content-page-template-list .content-page__features .accordion__title.active {
  border-bottom: 1px solid #101010;
  opacity: 1;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__features .accordion__title.active {
    border-bottom: none;
  }
}
.content-page-template-list .content-page__features .accordion__title.active img {
  opacity: 1;
  transform: translateX(0);
}
.content-page-template-list .content-page__features-box .content-page__small-title {
  margin-bottom: 10px;
}
.content-page-template-list .content-page__features-box .content-page__small-title.desktop {
  display: block;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__features-box .content-page__small-title.desktop {
    display: none;
  }
}
.content-page-template-list .content-page__features-box .content-page__small-title.mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__features-box .content-page__small-title.mobile {
    display: block;
  }
}
.content-page-template-list .content-page__features-box .accordion__wrapper {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__features-box .accordion__wrapper {
    margin-top: 10px;
  }
}
.content-page-template-list .content-page__features-box .subtitle {
  color: rgba(16, 16, 16, 0.7);
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__features-box .subtitle {
    display: none;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__features-box .btn:hover {
    background-color: #262224;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__features-box {
    margin-bottom: 60px;
  }
  .content-page-template-list .content-page__features-box:last-of-type {
    margin-bottom: 0;
  }
  .content-page-template-list .content-page__features-box .accordion .section-indent {
    padding: 0;
  }
  .content-page-template-list .content-page__features-box .accordion__wrapper {
    flex-direction: column;
  }
  .content-page-template-list .content-page__features-box .accordion__wrapper-right {
    padding: 32px;
  }
  .content-page-template-list .content-page__features-box .accordion__wrapper-right .content-item__logos img {
    width: 90%;
  }
  .content-page-template-list .content-page__features-box .accordion__wrapper-right .content-item__logos-text {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .content-page-template-list .content-page__features-box .accordion__wrapper-left .accordion__list-wrapp {
    overflow-x: auto; /* Omogućava horizontalni skrol */
    white-space: nowrap; /* Sprečava prelamanje elemenata u novi red */
    -webkit-overflow-scrolling: touch; /* Poboljšava skrol na mobilnim uređajima */
  }
  .content-page-template-list .content-page__features-box .accordion__wrapper-left .accordion__list-wrapp ::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__features-box .accordion__title-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__features-box .accordion__list {
    flex-direction: row;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__features-box .accordion__title, .content-page-template-list .content-page__features-box .accordion__item {
    font-size: 28px;
    line-height: 32px;
    flex: 0 0 auto;
  }
  .content-page-template-list .content-page__features-box .accordion__title img, .content-page-template-list .content-page__features-box .accordion__item img {
    display: none;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__features-box.hover {
    display: none;
  }
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__features-box.select > p {
    display: none;
  }
}
.content-page-template-list .content-page__quotes {
  padding-bottom: 15px;
  margin-bottom: 70px;
  border-bottom: 1px solid #101010;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__quotes {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__quotes {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__quotes {
    margin-bottom: 85px;
  }
  .content-page-template-list .content-page__quotes-box {
    margin-top: 100px;
  }
}
.content-page-template-list .content-page__quotes .text-slider-box-top {
  max-width: 785px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__quotes .text-slider-box-top {
    padding-left: 0;
  }
  .content-page-template-list .content-page__quotes .text-slider-box-top::before {
    top: -20px;
    color: #ff936d;
  }
}
.content-page-template-list .content-page__centered {
  padding-bottom: 15px;
  margin-bottom: 70px;
  border-bottom: 1px solid #101010;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__centered {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__centered {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__centered {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__centered-box {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
.content-page-template-list .content-page__centered-box p {
  font-size: 38px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: -2px;
  text-align: center;
  margin: 50px 0;
}
.content-page-template-list .content-page__favicon {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__favicon {
    display: none;
  }
}
.content-page-template-list .content-page__image-layout {
  padding-bottom: 15px;
  margin-bottom: 70px;
}
@media (max-width: 1366px) {
  .content-page-template-list .content-page__image-layout {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__image-layout {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-layout {
    margin-bottom: 85px;
  }
}
.content-page-template-list .content-page__image-layout-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-layout-box:last-of-type {
    margin-bottom: 0;
  }
}
.content-page-template-list .content-page__image-layout-box.reverse {
  flex-direction: row-reverse;
}
.content-page-template-list .content-page__image-layout-box .left {
  max-width: 50%;
  width: 100%;
  padding-left: 100px;
}
.content-page-template-list .content-page__image-layout-box .left p {
  max-width: 50%;
  margin: 35px 0 30px;
  font-size: 30px;
  line-height: 43px;
  letter-spacing: -1.5px;
}
@media (max-width: 1440px) {
  .content-page-template-list .content-page__image-layout-box .left p {
    max-width: 75%;
  }
}
@media (max-width: 1199px) {
  .content-page-template-list .content-page__image-layout-box .left p {
    max-width: 100%;
  }
}
.content-page-template-list .content-page__image-layout-box .left h3 {
  font-size: 38px;
  line-height: 48px;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__image-layout-box .left {
    max-width: 100%;
    padding-left: 0;
  }
  .content-page-template-list .content-page__image-layout-box .left a {
    padding: 10px 30px;
    letter-spacing: -1px;
  }
}
.content-page-template-list .content-page__image-layout-box .right {
  max-width: 50%;
  padding-right: 100px;
}
@media (max-width: 991px) {
  .content-page-template-list .content-page__image-layout-box .right {
    max-width: 100%;
    margin-top: 25px;
    padding-right: 0;
  }
}
.content-page-template-list .content-page__image-layout-box .right img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.content-page-template-list .content-page__image-layout-box .bottom {
  width: 100%;
  border-bottom: 1px solid #101010;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-layout-box .content-page__bottom-info {
    display: none;
  }
}
.content-page-template-list .content-page__image-full img {
  border-radius: 30px;
  margin: 30px 0;
}
.content-page-template-list .content-page__image-full-box {
  height: 500px;
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-full-box {
    height: 310px;
  }
}
.content-page-template-list .content-page__image-full-box img {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.content-page-template-list .content-page__image-full-box img.logo {
  max-width: 80px;
  inset: inherit;
  right: 50px;
  bottom: 40px;
  border-radius: 0;
  object-fit: none;
  height: auto;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-full-box img.logo {
    display: none;
  }
}
.content-page-template-list .content-page__image-full-box .content {
  max-width: 420px;
  border-radius: 30px;
  background-color: rgba(16, 16, 16, 0.4);
  padding: 30px;
  z-index: 50;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-full-box .content {
    max-width: calc(100% - 30px);
    left: 50%;
    bottom: 15px;
    transform: translate(-50%, 0);
    width: 100%;
    padding: 15px;
    top: auto;
  }
}
.content-page-template-list .content-page__image-full-box .content h4 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 767px) {
  .content-page-template-list .content-page__image-full-box .content h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.content-page-template-list .content-page__image-full-box .content h4 span {
  font-weight: 600;
}
.content-page-template-list .header-box {
  background-color: #101010;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  padding: 30px 40px;
  margin-bottom: 70px;
}
.content-page-template-list .header-box img {
  max-width: 60px;
  width: 100%;
  margin-bottom: 125px;
}
@media (max-width: 991px) {
  .content-page-template-list .header-box img {
    margin-bottom: 45px;
  }
}
.content-page-template-list .header-box h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
}
.content-page-template-list .header-box h2.desktop {
  display: block;
}
@media (max-width: 767px) {
  .content-page-template-list .header-box h2.desktop {
    display: none;
  }
}
.content-page-template-list .header-box h2.mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-page-template-list .header-box h2.mobile {
    display: block;
  }
}
.content-page-template-list .footer-box {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .content-page-template-list .footer-box {
    flex-direction: column;
  }
}
.content-page-template-list .footer-box img {
  max-width: 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .content-page-template-list .footer-box img {
    margin-left: auto;
    margin-top: 25px;
  }
}
.content-page-template-list .footer-box ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #101010;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .content-page-template-list .footer-box ul {
    flex-wrap: wrap;
  }
}
.content-page-template-list .footer-box ul li {
  position: relative;
  margin-right: 80px;
  font-size: 15px;
  color: #262224;
}
@media (max-width: 991px) {
  .content-page-template-list .footer-box ul li {
    margin-right: 20px;
    font-size: 14px;
  }
}
.content-page-template-list .footer-box ul li a {
  font-size: 15px;
  color: #262224;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .content-page-template-list .footer-box ul li a {
    font-size: 14px;
  }
}
.content-page-template-list .footer-box ul li a:hover {
  text-decoration: none;
}
.content-page-template-list .footer-box ul li::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .content-page-template-list .footer-box ul li::after {
    right: -15px;
  }
}
.content-page-template-list .footer-box ul li:last-of-type {
  margin-right: 0;
}
.content-page-template-list .footer-box ul li:last-of-type::after {
  display: none;
}