/*============ Google fonts ============*/

/*============ Google fonts ============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*======= CSS variables =======*/
:root {
  --black-color: #1b2430;
  --dark-color: #222;
  --body-bg-color: #fff;
  --section-bg-color: #dbe2ef;
  --navigation-item-hover-color: #3b5378;
  --red: #f6416c;

  --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);

  --scroll-bar-color: #fff;
  --scroll-thumb-color: #ececec;
  --scroll-thumb-hover-color: #454f6b;
}

/*======= Scroll bar =======*/
::-webkit-scrollbar {
  width: 11px;
  background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  width: 100%;
  background: var(--scroll-thumb-color);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover-color);
}

/*======= Main CSS =======*/

/* global css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

body {
  background: var(--body-bg-color);
}

section {
  position: relative;
}

.section {
  color: var(--black-color);
  background: var(--section-bg-color);
  padding: 35px 200px;
  transition: 0.3s ease;
}

.btn-next {
  text-decoration: none;
  margin-top: 2rem;
  display: inline-block;
  padding: 13px 17px;
  background: var(--red);
  color: var(--body-bg-color);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}

.btn-next:hover {
  background: var(--black-color);
  color: var(--body-bg-color);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.main-judul::after {
  margin: auto;
  margin-top: 10px;
  display: block;
  border-bottom: 10px solid var(--red);
  width: 100px;
  border-radius: 25px;
  content: "";
}

/*======= Header =======*/
header {
  z-index: 999;
  position: fixed;
  width: 100%;
  height: calc(5rem + 1rem);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: 0.5s ease;
  transition-property: height, background;
}

header.sticky {
  height: calc(2.5rem + 1rem);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .nav-bar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  transition: 0.3s ease;
}

.nav-close-btn,
.nav-menu-btn {
  display: none;
}

.nav-bar .logo {
  color: var(--black-color);
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: var(--text-shadow);
}

.navigation .nav-items a {
  color: var(--black-color);
  font-size: 1em;
  text-decoration: none;
  text-shadow: var(--text-shadow);
}

.navigation .nav-items a:hover {
  color: var(--red);
}

.navigation .nav-items a i {
  display: none;
}

.navigation .nav-items a:not(:last-child) {
  margin-right: 45px;
}

/* navbar */
.bg-nav {
  background-color: rgb(255, 255, 255);
  opacity: 0.8;
}

.navbar-brand {
  font-weight: 700;
}

.navbar-nav {
  font-weight: 600;
}

/*======= Home =======*/
.home {
  min-height: 100vh;
}

.home:before {
  z-index: 888;
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent, var(--section-bg-color));
}

/*======= Background slider =======*/
.bg-slider {
  z-index: 777;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.bg-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
}

.bg-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.swiper-slide .text-content {
  position: absolute;
  top: 25%;
  color: var(--body-bg-color);
  margin: 0 200px;
  transition: 0.3s ease;
}

.swiper-slide .text-content .title {
  font-size: 4em;
  font-weight: 700;
  text-shadow: var(--text-shadow);
  margin-bottom: 20px;
  transform: translateY(-50px);
  opacity: 0;
}

