h1 {
  font-size: clamp(2.07rem, calc(1.79rem + 1.19vw), 3.65rem);
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h1 {
    letter-spacing: 0;
  }
}

h2 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-size: clamp(1.73rem, calc(1.53rem + 0.83vw), 2.44rem);
  color: #233442;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h2 {
    letter-spacing: 0;
  }
}

h3 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-size: clamp(1.44rem, calc(1.31rem + 0.56vw), 1.76rem);
  color: #233442;
  line-height: 2rem;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h3 {
    letter-spacing: 0;
  }
}

body {
  font-size: clamp(1.00rem, calc(0.95rem + 0.22vw), 1.13rem);
}

p {
  margin-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.display {
  display: block !important;
}

.page_hero {
  height: clamp(15.00rem, calc(10.00rem + 25.00vw), 30.00rem);
  display: grid;
  place-content: center;
}
.page_hero h1 {
  padding-top: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  color: #ffffff;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.max_width {
  width: min(90%, 1440px);
  margin-inline: auto;
}

.btn {
  margin-top: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  color: #ffffff;
  background: #A62E02;
  font-weight: 700;
  cursor: pointer;
  padding: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem) clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  transition: 0.2s;
  border: 3px solid transparent;
}
@media (min-width: 768px) {
  .btn {
    color: #233442;
    background: transparent;
    border: 3px solid #A62E02;
    cursor: pointer;
    transition: 0.1s;
  }
  .btn:hover {
    color: #ffffff;
    background: #A62E02;
  }
}

.error_page {
  padding: 200px 0px 100px 0px;
}
.error_page h1 {
  font-family: Jazmin-Bold;
  color: #233442;
  text-transform: uppercase;
}

