/*---------- Body Start ----------*/
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #797979;
    background-color: #ffffff;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow-x: hidden;
  }
  
  body,
  html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  
  /*---------- Typography CSS Start ----------*/
  a,
  a:hover,
  a:focus {
    color: #797979;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
    color: #111111;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  img {
    max-width: 100%;
  }
  
  input,
  textarea,
  select,
  button,
  label,
  svg,
  svg path,
  svg rect,
  svg polygon,
  img,
  a,
  :after,
  :before,
  :hover,
  :focus,
  .form-control:focus {
    outline: none !important;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  a,
  button {
    cursor: pointer;
  }
  
  /*---------- Button CSS Start ----------*/
  .bb_btn {
    min-width: 140px;
    height: 50px;
    border: 2px solid #0c619e;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0px 20px;
    text-transform: capitalize;
    color: #ffffff;
    background-color: #0c619e;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 18px;
  }
  
  .bb_btn:hover,
  .bb_btn:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0c619e;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  }
  
  /* Page CSS Start */
  .top-header {
    background-color: #dd6867;
  }
  
  .number ul {
    list-style: none;
    display: flex;
    padding-left: 0px;
    margin-bottom: 5px;
  }
  
  .info {
    margin-left: 20px;
  }
  
  .number a:hover {
    text-decoration: none;
  }
  
  .number span {
    font-family: Playfair Display, serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin-left: 0px;
    vertical-align: middle;
    font-size: 13px;
  }
  
  .topnav a {
    color: #f2f2f2;
    text-align: center;
    padding: 5px 13px;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    font-family: Playfair Display, serif;
  }
  
  .topnav a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  .topnav {
    text-align: right;
  }
  
  .logo-section {
    background-color: #f2deb9;
    padding-top: 10px;
    padding-bottom: 15px;
  }
  
  nav {
    /* height: 6rem;
      width: 100vw; */
    display: flex;
    /* position: fixed; */
    z-index: 10;
  }
  
  .home {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  /*Styling Links*/
  .nav-links {
    display: flex;
    list-style: none;
    /* width: 88vw;
      padding: 0 0.7vw;
      justify-content: space-evenly; */
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 0px;
  }
  
  .nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    color: #f2deb9;
    font-family: 'Basilio';
    font-size: 26px;
    letter-spacing: 2px;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
  }
  
  .nav-links li a:hover::before {
    width: 80%;
  }
  
  /*Styling Hamburger Icon*/
  .hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  .hamburger {
    display: none;
  }
  
  /*Stying for small screens*/
  @media screen and (max-width: 800px) {
    nav {
      position: fixed;
      z-index: 3;
    }
  
    .hamburger {
      display: block;
      position: absolute;
      cursor: pointer;
      right: 5%;
      top: 50%;
      transform: translate(-5%, -50%);
      z-index: 2;
      transition: all 0.7s ease;
    }
  
    .nav-links {
      position: fixed;
      background: #131418;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(50px at 90% -20%);
      -webkit-clip-path: circle(50px at 90% -10%);
      transition: all 1s ease-out;
      pointer-events: none;
    }
  
    .nav-links.open {
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
    }
  
    .nav-links li {
      opacity: 0;
    }
  
    .nav-links li:nth-child(1) {
      transition: all 0.5s ease 0.2s;
    }
  
    .nav-links li:nth-child(2) {
      transition: all 0.5s ease 0.4s;
    }
  
    .nav-links li:nth-child(3) {
      transition: all 0.5s ease 0.6s;
    }
  
    .nav-links li:nth-child(4) {
      transition: all 0.5s ease 0.7s;
    }
  
    .nav-links li:nth-child(5) {
      transition: all 0.5s ease 0.8s;
    }
  
    .nav-links li:nth-child(6) {
      transition: all 0.5s ease 0.9s;
      margin: 0;
    }
  
    .nav-links li:nth-child(7) {
      transition: all 0.5s ease 1s;
      margin: 0;
    }
  
    li.fade {
      opacity: 1;
    }
  }
  
  /*Animating Hamburger Icon on Click*/
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
  }
  
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .menu-section {
    background-color: #80af8d;
    padding: 10px 0px 13px 0px;
  }
  
  .menu-wept {
    display: flex;
    justify-content: center;
  }
  
  .nav-links li:nth-child(2) a,
  .nav-links li:nth-child(4) a,
  .nav-links li:nth-child(6) a,
  .nav-links li:nth-child(8) a,
  .nav-links li:nth-child(10) a,
  .nav-links li:nth-child(12) a {
    cursor: auto;
  }
  
  .logo {
    text-align: center;
  }
  
  .dirty-bar h1 {
    width: 100%;
    /* Full width */
    height: 170px;
    /* Set height as needed */
    background-image: url("../images/text-back.png");
    background-size: contain;
    /* Cover full area */
    background-position: bottom;
    /* Center the image */
    background-repeat: no-repeat;
    /* No repeat */
    color: white;
    /* Text color */
    display: flex;
    /* Align text */
    justify-content: center;
    align-items: center;
  }
  
  .w-99 {
    margin-bottom: -30px;
    margin-right: 10px;
  }
  
  .w-98 {
    margin-bottom: -30px;
    margin-left: 10px;
  }
  
  .products {
    background-color: #f2deb9;
    padding: 40px 0px 40px 0px;
  }
  
  .dirty-bar h1,
  .check-our h1 {
    text-align: center;
    font-family: 'Basilio';
    color: #fff;
    font-size: 50px;
    letter-spacing: 2px;
  }
  
  .check-our h1 {
    color: #000;
  }
  
  .m-80 {
    margin-top: 50px;
  }
  
  .first {
    text-align: center;
  }
  
  .first h2,
  .tab-wept h2 {
    color: #000;
    font-family: 'Basilio';
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 20px;
  }
  
  .first p {
    font-family: Playfair Display, serif;
    font-weight: 400;
    color: #000;
    margin-top: 5px;
  }
  
  .first .btn,
  .number-cross .btn {
    background-color: #dd6867;
    color: #fff;
    font-family: 'Basilio';
    letter-spacing: 2px;
    width: 124px;
    border-radius: 0px;
    border: none;
    border-bottom: 3px solid #c34f4e;
    display: inline;
    padding: 3px;
  }
  
  .m-80 .m-46 {
    background-color: #74ab89;
    border-bottom: 3px solid #4d8763;
  }
  
  .m-34 {
    margin-right: -13px;
  }
  
  /* .tabs-wrapper {
    max-width: 500px;
    width: 100%;
  } */
  .number-cross {
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .number-cross span {
    font-family: Playfair Display, serif;
    font-weight: 400;
  }
  
  #tab1 .second-wept .w-77,
  #tab2 .second-wept .w-77,
  #tab3 .second-wept .w-77,
  #tab4 .second-wept .w-77 {
    margin-left: -3px;
  }
  
  .m-23 {
    margin-top: 30px;
  }
  
  #tab1 .second-wept .w-89,
  #tab2 .second-wept .w-89,
  #tab3 .second-wept .w-89,
  #tab4 .second-wept .w-89 {
    text-decoration: none;
  }
  
  #tab1 .cart-btn,
  #tab2 .cart-btn,
  #tab3 .cart-btn,
  #tab4 .cart-btn {
    display: block;
    margin-top: 20px;
  }
  
  .second-wept .add-btn {
    width: 140px;
  }
  
  .tab-wept {
    text-align: center;
  }
  
  .number-cross .w-89 {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding-right: 5px;
    text-decoration: line-through;
  }
  
  .number-cross .add-btn {
    display: block;
    margin-top: 20px;
  }
  
  .number-cross .w-85 {
    background-color: #dd6867;
    padding: 2px 3px 2px 3px;
    color: #fff;
    margin-left: -5px;
  }
  
  .tab-wept h2 {
    margin-top: 20px;
    font-weight: 500;
  }
  
  .tab-wept .w-90 {
    margin-right: 5px;
  }
  
  .tab-wept .w-77 {
    margin-left: 5px;
  }
  
  .tabs {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 45px;
    margin-bottom: 55px;
  }
  
  .tabs li {
    cursor: pointer;
    padding: 7px 20px;
    border-radius: 7px;
    border-bottom: 3px solid #c34f4e;
    background-color: #dd6867;
    transition: 0.25s;
    color: #fff;
    font-family: Playfair Display, serif;
    letter-spacing: 2px;
    border-radius: 0px;
    border: none;
    font-weight: bold;
    font-size: 14px;
  }
  
  .tabs li:hover {
    border-color: #111;
    color: #FFF;
    background-color: #111;
  }
  
  .tabs li.active {
    border-color: #111;
    color: #FFF;
    background-color: #111;
  }
  
  .tab-content {
    display: none;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 5px;
  }
  
  .tab-content h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 100;
  }
  
  .tab-content p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /*-----Testimonial-------*/
  .heading {
    position: relative;
    margin-bottom: -20px;
    text-transform: uppercase;
    z-index: 999;
    text-align: center;
    font-family: 'Basilio';
    color: #fff;
    font-size: 50px;
    letter-spacing: 2px;
    font-weight: 100;
  }
  
  #testimonial4 .img-1 {
    position: absolute;
    left: -6%;
    top: 31%;
  }
  
  #testimonial4 .img-2 {
    position: absolute;
    right: -6%;
    top: 31%;
  }
  
  .t-01 {
    margin-top: 40px;
    background-color: #dd6867;
    padding: 30px 0px 50px 0px;
  }
  
  .white-heading {
    color: #ffffff;
  }
  
  .heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
  }
  
  .white-heading span {
    color: #ffffff;
  }
  
  .testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
  }
  
  #testimonial4 .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  
  #testimonial4 .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
  }
  
  #testimonial4 .carousel-inner .item {
    overflow: hidden;
  }
  
  .testimonial4_indicators .carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    padding: 0 5px;
    cursor: e-resize;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
  }
  
  .testimonial4_indicators .carousel-indicators li {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #ffffff;
    -webkit-border-radius: 100%;
    border-radius: 100%;
  }
  
  .testimonial4_indicators .carousel-indicators .active {
    padding: 0;
    width: 14px;
    height: 14px;
    border: none;
    margin: 2px 3px;
    background-color: #9dd3af;
    -webkit-border-radius: 100%;
    border-radius: 100%;
  }
  
  .testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
    height: 3px;
  }
  
  .testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
    background: #eeeeee;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  
  .testimonial4_control_button .carousel-control {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
  }
  
  .testimonial4_control_button .carousel-control.left {
    left: 7%;
    top: 50%;
    right: auto;
  }
  
  .testimonial4_control_button .carousel-control.right {
    right: 7%;
    top: 50%;
    left: auto;
  }
  
  .testimonial4_control_button .carousel-control.left:hover,
  .testimonial4_control_button .carousel-control.right:hover {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
  }
  
  .testimonial4_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative;
  }
  
  .testimonial4_header h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    margin: auto;
    padding: 20px;
    position: relative;
    text-align: center;
  }
  
  .testimonial4_slide p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    margin: 30px 0 20px 0;
    font-family: Playfair Display, serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .testimonial4_slide h4 {
    color: #ffffff;
    font-size: 18px;
    font-family: Playfair Display, serif;
    font-weight: bold;
    font-style: italic;
  }
  
  .testimonial .carousel {
    padding-bottom: 50px;
  }
  
  .testimonials .carousel-control-next-icon,
  .testimonials .carousel-control-prev-icon {
    width: 31px;
    height: 31px;
  }
  
  .testimonials .carousel-control-next,
  .testimonials .carousel-control-prev {
    opacity: 1.0;
    top: 106%;
  }
  
  .testimonials .carousel-control-prev {
    left: 41.5%;
  }
  
  .testimonials .carousel-control-next {
    right: 41.5%;
  }
  
  /* ------testimonial  close-------*/
  .price-list .m-34 {
    margin-right: 0px;
  }
  
  .price-list span {
    background-color: #dd6867;
  }
  
  .price-list h1 {
    color: #fff;
  }
  
  .items-price {
    text-align: center;
  }
  
  .m-77 {
    margin-top: -55px;
  }
  
  .design-back {
    background-image: url('../images/back-design.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .design-back {
    padding: 25px 0px 25px 0px;
  }
  
  .design-back h3 {
    font-size: 30px;
    margin-top: 25px;
  }
  
  .items-price h3 {
    font-family: 'Basilio';
  }
  
  .items-price p {
    font-family: Playfair Display, serif;
    font-weight: 400;
    color: #000;
    margin-bottom: 0px;
  }
  
  .items-price .number-cross {
    margin-top: 10px;
    margin-bottom: 33px;
  }
  
  .items-price .w-89 {
    font-family: 'Basilio';
    text-decoration: none;
    font-size: 27px;
    border-top: 1px solid #dd6867;
    border-bottom: 1px solid #dd6867;
    padding-right: 0px;
    color: #dd6867;
    padding-bottom: 6px;
  }
  
  #news-slider {
    margin-top: 30px;
    margin-bottom: -30px;
  }
  
  #news-slider .post-title a {
    font-family: 'Basilio';
    font-size: 20px;
    color: #474747;
    letter-spacing: 2px;
    font-weight: 100;
  }
  
  .post-slide {
    margin: 20px 15px 20px;
  }
  
  .post-slide .post-img {
    position: relative;
    overflow: hidden;
    margin-left: -10px;
  }
  
  .post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
  }
  
  .post-title a:hover {
    text-decoration: none;
  }
  
  .post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(-45deg, rgba(6, 190, 244, 0.75) 0%, rgba(45, 112, 253, 0.6) 100%);
    transition: all 0.50s linear;
  }
  
  .post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
  }
  
  .post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
  }
  
  .post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
  }
  
  .post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
  }
  
  .owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
  }
  
  .owl-controls .owl-buttons .owl-prev {
    background: #333333;
    position: absolute;
    top: -7%;
    left: 93%;
    padding: 0 10px 0 11px;
    border-radius: 5px;
    transition: background 0.5s ease 0s;
  }
  
  .owl-controls .owl-buttons .owl-next {
    background: #333333;
    position: absolute;
    top: -7%;
    right: 15px;
    padding: 0 10px 0 11px;
    border-radius: 5px;
    transition: background 0.5s ease 0s;
  }
  
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #fff;
    font-size: 17px;
  }
  
  .owl-controls .owl-buttons .owl-next:after {
    content: "\f105";
  }
  
  @media only screen and (max-width:1280px) {
    .post-slide .post-content {
      padding: 0px 15px 25px 15px;
    }
  }
  
  
  .wrapper {
    display: flex;
    flex-direction: row;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
  }
  
  .fab {
    margin: auto;
  }
  
  .social {
    color: #FFF;
    transition: all 0.35s;
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
  }
  
  .social:hover {
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    transition: all ease 0.5s;
    -moz-transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
  
  }
  
  .facebook {
    color: #fff;
  }
  
  .twitter {
    color: #fff;
  
  }
  
  .youtube {
    color: #fff;
  }
  
  .pinterest {
    color: #fff;
  }
  
  .instagram {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fff 0%, #fff 5%, #fff 45%, #fff 60%, #fff 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
  
  }
  
  .tumblr {
    color: #fff;
  }
  
  .whatsapp {
    color: #fff;
  }
  
  .bg-ico {
    display: flex;
    background-color: #dd6867;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 55%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    opacity: 0.99;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
  
  }
  
  .bg-ico:hover {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.8);
  }
  
  #facebook:hover {
    background-color: #4267B2;
  }
  
  #twitter:hover {
    background-color: #1DA1F2;
  
  }
  
  #youtube:hover {
    background-color: #c4302b;
  }
  
  #pinterest:hover {
    background-color: #c8232c;
  }
  
  #instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }
  
  #tumblr:hover {
    background-color: #34526f;
  }
  
  #whatsapp:hover {
    background-color: #25D366;
  }
  
  .wrapper a:hover {
    text-decoration: none;
  }
  
  .facebook:hover,
  .twitter:hover,
  .youtube:hover,
  .pinterest:hover,
  .instagram:hover,
  .tumblr:hover,
  .whatsapp:hover {
    color: #fff;
    transform: scale(1.3);
  }
  
  .footer-link {
    list-style: none;
    text-align: center;
    padding-right: 90px;
    margin-top: 25px;
  }
  
  .post input {
    margin-top: 15px;
    background-color: #e48685;
    border: 0px;
    font-family: Playfair Display, serif;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    width: 90%;
  }
  
  .post input::placeholder {
    color: #fff;
    font-family: Playfair Display, serif;
    font-weight: 400;
    font-size: 15px;
  }
  
  .post .w-03 {
    margin-top: -10px;
  }
  
  .tag A:hover {
    text-decoration: none;
  }
  
  .tag {
    list-style: none;
    padding-left: 0px;
    margin-top: 20px;
    display: flex;
  }
  
  .tag a {
    font-family: 'Basilio';
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 100;
    background-color: #e48685;
    padding: 2px 6px 6px 6px;
    margin-right: 5px;
  }
  
  .post h4 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-family: Playfair Display, serif;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .post img {
    margin-top: 15px;
  }
  
  .footer {
    background-color: #dd6867;
    padding: 100px 0px 100px 0px;
    margin-top: -90px;
  }
  
  .footer-link li a,
  .post h2 {
    font-family: 'Basilio';
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 100;
    margin-bottom: 6px;
  }
  
  .post h2 {
    font-size: 27px;
    margin-top: 15px;
  }
  
  .footer-link li a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-link li {
    margin-bottom: 6px;
  }
  
  .footer-wept {
    background-color: #f2deb9;
  }
  
  .footer-wept p {
    margin-bottom: 0px;
    color: #f2deb9;
  }
  /* Page CSS End */
  /*---------- Responsive CSS Start ----------*/
  @media (max-width: 1700px) {}
  
  @media (max-width: 1580px) {}
  
  @media (max-width: 1440px) {}
  
  @media (max-width: 1199px) {}
  
  @media (max-width: 1024px) {}
  
  @media (min-width: 992px) and (max-width: 1199px) {}
  
  @media (max-width: 991px) {}
  
  @media (min-width: 768px) and (max-width: 991px) {}
  
  @media (max-width: 767px) {
    .number ul{
        justify-content: center;
    }
    .topnav {
        text-align: center;
    }
    .logo img{
        width: 50%;
    }
    .menu-section {
        padding: 18px 0px 18px 0px;
    }
    .hamburger{
        left: -162px;
    }
    .nav-links{
        background: #fff;
    }
    .fade:not(.show) {
        opacity: inherit!important;
    }
    .nav-links.open{
        left: 0%;
    }
    .dirty-bar h1{
        background-size: auto;
    }
    .first{
        margin-bottom: 50px;
    }
    .tabs{
        display: block;
    }
    .testimonials .carousel-control-next {
        right: 36.5%;
    }
    .bg-ico{
        width: 70px;
        height: 70px;
        margin: 0px;
    }
    .footer-link {
        list-style: none;
        text-align: left;
        padding-right: 0px;
        margin-top: 25px;
        margin-left: -40px;
    }
  }
  
  @media (min-width: 480px) and (max-width: 767px) {}
  
  @media (max-width: 567px) {}
  
  @media (max-width: 479px) {}
  
  @media (max-width: 425px) {}