.swiper-slide-active .text-content .title {
  transform: translateY(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .title span {
  font-size: 0.3em;
  font-weight: 300;
}

.swiper-slide .text-content p {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-shadow: var(--text-shadow);
  padding: 20px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
  transform: translateX(-80px);
  opacity: 0;
}

.swiper-slide-active .text-content p {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn {
  border: none;
  outline: none;
  background: var(--body-bg-color);
  color: var(--dark-color);
  font-size: 1em;
  font-weight: 500;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  border-radius: 10px;
  cursor: pointer;
  transform: translateX(50px);
  opacity: 0;
}

.swiper-slide-active .text-content .read-btn {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i {
  font-size: 1.6em;
  transition: 0.3s ease;
}

.swiper-slide .text-content .read-btn:hover i {
  transform: translateX(5px);
}

.dark-layer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.bg-slider-thumbs {
  z-index: 777;
  position: absolute;
  bottom: 7em;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.thumbs-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 3px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
}

.thumbs-container img {
  width: 50px;
  height: 35px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.swiper-slide-thumb-active {
  border: 1px solid var(--black-color);
}

/*======= Media icons =======*/
.media-icons {
  z-index: 999;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 90px;
}

.media-icons a {
  color: var(--body-bg-color);
  font-size: 1.7em;
  margin: 10px 0;
}

/*======= About section =======*/
.about h2 {
  font-size: 3em;
  font-weight: 600;
}

.about p {
  margin: 25px 0;
}

/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px) {
  header .nav-bar {
    padding: 0 50px;
  }

  .section {
    padding: 25px 50px;
  }

  .media-icons {
    right: 0;
    margin-right: 50px;
  }

  .swiper-slide .text-content {
    margin: 0 120px 0 50px;
  }

  .bg-slider-thumbs {
    bottom: 3em;
  }
}

/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width: 785px) {
  header .nav-bar {
    padding: 25px 20px;
  }

  .section {
    padding: 25px 20px;
  }

  .media-icons {
    margin-right: 20px;
  }

  .media-icons a {
    font-size: 1.5em;
  }

  .swiper-slide .text-content {
    margin: 0 70px 0 20px;
  }

  .swiper-slide .text-content .title {
    font-size: 3em;
  }

  .swiper-slide .text-content .title span {
    font-size: 0.35em;
  }

  .swiper-slide .text-content p {
    font-size: 0.9em;
  }

  /*======= Navigation menu =======*/
  .nav-menu-btn {
    display: block;
    color: var(--black-color);
    font-size: 1.5em;
    cursor: pointer;
  }

  .nav-close-btn {
    display: block;
    color: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3em;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .navigation {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
  }

  .navigation.active {
    visibility: visible;
    opacity: 1;
  }

  .navigation .nav-items {
    position: relative;
    background: var(--black-color);
    width: 400px;
    max-width: 400px;
    display: grid;
    place-content: center;
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transform: translateY(-200px);
    transition: 0.3s ease;
  }

  .navigation.active .nav-items {
    transform: translateY(0);
  }

  .navigation .nav-items a {
    color: var(--dark-color);
    font-size: 1em;
    margin: 15px 50px;
    transition: 0.3s ease;
  }

  .navigation .nav-items a:hover {
    color: var(--navigation-item-hover-color);
  }

  .navigation .nav-items > a > i {
    display: inline-block;
    font-size: 1.3em;
    margin-right: 5px;
  }

  .swiper-slide .text-content .read-btn {
    font-size: 0.9em;
    padding: 5px 15px;
  }

  /*======= About section =======*/
  .about h2 {
    font-size: 2.5em;
  }

  .about p {
    font-size: 0.9em;
  }
}

/* about us */

#about-us {
  background-color: var(--section-bg-color);
  padding: 50px;
}

#about-us h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--black-color);
}

#about-us p {
  color: var(--black-color);
}

/* paket */
.paket {
  background-color: var(--section-bg-color);
}

.paket h1 {
  font-weight: 600;
  color: var(--black-color);
}

.paket .banner-blogs {
  position: relative;
  height: 17rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
}

.paket .banner-blogs img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.paket .banner-blogs .content-blogs {
  position: absolute;
  top: 70%;
  left: 2rem;
  transform: translateY(-50%);
}

.paket .banner-blogs .content-blogs span {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 600;
}

.paket .banner-blogs .content-blogs a {
  text-decoration: none;
  font-size: 1.5rem;
  padding-top: 0.5rem;
  color: #fff;
}

.paket .banner-blogs .content-blogs p {
  color: #f4f4f4;
}

.paket .banner-blogs:hover img {
  transform: scale(1.2);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
}

/* gallery filter */
#gallery {
  padding: 10px;
  background-color: var(--section-bg-color);
}
.wrapper {
  margin: 100px auto;
  max-width: 1100px;
}

#gallery h1 {
  font-weight: 600;
  color: var(--black-color);
}

