/* =--------------------------------------= Import Fonts =------------------= */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@keyframes navBarShow {
  from {
    top: -100%; }
  to {
    top: 0%; } }
/* =--------------------------------------= Import Resets =------------------= */
/* =--------------------------------------= Global Resets =------------------= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif; }

html {
  scroll-behavior: smooth; }

body {
  height: 100%;
  width: 100%; }

/* =--------------------------------------= Import Components =------------------= */
.header h1 {
  font-size: calc(100% + 1.5vw);
  color: #212121;
  font-weight: 600;
  margin: 10px 0 30px;
  text-transform: uppercase; }
.header h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #70b730; }

.owl-nav {
  position: absolute;
  top: -80px;
  right: 0; }
  .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #70b730 !important;
    color: #fefefe !important;
    font-size: 18px !important;
    transition: all 0.3s ease-in-out; }
    .owl-nav .owl-prev:hover {
      background: #509710 !important; }
  .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #70b730 !important;
    color: #fefefe !important;
    font-size: 18px !important;
    transition: all 0.3s ease-in-out; }
    .owl-nav .owl-next:hover {
      background: #509710 !important; }

.owl-dots {
  margin-top: 20px !important; }
  .owl-dots .owl-dot.active span {
    background: #70b730 !important; }

/* =--------------------------------------= Import Utils Classes =------------------= */
.wrapper {
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }

.btn {
  padding: 14px 26px;
  border-radius: 25px;
  font-size: 15px;
  text-transform: uppercase;
  background: #70b730;
  color: #fefefe;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out; }
  .btn:hover {
    background: #509710; }

/* =--------------------------------------= Home Part Partition =------------------= */
.home {
  width: 100%;
  /* =------= Addresses Part Partition =---= */
  /* =------= Addresses Part Partition =---= */
  /* =------= Addresses Part Partition =---= */ }
  .home .top__bar {
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    background: #70b730; }
    @media (max-width: 568px) {
      .home .top__bar {
        flex-direction: column;
        align-items: center;
        gap: 15px 0; } }
    .home .top__bar .left {
      position: relative; }
      .home .top__bar .left span {
        display: inline-block;
        color: #fefefe; }
        @media (max-width: 568px) {
          .home .top__bar .left span {
            display: block; } }
        .home .top__bar .left span:nth-of-type(1) {
          margin-right: 15px; }
          @media (max-width: 568px) {
            .home .top__bar .left span:nth-of-type(1) {
              margin: 0 0 7px; } }
        .home .top__bar .left span i {
          font-size: 15px;
          margin-right: 4px; }
        .home .top__bar .left span b {
          font-size: 15px;
          letter-spacing: 1px;
          font-weight: 500; }
    .home .top__bar .right {
      position: relative; }
      .home .top__bar .right a {
        text-decoration: none;
        color: #fefefe;
        margin-right: 15px; }
        .home .top__bar .right a:nth-of-type(4) {
          margin-right: 0; }
        .home .top__bar .right a:hover i {
          transform: translateY(-5px); }
        .home .top__bar .right a i {
          color: #fefefe;
          font-size: 15px;
          transition: all 0.3s ease-in-out; }
  .home .features__bar {
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    background: white; }
    @media (max-width: 768px) {
      .home .features__bar {
        flex-direction: column; } }
    .home .features__bar .item {
      display: flex;
      align-items: flex-start; }
      .home .features__bar .item .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f6f6f6;
        margin-right: 15px; }
        .home .features__bar .item .icon i {
          color: #70b730;
          font-size: 16px; }
      .home .features__bar .item .description {
        display: flex;
        flex-direction: column; }
        .home .features__bar .item .description span:nth-of-type(1) {
          font-size: 16px;
          color: #212121;
          font-weight: 500;
          margin-top: 3px; }
        .home .features__bar .item .description span:nth-of-type(2) {
          font-size: 15px;
          margin-top: 6px;
          color: #454545; }
  .home .banner {
    position: relative;
    width: 100%;
    height: auto;
    padding: 60px 8%;
    min-height: 830px;
    background: url("../../../Assets/Images/BackGround.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    align-items: center; }
    .home .banner .overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1; }
    .home .banner .navbar {
      position: absolute;
      width: calc(100% - 16%);
      height: 80px;
      margin: 0 auto;
      padding: 0 30px;
      background: #70b730;
      top: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100; }
      .home .banner .navbar__opened {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 30px 8%;
        box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
        animation: navBarShow 1s; }
      .home .banner .navbar .logo {
        width: 130px; }
      .home .banner .navbar .links {
        position: relative; }
        @media (max-width: 868px) {
          .home .banner .navbar .links {
            position: fixed;
            width: 100%;
            height: 100vh;
            background: #70b730;
            top: 0;
            right: -100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease-in-out;
            z-index: 101; }
            .home .banner .navbar .links__opened {
              right: 0; } }
        .home .banner .navbar .links ul {
          list-style: none; }
          .home .banner .navbar .links ul li {
            display: inline-block;
            margin-left: 16px; }
            @media (max-width: 868px) {
              .home .banner .navbar .links ul li {
                margin: 20px 0;
                display: block;
                text-align: center; } }
            .home .banner .navbar .links ul li:hover a {
              color: #212121; }
            .home .banner .navbar .links ul li a {
              text-decoration: none;
              color: #fefefe;
              text-transform: uppercase;
              font-size: 15px;
              transition: all 0.3s ease-in-out; }
              @media (max-width: 868px) {
                .home .banner .navbar .links ul li a {
                  font-size: 20px;
                  font-weight: bold;
                  letter-spacing: 1px; } }
        .home .banner .navbar .links .close {
          position: absolute;
          top: 20px;
          right: 30px;
          cursor: pointer;
          z-index: 102;
          display: none; }
          @media (max-width: 868px) {
            .home .banner .navbar .links .close {
              display: block; } }
          .home .banner .navbar .links .close i {
            font-size: 24px;
            color: #fefefe; }
      .home .banner .navbar .menu__btn {
        cursor: pointer;
        display: none; }
        @media (max-width: 868px) {
          .home .banner .navbar .menu__btn {
            display: block; } }
        .home .banner .navbar .menu__btn i {
          color: #fefefe;
          font-size: 22px; }
    .home .banner .content {
      position: relative;
      width: 100%;
      height: 100%;
      padding-top: 30px;
      z-index: 2; }
      .home .banner .content h1 {
        position: relative;
        font-size: calc(40px + 1.5vw);
        color: #fefefe;
        font-weight: 500;
        margin: 20px 0; }
        .home .banner .content h1::before {
          content: "";
          position: absolute;
          height: 3px;
          width: 40px;
          background: #70b730;
          left: 0;
          top: 120%; }
      .home .banner .content h2 {
        font-size: calc(18px + 1vw);
        letter-spacing: 1px;
        color: #fefefe; }
      .home .banner .content p {
        max-width: 500px;
        margin: 35px 0;
        color: darkgray;
        line-height: 1.2; }
      .home .banner .content .banner__btn {
        font-size: 16px;
        align-self: flex-start;
        box-shadow: 10px 10px 22px -1px rgba(0, 0, 0, 0.55);
        transition: all 0.3s ease-in-out; }
        .home .banner .content .banner__btn:hover {
          box-shadow: 5px 5px 14px -1px rgba(0, 0, 0, 0.4); }

/* =--------------------------------------= Booking Part Partition =------------------= */
/* =------= Addresses Part Partition =---= */
.booking {
  position: relative;
  width: calc(100% - 16%);
  margin: 0 auto;
  top: -100px;
  z-index: 3;
  background: white;
  padding: 20px 30px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); }
  @media (max-width: 568px) {
    .booking {
      padding: 30px; } }
  .booking form .title h2 {
    text-transform: uppercase;
    font-size: 24px;
    color: #212121;
    margin-bottom: 15px; }
  .booking form .row {
    display: grid;
    gap: 20px; }
    .booking form .row .element {
      position: relative;
      display: flex;
      align-items: center; }
      .booking form .row .element input {
        display: flex;
        width: 100%;
        height: 47px;
        align-items: center;
        padding-left: 50px;
        padding-right: 15px;
        font-size: 14px;
        color: #4a5158;
        border: 1px solid #cdd3d9;
        outline-color: #70b730; }
      .booking form .row .element select {
        display: flex;
        width: 100%;
        height: 47px;
        align-items: center;
        padding-left: 50px;
        padding-right: 15px;
        font-size: 14px;
        color: #4a5158;
        border: 1px solid #cdd3d9;
        outline-color: #70b730; }
      .booking form .row .element i {
        position: absolute;
        padding-left: 15px;
        height: 100%;
        line-height: 47px;
        align-items: center;
        font-size: 20px;
        left: 0;
        color: #70b730; }
      .booking form .row .element .booking__btn {
        width: 100%;
        height: 47px;
        border-radius: 0.2rem;
        padding: 0; }
  .booking form .row__one {
    grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 768px) {
      .booking form .row__one {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "InputOne InputOne" "InputTwo InputThree"; }
        .booking form .row__one .element:nth-of-type(1) {
          grid-area: InputOne; }
        .booking form .row__one .element:nth-of-type(2) {
          grid-area: InputTwo; }
        .booking form .row__one .element:nth-of-type(3) {
          grid-area: InputThree; } }
    @media (max-width: 568px) {
      .booking form .row__one {
        grid-template-columns: 1fr;
        grid-template-areas: "InputOne" "InputTwo" "InputThree"; } }
  .booking form .row__two {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 15px; }
    @media (max-width: 968px) {
      .booking form .row__two {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px) {
      .booking form .row__two {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 568px) {
      .booking form .row__two {
        grid-template-columns: 1fr; } }

/* =--------------------------------------= About Part Partition =------------------= */
.about {
  width: 100%;
  margin: 30px 0 20px;
  /* =------= Row One =---= */
  /* =------= Row Two =---= */ }
  .about .row__one {
    width: calc(100% - 8%);
    padding-left: 8%;
    padding-top: 80px;
    background: #f6f6f6;
    display: grid;
    grid-template-columns: 5fr 7fr; }
    @media (max-width: 968px) {
      .about .row__one {
        grid-template-columns: 1fr; } }
    .about .row__one .image {
      position: relative; }
      @media (max-width: 968px) {
        .about .row__one .image {
          margin-bottom: 30px; } }
      .about .row__one .image img {
        position: absolute;
        width: 100%;
        height: 550px;
        object-fit: cover; }
        @media (max-width: 968px) {
          .about .row__one .image img {
            display: block;
            position: relative; } }
        @media (max-width: 568px) {
          .about .row__one .image img {
            height: 400px; } }
    .about .row__one .content {
      padding: 0 20px 60px 8%; }
      @media (max-width: 968px) {
        .about .row__one .content {
          padding: 0 20px 60px 0%; } }
      .about .row__one .content h3 {
        font-size: 16px;
        font-weight: 500;
        color: #70b730;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px; }
      .about .row__one .content h1 {
        font-size: calc(21px + 1.5vw);
        font-weight: 600;
        color: #212121;
        line-height: 1.2; }
      .about .row__one .content p {
        font-size: 16px;
        color: #454545;
        line-height: 1.3;
        margin-top: 15px; }
      .about .row__one .content .about__btn {
        margin-top: 40px;
        padding: 14px 30px; }
  .about .row__two {
    width: 100%;
    display: grid;
    padding: 20px 8% 40px;
    grid-template-columns: 5fr 7fr; }
    @media (max-width: 968px) {
      .about .row__two {
        grid-template-columns: 1fr; } }
    .about .row__two .facts {
      padding: 20px 20px 0 8%;
      display: flex;
      gap: 20px; }
      @media (max-width: 968px) {
        .about .row__two .facts {
          padding: 0; } }
      @media (max-width: 568px) {
        .about .row__two .facts {
          flex-direction: column; } }
      .about .row__two .facts .box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px; }
        .about .row__two .facts .box .icon {
          position: relative; }
          .about .row__two .facts .box .icon i {
            font-size: 24px;
            color: #70b730; }
        .about .row__two .facts .box .description {
          margin-top: 10px;
          text-align: center; }
          .about .row__two .facts .box .description h2 {
            font-size: 20px;
            font-weight: 500;
            color: #212121;
            margin-bottom: 8px; }
          .about .row__two .facts .box .description p {
            color: #454545;
            font-size: 15px; }

/* =--------------------------------------= Destinations Part Partition =------------------= */
.destination {
  width: 100%;
  padding: 18px 8% 10px;
  /* =------= Places Part Partition =---= */ }
  .destination .places {
    width: 100%; }
    .destination .places .item {
      position: relative;
      max-height: 450px;
      border-radius: 15px;
      overflow: hidden; }
      .destination .places .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px; }
      .destination .places .item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 30px 20px 30px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.01) 100%);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column; }
        .destination .places .item .overlay .explore__btn {
          font-size: 14px;
          background: rgba(112, 183, 48, 0.5); }
          .destination .places .item .overlay .explore__btn:hover {
            background: #70b730; }
        .destination .places .item .overlay .description {
          position: relative; }
          .destination .places .item .overlay .description h3 {
            margin-bottom: 10px;
            font-size: 24px;
            color: #fefefe;
            text-transform: capitalize;
            font-weight: 500;
            letter-spacing: 1px; }
          .destination .places .item .overlay .description p {
            font-size: 15px;
            color: #fefefe; }
            .destination .places .item .overlay .description p i {
              margin-right: 10px;
              font-size: 18px;
              color: #70b730; }

/* =--------------------------------------= Packages Part Partition =------------------= */
.packages {
  width: 100%;
  padding: 18px 8% 10px;
  /* =------= Places Part Partition =---= */ }
  .packages .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
    @media (max-width: 968px) {
      .packages .content {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 668px) {
      .packages .content {
        grid-template-columns: 1fr; } }
    .packages .content .box {
      position: relative;
      background: #f6f6f6;
      border-radius: 1rem; }
      .packages .content .box img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
        display: block;
        border-radius: 1rem; }
      .packages .content .box .description {
        position: relative;
        padding: 20px; }
        .packages .content .box .description h2 {
          font-size: 22px;
          font-weight: 500;
          color: #212121; }
        .packages .content .box .description p {
          font-size: 15px;
          line-height: 1.3;
          color: #454545;
          margin: 10px 0 20px; }
        .packages .content .box .description .pricing {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-top: 30px;
          padding-right: 5px;
          padding-left: 5px; }
          .packages .content .box .description .pricing span {
            font-size: 18px;
            font-weight: bold; }
          .packages .content .box .description .pricing .package__btn {
            padding: 13px 22px;
            font-size: 13px; }

/* =--------------------------------------= Steps Partition =------------------= */
.steps {
  width: 100%;
  padding: 100px 8% 10px;
  /* =------= Places Part Partition =---= */ }
  .steps .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
    @media (max-width: 968px) {
      .steps .content {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 668px) {
      .steps .content {
        grid-template-columns: 1fr; } }
    .steps .content .box {
      padding: 25px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: #f6f6f6; }
      .steps .content .box .icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #70b730;
        display: flex;
        justify-content: center;
        align-items: center; }
        .steps .content .box .icon i {
          font-size: 22px;
          color: #fefefe; }
      .steps .content .box .describe {
        margin-top: 20px; }
        .steps .content .box .describe h3 {
          font-size: 22px;
          color: #212121;
          margin-bottom: 10px; }
        .steps .content .box .describe p {
          color: #454545;
          line-height: 1.3; }

/* =--------------------------------------= Testimonials Partition =------------------= */
.testimonials {
  width: 100%;
  padding: 100px 8% 10px;
  /* =------= Places Part Partition =---= */ }
  .testimonials .content {
    width: 100%;
    position: relative; }
    .testimonials .content .item {
      position: relative;
      padding-bottom: 22px;
      top: -15px; }
      .testimonials .content .item .person {
        position: relative;
        z-index: 1; }
        .testimonials .content .item .person img {
          width: 70px;
          height: 70px;
          border-radius: 50%;
          object-fit: cover;
          margin-left: 20px;
          outline: 2px solid #70b730;
          outline-offset: 5px;
          position: relative;
          top: 30px;
          z-index: 2; }
        .testimonials .content .item .person .info h2 {
          position: relative;
          font-size: 22px;
          padding: 50px 20px 5px;
          color: #212121;
          background: #f6f6f6;
          font-weight: 500; }
        .testimonials .content .item .person .info p {
          background: #f6f6f6;
          color: #454545;
          padding: 0 20px; }
      .testimonials .content .item .quote {
        position: relative;
        background: #f6f6f6;
        padding: 20px 20px 30px;
        z-index: 0; }
        .testimonials .content .item .quote p {
          color: #454545;
          line-height: 1.3; }
        .testimonials .content .item .quote i {
          display: inline-block;
          width: 40px;
          height: 40px;
          border-radius: 10px;
          background: #70b730;
          position: absolute;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 22px;
          color: #fefefe;
          left: 50%;
          bottom: -20px;
          transform: translateY(-50%); }

/* =--------------------------------------= NewsLetter Partition =------------------= */
.newsletter {
  width: 100%;
  padding: 70px 8%;
  margin-top: 30px;
  background: #f6f6f6;
  text-align: center;
  /* =------= Places Part Partition =---= */ }
  .newsletter h2 {
    font-size: calc(24px + 1.5vw);
    color: #212121; }
  .newsletter p {
    color: #454545;
    margin: 20px 0px 50px;
    font-size: 18px; }
  .newsletter .form {
    position: relative; }
    @media (max-width: 768px) {
      .newsletter .form {
        max-width: 500px;
        margin: 0px auto; } }
    .newsletter .form input {
      height: 45px;
      width: 280px;
      padding: 0px 20px;
      margin-right: 20px;
      border: 1px solid #aaaaaa;
      outline-color: #70b730; }
      @media (max-width: 768px) {
        .newsletter .form input {
          width: 100%;
          margin-right: 0;
          margin-bottom: 20px; } }
    .newsletter .form .newsletter__btn {
      width: 280px;
      height: 45px;
      padding: 0;
      background: #70b730;
      border-radius: 1px; }
      .newsletter .form .newsletter__btn:hover {
        background: #509710; }
      @media (max-width: 768px) {
        .newsletter .form .newsletter__btn {
          width: 100%; } }

/* =--------------------------------------= Blogs Partition =------------------= */
.blog {
  width: 100%;
  padding: 100px 8% 70px; }
  .blog .content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    /* =------= Places Part Partition =---= */
    /* =------= Places Part Partition =---= */ }
    @media (max-width: 1068px) {
      .blog .content {
        grid-template-columns: 3fr 2fr; } }
    @media (max-width: 968px) {
      .blog .content {
        grid-template-columns: 1fr; } }
    .blog .content .posts__list {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px; }
      @media (max-width: 668px) {
        .blog .content .posts__list {
          grid-template-columns: 1fr; } }
      .blog .content .posts__list .post__box {
        position: relative;
        background: #f6f6f6; }
        .blog .content .posts__list .post__box img {
          width: 100%;
          max-height: 250px;
          object-fit: cover; }
        .blog .content .posts__list .post__box .post {
          padding: 15px 15px 20px; }
          .blog .content .posts__list .post__box .post h1 {
            color: #212121;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 15px; }
          .blog .content .posts__list .post__box .post .author {
            display: flex;
            color: #212121;
            font-size: 15px; }
            .blog .content .posts__list .post__box .post .author span:nth-of-type(2) {
              margin-left: 20px; }
            .blog .content .posts__list .post__box .post .author span i {
              color: #212121;
              margin-right: 5px; }
          .blog .content .posts__list .post__box .post p {
            margin: 15px 0 20px;
            color: #454545; }
          .blog .content .posts__list .post__box .post a {
            color: #70b730; }
    .blog .content .posts__popular {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      background: #f6f6f6; }
      .blog .content .posts__popular .titlte {
        padding: 15px;
        background: #70b730; }
        .blog .content .posts__popular .titlte h2 {
          color: #fefefe;
          font-size: 24px;
          font-weight: 500;
          margin-bottom: 5px; }
        .blog .content .posts__popular .titlte p {
          color: #dddddd; }
      .blog .content .posts__popular .popular__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
        padding: 20px; }
        .blog .content .posts__popular .popular__content .popular__box {
          display: flex;
          align-items: flex-start;
          background: #f6f6f6; }
          .blog .content .posts__popular .popular__content .popular__box img {
            width: 80px;
            height: 80px;
            margin-right: 10px;
            object-fit: cover; }
          .blog .content .posts__popular .popular__content .popular__box .popular__words h2 {
            font-size: 18px;
            color: #212121;
            margin-bottom: 5px; }
          .blog .content .posts__popular .popular__content .popular__box .popular__words p {
            font-size: 14px;
            color: #454545; }

/* =--------------------------------------= Footer Partition =------------------= */
.footer {
  width: 100%;
  padding: 50px 8% 30px;
  background: #70b730;
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 10px 20px;
  /* =------= One Part =---= */
  /* =------= One Part =---= */
  /* =------= One Part =---= */ }
  @media (max-width: 668px) {
    .footer {
      grid-template-columns: 1fr; } }
  .footer .block {
    position: relative; }
    .footer .block .title {
      min-height: 60px;
      display: flex;
      align-items: flex-end;
      margin-bottom: 30px; }
      .footer .block .title h3 {
        font-size: 24px;
        color: #fefefe; }
    .footer .block .content {
      display: flex;
      flex-direction: column; }
  .footer .one .title img {
    width: 120px; }
  .footer .one .content p {
    color: #eeeeee;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 15px; }
  .footer .two .content .line {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; }
    .footer .two .content .line span {
      color: #eeeeee;
      font-size: 16px; }
      .footer .two .content .line span:nth-of-type(1) {
        font-size: 17px;
        font-weight: 500;
        color: #fefefe;
        margin-bottom: 2px; }
  .footer .three .content a {
    text-decoration: none;
    color: #eeeeee;
    margin-bottom: 20px;
    align-self: flex-start;
    transition: all 0.3s ease-in-out; }
    .footer .three .content a:hover {
      letter-spacing: 2px; }

/* =--------------------------------------= CopyRight Partition =------------------= */
.copyright {
  width: 100%;
  padding: 0 8%;
  background: #70b730; }
  .copyright .divider__line {
    width: 100%;
    height: 1px;
    background: #fefefe; }
  .copyright p {
    padding: 30px;
    text-align: center;
    color: #fefefe; }
    .copyright p b {
      color: #212121; }

/*# sourceMappingURL=Styles.css.map */
