
/*Xceed tray form content*/
/*xceed banner style*/

.xceed-page{
    background-color:white;
    margin-top:-1px;
}

.Xceed-banner {
    width: 100%; 
    height: auto;
    position: relative;
    overflow: hidden; 
  }
  
  
  .Xceed-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius:5px;
  }
  
  /* xtray content text */
  /* xtray body */
  .xtray-text {
    font-family: 'Lato', sans-serif; 
    padding:0% 7.5% 8% 7.5%; 
  }
  
  .xtray-text > .xtray-paragraph {
    font-size: 18px; 
    line-height: 1.6; 
    color: #555555; 
    margin-bottom: 20px; 
  }
  
  
  @media (min-width: 1080px) {
    .xtray-text {
      padding-left: 15vw; 
      padding-right: 15vw; 
    }
  
    .xtray-subtitle {
      padding-left: 20vw; 
      padding-right: 20vw; 
    }
  }
  
  .xtray-subtitle{
      padding-top:50px;
      padding-bottom:50px;
  }
  
  .xtray-heading {
      text-align: center;
      font-size: 52px;
      font-family: lato, sans-serif;
      font-weight: 700;
      line-height:1;
  } 

/*intro grid*/
.details-grid * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding:0% 7.5% 8% 7.5%;
  }
  
  .details-card {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border:1px solid #9a9a9a;
    border-radius:5px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  
  .details-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }
  
  .details-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .details-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
  }
  
  .details-description {
    font-size: 16px;
    color: #555;
    font-family: 'Lato', sans-serif;
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .details-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  
    .details-image {
      height: 200px;
    }
  
    .details-title {
      font-size: 18px;
    }
  
    .details-description {
      font-size: 14px;
    }
  }
  
  @media (max-width: 768px) {
    .details-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .details-image {
      height: 180px;
    }
  
    .details-title {
      font-size: 18px;
    }
  
    .details-description {
      font-size: 14px;
    }
  }
  

/*config cr*/
.config-area {
    padding:0%;
    background-color:#efefef;
}
.config-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom:40px;
}

input[type="radio"] {
    display: none;
}

.config-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.config-image {
    flex: 1 0 100%;
    width: 100%;
    height: auto;
}

.config-image img {
    width: 100%;
    height: auto;
}

#config-1:checked ~ .config-images {
    transform: translateX(0%);
}

#config-2:checked ~ .config-images {
    transform: translateX(-100%);
}

#config-3:checked ~ .config-images {
    transform: translateX(-200%);
}

#config-4:checked ~ .config-images {
    transform: translateX(-300%);
}

.config-nav {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    background-color: #000000;
    margin-top:40px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
}

.config-nav-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
}

.config-nav-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #da2128; 
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.config-nav-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.config-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    color: #fff;
}

#config-1:checked ~ .config-nav label[for="config-1"]::before,
#config-2:checked ~ .config-nav label[for="config-2"]::before,
#config-3:checked ~ .config-nav label[for="config-3"]::before,
#config-4:checked ~ .config-nav label[for="config-4"]::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 1024px) {
    .config-nav-item {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .config-nav-item {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .config-image img {
        height: auto; 
    }
} 

/*ETB-info-grid*/

.etb-x-container * {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

.etb-info {
    width: 100%; 
    max-width: none; 
    margin: 0 auto; 
}

.etb-grid {
    display: flex;
    align-items: stretch;
    margin-bottom: 0; 
}

.etb-image,
.etb-text {
    flex: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.etb-image {
    overflow: hidden; 
}

.etb-image img {
    width: 100%; 
    height: auto; 
    display: block; 
}

.etb-text {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9)); 
    color: #000; 
    flex-direction: column; 
    justify-content: center;
}

.etb-text .etb-heading {
    font-size: 24px;  
    font-weight: bold; 
    margin-bottom: 10px; 
}

.etb-text .etb-paragraph {
    font-size: 18px;  
    padding-left: 80px;  
    padding-right: 80px;
}


@media (max-width: 1024px) {  
    .etb-text .etb-paragraph {
        font-size: 18px;  
        padding-left: 40px; 
        padding-right: 40px;
    }
}

@media (max-width: 768px) {  
    .etb-grid {
        flex-direction: column; 
    }

    .etb-grid:nth-child(odd) .etb-image {
        order: 1; 
    }
    .etb-grid:nth-child(odd) .etb-text {
        order: 2; 
    }
    .etb-grid:nth-child(even) .etb-image {
        order: 1; 
    }
    .etb-grid:nth-child(even) .etb-text {
        order: 2;
    }
    
    .etb-text {
        padding: 20px; 
    }

    .etb-text .etb-paragraph {
        padding-left: 30px; 
        padding-right: 30px;
    }
}
  
/*ETB-xform*/
.xform-area{
    padding:2.5% 7.5% 2.5% 7.5%;
    background-color:#f2f2f2;
}

.xform-section {
    margin-bottom: 20px; 
    margin-top:40px;
    background-color: #f8f8f8; 
    border-radius: 0px; 
    padding: 15px; 
    overflow:hidden;
}

.x-centered-title {
    text-align: center; 
    padding: 30px
}

.xform-row {
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 15px; 
}

.xform-group {
    flex: 1; 
    margin-right: 10px; 
}

.xform-group:last-child {
    margin-right: 0; 
}

.form-control {
    border: 2px solid #f2f2f2; 
    padding: 10px; 
    border-radius: 5px; 
    transition: border-color 0.3s, box-shadow 0.3s; 
    font-size: 14px; 
}

.form-control:focus {
    border-color: #000; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
    outline: none; 
}

.btn-black {
    background-color: #000; 
    color: #fff; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 0; 
    cursor: pointer; 
    transition: background-color 0.3s, transform 0.2s; 
    font-size: 16px; 
    font-weight: bold; 
}

.btn-black:hover {
    background-color: #444; 
    transform: translateY(-2px); 
}


@media (max-width: 768px) {
    .xform-row {
        flex-direction: column; 
    }

    .xform-group {
        margin-right: 0; 
        margin-bottom: 10px; 
    }
}

/*sub-gallery*/
.sub-gallery {
    padding: 5% 7.5% 2.5% 7.5%;
    background: #f2f2f2; 
    color: #000; 
}

.sub-gallery-title {
    text-align: center;
    font-size: 36px; 
    font-weight: bold;
    margin-bottom: 30px;
    color: #333333; 
    font-family: 'Lato', sans-serif; 
}

.sub-gallery-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}

.sub-gallery-item {
    flex: 0 0 calc(25% - 20px); 
    position: relative; 
    overflow: hidden; 
    background-color: #f9f9f9; 
}

.sub-gallery-item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}


@media (max-width: 1200px) {
    .sub-gallery-item {
        flex: 0 0 calc(33.33% - 20px); 
    }
}

@media (max-width: 768px) {
    .sub-gallery-item {
        flex: 0 0 calc(50% - 20px); 
    }
}

@media (max-width: 480px) {

    .sub-gallery-item {
        flex: 0 0 100%; 
        height: auto; 
    }
}