.wrapper nav {
  display: flex;
  justify-content: center;
}
.wrapper .items {
  display: flex;
  max-width: 720px;
  width: 100%;
  justify-content: space-between;
}
.items span {
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: var(--black-color);
  border-radius: 50px;
  border: 2px solid #007bff;
  transition: all 0.3s ease;
}
.items span.active,
.items span:hover {
  color: #fff;
  background: #007bff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 30px 15px;
}

.gallery {
  background-color: var(--body-bg-color);
  border-radius: 20px;
}

.gallery .image {
  width: calc(100% / 4);
  padding: 7px;
}
.gallery .image span {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery .image:hover img {
  transform: scale(1.1);
}
.gallery .image.hide {
  display: none;
}
.gallery .image.show {
  animation: animate 0.4s ease;
}
@keyframes animate {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

.preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details {
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p {
  font-weight: 500;
  margin-left: 5px;
}
.details .icon {
  color: #007bff;
  font-style: 22px;
  cursor: pointer;
}
.preview-box .image-box {
  width: 100%;
  display: flex;
}
.image-box img {
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}
.shadow.show {
  display: block;
}

@media (max-width: 1000px) {
  .gallery .image {
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  .gallery .image {
    width: calc(100% / 2);
  }
}
@media (max-width: 700px) {
  .wrapper nav .items {
    max-width: 600px;
  }
  nav .items span {
    padding: 7px 15px;
  }
}
@media (max-width: 600px) {
  .wrapper {
    margin: 30px auto;
  }
  .wrapper nav .items {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .items span {
    margin: 5px;
  }
  .gallery .image {
    width: 100%;
  }
}

/* Partner */

.partner {
  background-color: var(--section-bg-color);
}

.partner .slider-area h2 {
  text-align: center;
  font-family: impact;
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black-color);
}
.partner .wrapper {
  display: flex;
  width: 750px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 180px;
  padding: 2.5rem;
  background: var(--body-bg-color);
  box-shadow: var(--box-shadow);
}
.partner .item {
  animation: animate 25s alternate linear infinite;
}
.partner .container:hover .item {
  animation-play-state: paused;
}
@keyframes animate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1100px, 0, 0);
  }
}
@media (max-width: 767px) {
  .partner.slider-area h2 {
    font-size: 30px;
  }
  .partner .wrapper {
    width: 95%;
    border-radius: 0;
    padding: 0;
  }
}

/* our team */

.our-team {
  align-items: center;
  justify-content: center;
  background-color: var(--section-bg-color);
}

.our-team h1 {
  color: var(--black-color);
  font-weight: 600;
}
.our-team .slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.our-team .slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.our-team .card {
  border-radius: 25px;
  background-color: #f7f7f7;
}
.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 14px;
}

.our-team .image-content {
  position: relative;
  grid-row-gap: 5px;
  padding: 25px 0;
}

.our-team .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--red);
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: var(--red);
}
.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #f7f7f7;
}

.our-team .card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.our-team .card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--red);
}
.our-team .name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.our-team .description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.our-team .button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: var(--red);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.our-team .button:hover {
  color: #000;
  background: var(--section-bg-color);
}
.our-team .swiper-navBtn {
  color: var(--red);
  transition: color 0.3s ease;
}
.our-team .swiper-navBtn:hover {
  color: var(--black-color);
}
.our-team .swiper-navBtn:before,
.swiper-navBtn:after {
  font-size: 40px;
}
.our-team .swiper-button-next {
  right: 0;
}
.our-team .swiper-button-prev {
  left: 0;
}
.our-team .swiper-pagination-bullet {
  background-color: var(--red);
  opacity: 1;
}
.our-team .swiper-pagination-active {
  background-color: var(--red);
}
@media screen and (max-width: 768px) {
  .our-team .slide-content {
    margin: 0 10px;
  }
  .our-team .swiper-navBtn {
    display: none;
  }
}

/* untuk blog */

#blog {
  background-color: var(--section-bg-color);
}

#blog h2 {
  color: var(--black-color);
  font-weight: 600;
}

