/* Common Classes */
@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");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --primary-color: #03a6a6;
  --secondary-color: black;
  --tertiary-color: white;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.container {
  max-width: 1490px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: black;
}

.active > a {
  color: var(--primary-color);
}

.primary-btn {
  text-transform: capitalize;
  font-weight: 400;
  padding: 23px 27px 22px;
  border-radius: 53px;
  border: 1px solid black;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
}

.primary-btn::after {
  content: "";
  background-color: var(--primary-color);
  height: 100%;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: all 0.5s linear;
}

.primary-btn:hover::after {
  width: 100%;
}

.primary-btn > span {
  position: relative;
  z-index: 2;
  transition: 0.5s linear;
}

.primary-btn:hover > span {
  color: white;
}

.title-1 {
  text-transform: capitalize;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.title-2 {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 31px;
}
.title-desc {
  font-weight: 300;
  margin-bottom: 33px;
  line-height: calc(24 / 16);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px;
}

.col-2 {
  width: calc(8.33% * 2);
  padding: 0 15px;
}

.col-6 {
  width: 50%;
  padding: 0 15px;
}

.col-50 {
  width: 50%;
  padding: 0 15px;
}

.subtitle {
  text-transform: uppercase;
  font-weight: 300;
  line-height: calc(30 / 16);
  letter-spacing: 6.4px;
}

/*===============
Navbar
================ */

.navbar-sec {
  padding: 25px 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 99;
}

nav,
.navbar-collapsed,
.nav-links,
.nav-btns {
  display: flex;
  align-items: center;
}

.navbar-collapsed {
  margin-left: auto;
  font-size: 15px;
}

.nav-logo {
  width: 218px;
}

.nav-link {
  margin-right: 36px;
}

.nav-link > a {
  transition: 0.5s linear;
}

.nav-link > a:hover {
  color: var(--primary-color);
}

.sm-nav-btns,
.sm-nav-btns-2 {
  display: none;
}

.navbtn-1 {
  display: flex;
  align-items: center;
  margin-right: 36px;
}
.navbtn-1 > span {
  font-weight: 600;
  transition: 0.5s linear;
}
.navbtn-1:hover > span {
  color: var(--primary-color);
}

.nav-icon {
  width: 20.95px;
  height: 20px;
  margin-right: 9.05px;
}

.navbar-sec .primary-btn {
  font-weight: 500;
  border: 2px solid black;
}

/* =================
Navbar Responsive
==================== */

@media screen and (max-width: 1200px) {
  .navbar-collapsed,
  .nav-links {
    flex-direction: column;
  }
  .nav-link {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 24px;
  }
  .nav-btns {
    display: none;
  }

  .sm-nav-btns {
    display: flex !important;
    margin-left: auto;
  }
  .navbar-collapsed {
    position: fixed;
    right: -100%;
    top: 0;
    transition: 0.5s linear;
    background: rgba(0, 0, 0, 0.2);
    height: 100vh;
    justify-content: center;
    align-items: center;
    width: 60%;
    backdrop-filter: blur(30px);
    z-index: 4;
  }

  #menu:checked ~ .navbar-collapsed {
    right: 0;
  }
  .menu-bar {
    margin-left: 20px;
    position: relative;
    z-index: 99;
  }
  .menu-bar > span {
    display: inline-block;
    width: 30px;
    height: 2.5px;
    background: var(--secondary-color);
    transition: 0.5s linear;
  }

  .menu-bar::before {
    content: "";
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.5s linear;
  }
  .menu-bar::after {
    content: "";
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    transition: 0.5s linear;
  }

  #menu:checked ~ .menu-bar > span {
    transform: rotate(-45deg) translateX(8px);
    background: var(--tertiary-color);
  }
  #menu:checked ~ .menu-bar::before {
    transform: rotate(45deg) translateX(8px);
    background: var(--tertiary-color);
  }
  #menu:checked ~ .menu-bar::after {
    transform: translateX(50px);
    background: var(--tertiary-color);
  }
}
@media screen and (max-width: 768px) {
  .navbar-sec {
    padding: 10px 0 10px;
  }
  .nav-logo {
    width: 160px;
  }
  .navbar-sec .primary-btn {
    border: 1px solid black;
    padding: 15px 17px 15px;
  }
  .primary-btn {
    letter-spacing: 0;
  }
  .navbtn-1 {
    margin-right: 20px;
  }
  .nav-link {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .nav-logo {
    width: 140px;
  }
  .navbar-collapsed {
    width: 90%;
  }
  .nav-link {
    font-size: 16px;
  }
  .sm-nav-btns {
    display: none !important;
  }
  .sm-nav-btns-2 {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .sm-nav-btns-2 > .nav-btn-1 {
    margin-right: 10px;
    transition: 0.5s linear;
  }
  .sm-nav-btns-2 > .nav-btn-1:hover {
    color: var(--primary-color);
  }
  .menu-bar::after {
    bottom: 10.5px;
  }
  .menu-bar {
    margin-left: 10px;
  }
  #menu:checked ~ .menu-bar::before {
    transform: rotate(35deg) translateX(8px);
  }
  #menu:checked ~ .menu-bar > span {
    transform: rotate(-35deg) translateX(8px);
  }
  .navbar-sec .primary-btn {
    padding: 10px 12px 10px;
  }
  .menu-bar > span {
    width: 25px;
  }
}

