*{
    scroll-behavior: smooth;
}
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }

  a {
    color: #F50057;
  }

  a:hover {
    color: #f50056c7;
    text-decoration: none;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  }
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: #fff;
  }

  #header.header-scrolled, #header.header-inner-pages {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  #header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
  }

  #header .logo a {
    color: #F50057;
  }

  #header .logo img {
    max-height: 40px;
  }

  @media (max-width: 992px) {
    #header {
      padding: 12px 0;
    }
  }

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-menu > ul {
    display: flex;
  }

  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .nav-menu a {
    display: block;
    position: relative;
    color: #2f2e41;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
  }

  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #F50057;
  }

  /* Get Startet Button */
  .get-started-btn {
    color: #F50057;
    border-radius: 50px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 13px;
    display: inline-block;
    border: 2px solid #F50057;
    text-transform: uppercase;
    font-weight: 600;
  }

  .get-started-btn:hover {
    background: #F50057;
    color: #fff;
  }

  @media (max-width: 768px) {
    .get-started-btn {
      margin: 0 48px 0 0;
      padding: 6px 18px;
    }
  }


  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 100vh;
    background: white;
    border-bottom: 2px solid white;
  }

  #hero .container {
    padding-top: 80px;
  }

  #hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: #2f2e41;
    font-family: "Poppins", sans-serif;
  }

  #hero h2 {
    margin: 10px 0 0 0;
    font-size: 20px;
  }

  #hero ul {
    margin-top: 15px;
    list-style: none;
    padding: 0;
  }

  #hero ul li {
    padding: 10px 0 0 28px;
    position: relative;
  }

  #hero ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: #F50057;
  }

  #hero .btn-get-started, #hero .btn-get-quote {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 30px 9px 30px;
    margin-bottom: 15px;
    border-radius: 3px;
    transition: 0.5s;
    border-radius: 50px;
  }

  #hero .btn-get-started {
    background: #F50057;
    color: #fff;
    border: 2px solid #F50057;
    margin-right: 10px;
  }

  #hero .btn-get-started:hover {
    background: #f50056c7;
    border-color: #f50056c7;
  }

  #hero .btn-get-quote {
    color: #F50057;
    border: 2px solid #F50057;
  }

  #hero .btn-get-quote:hover {
    background: #F50057;
    color: #fff;
  }

  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }

  @media (max-width: 991px) {
    #hero .hero-img {
      text-align: center;
    }
    #hero .hero-img img {
      width: 50%;
    }
  }

  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #hero .hero-img img {
      width: 70%;
    }
  }

  @media (max-width: 575px) {
    #hero {
      text-align: center;
    }
    #hero ul {
      text-align: left;
      font-size: 14px;
    }
    #hero .hero-img img {
      width: 80%;
    }
    #hero .btn-get-started, #hero .btn-get-quote {
      padding-left: 18px;
      padding-right: 18px;
      font-size: 14px;
    }
  }

  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
  }

  .section-bg {
    background-color: #eeeef5;
  }

  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2f2e41;
  }

  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #F50057;
    bottom: 0;
    left: calc(50% - 25px);
  }

  .section-title p {
    margin-bottom: 0;
  }

  /*--------------------------------------------------------------
  # Why Us
  --------------------------------------------------------------*/
  .why-us {
    padding-top: 0;
  }

  .why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    height: 350px;
  }

  .why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #f5005669;
  }

  .why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #2f2e41;
  }

  .why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
  }

  .why-us .box:hover {
    background: #F50057;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  }

  .why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
    color: #fff;
  }

  /*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
  .counts {
    padding: 70px 0 60px;
  }

  .counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
  }

  .counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #F50057;
    padding: 12px;
    color: #fff;
    border-radius: 50px;
  }

  .counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #f50056ab;
  }

  .counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
  }

  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  }

  .services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
  }

  .services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
  }

  .services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }

  .services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
  }

  .services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
  }

  .services .icon-box h4 a {
    color: #2f2e41;
    transition: ease-in-out 0.3s;
  }

  .services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }

  .services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  }

  .services .iconbox-blue i {
    color: #47aeff;
  }

  .services .iconbox-blue:hover .icon i {
    color: #fff;
  }

  .services .iconbox-blue:hover .icon path {
    fill: #47aeff;
  }

  .services .iconbox-orange i {
    color: #ffa76e;
  }

  .services .iconbox-orange:hover .icon i {
    color: #fff;
  }

  .services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
  }

  .services .iconbox-pink i {
    color: #e80368;
  }

  .services .iconbox-pink:hover .icon i {
    color: #fff;
  }

  .services .iconbox-pink:hover .icon path {
    fill: #e80368;
  }

  .services .iconbox-teal i {
    color: #11dbcf;
  }

  .services .iconbox-teal:hover .icon i {
    color: #fff;
  }

  .services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
  }

  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features {
    padding-top: 0;
  }

  .features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  .features .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
  }

  .features .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
  }

  .features .icon-box h3 a {
    color: #2f2e41;
    transition: ease-in-out 0.3s;
  }

  .features .icon-box:hover h3 a {
    color: #F50057;
  }

  /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
  .team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  .team .member .member-img {
    position: relative;
    overflow: hidden;
  }

  .team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(243, 78, 78, 0.85);
  }

  .team .member .social a {
    transition: color 0.3s;
    color: #2f2e41;
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
  }

  .team .member .social a:hover {
    color: #F50057;
  }

  .team .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }

  .team .member .member-info {
    padding: 25px 15px;
  }

  .team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #2f2e41;
  }

  .team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
  }

  .team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
  }

  .team .member:hover .social {
    opacity: 1;
  }

  /*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
  .pricing .row {
    padding-top: 40px;
  }

  .pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
  }

  .pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
  }

  .pricing h4 {
    font-size: 46px;
    color: #F50057;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 25px;
  }

  .pricing h4 span {
    color: #bababa;
    font-size: 18px;
    display: block;
  }

  .pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
  }

  .pricing ul li {
    padding-bottom: 12px;
  }

  .pricing ul i {
    color: #F50057;
    font-size: 18px;
    padding-right: 4px;
  }

  .pricing ul .na {
    color: #ccc;
  }

  .pricing ul .na i {
    color: #ccc;
  }

  .pricing ul .na span {
    text-decoration: line-through;
  }

  .pricing .btn-buy {
    background: #2f2e41;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    transition: 0.3s;
    border: none;
  }

  .pricing .btn-buy:hover {
    background: #F50057;
  }

  .pricing .featured {
    z-index: 10;
    margin: -30px -5px 0 -5px;
  }

  .pricing .featured .btn-buy {
    background: #F50057;
  }

  .pricing .featured .btn-buy:hover {
    background: #f50056c7;
  }

  @media (max-width: 992px) {
    .pricing .box {
      max-width: 60%;
      margin: 0 auto 30px auto;
    }
  }

  @media (max-width: 767px) {
    .pricing .box {
      max-width: 80%;
      margin: 0 auto 30px auto;
    }
  }

  @media (max-width: 420px) {
    .pricing .box {
      max-width: 100%;
      margin: 0 auto 30px auto;
    }
  }

  /*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/
  .faq {
    padding: 60px 0;
  }

  .faq .faq-list {
    padding: 0 100px;
    list-style: none;
  }

  .faq .faq-list li {
    padding: 0 0 20px 25px;
  }

  .faq .faq-list a {
    display: block;
    position: relative;
    font-family: #F50057;
    font-size: 18px;
    font-weight: 500;
  }

  .faq .faq-list i {
    font-size: 18px;
    position: absolute;
    left: -25px;
    top: 6px;
  }

  .faq .faq-list p {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .faq .faq-list a.collapse {
    color: #F50057;
  }

  .faq .faq-list a.collapsed {
    color: #343a40;
  }

  .faq .faq-list a.collapsed:hover {
    color: #F50057;
  }

  .faq .faq-list a.collapsed i::before {
    content: "\eab2" !important;
  }

  @media (max-width: 1200px) {
    .faq .faq-list {
      padding: 0;
    }
  }

  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
  }

  .contact .info-box i {
    font-size: 32px;
    color: #F50057;
    border-radius: 50%;
    padding: 8px;
  }

  .contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
  }

  .contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }

  .contact .email-form {
    background: #fff;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
  }

  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    color: #444444;
    font-size: 14px;
    background: #eeeef5;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
  }

  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #F50057;
  }

  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #777777;
  }

  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #2f2e41;
    position: relative;
    padding-bottom: 12px;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #F50057;
    font-size: 18px;
    line-height: 1;
  }

  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }

  #footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }

  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #F50057;
  }

  #footer .footer-newsletter {
    font-size: 15px;
  }

  #footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
  }

  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #f5005669;
  }

  #footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }

  #footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #F50057;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  #footer .footer-newsletter form input[type="submit"]:hover {
    background: #f50056c7;
  }

  #footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
  }

  #footer .credits a {
    transition: 0.3s;
  }

  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #deddec;
    color: #2f2e41;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }

  #footer .social-links a:hover {
    background: #F50057;
    color: #fff;
    text-decoration: none;
  }
