/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Animation */
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.site-header {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: .3s; }
  .site-header:hover, .site-header:focus, .site-header.active {
    background: #000; }
  .site-header .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .site-header .logo img {
    max-width: 7rem;
    height: auto; }
  .site-header #mobile-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 0;
    background: none;
    cursor: pointer;
    -webkit-appearance: none;
    padding: 0;
    margin: 0; }
    .site-header #mobile-button iconify-icon {
      color: rgba(255, 255, 255, 0.9);
      background: #000;
      padding: 0.3rem; }
    @media (min-width: 800px) {
      .site-header #mobile-button {
        display: none; } }
  .site-header #close-button {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer; }
    .site-header #close-button iconify-icon {
      color: rgba(255, 255, 255, 0.9); }
    .site-header #close-button:hover .site-header #close-button:focus iconify-icon {
      color: #BAA790; }

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 1rem;
  transition: .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0; }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transition: .3s; }
    #mobile-menu.active .btn {
      opacity: 1;
      visibility: visible;
      transition-delay: 1s; }
    #mobile-menu.active .menu li {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .3s; }
      #mobile-menu.active .menu li:nth-child(2) {
        transition-delay: .5s; }
      #mobile-menu.active .menu li:nth-child(3) {
        transition-delay: .7s; }
  #mobile-menu .menu-main-menu-container {
    width: 100%; }
  #mobile-menu .menu {
    text-align: center; }
    #mobile-menu .menu li {
      opacity: 0;
      transform: translateY(1rem);
      transition: .3s; }
    #mobile-menu .menu li a {
      display: block;
      padding: 0.5rem 0;
      font-weight: 400;
      transition: .3s; }
      #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
        color: #BAA790; }
  #mobile-menu .btn {
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden; }

#main-menu {
  display: none; }
  @media (min-width: 800px) {
    #main-menu {
      display: flex; } }
  #main-menu .btn {
    background: none;
    padding: 0.5rem 1rem; }
    #main-menu .btn:hover, #main-menu .btn:focus {
      background: #BAA790;
      color: #000; }
  #main-menu .menu {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center; }
  #main-menu .menu li {
    position: relative; }
    #main-menu .menu li a {
      font-size: 1rem;
      font-weight: 400;
      text-transform: uppercase;
      transition: .3s; }
      #main-menu .menu li a:hover, #main-menu .menu li a:focus {
        color: #BAA790; }

