@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #c2c9d2;
}

::-moz-selection {
  background: #07c233;
  color: #fff;
}

::selection {
  background: #07c233;
  color: #fff;
}

p {
  color: #ccc;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 1.9;
}

.blue-btn {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(132deg, #383c93 0%, #07c233 100%);
  padding: 15px 30px;
  outline: none;
  position: relative;
  overflow: hidden;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 6px;
  transition: 0.5s all;
}
.blue-btn.border-btn-prime {
  border: 2px solid #383c93;
  background: transparent;
}
.blue-btn.border-btn-prime:hover {
  color: #fff;
  background: #383c93;
}
.blue-btn::before {
  content: "";
  width: 50%;
  height: 120%;
  background: rgba(44, 44, 44, 0.3);
  position: absolute;
  top: -10%;
  left: -50%;
  transform: skew(-42deg);
  opacity: 0;
}
.blue-btn:hover::before {
  transition: 0.5s;
  top: 10%;
  opacity: 1;
  left: 120%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 120px;
}
nav .nav-links ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
nav .nav-links ul li a {
  text-decoration: none;
  color: #383c93;
}
nav .nav-links ul li a.active {
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  nav .nav-links {
    position: absolute;
    top: -102%;
    left: 0;
    background: rgba(7, 194, 51, 0.8117647059);
    height: 100%;
    width: 100%;
    z-index: 10;
    display: grid;
    place-items: center;
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
    transition: 0.2s all;
  }
  nav .nav-links ul {
    flex-direction: column;
    align-items: center;
  }
  nav .nav-links ul li a {
    color: #fff;
  }
  nav .nav-links.active {
    top: 0;
  }
}
nav .logo {
  z-index: 12;
  transition: 0.1s all;
}
nav .logo img {
  width: 200px;
}
nav .logo.whiteLogo {
  mix-blend-mode: color-dodge;
  filter: invert(2);
}
@media only screen and (max-width: 444px) {
  nav .logo img {
    width: 160px;
  }
}
nav .lang .toggler {
  cursor: pointer;
  z-index: 12;
  margin-right: 8px;
  display: none;
}
nav .lang .toggler i {
  font-size: 18px;
  color: #383c93;
}
nav .lang select {
  border: 2px solid #383c93;
  padding: 10px 10px 10px 20px;
  outline: none;
  border-radius: 6px;
  color: #383c93;
  font-weight: 500;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
nav .lang .dropdown button {
  background-color: #253849;
  min-width: 130px;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  justify-content: space-evenly;
}
nav .lang .dropdown button img {
  margin: 0 5px 0 0;
  width: 28px;
}
nav .lang .dropdown button .arrow-down {
  width: 0;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #fff transparent transparent transparent;
  margin: 0 0 0 5px;
}
nav .lang .dropdown button:hover {
  cursor: pointer;
  background-color: #3c5b77;
}
@media only screen and (max-width: 576px) {
  nav .lang .dropdown button {
    font-size: 12px;
    min-width: 100px;
    height: 35px;
  }
  nav .lang .dropdown button img {
    width: 22px;
  }
}
nav .lang .dropdown .dropdown-content {
  display: none;
  position: absolute;
  margin: 1px 0 0 0;
  padding: 0;
  background-color: #f5f5f5;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 15;
  border-radius: 5px;
  overflow-y: scroll;
  max-height: 315px;
  right: 0;
  animation: slideIn 0.3s ease-out;
}
nav .lang .dropdown .dropdown-content li {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  justify-content: end;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
nav .lang .dropdown .dropdown-content li img {
  width: 28px;
  margin: 0 20px 0px 20px;
}
nav .lang .dropdown .dropdown-content li:hover {
  background-color: #f1f1f1;
  cursor: pointer;
  color: blue;
  border-radius: 5px;
}
nav .lang .dropdown:focus-within .dropdown-content {
  display: block;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 768px) {
  nav .lang select {
    display: none;
  }
  nav .lang .toggler {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  nav {
    padding: 25px 60px;
  }
}
@media only screen and (max-width: 576px) {
  nav {
    padding: 18px 20px;
  }
}
@media only screen and (max-width: 444px) {
  nav {
    padding: 14px 8px;
  }
}

.heading h2 {
  font-weight: 500;
}
.heading h2 span {
  font-weight: 600;
  color: #383c93;
  text-underline-offset: 6px;
}

header {
  margin-top: 0.5em;
}
header .container .bg-image {
  background-image: url(../images/image-6.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
header .container .bg-image.gallery-bg {
  background-image: url(../images/gallery-bg.jpg);
  background-attachment: local;
}
header .container .bg-image .row {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.662745098), rgba(255, 255, 255, 0.8));
  padding: 6em 2em;
}
header .container .bg-image .row .colm h1 {
  background-color: #f4d03f;
  background-image: linear-gradient(132deg, #383c93 0%, #07c233 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
header .container .bg-image .row .colm h1 span {
  letter-spacing: 1px;
  font-weight: 700;
}
header .container .bg-image .row .colm h1 p {
  font-size: 1.25em;
}
@media only screen and (max-width: 768px) {
  header .container .bg-image .row .colm h1 p {
    font-size: 1em;
  }
}
@media only screen and (max-width: 576px) {
  header .container .bg-image .row .colm h1 p {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 768px) {
  header .container .bg-image {
    background-attachment: local;
  }
}
@media only screen and (max-width: 576px) {
  header .container .bg-image .row {
    padding: 3em 1em;
  }
}
@media only screen and (max-width: 450px) {
  header .container {
    padding: 0;
  }
  header .container .bg-image {
    border-radius: 0;
  }
  header .container .bg-image .row {
    padding: 2em 0.5em;
  }
}

.master-bedroom {
  padding: 3em 0;
}
.master-bedroom .container .row .video {
  background: url(../images/main-bed-img.jpg);
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  display: grid;
  place-items: center;
}
.master-bedroom .container .row .video .center-icon {
  background: #07c233;
  padding: 20px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.master-bedroom .container .row .video .center-icon img {
  width: 100%;
}
.master-bedroom .container .row .video .center-icon:hover {
  background: #059126;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@media only screen and (max-width: 992px) {
  .master-bedroom .container .row .video {
    padding: 100px 0;
  }
}
.master-bedroom .container .row .col-lg-6 .row .col-md-6 .small-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  transition: 0.5s all;
}
.master-bedroom .container .row .col-lg-6 .row .col-md-6 .small-img a img {
  width: 100%;
}
.master-bedroom .container .row .col-lg-6 .row .col-md-6 .small-img .text {
  width: 100%;
}
.master-bedroom .container .row .col-lg-6 .row .col-md-6 .small-img .text a {
  border: 0;
  background: #07c233;
  padding: 15px;
  color: #fff;
  border-radius: 0;
}
.master-bedroom .container .row .col-lg-6 .row .col-md-6 .small-img::before {
  content: "";
  width: 100%;
  left: -100%;
  height: calc(100% - 51px);
  background: rgba(7, 194, 51, 0.3215686275);
  position: absolute;
  transform: skewX(-50deg);
  transition: 0.5s all;
}
.master-bedroom .container .row .col-lg-6 .row .col-md-6 .small-img:hover::before {
  left: 100%;
}
@media only screen and (max-width: 576px) {
  .master-bedroom {
    padding: 0em 0;
  }
}

.activity-area {
  position: relative;
  margin-top: 30px;
}
.activity-area .slide-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-area .slide-container .slider {
  position: absolute;
  inset: 25px 200px 80px 80px;
  background: #ccc;
  border-radius: 20px;
}
.activity-area .slide-container .slider .slides {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 320px;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.activity-area .slide-container .slider .slides .content {
  position: absolute;
  padding: 40px;
  max-width: 600px;
  transition: 0.25s;
  transition-delay: 0s;
  transform: translateY(40px);
  z-index: 1000;
  opacity: 0;
  border-radius: 0 20px 0 20px;
  visibility: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.activity-area .slide-container .slider .slides .content h2 {
  font-size: 2.5em;
  color: #fff;
}
.activity-area .slide-container .slider .slides .content p {
  color: #fff;
  line-height: 1.5;
}
.activity-area .slide-container .slider .slides .content .blue-btn {
  padding: 10px 25px;
  border-color: #fff;
}
.activity-area .slide-container .slider .slides .content .blue-btn:hover {
  background: #fff;
  color: #383c93;
}
@media only screen and (max-width: 768px) {
  .activity-area .slide-container .slider .slides .content {
    max-width: 100%;
    border-radius: 0 0px 20px 20px;
  }
  .activity-area .slide-container .slider .slides .content h2 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 576px) {
  .activity-area .slide-container .slider .slides .content {
    padding: 18px;
  }
}
.activity-area .slide-container .slider .slides .content:hover {
  background: #000;
}
.activity-area .slide-container .slider .slides:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
  background-size: cover;
}
.activity-area .slide-container .slider .slides:nth-child(1) .content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 0.5s;
}
.activity-area .slide-container .slider .slides:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
  background-size: cover;
}
.activity-area .slide-container .slider .slides:nth-child(2) .content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-delay: 0.5s;
}
.activity-area .slide-container .slider .slides:nth-child(3) {
  left: calc(50% + 240px);
  background-size: cover;
}
.activity-area .slide-container .slider .slides:nth-child(4) {
  left: calc(50% + 500px);
  background-size: cover;
}
.activity-area .slide-container .slider .slides:nth-child(5) {
  left: calc(50% + 760px);
  background-size: cover;
}
.activity-area .slide-container .slider .slides:nth-child(6) {
  left: calc(50% + 1020px);
  background-size: cover;
  opacity: 0;
}
@media only screen and (max-width: 900px) {
  .activity-area .slide-container .slider .slides {
    width: 100px;
    height: 100px;
    top: initial;
    bottom: -170px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }
  .activity-area .slide-container .slider .slides:nth-child(1), .activity-area .slide-container .slider .slides:nth-child(2) {
    top: initial;
    bottom: 0px;
  }
  .activity-area .slide-container .slider .slides:nth-child(3) {
    left: 0px;
  }
  .activity-area .slide-container .slider .slides:nth-child(4) {
    left: 120px;
  }
  .activity-area .slide-container .slider .slides:nth-child(5) {
    left: 240px;
  }
  .activity-area .slide-container .slider .slides:nth-child(6) {
    left: 360px;
  }
}
@media only screen and (max-width: 576px) {
  .activity-area .slide-container .slider .slides:nth-child(3) {
    left: -14px;
  }
  .activity-area .slide-container .slider .slides:nth-child(4) {
    left: 108px;
  }
  .activity-area .slide-container .slider .slides:nth-child(5) {
    left: 228px;
  }
}
@media only screen and (max-width: 900px) {
  .activity-area .slide-container .slider {
    position: absolute;
    inset: 40px 40px 200px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .activity-area .slide-container .slider {
    inset: 30px 24px 200px 24px;
  }
}
.activity-area .slide-container .buttons {
  position: absolute;
  bottom: 15px;
  display: flex;
  gap: 20px;
}
.activity-area .slide-container .buttons span {
  position: relative;
  width: 50px;
  height: 50px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #383c93;
}
.activity-area .slide-container .buttons span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 4px solid #383c93;
  border-left: 4px solid #383c93;
  transform: rotate(315deg) translate(2px, 2px);
}
.activity-area .slide-container .buttons span.next::before {
  transform: rotate(135deg) translate(2px, 2px);
}
.activity-area .slide-container .buttons span:active {
  opacity: 0.5;
}

.contact {
  padding-top: 105vh;
}

footer ul {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 20px;
}
footer ul li {
  margin: 12px 0;
}
footer ul li a {
  color: #383c93;
  font-weight: 600;
  text-decoration: none;
}
footer p {
  color: #383c93;
}

.bg-contact {
  background: url(../images/contact-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 3em 0;
  position: relative;
}
.bg-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(270deg, rgba(34, 34, 34, 0.6862745098), rgba(0, 0, 0, 0.8196078431));
}

.contact-form-page .container .form-card {
  margin-top: 50px;
  box-shadow: 0 10px 30px 0px rgba(101, 101, 101, 0.2509803922);
  padding: 30px;
  border-radius: 15px;
}
.contact-form-page .container .form-card form div label {
  display: block;
  margin-bottom: 6px;
}
.contact-form-page .container .form-card form div input, .contact-form-page .container .form-card form div textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 2px solid #383c93;
}
.contact-form-page .container .form-card form div button {
  background: #383c93;
  color: #fff;
  padding: 10px 20px;
}
.contact-form-page .container .form-card .map {
  overflow: hidden;
}
.contact-form-page .container .form-card .map iframe {
  width: 100%;
  height: calc(100% - 40px);
  border-radius: 20px;
  border: 0 !important;
}
@media only screen and (max-width: 768px) {
  .contact-form-page .container .form-card .map iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 992px) {
  .contact-form-page .container .form-card .map {
    margin-top: 10px;
  }
}
.contact-form-page .container .form-card .row .col-lg-4 .inner {
  padding: 30px;
  box-shadow: 0 10px 30px 0px rgba(101, 101, 101, 0.0901960784);
  height: 100%;
  border-radius: 20px;
}
.contact-form-page .container .form-card .row .col-lg-4 .inner h4 {
  color: #383c93;
  font-weight: 600;
}
.contact-form-page .container .form-card .row .col-lg-4 .inner a {
  text-decoration: none;
  color: #07c233;
}
@media only screen and (max-width: 576px) {
  .contact-form-page .container .form-card {
    padding: 15px 10px;
  }
}

.bg-about {
  padding: 8em 0;
  background: url(../images/about-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  .bg-about {
    padding: 4em 0;
  }
}

.gal1-outer {
  background: #eee;
  padding-top: 20px;
}

.gal1 {
  height: 60vh;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  padding-bottom: 50px;
}
.gal1 .box {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  transition: 1.5s;
  transform: perspective(1000px) rotateY(0deg);
}
.gal1 .box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(300px);
  /* -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004); */
}
.gal1 .box a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s all;
}
.gal1 .box a img:hover {
  transform: scale(1.1);
}
.gal1 .btns {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 30px;
  transform: translateX(40px);
}
.gal1 .btns .btn {
  position: relative;
  width: 60px;
  height: 60px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gal1 .btns .btn:active {
  background: #000;
}
.gal1 .btns .btn:active::before {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.gal1 .btns .btn::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg) translate(-2.5px, 2.5px);
}
.gal1 .btns .btn.prev::before {
  transform: rotate(225deg) translate(-2.5px, 2.5px);
}

.gal2 {
  padding: 20px;
}
.gal2 .gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal2 .gallery .img-box {
  width: 200px;
  height: 500px;
  margin: 10px;
  border-radius: 50px;
  background: url(../images/image-1.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: 0.5s;
}
.gal2 .gallery .img-box:nth-child(2) {
  background: url(../images/image-2.jpg);
  background-size: cover;
  background-position: center;
}
.gal2 .gallery .img-box:nth-child(3) {
  background: url(../images/image-3.jpg);
  background-size: cover;
  background-position: center;
}
.gal2 .gallery .img-box:nth-child(4) {
  background: url(../images/image-4.jpg);
  background-size: cover;
  background-position: center;
}
.gal2 .gallery .img-box:nth-child(5) {
  background: url(../images/image-5.jpg);
  background-size: cover;
  background-position: center;
}
.gal2 .gallery .img-box h3 {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 30px;
  opacity: 0;
  transition: 0.5s;
}
.gal2 .gallery .img-box:hover {
  width: 400px;
  cursor: pointer;
}
.gal2 .gallery .img-box:hover h3 {
  opacity: 1;
  bottom: 25px;
}
@media only screen and (max-width: 992px) {
  .gal2 .gallery .img-box {
    height: 300px;
  }
  .gal2 .gallery .img-box:hover {
    width: 100%;
    height: 300px;
  }
}
@media only screen and (max-width: 666px) {
  .gal2 .gallery .img-box {
    height: 150px;
    width: 100%;
  }
  .gal2 .gallery .img-box:hover {
    width: 100%;
    height: 350px;
    cursor: pointer;
  }
}
@media only screen and (max-width: 666px) {
  .gal2 .gallery {
    flex-direction: column;
  }
}

.gal3-outer {
  padding-top: 20px;
  background: #eee;
}
.gal3-outer .gal3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.gal3-outer .gal3 .gal3-container {
  position: relative;
  display: grid;
  grid-gap: 15px;
  width: 700px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 150px 150px 150px 150px;
  grid-template-areas: "img1 img3 img4" "img1 img3 img6" "img2 img3 img6" "img2 img5 img5";
}
.gal3-outer .gal3 .gal3-container .img1 {
  grid-area: img1;
}
.gal3-outer .gal3 .gal3-container .img2 {
  grid-area: img2;
}
.gal3-outer .gal3 .gal3-container .img3 {
  grid-area: img3;
}
.gal3-outer .gal3 .gal3-container .img4 {
  grid-area: img4;
}
.gal3-outer .gal3 .gal3-container .img5 {
  grid-area: img5;
}
.gal3-outer .gal3 .gal3-container .img6 {
  grid-area: img6;
}
.gal3-outer .gal3 .gal3-container .item {
  position: relative;
  background: #fff;
  border-radius: 10px;
}
.gal3-outer .gal3 .gal3-container .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border-radius: 10px;
}
.gal3-outer .gal3 .gal3-container:hover .item img:not(:hover) {
  filter: grayscale(1);
  opacity: 0.5;
}
@media only screen and (max-width: 700px) {
  .gal3-outer .gal3 .gal3-container {
    grid-template-areas: "img1 img1 img4" "img3 img3 img4" "img2 img6 img6" "img2 img5 img5";
  }
}
@media only screen and (max-width: 444px) {
  .gal3-outer .gal3 .gal3-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
    grid-template-areas: "img1 img2" "img3 img6" "img4 img5";
  }
}/*# sourceMappingURL=style.css.map */