* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 1.025rem;
  line-height: 1.2;
}

h1 {
  color: #444478;
  font-weight: bold;
  font-size: clamp(25px, 3.3vw, 40px) !important;
}

h1,
h2,
h3 {
  color: #444478;
}

.container {
  display: flex;
  flex-direction: column;
  background: #e5e5e5;
  width: 100%;
  height: auto;
}

header {
  position: fixed;
  width: 100%;
  z-index: 11;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 30px;
  background: #444478;
  position: relative;
}

header nav .navbar-toggler {
  display: none;
}

header nav .navbar-toggler img {
  cursor: pointer;
  padding: 5px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: white;
}

.navbar-brand img {
  width: 50px;
  object-fit: contain;
  margin-right: 10px;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav ul {
  display: flex;
  list-style: none;
}

.navbar-nav ul li a {
  padding: 10px 12px;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
}

.navbar-nav ul li a:hover,
.active {
  background-color: #e9a88c;
  border-radius: 10px;
  color: #444478 !important ;
}

.hero {
  display: flex;
  margin-top: 64px;
}

.hero .description {
  flex: 0.35;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hero .description .description-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  padding: 30px;
  background: linear-gradient(
    to bottom right,
    rgba(249, 153, 112, 0.5),
    5%,
    #444478,
    80%,
    rgba(249, 153, 112, 0.7)
  );
}

.hero .description .description-content h1 {
  font-size: 30px;
  color: #f99970;
  line-height: 1.1;
}

.hero .description .description-content p {
  line-height: 22px;
  color: white;
}

.hero .description .explore-btn {
  border: 1px solid #f99970;
  color: #f99970;
  border-radius: 10px;
  width: fit-content;
  width: -moz-fit-content;
  width: -ms-fit-content;
  background: transparent;
  padding: 10px 25px;
  cursor: pointer;
}

.hero .description .description-design {
  background: linear-gradient(
    to right,
    rgba(84, 188, 194),
    30%,
    rgba(179, 150, 247, 0.2)
  );
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.hero .slide-show {
  flex: 0.65;
  height: 550px;
}

.hero .slide-show-images {
  position: relative;
}

.hero .slide-show-images .images img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.hero .slide-show-images .images img:nth-child(2),
.hero .slide-show-images .images img:nth-child(3) {
  display: none;
}

.hero .current-image-indicator {
  position: absolute;
  display: flex;
  width: 60px;
  justify-content: space-between;
  z-index: 2;
  bottom: 90px;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero .current-image-indicator .outer-circle {
  width: 11px;
  height: 11px;
  background: #f99970;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hero .current-image-indicator .inner-circle {
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
}

.hero .go-down {
  position: absolute;
  bottom: 30px;
  right: 50px;
  background: transparent;
  border: 3px solid #f99970;
  outline: none;
  border-radius: 10px;
  padding: 5px;
  cursor: pointer;
  color: #f99970;
}

.hero .go-down img {
  width: 30px;
  object-fit: contain;
  filter: invert(1);
}

.gallery {
  display: flex;
  flex-direction: column;
  padding: 50px 5vw;
  /* changed padding top to 64px because of fixed header  */
  padding-top: 64px !important;
  border-bottom: 1px solid gainsboro;
}

.gallery > h1 {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.gallery-images .top > img,
.gallery-images .bottom > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-images .left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-gap: 60px;
  position: relative;
}

.gallery-images .left .top {
  width: 92%;
  justify-self: end;
  z-index: 1;
}

.gallery-images .left .red-design {
  width: 90%;
  height: calc(50% - 30px);
  top: 25px;
  position: absolute;
  border: 3px solid #f99970;
  left: 0;
}

.gallery-images .right {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 30px;
  position: relative;
}

.gallery-images .right .blue-design {
  width: 60px;
  height: 95%;
  top: 0;
  position: absolute;
  border: 3px solid #444478;
  right: 0;
}

.gallery-images .right .top {
  grid-row: span 3;
  width: 94%;
  z-index: 1;
  height: 97%;
  align-self: end;
}
.gallery-images .right .bottom {
  width: 94%;
  z-index: 1;
}

.gallery .see-more {
  display: flex;
  align-items: center;
  width: fit-content;
  width: -moz-fit-content;
  width: -ms-fit-content;
  align-self: flex-end;
  padding: 7px 25px;
  background: #444478;
  color: white;
  outline: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

.gallery .see-more img {
  width: 20px;
  object-fit: contain;
  margin-left: 5px;
  filter: invert(100%);
}

.services {
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}

.services > h1 {
  text-align: center;
  margin-bottom: 50px;
}

.services .services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}

.services .services-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  padding: 10px;
  box-shadow: 1px 1px 6px -1px black;
  background: linear-gradient(
    to bottom right,
    rgba(233, 168, 140, 0.4),
    3%,
    white
  );
}

.services .services-item .image {
  margin-right: 10px;
}

.services .services-item .image img {
  max-width: 100%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.services .services-item .description {
  flex: 0.99;
}

.services .services-item .description p {
  margin: 10px 0 15px 0;
}

.services .services-item button {
  padding: 8px 25px;
  outline: none;
  border-radius: 10px;
  border: 1px solid #f99970;
  color: #f99970;
  cursor: pointer;
  background: transparent;
}

.about-us {
  display: flex;
  flex-direction: column;
  padding: 50px 0 0 0;
  /* changed padding top to 64px because of fixed header  */
  padding-top: 64px;
}
.about-us > h1 {
  text-align: center;
  margin-bottom: 50px;
}

.about-us-images-slider {
  width: 80%;
  margin: 0 auto;
  height: 500px;
}

.about-us-images-slider .item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-us-images-slider .item img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-images-slider .description {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 450px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 10px;
}

.about-us-images-slider .description p {
  margin: 10px 0 15px;
  line-height: 22px;
}

.about-us-images-slider .description h2 {
  line-height: 1.1;
  color: #f99970 !important;
  letter-spacing: 0.5px;
}

.about-us-images-slider .description button {
  padding: 10px 25px;
  border: 1px solid #f99970;
  outline: none;
  color: #f99970;
  background: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 7px;
}

.about-us-images-slider .description button i {
  margin-left: 5px;
}

.about-us .current-image-indicator {
  display: flex;
  justify-content: space-between;
  width: 200px;
  position: unset;
  margin: 30px auto;
}

.about-us .current-image-indicator .indicator {
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background: #c6c3c3;
}

.reviews {
  display: flex;
  flex-direction: column;
  /* changed padding top to 64px because of fixed header  */
  padding-top: 64px;
}

.reviews > h1 {
  text-align: center;
  margin-bottom: 30px;
}

.reviews-container {
  padding: 50px 50px 20px;
  background: #f3f6f0;
  display: flex;
  flex-direction: column;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 30px;
}

.reviews-list .reviews-item:nth-child(2) {
  box-shadow: 0 5px 16px -9px black;
  background: white;
  border: 0 !important;
  transform: scale(1.1);
}

.reviews-list .reviews-item {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  justify-content: space-between;
  font-family: "PT Sans" ;
}

.reviews-list .reviews-item .top img {
  width: 50px;
  object-fit: contain;
}

.reviews-list .reviews-item .bottom {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.reviews-list .reviews-item .middle p {
  font-family: Roboto;
  color: #444478;
  font-size: 16px;
}

.reviews-list .reviews-item .bottom img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.reviews .control-btn {
  align-self: flex-end;
  width: 110px;
  display: flex;
  justify-content: space-between;
}

.reviews .control-btn button {
  border-radius: 50%;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  outline: none;
  border: 1px solid gainsboro;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews .control-btn button:hover {
  background: white;
}

.contact-us {
  display: flex;
  flex-direction: column;
  padding-top: 67px;
}

.contact-us > h1 {
  text-align: center;
  margin-bottom: 30px;
  padding: 3px 10px;
  border-radius: 15px;
  background: #e9a88c;
  width: fit-content;
  width: -moz-fit-content;
  width: -ms-fit-content;
  align-self: center;
}

.contact-us .brand-contact-details {
  display: flex;
  flex-direction: column;
}

.contact-us .brand-contact-details .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 50px;
  color: #444478;
  font-family: "Averia Serif Libre";
}

.contact-us .brand-contact-details .top .address {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.contact-us .brand-contact-details .top .address img {
  margin-right: 10px;
  width: 60px;
  height: 70px;
}

.contact-us .brand-contact-details .top .contacts i {
  margin-right: 10px;
}

.contact-us .brand-contact-details .top .contacts {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-family: 'PT Sans';
}

.contact-us .brand-contact-details .contacts > div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.contact-us .brand-contact-details .contacts i {
  font-size: 25px;
  transition: all 0.5s ease;
}

.contact-us .brand-contact-details .contacts .fa-phone {
  animation: pop 1s linear infinite;
  transition: animation 0.5s ease;
}

@keyframes pop {
  from {
    transform: scale(1);
    transition: all 0.5s ease;
  }
  to {
    transform: scale(1.5);
    transition: all 0.5s ease;
  }
}

.contact-us .brand-contact-details .map {
  width: 100%;
  height: 400px;
  margin-top: 5px;
  position: relative;
}


footer {
  background: #e88429;
  padding: 20px;
  letter-spacing: 1px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2 !important;
  font-family: 'PT Sans';
}

@media screen and (max-width: 1060px) {


  .services .services-container {
    grid-gap: 15px;
  }

  .about-us-images-slider {
    width: 90%;
  }

  .reviews-container {
    padding: 50px 20px 20px;
  }

  .contact-us .brand-contact-details .top {
    margin: 0 20px;
  }
}

@media screen and (max-width: 1000px) {
  .gallery-images {
    grid-gap: 20px;
  }
}

@media screen and (max-width: 850px) {
  .navbar-nav ul li a {
    font-size: 14px;
    padding: 10px;
  }

  .hero {
    position: relative;
  }

  .hero .description {
    flex: unset;
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 400px;
    z-index: 1;
  }

  .hero .description .description-design {
    display: none;
  }

  .hero .description .description-content p {
    margin-block: 20px;
  }

  .hero .slide-show {
    flex: unset;
    width: 100%;
  }

  .hero .current-image-indicator {
    bottom: 20px;
  }

  .gallery-images {
    grid-gap: 20px;
  }

  .services .services-container {
    grid-template-columns: 1fr;
  }

  .services {
    padding-right: 50px;
    padding-left: 50px;
  }

  .reviews-list {
    grid-gap: 15px;
  }
}

@media screen and (max-width: 703px) {
  header nav {
    padding: 7px 15px;
  }
  
.hero .description .description-content{
  padding: 20px;
}

  .gallery-images {
    grid-gap: 10px;
  }

  .gallery-images .left {
    grid-gap: 30px;
  }

  .gallery-images .left .red-design {
    height: calc(50% - 15px);
    top: 15px;
  }

  .gallery-images .right {
    grid-gap: 15px;
  }

  .about-us-images-slider {
    width: 95%;
  }

  .reviews-list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .reviews-list .reviews-item {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-us .brand-contact-details .top {
    margin: 0 15px;
  }
}

@media screen and (max-width: 639px) {
  header nav > .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hide{
    display: none;
  }

  .show-flex{
    display: flex !important;
  }

  header nav .navbar-nav {
    display: none;
    position: absolute;
    top: 64px;
    width: 100%;
    height: calc(100vh - 64px);
    left: 0;
  }

  .navbar-nav ul{
    width: 100%;
    display: flex;
    padding-top: 15px;
    height: 100%;
    flex-direction: column;
    background: rgba(68, 68, 120, .6);
  }

.navbar-nav ul  li{
margin-bottom: 20px;
text-align: center;
}

.navbar-nav ul  li a{
  font-size: 20px;
  padding: 7px 10px;
  }

  .hero .description {
    width: 300px;
  }

  .services {
    padding-right: 30px;
    padding-left: 30px;
  }

  .services .services-container{
    grid-gap: 20px;
  }

  .contact-us .brand-contact-details .top {
    flex-direction: column;
    align-items: unset;
  }

  .contact-us .brand-contact-details .top .contacts {
    margin-left: 70px;
  }

  .contact-us .brand-contact-details .contacts > div {
    margin-bottom: 2px;
  }

  .contact-us .brand-contact-details .top .address {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 520px) {
  .hero .description{
    top: 50px;
  }
  .hero .description p{
    display: none;
  }
  .hero .description h1{
    margin-bottom: 20px;
    font-size: 25px;
  }
  .hero .description h1 br:nth-child(2){
    display: none;
  }

  .services{
    padding-right: 20px;
    padding-left: 20px;
  }

  .services .services-container{
    width: 100%;
  }

  .about-us-images-slider .description {
    width: 300px;
    padding: 20px;
  }

  .about-us-images-slider .description h2{
    font-size: 20px;
  }

  .reviews-list .reviews-item .middle p{
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .hero .go-down{
    right: 20px;
  }
}

@media screen and (max-width: 450px) {
  .gallery-images {
    grid-auto-rows: 450px;
  }
}