.menu {
  list-style-type: none;
  padding-left: 0;
  top: 0; }
  .menu li {
    padding: 0.5rem 0; }
    @media (min-width: 800px) {
      .menu li {
        display: inline;
        padding: 0.5rem 1rem; } }
  .menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none; }
    .menu a:hover {
      color: #000; }

.full-header {
  background: #000;
  position: relative; }

.cta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #BAA790; }
  .cta .image {
    width: 100%;
    height: 400px; }
    @media (min-width: 800px) {
      .cta .image {
        width: 50%;
        height: 500px; } }
    .cta .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  .cta .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem; }
    @media (min-width: 800px) {
      .cta .content {
        width: 50%; } }
    .cta .content span {
      text-transform: uppercase;
      letter-spacing: 0.2rem;
      font-size: 0.8rem; }
    .cta .content h2 {
      font-size: 2rem;
      line-height: 2.3rem;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .cta .content h2 {
          font-size: 2.5rem;
          line-height: 3rem; } }
      @media (min-width: 992px) {
        .cta .content h2 {
          font-size: calc(2.5rem + 0.5rem);
          line-height: calc(3rem + 0.2rem); } }
    .cta .content p {
      width: 100%;
      max-width: 800px; }
      .cta .content p a {
        color: #000; }
    .cta .content .buttons {
      margin-top: 1rem;
      display: flex; }
    .cta .content .btn:nth-child(2) {
      background: rgba(255, 255, 255, 0.9);
      color: #000;
      margin-left: 0.5rem; }
      .cta .content .btn:nth-child(2):hover, .cta .content .btn:nth-child(2):focus {
        background: #000;
        color: rgba(255, 255, 255, 0.9); }

.site-footer {
  width: 100%;
  background: #000;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem; }
  @media (min-width: 800px) {
    .site-footer {
      flex-direction: row;
      justify-content: space-between;
      text-align: left; }
      .site-footer .right {
        text-align: right; } }
  .site-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration-color: transparent; }

.slider {
  width: 100%;
  height: calc(100svh);
  position: relative; }
  .slider .slider-container {
    position: relative; }
  .slider .slide {
    width: 100%;
    height: calc(100svh);
    position: relative;
    position: relative; }
    .slider .slide .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: flex-end;
      justify-content: center; }
      .slider .slide .overlay .container {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        padding: 3rem 2rem; }
        .slider .slide .overlay .container span {
          color: #BAA790;
          text-transform: uppercase;
          letter-spacing: 0.2rem; }
        .slider .slide .overlay .container .title {
          font-size: 2rem;
          line-height: 2.3rem;
          color: rgba(255, 255, 255, 0.9);
          padding: 0;
          margin: 0;
          font-family: "playfair-display", serif;
          max-width: 600px; }
          @media (min-width: 800px) {
            .slider .slide .overlay .container .title {
              font-size: calc(3rem + 0.2vw);
              line-height: 3.5rem; } }
        .slider .slide .overlay .container .buttons {
          display: flex;
          margin-top: 3rem; }
          .slider .slide .overlay .container .buttons .btn:nth-child(2) {
            background: rgba(255, 255, 255, 0.9);
            color: #000;
            margin-left: 0.5rem; }
            .slider .slide .overlay .container .buttons .btn:nth-child(2):hover, .slider .slide .overlay .container .buttons .btn:nth-child(2):focus {
              background: #000;
              color: rgba(255, 255, 255, 0.9); }
    .slider .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.slick-arrows-two {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: none; }
  @media (min-width: 576px) {
    .slick-arrows-two {
      display: flex; } }
  .slick-arrows-two button {
    cursor: pointer; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: rgba(255, 255, 255, 0.9); }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #000;
    font-size: 1.2rem; }
  .blog-post p {
    color: #000; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #000; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #000;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box;
  font-family: "work-sans", sans-serif;
  background: #000; }

* {
  box-sizing: inherit; }

h1, h2, h3 {
  font-family: "playfair-display", serif; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

p {
  font-size: 1.1rem;
  line-height: 1.6rem; }

.btn {
  background: #000;
  border: 1px solid #fff;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: transparent;
  transition: .3s; }
  .btn:hover, .btn:focus {
    background: rgba(255, 255, 255, 0.9);
    color: #000; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */
.home-text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem; }
  @media (min-width: 800px) {
    .home-text {
      padding: 8rem 2rem; } }
  .home-text span {
    color: #BAA790;
    text-transform: uppercase;
    letter-spacing: 0.2rem; }
  .home-text h1, .home-text h2 {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    margin: 0 0 2rem 0; }
    @media (min-width: 800px) {
      .home-text h1, .home-text h2 {
        font-size: calc(3rem + 0.5vw);
        line-height: calc(3.5rem + 0.2vw); } }
  @media (min-width: 800px) {
    .home-text h2 {
      font-size: 2.5rem; } }
  .home-text p {
    color: rgba(255, 255, 255, 0.8); }
  .home-text .buttons {
    margin-top: 1rem;
    display: inline-flex; }
    .home-text .buttons .btn {
      margin: 0 1rem; }
      .home-text .buttons .btn:nth-child(2) {
        background: rgba(255, 255, 255, 0.9);
        color: #000; }
        .home-text .buttons .btn:nth-child(2):hover, .home-text .buttons .btn:nth-child(2):focus {
          background: #BAA790;
          color: #000; }

.content-blocks {
  width: 100%;
  background: #000; }
  .content-blocks .box {
    width: 100%;
    background: #000; }
    .content-blocks .box:nth-child(odd) {
      background: #111; }
    @media (min-width: 800px) {
      .content-blocks .box:nth-child(odd) .container {
        flex-direction: row-reverse; }
        .content-blocks .box:nth-child(odd) .container .image:after {
          top: auto;
          left: -1.5rem;
          right: auto;
          bottom: -1.5rem; }
        .content-blocks .box:nth-child(odd) .container .content {
          padding-left: 0;
          padding-right: 5rem; } }
    .content-blocks .box .container {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 2rem;
      display: flex;
      flex-wrap: wrap; }
      @media (min-width: 800px) {
        .content-blocks .box .container {
          padding: 4rem 2rem 6rem 2rem; } }
      .content-blocks .box .container .image {
        width: 100%;
        height: 400px;
        margin: 0;
        position: relative;
        z-index: 1;
        border: 2px solid rgba(255, 255, 255, 0.9); }
        .content-blocks .box .container .image:after {
          content: ' ';
          position: absolute;
          width: 100%;
          height: 100%;
          top: 1rem;
          left: 1rem;
          border: 2px solid #BAA790;
          z-index: -1; }
        @media (min-width: 800px) {
          .content-blocks .box .container .image {
            width: 40%;
            height: 500px; }
            .content-blocks .box .container .image:after {
              top: 1.5rem;
              left: 1.5rem; } }
        .content-blocks .box .container .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .content-blocks .box .container .content {
        margin-top: 3rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; }
        @media (min-width: 800px) {
          .content-blocks .box .container .content {
            width: 60%;
            padding-left: 5rem; } }
        .content-blocks .box .container .content span {
          color: #BAA790;
          text-transform: uppercase;
          letter-spacing: 0.2rem; }
        .content-blocks .box .container .content h2 {
          color: #FFF;
          font-size: 2.5rem;
          line-height: 3rem;
          padding: 0;
          margin: 0; }
          @media (min-width: 800px) {
            .content-blocks .box .container .content h2 {
              font-size: calc(3rem + 0.5vw);
              line-height: calc(3.5rem + 0.5vw); } }
        .content-blocks .box .container .content p {
          color: rgba(255, 255, 255, 0.9);
          margin-top: 2rem; }
        .content-blocks .box .container .content .btn {
          margin-top: 1rem;
          display: inline-block; }

.home-fleet {
  width: 100%;
  background: #fff url("/cgl/wp-content/uploads/2024/11/patterns-1.png");
  padding: 4rem 0;
  background-size: cover;
  background-repeat: repeat; }
  @media (min-width: 800px) {
    .home-fleet {
      background-size: 100%; } }
  .home-fleet .container {
    padding: 0;
    text-align: center; }
    @media (min-width: 600px) {
      .home-fleet .container {
        padding: 0 1rem; } }
    .home-fleet .container span {
      text-transform: uppercase;
      letter-spacing: 0.2rem;
      font-size: 0.8rem;
      color: #BAA790; }
    .home-fleet .container h2 {
      font-size: 2.5rem;
      line-height: 3rem;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .home-fleet .container h2 {
          font-size: calc(2.5rem + 0.5rem);
          line-height: calc(3rem + 0.5rem); } }

.cars {
  position: relative;
  margin-top: 4rem; }
  .cars .container {
    position: relative; }
    .cars .container .box {
      background: rgba(255, 255, 255, 0.9);
      padding: 2rem 1rem 1rem 1rem;
      border: 1px solid #eee;
      margin: 0 1rem;
      border-radius: 8px; }
      .cars .container .box img {
        width: 100%;
        height: auto; }
      .cars .container .box h3 {
        font-family: "work-sans", sans-serif;
        font-weight: 400;
        text-transform: uppercase; }
      .cars .container .box .stats {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 1rem 0; }
        .cars .container .box .stats span {
          color: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          margin: 0 1rem; }
          .cars .container .box .stats span iconify-icon {
            margin-right: 0.2rem; }
      .cars .container .box .btn {
        display: block;
        margin-top: 1rem; }
        .cars .container .box .btn:hover, .cars .container .box .btn:focus {
          background: #BAA790;
          color: #000; }
  .cars .slick-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .cars .slick-arrows button {
      appearance: none;
      background: #000;
      border: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      transition: .3s; }
      .cars .slick-arrows button:hover, .cars .slick-arrows button:focus {
        background: #BAA790; }
        .cars .slick-arrows button:hover iconify-icon, .cars .slick-arrows button:focus iconify-icon {
          color: #000; }
      .cars .slick-arrows button iconify-icon {
        color: rgba(255, 255, 255, 0.9);
        transition: .3s; }

.page-header {
  width: 100%;
  height: 600px;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3); }

.gallery-page {
  background: rgba(255, 255, 255, 0.9) url("/cgl/wp-content/uploads/2024/11/patterns-1.png");
  padding: 4rem 0; }
  .gallery-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem; }
    .gallery-page .container h1 {
      font-size: 2rem;
      padding: 0;
      margin: 0;
      display: block; }
      @media (min-width: 800px) {
        .gallery-page .container h1 {
          font-size: calc(3rem + 0.5vw); } }
    .gallery-page .container p {
      margin: 1rem 0 2rem 0; }
    .gallery-page .container .wp-block-gallery {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 2rem; }
      @media (min-width: 450px) {
        .gallery-page .container .wp-block-gallery {
          grid-template-columns: 1fr 1fr; } }
      @media (min-width: 800px) {
        .gallery-page .container .wp-block-gallery {
          grid-template-columns: repeat(3, 1fr); } }
      .gallery-page .container .wp-block-gallery .wp-block-image {
        width: 100% !important;
        height: 300px;
        border: 5px solid transparent;
        transition: .3s; }
        .gallery-page .container .wp-block-gallery .wp-block-image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
        .gallery-page .container .wp-block-gallery .wp-block-image:hover, .gallery-page .container .wp-block-gallery .wp-block-image:focus {
          border-color: #BAA790; }

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  height: 100%;
  z-index: 101;
  background-color: #000;
  transition: .5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden; }
  .transition img {
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0;
    transform: translateY(1rem);
    transition: .3s; }
  .transition.is-active {
    opacity: 1;
    visibility: visible; }
    .transition.is-active img {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .3s; }

.hero {
  width: 100%;
  height: 100svh;
  position: relative; }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end; }
    .hero .overlay .container {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 3rem 2rem; }
      .hero .overlay .container span {
        color: #BAA790;
        text-transform: uppercase;
        letter-spacing: 0.2rem;
        font-size: 1.1rem; }
      .hero .overlay .container h1 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
        padding: 0;
        margin: 0;
        font-family: "playfair-display", serif;
        max-width: 600px; }
        @media (min-width: 800px) {
          .hero .overlay .container h1 {
            font-size: calc(4rem + 0.2vw);
            line-height: 4rem; } }
      .hero .overlay .container p {
        margin: 2rem 0 3rem 0;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px; }

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