/*===============
Banner Section
=================*/

.banner-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--tertiary-color);
  position: relative;
}

.banner-sec .banner-wrapr {
  padding-top: 117px;
}
.banner-sec video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.banner-sec .title-1 {
  max-width: 581px;
}

.banner-sec p {
  max-width: 597px;
  margin: 26px 0 36px;
  line-height: calc(24 / 16);
  font-style: italic;
}
.banner-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-btns .primary-btn:first-child {
  background: var(--tertiary-color);
  color: var(--secondary-color);
}

.banner-btns .primary-btn:nth-child(2) {
  border: 1px solid var(--tertiary-color);
  color: var(--tertiary-color);
}

.banner-btns .primary-btn:nth-child(2):hover > span {
  color: black;
}

/* ================
Banner Responsive
=================== */
@media screen and (max-width: 768px) {
  .title-1 {
    font-size: 55px;
  }
  .banner-sec .banner-wrapr {
    padding-top: 76px;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 12px;
  }
  .title-1 {
    font-size: 40px;
  }
  .primary-btn {
    font-size: 12px;
    padding: 15px 20px 15px;
  }
  .banner-sec .banner-wrapr {
    padding-top: 60px;
  }
}

/* ===========================
Ceburu Ovr Section
============================ */

.ceburu-ovr-sec {
  padding: 120px 0 60px;
  background: white;
}
.ceburu-ovr-wrapper {
  text-align: center;
}
.ceburu-ovr-sec .title-desc {
  max-width: 893px;
  margin: 0 auto 33px;
}
.overview-card {
  height: 809px;
  position: relative;
  cursor: pointer;
}

.overview-card::before {
  content: "";
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1),
    transparent,
    transparent,
    transparent
  );
  position: absolute;
  inset: 0;
  transition: 0.3s linear;
}
.overview-card::after {
  content: "";
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.3),
    transparent
  );
  position: absolute;
  inset: 0;
  transition: 0.3s linear;
  opacity: 0;
}

.overview-card:hover::before {
  opacity: 0;
}
.overview-card:hover::after {
  opacity: 1;
}
.overview-content {
  position: absolute;
  top: 93%;
  left: 0;
  color: var(--tertiary-color);
  padding: 0 50px;
  z-index: 2;
  transition: 0.3s linear;
  bottom: auto;
}
.overview-card:hover .overview-content {
  top: 71%;
}
.overview-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.overview-content p {
  font-weight: 300;
  line-height: calc(25 / 16);
  max-width: 513.43px;
  text-transform: capitalize;
}
.ceburu-ovr-sec .slick-next {
  width: 80px;
  height: 55px;
  background-color: var(--primary-color);
  right: 0;
  z-index: 50;
  border-radius: 50px 0 0 50px;
}
.ceburu-ovr-sec .slick-prev {
  width: 80px;
  height: 55px;
  background-color: var(--primary-color);
  left: 0;
  z-index: 50;
  border-radius: 0 50px 50px 0;
}
.ceburu-ovr-sec .slick-prev::before,
.ceburu-ovr-sec .slick-next::before {
  content: "";
  background: url("./assests/overview-slider-btn-arrow.png") no-repeat
    center/contain;
  width: 9px;
  height: 16px;
  display: inline-block;
}
.ceburu-ovr-sec .slick-next::before {
  transform: rotate(180deg);
}

/*==============================
Ceburu Overview Section Responsive
================================*/

