/** Shopify CDN: Minification failed

Line 97:1 Expected "}" to go with "{"

**/

.sanctuary-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
 
.sanctuary-content {
  flex: 1;
}
 
.sanctuary-content h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 0px;
    margin-bottom: 30px;
}
 
.sanctuary-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #fff;
}
 
.sanctuary-btn {
 font-weight: 600;
font-size: 18px;
line-height: 18px;
margin-top:24px;
}
 
.sanctuary-images {

  flex: 1.2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

}
 
.sanctuary-images img {

  width: 100%;

  height: 380px;

  object-fit: cover;

  border-radius: 0px;

}
 
/* RESPONSIVE */
@media (max-width: 1199px) {
  .sanctuary-content h2 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 0;
}
.sanctuary-btn {
    font-size: 16px;
}
@media (max-width: 991px) {
 .sanctuary-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}
.sanctuary-images {
    width: 100%;
    grid-template-columns: 1fr 1fr;
}
}
 @media (max-width: 767px){
  .sanctuary-images img {
    height: 200px;
  }

}