.social_media_icons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.social_media_icons .icon {
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 15px;
  width: 60px;
  height: 60px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.social_media_icons .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.social_media_icons .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background-color: #ffffff;
}
.social_media_icons .facebook i {
  color: #3b5999;
}
.social_media_icons .instagram i {
  background: linear-gradient(to bottom right, #dd2a7b, #f58529);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social_media_icons .tik-tok i {
  color: #000;
}
.social_media_icons .threads img {
  max-width: 1.6rem;
}
.social_media_icons .threads img.white {
  display: none;
}

@media (min-width: 768px) {
  .social_media_icons .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  .social_media_icons .icon:hover span {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  .social_media_icons .facebook:hover {
    background-color: #3b5999;
    color: #ffffff;
  }
  .social_media_icons .facebook:hover i {
    color: white;
  }
  .social_media_icons .facebook .tooltip {
    background-color: #3b5999;
  }
  .social_media_icons .facebook .tooltip::before {
    background-color: #3b5999;
  }
  .social_media_icons .instagram:hover {
    color: #ffffff;
    background-image: linear-gradient(to bottom right, #dd2a7b, #f58529);
  }
  .social_media_icons .instagram:hover .fa-instagram::before {
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .social_media_icons .instagram .tooltip {
    background-color: #e1306c;
  }
  .social_media_icons .instagram .tooltip::before {
    background-color: #e1306c;
  }
  .social_media_icons .tik-tok:hover {
    background-color: #000;
    color: #ffffff;
  }
  .social_media_icons .tik-tok:hover i {
    color: white;
  }
  .social_media_icons .tik-tok .tooltip {
    background-color: #000;
  }
  .social_media_icons .tik-tok .tooltip::before {
    background-color: #000;
  }
  .social_media_icons .threads:hover {
    background-color: #000;
    color: #ffffff;
  }
  .social_media_icons .threads:hover img.white {
    display: block;
  }
  .social_media_icons .threads:hover img.black {
    display: none;
  }
  .social_media_icons .threads .tooltip {
    background-color: #000;
  }
  .social_media_icons .threads .tooltip::before {
    background-color: #000;
  }
}
.login {
  padding: clamp(9.38rem, calc(7.82rem + 6.63vw), 13.13rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  display: grid;
  justify-content: center;
}
.login .login-form-wrapper h1 {
  padding-bottom: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  color: #233442;
  font-family: Jazmin-Bold;
}
.login .login-form-wrapper form input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #233442;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}
.login .login-form-wrapper form label {
  margin-bottom: 0.5rem;
}
.login .login-form-wrapper form .form-group {
  margin-bottom: 2rem;
}
.login .login-form-wrapper form .password a {
  color: #233442;
}
.login .login-form-wrapper form .login_offset input {
  width: 1.5rem;
}

.pager-wrapper {
  margin: 0 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.pager-wrapper ol.pager {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}
.pager-wrapper ol.pager li.page-no span {
  background: #A62E02;
  color: #ffffff;
  padding: 0.8rem 1.4rem;
}
.pager-wrapper ol.pager li.ellipses {
  padding: 0.8rem;
  color: #aaa;
}
.pager-wrapper ol.pager li a {
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  color: #233442;
  transition: 0.1s;
  outline: 2px solid #A62E02;
  outline-offset: -2px;
  margin-right: -1.7px;
}
@media (min-width: 768px) {
  .pager-wrapper ol.pager li a:hover {
    background: #A62E02;
    color: #ffffff;
  }
}

#back-to-top {
  position: fixed;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 3px solid #A62E02;
  display: grid;
  place-content: center;
  transition: 0.1s;
  display: none;
}
#back-to-top.show {
  display: grid;
}
@media (min-width: 768px) {
  #back-to-top:hover {
    background: #A62E02;
  }
  #back-to-top:hover svg path {
    fill: #fff;
  }
}
#back-to-top svg {
  transition: 0.3s;
  width: 30px;
  height: 30px;
  margin-top: -5px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  background: #233442;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.header.background_nav {
  background: #233442;
}
.header.background_nav .desktop_navigation_wrapper .desktop_inner_wrapper .header_logo img {
  width: 120px;
}
.header .desktop_navigation_wrapper {
  padding: 1.5rem 0;
  margin-inline: auto;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .header_logo {
  text-decoration: none;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .header_logo img {
  width: 150px;
  transition: 0.3s;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .desktop_nav_items {
  margin: 0;
  display: none;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .desktop_nav_items .desktop_main_links {
  margin: 0;
  display: flex;
  list-style: none;
  gap: 3rem;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .desktop_nav_items .desktop_main_links a {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(#fff, #fff) no-repeat 100% 102%/0% 0.13rem;
  transition: background-size 0.3s ease;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .desktop_nav_items .desktop_main_links a:hover {
  background: linear-gradient(#fff, #fff) no-repeat 0% 102%/100% 0.13rem;
}
.header .desktop_navigation_wrapper .desktop_inner_wrapper .desktop_nav_items .desktop_main_links a.nav_active {
  background: linear-gradient(#fff, #fff) no-repeat 0% 102%/100% 0.13rem;
}
.header .mobile_navigation {
  background: #233442;
  transition: 0.4s ease-in-out;
  height: 0;
  overflow: hidden;
}
.header .mobile_navigation.show {
  height: 100vh;
  overflow: scroll;
}
.header .mobile_navigation .mobile_main_links {
  padding: 0;
  margin-top: 0;
  list-style: none;
  color: #ffffff;
}
.header .mobile_navigation .mobile_main_links li {
  text-align: center;
  border-top: 1px solid #ffffff6b;
}
.header .mobile_navigation .mobile_main_links li:last-child {
  border-bottom: 1px solid #ffffff6b;
}
.header .mobile_navigation .mobile_main_links li.nav_active {
  background: #A62E02;
}
.header .mobile_navigation .mobile_main_links li a {
  color: #ffffff;
  text-decoration: none;
  padding: 1.5rem 0;
  display: block;
}

@media (min-width: 1200px) {
  .header {
    background: transparent;
  }
  .header .desktop_navigation_wrapper .desktop_inner_wrapper .burger_menu {
    display: none;
  }
  .header .desktop_navigation_wrapper .desktop_inner_wrapper .desktop_nav_items {
    display: block;
  }
}
.burger_menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  width: 50px;
  height: 0px;
  align-items: center;
  margin-right: -10px;
}
.burger_menu .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger_menu .line.line1 {
  stroke-dasharray: 60 207;
}
.burger_menu .line.line2 {
  stroke-dasharray: 60 60;
}
.burger_menu .line.line3 {
  stroke-dasharray: 60 207;
}
.burger_menu.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.burger_menu.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.burger_menu.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.footer {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem) 0;
  background: #233442 url("/images/icons/new-white.svg") no-repeat 50% -150%;
}
.footer span {
  color: white;
  font-weight: bold;
}
.footer h3 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  color: white;
  margin-bottom: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
.footer p {
  color: white;
  margin-bottom: 15px;
}
.footer .footer-content {
  display: grid;
  gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.footer .footer-content h3 {
  text-transform: uppercase;
}
@media (min-width: 1800px) {
  .footer .footer-content {
    padding-left: 0;
  }
}
.footer .footer-content .sitemap .footer-logo {
  width: 150px;
}
.footer .footer-content .sitemap ul {
  padding-left: 0;
  list-style: none;
}
.footer .footer-content .sitemap ul li {
  margin-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
.footer .footer-content .sitemap ul li a {
  text-decoration: none;
  color: #ffffff;
}
.footer .footer-content .footer_contact h3 {
  text-transform: uppercase;
}
.footer .footer-content .footer_contact a {
  color: white;
}
.footer .footer-content .footer_contact .btn {
  color: #ffffff;
  margin-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
.footer .footer-content .icons {
  display: flex;
  gap: 40px;
}
.footer .footer-content .icons img {
  width: 35px;
}

@media (min-width: 600px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .footer {
    background: #233442 url("/images/icons/new-white.svg") no-repeat 112% 50%/1300px;
  }
  .footer .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .footer-content .sitemap {
    margin-top: -20px;
  }
  .footer .footer-content .sitemap ul li a {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(#fff, #fff) no-repeat 100% 102%/0% 0.13rem;
    transition: background-size 0.3s ease;
  }
  .footer .footer-content .sitemap ul li a:hover {
    background: linear-gradient(#fff, #fff) no-repeat 0% 102%/100% 0.13rem;
  }
  .footer .footer-content .sitemap ul li a.nav_active {
    background: linear-gradient(#fff, #fff) no-repeat 0% 102%/100% 0.13rem;
  }
}
.bottom_footer {
  margin-top: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem);
  padding-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
  border-top: 1px solid rgba(255, 255, 255, 0.278);
}
.bottom_footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 200;
  font-size: clamp(0.83rem, calc(0.81rem + 0.12vw), 0.90rem);
}
.bottom_footer .container a {
  color: rgba(255, 255, 255, 0.856);
  font-weight: 300;
}
.bottom_footer .container .left {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.listing_navigation {
  padding-top: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
  border-bottom: 1px solid #233442;
}
.listing_navigation .desktop_listing_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #233442;
  padding: 1.1rem 1.5rem 1rem 1.5rem;
  cursor: pointer;
}
.listing_navigation .desktop_listing_nav .dropdown_name {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}
.listing_navigation .desktop_listing_nav ul {
  display: none;
}
.listing_navigation .desktop_listing_nav ul li {
  position: relative;
  padding-bottom: 0.5rem;
}
.listing_navigation .desktop_listing_nav ul li a {
  padding-bottom: 0.5rem;
}
.listing_navigation .desktop_listing_nav ul li.active {
  border-bottom: 2px solid #A62E02;
  pointer-events: none;
}
.listing_navigation .desktop_listing_nav ul li.active a {
  color: #A62E02;
  font-weight: 700;
}
.listing_navigation .desktop_listing_nav ul li::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: #A62E02;
  transition: 0.3s;
  width: 0;
}
.listing_navigation .desktop_listing_nav ul li:hover:after {
  width: 100%;
  left: 0;
}
.listing_navigation .desktop_listing_nav ul li a {
  text-decoration: none;
  color: #233442;
}
.listing_navigation .desktop_listing_nav .arrow {
  -moz-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.listing_navigation .desktop_listing_nav .arrow img {
  max-width: 1.5rem;
}
.listing_navigation .desktop_listing_nav .arrow.arrow_rotate {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mobile_listing_nav {
  display: none;
  background: #233442;
}
.mobile_listing_nav ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
}
.mobile_listing_nav ul li {
  border-top: 1px solid #ffffff;
  text-align: center;
}
.mobile_listing_nav ul li.active {
  background: #A62E02;
  font-weight: 700;
}
.mobile_listing_nav ul li.active a {
  color: #ffffff;
}
.mobile_listing_nav ul li a {
  text-decoration: none;
  color: #ffffff;
  padding: 1rem 0;
  display: block;
}
.mobile_listing_nav ul .border_top {
  border-top: 0;
  padding-top: 0;
}

@media (min-width: 768px) {
  .listing_navigation {
    justify-content: space-between;
    border-bottom: 1px solid #d8d8d8;
  }
  .listing_navigation .desktop_listing_nav {
    margin: 0;
    background: transparent;
    padding: 0;
    cursor: default;
  }
  .listing_navigation .desktop_listing_nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding-left: 0;
  }
  .listing_navigation .desktop_listing_nav .dropdown_name {
    display: none;
  }
  .listing_navigation .desktop_listing_nav .arrow {
    display: none;
  }
}
* {
  font-family: "Poppins", sans-serif;
}

.homepage {
  position: relative;
  padding-top: 50px;
}
@media (min-width: 800px) {
  .homepage {
    padding-top: 0;
  }
}
.homepage .f-button {
  --f-button-width: 60px;
  --f-button-height: 60px;
  --f-button-border: 0;
  --f-button-border-radius: 10rem;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: rgb(255 255 255 / 25%);
  --f-button-hover-bg: rgb(255 255 255 / 35%);
  --f-button-active-bg: rgb(255 255 255 / 35%);
  --f-button-svg-width: 23px;
  --f-button-svg-height: 23px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  backdrop-filter: blur(10px);
}
.homepage .home_hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.homepage .home_hero.one {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/home/hero/1.jpg") no-repeat 58% 30%/cover;
}
.homepage .home_hero.two {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.45), rgba(35, 52, 66, 0.45)), url("/images/home/hero/2.jpg") no-repeat center 10%/cover;
}
.homepage .home_hero.three {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.4), rgba(35, 52, 66, 0.4)), url("/images/home/hero/3.jpg") no-repeat 36% 100%/cover;
}
.homepage .home_hero.four {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.4), rgba(35, 52, 66, 0.4)), url("/images/home/hero/4.jpg") no-repeat center 70%/cover;
}
.homepage .home_hero.five {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/home/hero/5.jpg") no-repeat center 60%/cover;
}
.homepage .home_hero.six {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.4), rgba(35, 52, 66, 0.4)), url("/images/home/hero/6.jpg") no-repeat 77% 30%/cover;
}
.homepage .home_hero .f-progress {
  height: 4px;
  top: auto;
  bottom: 0;
  background: #fff;
  opacity: 0.5;
}
.homepage .home_hero .home_hero_content {
  padding: clamp(7.50rem, calc(6.04rem + 7.32vw), 11.25rem) 0px clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0px;
}
.homepage .home_hero .home_hero_content .left {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.homepage .home_hero .home_hero_content .left .home_hero_text {
  color: #ffffff;
}
.homepage .home_hero .home_hero_content .left .home_hero_text h1 {
  font-size: clamp(2.07rem, calc(1.75rem + 1.63vw), 3.05rem);
  line-height: 2rem;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}
@media (min-width: 400px) {
  .homepage .home_hero .home_hero_content .left .home_hero_text h1 {
    font-size: clamp(2.07rem, calc(1.79rem + 1.19vw), 3.65rem);
  }
}
.homepage .home_hero .home_hero_content .left .home_hero_text h1 span {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
}
.homepage .home_hero .home_hero_content .left .home_hero_text p {
  max-width: 615px;
}
.homepage .home_hero .home_hero_content .left .home_hero_text .btn {
  background-color: #A62E02;
  color: white;
}
.homepage .home_hero .home_hero_content .left .home_hero_text .btn:hover {
  background-color: #8f2600;
  border: 3px solid #8f2600;
}
.homepage .home_hero .home_hero_content .left .social_media_icons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.homepage .home_hero .home_hero_content .left .social_media_icons .hero_line {
  display: none;
}
.homepage .home_hero .home_hero_content .buttons {
  display: none;
}
@media (min-width: 550px) {
  .homepage .home_hero .home_hero_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .homepage .home_hero .home_hero_content .buttons {
    display: flex;
    gap: 1rem;
  }
  .homepage .home_hero .home_hero_content .buttons .hero-btn {
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 10rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    display: grid;
    place-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }
  .homepage .home_hero .home_hero_content .buttons .hero-btn:hover {
    background: rgba(255, 255, 255, 0.35);
  }
  .homepage .home_hero .home_hero_content .buttons .hero-btn svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: currentColor;
    filter: none;
  }
}
@media (min-width: 800px) {
  .homepage .home_hero.one {
    background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/home/hero/1.jpg") no-repeat center 30%/cover;
  }
  .homepage .home_hero.three {
    background: linear-gradient(0deg, rgba(35, 52, 66, 0.4), rgba(35, 52, 66, 0.4)), url("/images/home/hero/3.jpg") no-repeat center 100%/cover;
  }
  .homepage .home_hero.six {
    background: linear-gradient(0deg, rgba(35, 52, 66, 0.4), rgba(35, 52, 66, 0.4)), url("/images/home/hero/6.jpg") no-repeat center 30%/cover;
  }
  .homepage .home_hero .home_hero_content .left {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 100px;
  }
  .homepage .home_hero .home_hero_content .left .home_hero_text h1 {
    margin-top: -1.3rem;
  }
  .homepage .home_hero .home_hero_content .left .social_media_icons {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .homepage .home_hero .home_hero_content .left .social_media_icons .hero_line {
    background: rgba(255, 255, 255, 0.7);
    display: block;
    width: 2px;
    height: 60px;
  }
}
@media (min-width: 1500px) {
  .homepage .home_hero .home_hero_content .left .social_media_icons {
    gap: 50px;
  }
  .homepage .home_hero .home_hero_content .left .social_media_icons .hero_line {
    height: 120px;
  }
}
.homepage .our_story {
  background: #233442 url("/images/icons/new-white.svg") no-repeat center/140%;
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.homepage .our_story .our_story_text h2 {
  color: #ffffff;
}
.homepage .our_story .our_story_text p {
  max-width: 660px;
  color: #ffffff;
}
.homepage .our_story .our_story_text p:nth-child(2) {
  font-weight: 700;
}
.homepage .our_story .our_story_text .btn {
  color: #ffffff;
}
@media (min-width: 1300px) {
  .homepage .our_story {
    background: #233442 url("/images/icons/new-white.svg") no-repeat 112% center/1300px;
  }
}
.homepage .featured_work {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.homepage .featured_work .featured_intro {
  display: flex;
  flex-direction: column;
}
.homepage .featured_work .featured_intro .featured_text h3 {
  margin-top: 1rem;
  text-transform: uppercase;
}
.homepage .featured_work .featured_intro .featured_text p {
  max-width: 650px;
}
.homepage .featured_work .featured_intro .featured_text p:nth-child(2) {
  font-weight: 700;
  margin-top: 0.5rem;
}
.homepage .featured_work .image_grid {
  padding-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, clamp(11.25rem, calc(-4.09rem + 65.45vw), 22.50rem));
  gap: 20px;
  grid-template-areas: "one" "two" "three";
}
.homepage .featured_work .image_grid .one {
  grid-area: one;
  background: url("/images/home/1.jpg") no-repeat center/cover;
}
.homepage .featured_work .image_grid .two {
  grid-area: two;
  background: url("/images/home/2.jpg") no-repeat center/cover;
}
.homepage .featured_work .image_grid .three {
  grid-area: three;
  background: url("/images/home/3.jpg") no-repeat center/cover;
}
.homepage .featured_work .image_grid .four {
  display: none;
  grid-area: four;
  background: url("/images/packages/motorcycle.jpg") no-repeat center/cover;
}
.homepage .featured_work .image_grid .five {
  display: none;
  grid-area: five;
  background: url("/images/packages/pizza.jpg") no-repeat center/cover;
}
.homepage .featured_work .image_grid .six {
  display: none;
  grid-area: six;
  background: url("/images/home/6.jpg") no-repeat center/cover;
}
@media (min-width: 650px) {
  .homepage .featured_work .image_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, clamp(15.00rem, calc(-0.75rem + 36.00vw), 26.25rem));
    grid-template-areas: "one two" "three four" "five six";
  }
  .homepage .featured_work .image_grid .four {
    display: block;
  }
  .homepage .featured_work .image_grid .five {
    display: block;
  }
  .homepage .featured_work .image_grid .six {
    display: block;
  }
}
@media (min-width: 1100px) {
  .homepage .featured_work .image_grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(9, 70px);
    grid-template-areas: "one two three" "one two three" "one two three" "one two six" "four two six" "four five six" "four five six" "four five six" "four five six";
  }
}
@media (min-width: 1000px) {
  .homepage .featured_work h2 {
    text-align: center;
    padding-bottom: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  }
  .homepage .featured_work .featured_intro {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.homepage .clients_wrapper {
  background: #f8f8f8;
}
.homepage .clients_wrapper .clients {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  width: min(90%, 1440px);
  margin: 0 auto;
}
.homepage .clients_wrapper .clients .test_wrapper {
  margin-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials {
  --f-carousel-spacing: 1.5rem;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-padding: 2rem;
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials .test {
  background: #ffffff url("/images/icons/new-dark.svg") no-repeat 150% -50%/70%;
  border: 2px solid #A62E02;
  display: flex;
  flex-direction: column;
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials .test:hover {
  cursor: pointer;
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials .test .review {
  font-style: italic;
  margin-top: 0.8rem;
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials .test .name {
  padding-top: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  color: #A62E02;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  margin-top: auto;
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials .test img {
  max-width: 35px;
}
.homepage .clients_wrapper .clients .test_wrapper .testimonials .f-carousel__dots {
  justify-content: flex-start;
  --f-carousel-dots-height: 4rem;
  --f-carousel-dots-width: 1.8rem;
  --f-carousel-dot-width: 1.4rem;
  --f-carousel-dot-height: 0.35rem;
  --f-carousel-dot-radius: 0;
  --f-carousel-dot-color: #233442;
}
@media (min-width: 768px) {
  .homepage .clients_wrapper .clients .test_wrapper .testimonials {
    --f-carousel-slide-width: calc((100% - 1.5rem) / 2);
  }
}
@media (min-width: 1200px) {
  .homepage .clients_wrapper .clients {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
    width: auto;
    margin-left: max(5%, (100% - 1440px) / 2);
  }
  .homepage .clients_wrapper .clients .test_wrapper {
    margin-top: 0;
  }
  .homepage .clients_wrapper .clients .test_wrapper .testimonials {
    --f-carousel-slide-width: calc(100% / 2.5);
  }
}
@media (min-width: 1400px) {
  .homepage .clients_wrapper {
    background: #f8f8f8 url("/images/icons/new-dark.svg") no-repeat -50% center/70%;
  }
}
.homepage .awards {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.homepage .awards .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  align-items: center;
  align-content: center;
  justify-items: center;
  gap: 3rem;
  margin-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.homepage .awards .wrapper .award {
  max-height: 150px;
}
@media (min-width: 900px) {
  .homepage .awards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .homepage .awards .wrapper {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.about {
  padding-top: clamp(0.00rem, calc(5.80rem + -10.91vw), 3.75rem);
}
.about .about_hero {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/about/about-me.jpg") no-repeat center 55%/cover;
}
.about .about_intro {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.about .about_intro p {
  max-width: 700px;
  margin-inline: auto;
}
.about .about_intro p:nth-child(1) {
  font-weight: 700;
  margin-top: 0;
}
@media (min-width: 768px) {
  .about .about_intro {
    background: url("/images/icons/new-dark.svg") no-repeat center/cover;
  }
}
.about .instagram {
  background: #f8f8f8;
}
.about .instagram .wrapper {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.about .instagram .wrapper h2 {
  text-align: center;
  margin-bottom: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
.about .instagram .wrapper p {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding-top: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
}
.about .instagram .wrapper .grams {
  margin-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  --f-carousel-spacing: 1.5rem;
  --f-carousel-slide-width: calc(100% / 1);
  --f-carousel-slide-padding: 0;
}
.about .instagram .wrapper .grams a.gram img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.about .instagram .wrapper .grams .f-carousel__dots {
  --f-carousel-dots-height: 4rem;
  --f-carousel-dots-width: 1.8rem;
  --f-carousel-dot-width: 1.4rem;
  --f-carousel-dot-height: 0.35rem;
  --f-carousel-dot-radius: 0;
  --f-carousel-dot-color: #233442;
}
.about .instagram .wrapper .grams .f-carousel__nav {
  --f-button-width: 45px;
  --f-button-height: 45px;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: rgb(166 46 2 / 70%);
  --f-button-hover-bg: #A62E02;
  --f-button-active-bg: #932801;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-next-pos: 15px;
  --f-button-border-radius: 10rem;
  --f-button-prev-pos: 15px;
}
@media (min-width: 768px) {
  .about .instagram .wrapper .grams {
    --f-carousel-slide-width: calc(100% / 1.5);
  }
}
@media (min-width: 1200px) {
  .about .instagram .wrapper .grams {
    --f-carousel-slide-width: calc(100% / 3);
  }
}

.portfolio {
  padding-top: clamp(0.00rem, calc(5.80rem + -10.91vw), 3.75rem);
}
.portfolio .portfolio_hero {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/portfolio/hero_new.jpg") no-repeat center 20%/cover;
}
.portfolio #portfolio-images {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem) 0;
  display: grid;
  gap: 1.5rem;
}
.portfolio #portfolio-images .image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 700px) {
  .portfolio #portfolio-images {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio #portfolio-images.cols-2-rows-1 {
    grid-template-rows: repeat(3, 100px);
    grid-template-areas: "one two" "one two" "one two";
  }
  .portfolio #portfolio-images.cols-2-rows-2 {
    grid-template-rows: repeat(5, 100px);
    grid-template-areas: "one two" "one two" "three two" "three four" "three four";
  }
  .portfolio #portfolio-images.cols-2-rows-3 {
    grid-template-rows: repeat(8, 100px);
    grid-template-areas: "one two" "one two" "three two" "three four" "three four" "five four" "five six" "five six";
  }
  .portfolio #portfolio-images.cols-2-rows-4 {
    grid-template-rows: repeat(11, 100px);
    grid-template-areas: "one two" "one two" "three two" "three four" "three four" "five four" "five six" "five six" "seven six" "seven eight" "seven eight";
  }
  .portfolio #portfolio-images.cols-2-rows-5 {
    grid-template-rows: repeat(14, 100px);
    grid-template-areas: "one two" "one two" "three two" "three four" "three four" "five four" "five six" "five six" "seven six" "seven eight" "seven eight" "nine eight" "nine ten" "nine ten";
  }
  .portfolio #portfolio-images.cols-2-rows-6 {
    grid-template-rows: repeat(17, 100px);
    grid-template-areas: "one two" "one two" "three two" "three four" "three four" "five four" "five six" "five six" "seven six" "seven eight" "seven eight" "nine eight" "nine ten" "nine ten" "eleven ten" "eleven twelve" "eleven twelve";
  }
  .portfolio #portfolio-images .image:nth-of-type(1) {
    grid-area: one;
  }
  .portfolio #portfolio-images .image:nth-of-type(2) {
    grid-area: two;
  }
  .portfolio #portfolio-images .image:nth-of-type(3) {
    grid-area: three;
  }
  .portfolio #portfolio-images .image:nth-of-type(4) {
    grid-area: four;
  }
  .portfolio #portfolio-images .image:nth-of-type(5) {
    grid-area: five;
  }
  .portfolio #portfolio-images .image:nth-of-type(6) {
    grid-area: six;
  }
  .portfolio #portfolio-images .image:nth-of-type(7) {
    grid-area: seven;
  }
  .portfolio #portfolio-images .image:nth-of-type(8) {
    grid-area: eight;
  }
  .portfolio #portfolio-images .image:nth-of-type(9) {
    grid-area: nine;
  }
  .portfolio #portfolio-images .image:nth-of-type(10) {
    grid-area: ten;
  }
  .portfolio #portfolio-images .image:nth-of-type(11) {
    grid-area: eleven;
  }
  .portfolio #portfolio-images .image:nth-of-type(12) {
    grid-area: twelve;
  }
}
@media (min-width: 1100px) {
  .portfolio #portfolio-images {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio #portfolio-images.cols-3-rows-1 {
    grid-template-rows: repeat(3, 120px);
    grid-template-areas: "one two three" "one two three" "one two three";
  }
  .portfolio #portfolio-images.cols-3-rows-2 {
    grid-template-rows: repeat(6, 120px);
    grid-template-areas: "one two three" "one two three" "one two three" "four two six" "four five six" "four five six";
  }
  .portfolio #portfolio-images.cols-3-rows-3 {
    grid-template-rows: repeat(9, 120px);
    grid-template-areas: "one two three" "one two three" "one two three" "four two six" "four five six" "four five six" "seven five nine" "seven eight nine" "seven eight nine";
  }
  .portfolio #portfolio-images.cols-3-rows-4 {
    grid-template-rows: repeat(12, 120px);
    grid-template-areas: "one two three" "one two three" "one two three" "four two six" "four five six" "four five six" "seven five nine" "seven eight nine" "seven eight nine" "ten eight twelve" "ten eleven twelve" "ten eleven twelve";
  }
}