@media screen and (max-width: 1400px) {
  .overview-content {
    padding: 0 15px;
  }
}
@media screen and (max-width: 992px) {
  .overview-content h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .overview-card {
    height: 500px;
  }
  .overview-content {
    top: 89%;
  }
  .overview-card:hover .overview-content {
    top: 62%;
  }
}
@media screen and (max-width: 576px) {
  .ceburu-ovr-sec {
    padding: 70px 0;
  }
  .overview-card {
    height: 400px;
  }
  .overview-content h3 {
    font-size: 22px;
  }
  .overview-content p {
    max-width: 400px;
  }
  .overview-card:hover .overview-content {
    top: 58%;
  }
  .ceburu-ovr-sec .slick-next,
  .ceburu-ovr-sec .slick-prev {
    width: 40px;
    height: 32px;
  }
  .ceburu-ovr-sec .slick-prev::before,
  .ceburu-ovr-sec .slick-next::before {
    width: 6px;
  }
}

/*================
Support Section
===================*/

.support-sec {
  color: var(--secondary-color);
  padding: 60px 0 120px;
  background: linear-gradient(to bottom, white, #edeaff);
}
.support-img::after {
  content: "";
  height: 335px;
  width: 335px;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(500px);
  z-index: -1;
}

.support-img {
  max-width: 745px;
  position: relative;
}

.support-sec .card {
  max-width: 497px;
}

/* =====================
Support Sec Responsive
========================= */

@media screen and (max-width: 1200px) {
  .title-2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 992px) {
  .support-sec {
    padding: 70px 0;
  }
  .support-sec .row {
    gap: 35px;
  }
  .support-sec .col-6 {
    width: 100%;
  }
  .support-img {
    max-width: 600px;
    margin: auto;
  }
  .support-sec .card {
    margin: auto;
  }
}
@media screen and (max-width: 576px) {
  .title-2 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .support-img::after {
    width: 52vw;
    height: 52vw;
  }
}

/*====================
Who We Sre Section
======================*/

.who-we-are-sec {
  padding: 282px 0;
  color: var(--tertiary-color);
  background: url(./assests/who-we-are-bg.png) no-repeat center/cover;
  border-radius: 0 0 11.979vw 11.979vw;
  position: relative;
}
.who-we-are-sec::after {
  content: "";
  height: 335.35px;
  width: 335.35px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(200px);
  z-index: -1;
}

.who-we-are-sec .title-2 {
  max-width: 404px;
}

.who-we-are-sec .title-desc {
  max-width: 496px;
}
.who-we-are-sec .primary-btn {
  color: white;
  border: 1px solid white;
}
.who-we-are-sec .primary-btn:hover > span {
  color: black;
}

/* ====================
Who We are Sec Responive
======================= */

@media screen and (max-width: 992px) {
  .who-we-are-sec {
    padding: 165px 0;
  }
}
@media screen and (max-width: 576px) {
  .who-we-are-sec {
    padding: 70px 0;
  }
}

/*================
Video Section
=================*/

.video-sec {
  padding: 100px 0 120px;
  color: var(--secondary-color);
  text-align: center;
}
.video-sec .title-desc {
  max-width: 835px;
  margin: 0 auto 33px;
}
.video-sec .video-box {
  max-width: 1212px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.video-sec .video-box > a {
  height: 128px;
  width: 128px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.video-sec .video-box > a::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: url("./assests/video-loading-circle.png") center/cover no-repeat;
  animation: rotate 3s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*=======================
Video Section Responsive
=========================*/

@media screen and (max-width: 576px) {
  .video-sec {
    padding: 70px 0;
  }
  .video-sec .video-box > a {
    height: 60px;
    width: 60px;
  }
  .video-sec .video-box > a::after {
    inset: 5px;
  }
}

/* ========================
Testimonials Section
=========================== */

.testimonials-sec {
  padding: 132px 0;
  background: url("./assests/testimonials-bg.png") no-repeat center/cover;
  border-radius: 0 0 11.458vw 11.458vw;
  color: var(--tertiary-color);
  position: relative;
}
.testimonials-sec::after {
  content: "";
  height: 335.35px;
  width: 335.35px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(200px);
  z-index: -1;
}
.testimonials-desc {
  margin: auto;
  text-align: center;
  max-width: 893px;
}
.testimonials-desc .title-desc {
  max-width: 743px;
  margin: 0 auto 17px;
}
.testimonials-sec .slider-card {
  padding: 35.61px 53px 70px 26px;
  border-radius: 43.49px;
  background: rgba(255, 255, 255, 5%);
  border: 1px solid rgba(255, 255, 255, 10%);
  backdrop-filter: blur(31.91px);
  position: relative;
  min-height: 425px;
  margin: 40px 20px;
}
.testimonials-sec .card-heading {
  display: flex;
  align-items: center;
}
.testimonials-sec .card-heading > img {
  height: 62.54px;
  width: 62.54px;
  margin-right: 19.15px;
  border-radius: 50%;
}
.testimonials-sec .person-name {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
}
.testimonials-sec .card-desc {
  font-weight: 300;
  max-width: 450px;
  margin-top: 26.25px;
  line-height: calc(25 / 16);
}
.testimonials-sec .float-qu {
  width: 77.86px;
  height: 77.86px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  right: 50.99px;
  border: 1px solid rgba(255, 255, 255, 10%);
  background: #4c609f;
}
.testimonials-sec .float-qu > img {
  height: 35.74px;
  width: 42.12px;
}
.testimonials-sec .slick-prev {
  left: -10px;
  z-index: 3;
  height: 61.27px;
  width: 61.27px;
  border-radius: 50%;
  border: 1px solid white;
}
.testimonials-sec .slick-prev::before {
  content: "";
  height: 100%;
  width: 23px;
  background: url("./assests/slider-right-arrow.png") no-repeat center/contain;
  display: inline-block;
  transform: rotate(180deg);
}
.testimonials-sec .slick-next {
  right: -10px;
  z-index: 3;
  height: 61.27px;
  width: 61.27px;
  border-radius: 50%;
  border: 1px solid white;
}
.testimonials-sec .slick-next::before {
  content: "";
  height: 100%;
  width: 23px;
  background: url("./assests/slider-right-arrow.png") no-repeat center/contain;
  display: inline-block;
}

/* ========================
Testimonials Section Responsive
=========================== */
@media screen and (max-width: 1440px) {
  .testimonials-sec .slider-card {
    margin: 40px 10px;
  }
  .testimonials-sec .float-qu {
    right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .testimonials-sec .slider-card {
    padding: 25px 20px;
  }
  .testimonials-sec .person-name {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .testimonials-sec .slider-card {
    min-height: 375px;
  }
  .testimonials-sec .slick-next {
    height: 50px;
    width: 50px;
    top: 96%;
    right: 50%;
    transform: translateX(65px);
  }
  .testimonials-sec .slick-prev {
    height: 50px;
    width: 50px;
    top: 96%;
    left: 50%;
    transform: translateX(-65px);
  }
  .testimonials-sec .card-desc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .testimonials-sec {
    padding: 70px 0;
  }
  .testimonials-sec .slider-card {
    min-height: 340px;
  }
  .testimonials-sec .card-heading > img {
    height: 50px;
    width: 50px;
  }
  .testimonials-sec .person-name {
    font-size: 17px;
  }
  .testimonials-sec .float-qu {
    width: 50px;
    height: 50px;
  }
  .testimonials-sec .float-qu > img {
    height: unset;
    width: 28px;
  }
  .testimonials-sec .card-desc {
    margin-top: 15px;
  }
}

/*============================
Ceburu Features Section
=========================== */

.ceburu-features-sec {
  padding: 120px 0 149px;
  color: var(--secondary-color);
  position: relative;
}
.features-img {
  max-width: 745px;
  border-radius: 30px;
}
.ceburu-features-sec .card {
  max-width: 508px;
}
.ceburu-features-sec .title-2 {
  margin: 15px 0 26px;
}
.ceburu-features-sec p {
  max-width: 496px;
}
.ceburu-features-sec .tick-icon {
  width: 22px;
  height: 23px;
}
.ceburu-features-sec .col-6 .row {
  align-items: normal;
  margin-top: 28px;
  margin-bottom: 28px;
}
.ceburu-features-sec li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}
.ceburu-features-sec ul > li:last-child {
  margin-bottom: 0;
}
.ceburu-features-sec li > span {
  transition: 0.5s linear;
}
.ceburu-features-sec li:hover > span {
  color: var(--primary-color);
}

/* =================================
Ceburu Features Section Responsive
===================================== */

@media screen and (max-width: 992px) {
  .col-6 {
    width: 100%;
  }
  .features-img {
    max-width: 600px;
    margin: auto;
  }
  .ceburu-features-sec .card {
    margin: 35px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .ceburu-features-sec {
    padding: 70px 0;
  }
  .ceburu-features-sec .col-6 .row {
    margin-bottom: 18px;
  }
  .ceburu-features-sec .col-50 {
    width: 100%;
  }
  .ceburu-features-sec li {
    margin-bottom: 10px;
  }
  .ceburu-features-sec ul > li:last-child {
    margin-bottom: 10px;
  }
}

/* ======================
Clients Section
========================= */

.clients-sec {
  padding: 136px 0 75px;
  position: relative;
}
.clients-sec::before {
  content: "";
  height: 1px;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.clients-sec .subtitle {
  text-align: center;
  margin-bottom: 50.5px;
}
.client-logo {
  height: 75px;
}
.client-logo > img {
  object-fit: contain;
}

/* ======================
Clients Section Responsive
========================= */
@media screen and (max-width: 1200px) {
  .clients-sec {
    padding: 100px 0 75px;
  }
}
@media screen and (max-width: 992px) {
  .clients-sec .col-2 {
    width: 33.33%;
  }
  .clients-sec .col-2:nth-child(1),
  .clients-sec .col-2:nth-child(2),
  .clients-sec .col-2:nth-child(3) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .clients-sec {
    padding: 70px 0;
  }
  .clients-sec .subtitle {
    margin-bottom: 25px;
  }
  .clients-sec .col-2 {
    width: 50%;
  }
  .clients-sec .col-2:nth-child(1),
  .clients-sec .col-2:nth-child(2),
  .clients-sec .col-2:nth-child(3),
  .clients-sec .col-2:nth-child(4) {
    margin-bottom: 30px;
  }
  .client-logo {
    max-width: 110px;
    margin: auto;
  }
}

/* ================
Footer Section
=================== */

.footer-sec {
  padding-top: 78px;
  border-radius: 7.813vw 7.813vw 0 0;
  box-shadow: 0px -49px 60px #edeaff;
}
.footer-top-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.footer-top-part::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 6%);
}
.footer-top-part .left-part {
  max-width: 621px;
}
.footer-top-part p {
  margin: 12px 0 46px;
}
.footer-middle-part {
  position: relative;
  padding: 58px 0 50px;
}
.footer-middle-part::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 6%);
}
.footer-logo {
  width: 264px;
  margin: auto;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: 27px 0 25px;
}
.footer-links > li {
  margin-right: 50px;
  position: relative;
}
.footer-links a {
  transition: 0.5s linear;
}
.footer-links > li:hover > a {
  color: var(--primary-color);
}
.footer-links > li:last-child {
  margin-right: 0;
}
.footer-links > li::after {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  background: linear-gradient(
    to top,
    var(--tertiary-color),
    var(--primary-color),
    var(--tertiary-color)
  );
}
.footer-links > li:last-child::after {
  display: none;
}
.footer-socials-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-middle-part .primary-btn {
  padding: 0;
  height: 34px;
  width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-socials-btns > li {
  margin-right: 12px;
}
.footer-socials-btns > li:last-child {
  margin-right: 0;
}
.footer-bottom-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  flex-wrap: wrap;
}
.footer-bottom-part > .right-part > .left-text {
  margin-right: 30px;
  position: relative;
}
.footer-bottom-part > .right-part > .left-text::after {
  content: "";
  background-color: var(--secondary-color);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
}
.footer-bottom-part a {
  transition: 0.5s linear;
}
.footer-bottom-part a:hover {
  color: var(--primary-color);
}

/* ====================
Footer Responsive
======================= */

@media screen and (max-width: 992px) {
  .footer-top-part > .right-part {
    flex-shrink: 0;
  }
  .footer-top-part p {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .footer-top-part p {
    max-width: 360px;
  }
  .footer-links {
    flex-direction: column;
    margin: 30px 0;
  }
  .footer-links > li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-links > li:last-child {
    margin-bottom: 0;
  }
  .footer-links > li::after {
    display: none;
  }
  .footer-bottom-part {
    font-size: 14px;
  }
  .footer-bottom-part > .right-part > .left-text {
    margin-right: 20px;
  }
  .footer-bottom-part > .right-part > .left-text::after {
    right: -12px;
  }
}
@media screen and (max-width: 576px) {
  .footer-sec {
    padding-top: 60px;
  }
  .footer-top-part > .left-part,
  .footer-top-part .right-part {
    width: 100%;
  }
  .footer-top-part p {
    margin: 12px 0 30px;
  }
  .footer-top-part .primary-btn {
    margin-bottom: 30px;
  }
  .footer-middle-part {
    padding: 40px 0;
  }
  .logo-wrappr {
    margin-bottom: 25px;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-links {
    font-size: 12px;
  }
  .footer-bottom-part {
    font-size: 12px;
    padding: 15px 0;
    gap: 10px;
  }
  .footer-bottom-part .left-part {
    margin: auto;
  }
  .footer-bottom-part .right-part {
    margin: auto;
  }
}