.main-blog-info img {
  width: 50px;
  border-radius: 50%;
  float: left;
}
.main-blog-info {
  color: #666;
  position: relative;
}
.main-blog-info a {
  padding-right: 15px;
  color: #666;
  text-decoration: none;
}

.main-blog-info .card-body a:hover {
  color: #ffb703;
}
#blog .main-blog-info span {
  font-size: 12px;
  padding: 15px;
}

#blog .card-body a {
  text-decoration: none;
  color: #666;
}

#blog-detail .main-blog-info img {
  float: none;
}
#blog-detail .main-blog-info span::before {
  content: "";
  top: 0px;
  margin-bottom: 3px;
  display: inline-block;
  margin-right: 15px;
  background-color: #ccc;
  height: 5px;
  width: 5px;
  border-radius: 50%;
}

.main-tulisan-lain h4 a {
  color: #666;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* contact us */
#contact-us {
  min-height: 80vh;
  width: 100%;
  background: var(--section-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-us .container {
  width: 85%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#contact-us h2 {
  color: var(--black-color);
}

#contact-us .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contact-us .container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
#contact-us .content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
#contact-us .content .left-side .details {
  margin: 14px;
  text-align: center;
}
#contact-us .content .left-side .details i {
  font-size: 30px;
  color: var(--red);
  margin-bottom: 10px;
}
#contact-us .content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
#contact-us .content .left-side .details .text-one {
  font-size: 14px;
  color: #afafb6;
}
#contact-us .container .content .right-side {
  width: 75%;
  margin-left: 75px;
}
#contact-us .content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: var(--red);
}
#contact-us .right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
#contact-us .right-side .input-box input,
#contact-us .right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
#contact-us .right-side .message-box {
  min-height: 110px;
}
#contact-us .right-side .input-box textarea {
  padding-top: 6px;
}

#contact-us .button:hover {
  background: #5029bc;
}

@media (max-width: 950px) {
  #contact-us .container {
    width: 90%;
    padding: 30px 40px 40px 35px;
  }
  #contact-us .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  #contact-us .container {
    margin: 40px 0;
    height: 100%;
  }
  #contact-us .container .content {
    flex-direction: column-reverse;
  }
  #contact-us .container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  #contact-us .container .content .left-side::before {
    display: none;
  }
  #contact-us .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

/* peta */
.peta {
  background-color: var(--section-bg-color);
}
.peta iframe {
  width: 100%;
  height: 200px;
  border-radius: 25px;
}

/* footer */
.footer .container {
  max-width: 1170px;
  margin: auto;
}
.footer .row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: var(--scroll-thumb-color);
  padding: 30px 0;
  line-height: 1.5;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--red);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 300;
  color: var(--black-color);
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #000;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #000;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #000;
}

.copyright {
  margin-top: 39px;
}

.copyright a {
  text-decoration: none;
  color: var(--black-color);
}

.footer .copyright p {
  color: var(--black-color);
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* testimonial */
.testimonial {
  display: grid;
  place-items: center;
  background: var(--section-bg-color);
}

.testimonial h2 {
  color: var(--black-color);
}

.testimonial .wrapper1 {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.testimonial .wrapper1 .box {
  background: #fff;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.testimonial .wrapper1 .box i.quote {
  font-size: 20px;
  color: var(--red);
}

.testimonial .wrapper1 .box .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.testimonial .box .info .name {
  font-weight: 600;
  font-size: 17px;
}
.testimonial .box .info .job {
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
}
.testimonial .box .info .stars {
  margin-top: 2px;
}
.testimonial .box .info .stars i {
  color: var(--red);
}
.testimonial .box .content .image {
  height: 75px;
  width: 75px;
  padding: 3px;
  background: var(--red);
  border-radius: 50%;
}
.testimonial .content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.testimonial .box:hover .content .image img {
  border-color: #fff;
}
@media (max-width: 1045px) {
  .testimonial .wrapper1 .box {
    width: calc(50% - 10px);
    margin: 10px 0;
  }
}
@media (max-width: 702px) {
  .testimonial .wrapper1 .box {
    width: 100%;
  }
}