.services {
  padding-top: clamp(0.00rem, calc(5.80rem + -10.91vw), 3.75rem);
}
.services .services_hero {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/services/services_hero.jpg") no-repeat center 35%/cover;
}
.services .your_day .your_day_text {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  max-width: 700px;
}
@media (min-width: 900px) {
  .services .your_day {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .services .your_day .your_day_images {
    display: grid;
    gap: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
  }
  .services .your_day .your_day_images .first {
    background: url("/images/services/smiling.jpg") no-repeat center top/cover;
  }
  .services .your_day .your_day_images .second {
    background: url("/images/services/dancing.jpg") no-repeat center top/cover;
  }
}
.services .questions_wrapper {
  background: #f8f8f8;
}
.services .questions_wrapper .your_questions {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.services .questions_wrapper .your_questions h2 {
  padding-bottom: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
}
.services .questions_wrapper .your_questions .questions {
  display: grid;
  gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
@media (min-width: 768px) {
  .services .questions_wrapper .your_questions {
    background: url("/images/icons/new-dark.svg") no-repeat center/cover;
    background-size: 70%;
  }
  .services .questions_wrapper .your_questions h2 {
    text-align: center;
  }
  .services .questions_wrapper .your_questions .questions {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem) clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
  }
}
.services .other_services {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.services .other_services h2 {
  padding-bottom: 30px;
}
.services .other_services .three_services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.services .other_services .three_services .service h3 {
  text-transform: uppercase;
  margin-top: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
}
.services .other_services .three_services .service .image {
  aspect-ratio: 16/9;
}
.services .other_services .three_services .service .lifestyle_image {
  background: url("/images/services/lifestyle.jpg") no-repeat center/cover;
}
.services .other_services .three_services .service .portraits_image {
  background: url("/images/services/other-services.jpg") no-repeat center top/cover;
}

.other_services_page {
  padding-top: 90px;
}
.other_services_page .intro {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  display: grid;
  gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.other_services_page .intro .text h1 {
  text-transform: uppercase;
  color: #233442;
}
.other_services_page .intro.lifestyle .text {
  grid-row: 2/3;
}
@media (min-width: 1000px) {
  .other_services_page .intro {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  }
  .other_services_page .intro .text h1 {
    margin-top: -1rem;
  }
  .other_services_page .intro.lifestyle .image:last-of-type {
    display: none;
  }
  .other_services_page .intro.lifestyle .text {
    grid-column: 2/3;
  }
}
.other_services_page .prices {
  background: #f8f8f8;
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
@media (min-width: 1500px) {
  .other_services_page .prices {
    background: #f8f8f8 url("/images/icons/background.svg") no-repeat 120% -300px;
  }
}
.other_services_page .prices .content {
  max-width: 620px;
}
.other_services_page .prices .content h2 {
  text-align: center;
  padding-bottom: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
}
.other_services_page .prices .content h3 {
  text-transform: uppercase;
  color: #233442;
  margin-bottom: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
.other_services_page .prices .content .site {
  padding-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.other_services_page .prices .content .bullet {
  margin-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.other_services_page .prices .content .bullet p {
  margin-top: 0;
}
.other_services_page .prices .content .under_bullet {
  padding-left: 2.5rem;
  margin-top: 0;
}

.packages {
  padding-top: clamp(0.00rem, calc(5.80rem + -10.91vw), 3.75rem);
}
.packages .packages_hero {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/packages/packages_hero.jpg") no-repeat center 35%/cover;
}
.packages .full .our-package .text {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  width: min(90%, 900px);
  margin-inline: auto;
  display: grid;
  gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.packages .full .our-package .text .title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.packages .full .our-package .text .subtitle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.packages .full .our-package .text .subtitle span {
  font-size: clamp(1.44rem, calc(1.31rem + 0.56vw), 1.76rem);
}
.packages .full .our-package .text .red {
  color: #A62E02;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}
.packages .full .our-package .text .bullet {
  display: flex;
  gap: 20px;
}
.packages .full .our-package .text .bullet .last_p {
  margin-bottom: 0;
}
.packages .full .our-package .text .bullet img {
  align-self: flex-start;
}
.packages .full .our-package .images {
  display: none;
}
@media (min-width: 900px) {
  .packages .full .our-package .images {
    display: grid;
    gap: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
    grid-template-rows: 1fr 1.3fr;
  }
  .packages .full .our-package .images .first {
    background: url("/images/packages/pizza.jpg") no-repeat center/cover;
  }
  .packages .full .our-package .images .second {
    background: url("/images/packages/motorcycle.jpg") no-repeat center/cover;
  }
}
@media (min-width: 900px) {
  .packages .full .our-package {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .packages .full .our-package .text {
    width: min(80%, 750px);
  }
}
.packages .full .optional-extras {
  background: #f8f8f8;
}
.packages .full .optional-extras .images {
  display: none;
}
@media (min-width: 900px) {
  .packages .full .optional-extras .images {
    display: grid;
    gap: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
    grid-template-rows: repeat(3, 1fr);
  }
  .packages .full .optional-extras .images .first {
    background: url("/images/packages/beers.jpg") no-repeat center/cover;
  }
  .packages .full .optional-extras .images .second {
    background: url("/images/packages/extras-2.jpg") no-repeat center/cover;
  }
  .packages .full .optional-extras .images .third {
    background: url("/images/packages/wall.jpg") no-repeat center 80%/cover;
  }
}
.packages .full .optional-extras .text {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  width: min(90%, 800px);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
.packages .full .optional-extras .text .subtitle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.packages .full .optional-extras .text .subtitle span {
  font-size: clamp(1.44rem, calc(1.31rem + 0.56vw), 1.76rem);
}
.packages .full .optional-extras .text .red {
  color: #A62E02;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}
.packages .full .optional-extras .text span {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}
.packages .full .optional-extras .text .bullet {
  text-align: left;
  display: flex;
  gap: 20px;
}
.packages .full .optional-extras .text .bullet img {
  align-self: flex-start;
}
.packages .full .optional-extras .text .last_para {
  padding-bottom: 0;
}
.packages .full .optional-extras .img {
  display: none;
}
.packages .full .optional-extras .img .imagelogo {
  max-width: 500px;
}
@media (min-width: 900px) {
  .packages .full .optional-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .packages .full .optional-extras .text {
    width: min(80%, 750px);
  }
}

.prices_page {
  margin: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  padding-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.prices_page .max_width {
  text-align: center;
  margin-bottom: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
.prices_page .max_width h1 {
  font-size: clamp(2.07rem, calc(1.75rem + 1.63vw), 3.05rem);
}
.prices_page .max_width p {
  margin-top: 0;
  max-width: 750px;
  margin: 0 auto;
}
.prices_page .max_width a {
  color: #A62E02;
}

.blog_page {
  padding-top: clamp(0.00rem, calc(5.80rem + -10.91vw), 3.75rem);
}
.blog_page .blog_hero {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/blog/hero.jpg") no-repeat 50% 35%/cover;
}
.blog_page .blog_listing {
  padding: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.blog_page .blog_listing .grid_wrapper {
  display: grid;
  gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .blog_page .blog_listing .grid_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog_page .blog_listing .grid_wrapper div.column {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.blog_page .blog_listing .grid_wrapper div.column a.blog_post {
  display: block;
  text-decoration: none;
}
@media (min-width: 768px) {
  .blog_page .blog_listing .grid_wrapper div.column a.blog_post:last-child {
    padding-bottom: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
    border-bottom: 2px solid #233442;
  }
}
.blog_page .blog_listing .grid_wrapper div.column a.blog_post h3 {
  line-height: 2.1rem;
}
.blog_page .blog_listing .grid_wrapper div.column a.blog_post p {
  color: #233442;
  padding-bottom: 1rem;
}
.blog_page .blog_listing .grid_wrapper div.column a.blog_post span.btn {
  display: inline-block;
}
.blog_page .blog_listing .grid_wrapper div.column:nth-child(3) a.blog_post:last-child {
  border: none;
}

.breadcrumb {
  padding: clamp(7.5rem, calc(2.89rem + 8.05vw), 10.73rem) 0 0 0;
}
.breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  padding-left: 0;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb ul li {
  color: #adadad;
}
.breadcrumb ul li a {
  font-weight: 700;
  color: #A62E02;
}
.breadcrumb ul li a:hover {
  color: #233442;
}
.breadcrumb ul .breadcrumb_arrow {
  font-size: 1.5rem;
  pointer-events: none;
  color: #000000;
}

.blog {
  padding: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  margin-inline: auto;
}
.blog .page_header {
  margin-bottom: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  width: min(90%, 700px);
  margin-inline: auto;
}
.blog .page_header h1 {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  color: #233442;
  text-transform: uppercase;
  padding-bottom: 0.2rem;
  line-height: 1.1;
  font-size: clamp(2.07rem, calc(1.75rem + 1.63vw), 3.05rem);
}
.blog .page_header p {
  margin: 0;
  color: #A62E02;
}
.blog .back_to_blog {
  text-decoration: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  color: #A62E02;
}
.blog .back_to_blog:hover {
  color: #233442;
}
.blog .back_to_blog p {
  margin-top: 0;
}
.blog .block {
  margin-bottom: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
.blog .block.text {
  width: min(90%, 700px);
  margin-inline: auto;
}
.blog .block.text h2 {
  margin-top: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
.blog .block.text h3, .blog .block.text h4 {
  margin-top: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  color: #233442;
  text-transform: uppercase;
}
.blog .block.text a {
  color: #A62E02;
}
.blog .block.text a:hover {
  color: #233442;
}
.blog .block.text p {
  margin-top: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
}
.blog .block.youtube {
  width: min(90%, 700px);
  margin-inline: auto;
}
.blog .block.youtube .video_iframe iframe {
  width: 100%;
  height: 395px;
}
.blog .block.quote {
  width: min(90%, 700px);
  margin-inline: auto;
  background: url("/images/icons/quote.svg") no-repeat top left/contain;
  background-size: 2.5rem;
}
.blog .block.quote p {
  padding: 2.8rem 0 0.2rem 0;
  font-size: 1.3rem;
  line-height: 1.3;
  font-size: clamp(1.20rem, calc(1.11rem + 0.36vw), 1.41rem);
}
.blog .block.quote .author-role {
  color: #A62E02;
  font-size: clamp(0.83rem, calc(0.81rem + 0.12vw), 0.90rem);
}
.blog .block.file {
  width: min(90%, 700px);
  margin-inline: auto;
}
.blog .block.file a {
  text-decoration: none;
}
.blog .block.file .file_wrapper {
  background: #A62E02 url("/images/icons/download.svg") no-repeat 96% center/contain;
  background-size: 1.6rem;
  padding: 1rem 1.5rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog .block.file .file_wrapper .filesize {
  padding-right: 53px;
  max-width: 138px;
  text-align: center;
}
.blog .block.image {
  width: min(90%, 1280px);
  margin-inline: auto;
}
.blog .block.image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.blog .block.gallery {
  width: min(90%, 1280px);
  margin-inline: auto;
  position: relative;
}
.blog .block.gallery div.images {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
@media (min-width: 600px) {
  .blog .block.gallery div.images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .blog .block.gallery div.images {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog .block.gallery div.images a.image {
  display: inline-block;
  cursor: pointer;
}
.blog .block.gallery div.images a.image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.contact {
  padding-top: clamp(0.00rem, calc(5.80rem + -10.91vw), 3.75rem);
}
.contact .contact_hero {
  background: linear-gradient(0deg, rgba(35, 52, 66, 0.5), rgba(35, 52, 66, 0.5)), url("/images/contact/contact_hero.jpg") no-repeat center/cover;
}
.contact .contact_content .contact_content_inner {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.contact .contact_content .contact_content_inner h2 {
  padding-bottom: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  text-align: center;
}
.contact .contact_content .contact_content_inner .make_an_enquiry {
  padding: 0 0 clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
}
.contact .contact_content .contact_content_inner .make_an_enquiry #errors {
  margin-bottom: 2rem;
}
.contact .contact_content .contact_content_inner .make_an_enquiry .confirmation {
  padding: 0 0 1rem 0;
  color: #00c600;
}
.contact .contact_content .contact_content_inner .make_an_enquiry .form {
  margin-top: -30px;
}
.contact .contact_content .contact_content_inner .make_an_enquiry h2 {
  padding-bottom: 0;
}
.contact .contact_content .contact_content_inner .make_an_enquiry p {
  padding-bottom: 3rem;
}
.contact .contact_content .contact_content_inner .make_an_enquiry a {
  color: #A62E02;
}
.contact .contact_content .contact_content_inner .get_in_touch {
  max-width: 245px;
  margin-inline: auto;
}
.contact .contact_content .contact_content_inner .get_in_touch p span {
  font-weight: 700;
}
.contact .contact_content .contact_content_inner .get_in_touch p a {
  color: #A62E02;
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons {
  padding-top: 1.5rem;
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .icon {
  background-color: #233442;
}
@media (min-width: 768px) {
  .contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .facebook:hover {
    background-color: #3b5999;
  }
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .facebook i {
  color: #ffffff;
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .tik-tok:hover {
  background-color: #000;
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .tik-tok i {
  color: #ffffff;
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .threads:hover {
  background-color: #000;
}
.contact .contact_content .contact_content_inner .get_in_touch .social_media_icons .instagram i {
  background: #ffffff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact ::placeholder {
  color: #b1b1b1;
}
@media (min-width: 900px) {
  .contact .contact_content {
    background-size: 50%;
  }
  .contact .contact_content .contact_content_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact .contact_content .contact_content_inner h2 {
    text-align: left;
  }
  .contact .contact_content .contact_content_inner .make_an_enquiry {
    padding: 0;
  }
  .contact .contact_content .contact_content_inner .make_an_enquiry .form {
    margin-left: -15%;
  }
  .contact .contact_content .contact_content_inner .make_an_enquiry .contact_form {
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
  .contact .contact_content .contact_content_inner .make_an_enquiry .contact_form .fieldblock {
    margin-bottom: 0;
  }
  .contact .contact_content .contact_content_inner .make_an_enquiry .contact_form .desktop_padding {
    margin-top: 3rem;
  }
  .contact .contact_content .contact_content_inner .get_in_touch {
    max-width: 600px;
    justify-self: end;
  }
}
@media (min-width: 1200px) {
  .contact .contact_content .contact_content_inner .get_in_touch {
    justify-self: center;
  }
}
@media (min-width: 900px) {
  .contact .new_form {
    margin: -40px 0 0 -15%;
  }
}

#privacy-page .wrapper {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem) 0;
  width: min(90%, 800px);
  margin: 0 auto;
}
#privacy-page .wrapper h1 {
  text-transform: uppercase;
  color: #233442;
  margin-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
}
#privacy-page .wrapper h2 {
  margin-top: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}

.form-styled-container-padding {
  padding: 0 !important;
}

.form-default-container {
  padding: 0 !important;
}

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