/* ======
 scrollbar End
 ========= */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: lightpink;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: lightpink;
}

/* ======
 scrollbar End
 ========= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

p {
  font-weight: 300;
  color: #111;
}
/* body {
  min-height: 1000px;
} */
.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(./images/Cake\ 1.jpg);
  background-size: cover;
}
.banner .content {
  max-width: 900px;
  text-align: center;
}

.banner .content h2 {
  font-size: 5em;
  color: #fff;
  margin-bottom: 2rem;
}
.banner .content h2 span {
  color: lightsalmon;
}
.banner .content p {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 2rem;
}
.btn {
  font-size: 1em;
  color: #fff;
  background: #ff0157;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  transition: 0.5s;
}
.btn:hover {
  letter-spacing: 4px;
  border: 1px solid #ff0157;
  background: rgba(255, 1, 87, 0.4);
}
.content .social-media {
  margin-top: 4rem;
  display: flex;
  justify-content: space-around;
}
.content .social-media a {
  color: white;
  background: #ff0157;
  border: 1px solid #ff0157;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  position: relative;
  transition: all 0.3s ease;
  animation: scale 3s ease-in-out infinite;
}
.content .social-media a:first-child {
  animation-delay: 0.5s;
}
.content .social-media a:nth-child(2) {
  animation-delay: 1s;
}
.content .social-media a:nth-child(3) {
  animation-delay: 1.5s;
}
.content .social-media a:nth-child(4) {
  animation-delay: 2s;
}
.content .social-media a:nth-child(5) {
  animation-delay: 2.5s;
}
.content .social-media a:nth-child(6) {
  animation-delay: 3s;
}
.content .social-media a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes scale {
  0%,
  100% {
    transform: scale(1.2);
    background-color: #ff0157;
  }
  50% {
    transform: scale(0.8);
    background-color: #740329;
    border: 1px solid #740329;
  }
}
.content .social-media a:hover {
  background: transparent;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  z-index: 100;
}
header.sticky {
  background: #fff;
  padding: 40px 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
header .logo {
  color: #fff;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
}
header.sticky .logo {
  color: #111;
}
header .logo span {
  color: #ff0157;
}
header .navigation {
  position: relative;
  display: flex;
}
header .navigation li {
  list-style: none;
  margin-left: 30px;
  padding: 0.7rem 1.2rem;
  transition: 0.3s;
}
header .navigation li a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}
header.sticky .navigation li a {
  color: #111;
}
header .navigation li:hover {
  background-color: rgba(255, 1, 87, 0.4);
  border-radius: 30px;
}
section {
  padding: 100px;
}
.row {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.row .col50 {
  position: relative;
  width: 48%;
}
.titleText {
  color: #111;
  font-size: 2em;
  font-weight: 300;
}
.titleText span {
  color: #ff0157;
  font-weight: 700;
  font-size: 1.5em;
}
.row .col50 .imgBx {
  position: relative;
  width: 100%;
  /* min-height: 300px; */
  height: 100%;
}
.row .col50 .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.menu .content {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: 40px;
}
.menu .content .box {
  width: 340px;
  margin: 20px;
  border: 15px solid #fff;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}
.menu .content .box .imgBx {
  position: relative;
  width: 100%;
  height: 300px;
}
.menu .content .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu .content .box .text {
  padding: 15px 0 5px;
}
.menu .content .box .text h3 {
  font-weight: 400;
  color: #111;
}
/* Expert */
.expert .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 40px;
}
.expert .content .box {
  width: 250px;
  margin: 15px;
}
.expert .content .box .imgBx {
  position: relative;
  width: 100%;
  height: 300px;
}
.expert .content .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert .content .box .text {
  padding: 15px 0 5px;
}
.expert .content .box .text h3 {
  font-weight: 400;
  color: #111;
}
/* Expert End */
/* Testimonies */
.testimonials {
  background: url(./images/bg2.jpg);
  background-size: cover;
}
.white .titleText,
.white p {
  color: #fff;
}
.testimonials .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 40px;
}
.testimonials .content .box {
  width: 340px;
  margin: 20px;
  padding: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
}
.testimonials .content .box .imgBx {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .content .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials .content .box .text {
  text-align: center;
}
.testimonials .content .box p {
  color: #666;
  font-style: italic;
}
.testimonials .content .box .text h3 {
  margin-top: 20px;
  color: #111;
  font-size: 1em;
  color: #ff0157;
  font-weight: 700;
}
/* Testimonies End */
/* Contact */
.contact {
  background: url(./images/bg3.jpg);
  background-size: cover;
}
.contactForm {
  padding: 75px 50px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin-top: 50px;
}
.contactForm h3 {
  color: #111;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 500px;
}
.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.contactForm .inputBox textarea,
.contactForm .inputBox input {
  width: 100%;
  border: 1px solid #555;
  padding: 10px;
  color: #111;
  outline: none;
  font-size: 16px;
  font-weight: 300;
}
.contactForm .inputBox input[type='submit'] {
  font-size: 1em;
  color: #fff;
  background: #ff0157;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.5s;
  max-width: 100px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
#footer {
  display: flex;
  justify-content: space-between;
  padding: 3rem 3rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo .logo {
  text-decoration: none;
  color: #ff0157;
  font-size: 2rem;
}

.copyrightText {
  padding: 8px 40px;
  text-align: center;
}
.copyrightText p {
  color: #333;
}
.copyrightText a {
  color: #ff0157;
  font-weight: 500;
  text-decoration: none;
  padding: 2rem 0;
}
.footer-terms a {
  color: #333;
  text-decoration: none;
}
/* .top-link {
  font-size: 1.25rem;
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  background: var(--clr-secondary);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--clr-white);
  animation: bounce 2s ease-in-out infinite;
  visibility: hidden;
  z-index: -100;
}
.show-link {
  visibility: visible;
  z-index: 100;
} */
@media (max-width: 991px) {
  header,
  header.sticky {
    padding: 10px 20px;
  }
  header .navigation {
    display: none;
  }
  header .navigation.active {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
  }
  header .navigation li {
    margin-left: 0;
    width: 40%;
    text-align: center;
  }
  header .navigation li a {
    color: #111;
    font-size: 1.6em;
  }
  .menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(./images/menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 20px;
    cursor: pointer;
  }
  .menuToggle.active {
    background: url(./images/close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
  }
  header.sticky .menuToggle {
    filter: invert(1);
  }

  section {
    padding: 20px;
  }
  .banner .content h2 {
    font-size: 3em;
    margin-bottom: 2rem;
  }
  .row {
    flex-direction: column;
  }
  .row .col50 {
    position: relative;
    width: 100%;
  }
  .row .col50 .imgBx {
    height: 300px;
    margin-top: 20px;
  }
  .menu .content {
    margin-top: 20px;
  }
  .menu .content .box {
    margin: 10px;
  }
  .menu .content .box .imgBx {
    height: 260px;
  }
  .title {
    text-align: center;
  }
  .titleText {
    font-size: 1.8em;
    line-height: 1.5em;
    margin-bottom: 15px;
    font-weight: 300;
  }
  .testimonials .content .box {
    padding: 20px;
    margin: 10px;
  }
  .contactForm {
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .banner .content {
    font-size: 2.2em;
    color: #fff;
  }
  .banner .content h2 {
    font-size: 1.6em;
  }
  .banner .content p {
    font-size: 0.5em;
  }
  .btn {
    font-size: 0.5em;
  }
  .content .social-media {
    margin-top: 4rem;
    display: flex;
    justify-content: space-around;
  }
  .content .social-media a {
    font-size: 0.5em;
    height: 25px;
    width: 25px;
    animation: none;
  }
  .content .social-media a i {
    font-size: 0.7em;
  }
  #footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer-logo .logo {
    text-decoration: none;
    color: #ff0157;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .copyrightText {
    font-size: 0.8rem;
    margin: 1rem;
  }

  .footer-terms a {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}
