/* Fonts Import */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");

* {
  transition: all 0.5s linear;
}

body {
  background: url(../images/body-bg.png) no-repeat;
  background-size: cover;
}

.mycontiner {
  width: 970px;
  margin: auto;
}

@media (max-width: 991.98px) {
  .mycontiner {
    width: 768px;
  }
}

@media (max-width: 768.98px) {
  .mycontiner {
    width: 100%;
  }
}

/* Fonts Classes */
.poppin-fonts {
  font-family: "Poppins", sans-serif;
}

.raleway-fonts {
  font-family: "Raleway", sans-serif;
}

/* Colors */
.text-white {
  color: #fff !important;
}

/* Header */
header {
  background: url(../images/top-img.png) no-repeat;
  background-size: cover;
  padding: 3rem 0;
}

.logo {
  width: 550px;
  display: block;
  margin: auto;
}

.person-pic {
  width: 280px;
  display: block;
  margin: 2rem auto;
}

@media (max-width: 768.98px) {
  .logo {
    width: 450px;
  }
  .person-pic {
    width: 240px;
  }
}

@media (max-width: 576.98px) {
  .logo {
    width: 300px;
  }
  .person-pic {
    width: 180px;
  }
}

.person-name,
.person-age,
.person-city {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
}

.person-name {
  position: relative;
}

.person-name::before {
  content: "";
  width: 250px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@keyframes ShineAnimation {
  from {
    background-repeat: no-repeat;
    background-image: -webkit-linear-gradient(
      top left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.5) 48%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.5) 52%,
      rgba(255, 255, 255, 0) 57%,
      rgba(255, 255, 255, 0) 100%
    );
    background-position: -250px -250px;
    background-size: 600px 600px;
  }
  to {
    background-repeat: no-repeat;
    background-position: 250px 250px;
  }
}

.whatsapp-link {
  background: #32ba46;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #fff;
  display: block;
  width: 300px;
  margin: 3rem auto;
  padding: 1rem 0;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  animation-name: ShineAnimation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.whatsapp-link i {
  font-weight: 400;
  margin-right: 2rem;
}

.whatsapp-link:hover {
  color: #fff;
  text-decoration: none;
}

.whatsapp-link:active {
  color: #fff;
  text-decoration: none;
}

/* Header End */

/* Life Style */
.life-style {
  padding: 3rem 5rem;
  background: url(../images/life-style.png) no-repeat;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
}

.section-heading {
  color: #fff;
  font-size: 44px;
  position: relative;
  margin: 4rem 0;
  margin-left: 6rem;
}

.section-heading::after {
  content: "";
  border: 1px solid #fff;
  width: 50px;
  position: absolute;
  bottom: -1rem;
  left: 0;
}

@media (max-width: 576.98px) {
  .section-heading {
    font-size: 30px;
    margin-left: 3rem;
  }

  .section-heading::after {
    width: 35px;
  }
}

.life-style-text {
  font-size: 42px;
  font-weight: 600;
  font-style: italic;
}

.contact-btn {
  position: relative;
  cursor: pointer;
  font-size: 31px;
  display: block;
  width: 350px;
  background: #fff;
  color: #000;
  font-weight: 600;
  margin: 20rem 0 3rem;
  padding: 2rem 3.5rem;
  border-radius: 100px;
}

.contact-btn i {
  font-size: 65px;
  position: absolute;
  right: 1rem;
  top: 8px;
}

.contact-btn:hover {
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .contact-btn {
    width: 300px;
    margin: 10rem 0 3rem;
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
  }
  .contact-btn i {
    font-size: 55px;
    position: absolute;
    right: 1rem;
    top: 10px;
  }
}

@media (max-width: 768.98px) {
  .life-style {
    padding: 2rem;
    margin: 0 1rem;
  }
  .life-style-text {
    font-size: 30px;
    width: 280px;
  }
  .contact-btn {
    font-size: 23px;
    width: 240px;
    margin: 10rem 0 2rem;
    padding: 1rem 3rem;
  }
  .contact-btn i {
    font-size: 45px;
    right: 0.5rem;
    top: 4px;
  }
}

@media (max-width: 576.98px) {
  .life-style-text {
    font-size: 18px;
    width: 180px;
  }
  .contact-btn {
    font-size: 16px;
    width: 160px;
    margin: 5rem 0 2rem;
    padding: 1rem 1.5rem;
  }
  .contact-btn i {
    font-size: 35px;
    right: 0.5rem;
    top: 4px;
  }
}

/* Life Style End */

/* Bio */
.bio {
  color: #fff;
  font-size: 25px;
  margin-left: 6rem;
}

@media (max-width: 576px) {
  .bio {
    margin-left: 3rem;
    margin-right: 1rem;
    font-size: 20px;
  }
}
/* Bio End */

/* Hobbies */
.hobby-card {
  background: #fff;
  border-radius: 7%;
  overflow: hidden;
  padding-bottom: 3rem;
}

.hobby-icon {
  display: block;
  margin: -8rem auto 0;
}

@media (max-width: 576.98px) {
  .hobby-icon {
    margin: -8rem auto 0;
    width: 150px;
  }
}

@media (max-width: 425.98px) {
  .hobby-icon {
    margin: -5rem auto 2rem;
    width: 100px;
  }
  .business-single .text-2 {
    font-size: 10px !important;
  }
}

.hobby-img {
  width: 100%;
}

.hobby-name {
  font-size: 20px;
  color: black;
  font-weight: 600;
  margin-top: -3rem;
}

/* Hobbies End */

/* Business */
.business-single {
  border: 2px solid #fff;
  border-radius: 20px;
  background: #193437;
  padding: 2rem 2px 3rem;
  height: 155px;
}

.business .p-0 {
  padding: 0 3px !important;
  margin-top: 1rem !important;
}

.business-single img {
  display: block;
  margin: 0 auto 2rem;
}

.business-single .text-1 {
  font-weight: 400;
  font-size: 10px;
}

.business-single .text-2 {
  font-weight: 600;
  font-size: 12px;
}

.myrow {
  display: flex !important;
  flex-wrap: wrap !important;
}

.col-6 {
  width: 50%;
}

@media (min-width: 576px) {
  .col-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    width: 25%;
  }
}

.online-business {
  width: 700px;
  margin: 6rem auto;
}

@media (max-width: 768px) {
  .online-business {
    width: 96%;
    text-align: center;
  }
}

.online-business .one {
  font-weight: 600;
  font-style: italic;
  font-size: 23px;
}

.online-business .two {
  font-size: 20px;
  margin-top: 2rem;
}

/* Business End */

/* Footer */
footer {
  border-top: 1px solid #fff;
  padding: 3rem 0 3rem 3rem;
  margin-top: 3rem;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}

footer a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}

footer a:hover {
  text-decoration: none;
  color: #fff;
}

/* Footer End */

/* Appointment Form */
.appointment-form {
  margin: 5rem 0;
}

.appointment-form input,
.appointment-form select {
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
}

.appointment-form button {
  font-family: "Poppins", sans-serif;
  border: none;
  padding: 1rem 3rem;
  border-radius: 30px;
}

/*  */
.cookies-banner {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #01175e;
  padding: 20px 0;
  z-index: 10000;
}

.cookies-banner p {
  color: #fff;
  font-size: 1.5rem;
}

.cookies-accept-btn {
  border-radius: 40px;
  background: #fff;
  color: #01175e;
  border: 2px solid #01175e;
  box-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff;
  font-size: 1.5rem;
  padding: 5px 20px;
}

.cookies-accept-btn:hover {
  border: 2px solid #fff;
}
