@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background-color: #e6e6e6;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100px;
  padding: 20px 100px;
  background: rgba(255, 192, 203, .3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 192, 203, 0.4);
  z-index: 100;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 192, 203, 0.5),
    transparent
  );
  transition: 0.5s;
}

.header:hover::before {
  left: 100%;
}

.logo {
content:"";
display:table;
clear:both;
}

.logo img {
width: 5.5rem;
height: auto;
}

.navbar a {
    position: relative;
    font-size: 1.5rem;
    color: #ff4967;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
}

.navbar a i {
  position: relative;
  font-size: 1.8rem;
  color: #ff4967;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4967;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #ff4967;
    cursor: pointer;
    display: none;
}

#menu-icon {
    font-size: 36px;
    color: #ff4967;
    cursor: pointer;
    display: none;
}

@media (max-width: 1192px) {
    .header {
      padding: 1.25rem 4%;
    }
}

@media (max-width: 1048px) {
    #menu-icon {
      display: block;
      cursor: pointer;
    }
    .navbar {
      position: fixed;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 0.5rem 4%;
      display: none;
    }
    .navbar.active {
      display: block;
    }
    .navbar a {
      display: block;
      margin: 1.5rem 0;
      text-align: center;
    }
    .nav-bg {
      position: fixed;
      top: 79px;
      left: 0;
      width: 100%;
      height: 375px;
      background: rgba(255, 192, 203, .3);
      border-bottom: 2px solid rgba(255, 192, 203, 0.4);
      backdrop-filter: blur(10px);
      z-index: 99;
      display: none;
    }
    .nav-bg.active {
      display: block;
    }
}

.row {
    width: 100%;
    max-width: 1570px;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    overflow-x: hidden;
    padding: 5rem 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.row .imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.row .imgWrapper:hover img {
    transform: scale(1.2);
}

.row .contentWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}

.row .contentWrapper h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ff1037;
    padding-bottom: 20px;
}

.row .contentWrapper p {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 25px;
    color: #ff4967;
}

.row .contentWrapper a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    background: #ff1037;
    color: #fff;
    padding: 15px 40px;
    letter-spacing: 1px;
    user-select: none;
}

@media (max-width: 991px) {
  .row {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .row .contentWrapper {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
.row {
  width: 80%;
  max-width: 1170px;
}
  .row .imgWrapper:hover img {
    transform: scale(1.25);
}
  
  .row .contentWrapper h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .row .contentWrapper p {
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  .row .contentWrapper h2 {
    font-size: 25px;
    padding-bottom: 20px;
  }
  .row .contentWrapper p {
    font-size: 15px;
    line-height: 22px;
  }
}