@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&amp;family=Syne:wght@400;500;600;700;800&amp;display=swap");
:root {
  /**
  @font family declaration
  */
  --bd-ff-body: 'Syne', sans-serif;;
  --bd-ff-heading: 'Syne', sans-serif;;
  --bd-ff-secondary: 'Inter', sans-serif;;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --clr-common-white: #ffffff;
  --clr-common-black: #000;
  --clr-common-placeholder: #8E8E8E;
  --clr-common-heading: #333333;
  --clr-common-body-text: #333333;
  --clr-theme-1: #d4212f;
  --clr-text-1: #222222;
  --clr-text-2: #333333;
  --clr-text-3: #fe5c53;
  --clr-text-4: #d4212f;
  --clr-text-5: #4D4D4D;
  --clr-text-6: #EBEBEB;
  --clr-text-7: #8B8B8B;
  --clr-text-8: #F5F5F5;
  --clr-text-9: #164A71;
  --clr-text-10: #C3C3C3;
  --clr-text-11: #919191;
  --clr-text-12: #15141C;
  --clr-text-13: #3F3F3F;
  --clr-text-14: #FAFAFA;
  --clr-text-15: #E6E6E6;
  --clr-text-16: #434248;
  --clr-text-17: #5D636A;
  --clr-bg-1: #FCF4F4;
  --clr-bg-2: #fff;
  --clr-bg-3: #F0F0F0;
  --clr-bg-4: #fe5c53;
  --clr-bg-5: #f45269;
  --clr-bg-6: #222222;
  --clr-bg-7: #919191;
  --clr-bg-8: #F7F7F7;
  --clr-bg-9: #141414;
  --clr-bg-10: #F5F5F5;
  --clr-bg-11: #CDCDCD;
  --clr-bg-12: #FAFAFA;
  --clr-bg-13: #15141C;
  --clr-bg-14: #C3C3C3;
  --clr-bg-15: #323232;
  --clr-bg-16: #3D6AD6;
  --clr-bg-17: #0073B1;
  --clr-bg-18: #1DA1F3;
  --clr-bg-19: #4CAF50;
  --clr-bg-20: #450B0F;
  --clr-bg-21: #E3E6FF;
  --clr-bg-22: #E6F6FF;
  --clr-bg-23: #00203c;
  --clr-border-1: #f0f0f0;
  --clr-stroke-1: #E8E8E8;
  --clr-gradient-1: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  --clr-gradient-2: linear-gradient(180deg, rgba(197, 31, 44, 0) 0%, rgba(197, 31, 44, 0.2) 100%);
  --clr-gradient-3: linear-gradient(136.1deg, rgba(197, 31, 44, 0.2) 14.63%, rgba(254, 92, 83, 0) 84.07%);
  --clr-gradient-4: linear-gradient(240.59deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 104.33%);
  --clr-gradient-5: linear-gradient(90deg, #C51F2C 0%, #FE5C53 100%);
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 15px;
  --bd-fs-p: 15px;
  --bd-fs-h1: 46px;
  --bd-fs-h2: 30px;
  --bd-fs-h3: 24px;
  --bd-fs-h4: 20px;
  --bd-fs-h5: 16px;
  --bd-fs-h6: 14px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------
    Typography css start 
---------------------------------*/
body {
  font-family: var(--bd-ff-body);
  font-size: var(--bd-fs-body);
  font-weight: normal;
  color: var(--clr-common-black);
  line-height: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-heading);
  color: var(--clr-common-heading);
  margin-top: 0px;
  line-height: 1.2;
  margin-bottom: 0;
}

h1 {
  font-size: var(--bd-fs-h1);
}

h2 {
  font-size: var(--bd-fs-h2);
}

h3 {
  font-size: var(--bd-fs-h3);
}

h4 {
  font-size: var(--bd-fs-h4);
}

h5 {
  font-size: var(--bd-fs-h5);
}

h6 {
  font-size: var(--bd-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: var(--bd-fs-p);
  font-weight: var(--bd-fw-normal);
  color: var(--clr-text-5);
  margin-bottom: 15px;
  line-height: 23px;
}

a {
  text-decoration: none;
}

a,
.btn,
button,
span,
svg,
p,
input,
select,
textarea,
li,
img,
svg,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--clr-common-placeholder);
  opacity: 1;
  font-size: 16px;
}

*::placeholder {
  color: var(--clr-text-1);
  opacity: 1;
  font-size: 16px;
}

/*----------------------------------------
   Flaction customize
-----------------------------------------*/
i[class^=flaticon-] {
  line-height: 1;
  top: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

/*----------------------------------------
    Gutter style cusrtomize
-----------------------------------------*/
.gutterx-1 {
  --bs-gutter-x: 3px;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    inset-inline-end: 15px;
    bottom: 15px;
  }
}

/*----------------------------------------
    Pseudo-elements cusrtomize
-----------------------------------------*/
[dir=rtl] [type=email],
[dir=rtl] [type=number],
[dir=rtl] [type=tel],
[dir=rtl] [type=url] {
  direction: rtl;
}

/*----------------------------------------
   Basic-pagaination
-----------------------------------------*/
.basic-pagination ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.basic-pagination ul li {
  list-style: none;
}
.basic-pagination ul li a {
  color: var(--clr-common-black);
  font-size: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  line-height: 40px;
  border: 1px solid rgba(21, 20, 28, 0.2);
}
.basic-pagination ul li span {
  font-size: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  line-height: 40px;
  border: 1px solid #15141C;
}
.basic-pagination ul li span.current {
  background: var(--clr-common-black);
  color: var(--clr-common-white);
}
.basic-pagination ul li .prev {
  font-size: 24px;
}
.basic-pagination ul li .next {
  font-size: 24px;
}

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1050px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--clr-common-white);
}
.mfp-close::after {
  position: absolute;
  content: "\f00d";
  height: 100%;
  width: 100%;
  font-family: var(--bd-ff-fontawesome);
  font-size: 36px;
  font-weight: 200;
  right: -35px;
  margin-top: -25px;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.mfp-bg {
  opacity: 0.8;
  background: #212121 !important;
}

--qodef-tab-width {
  width: 200px;
}

.mb-fix {
  margin-bottom: -1px;
}

.x-clip {
  overflow-x: clip;
}

/*------------------------------
02. settings css
------------------------------*/
.bd-theme-settings-area {
  position: fixed;
  top: 50%;
  right: 0px;
  width: 240px;
  background-color: var(--clr-common-white);
  border: 1px solid #EAEAEF;
  -webkit-transform: translateY(-50%) translateX(100%);
  -moz-transform: translateY(-50%) translateX(100%);
  -ms-transform: translateY(-50%) translateX(100%);
  -o-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
  z-index: 991;
  border-bottom-right-radius: 4px;
}
[dir=rtl] .bd-theme-settings-area {
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  left: 0px;
  right: auto;
}
.bd-theme-settings-area.settings-opened {
  -webkit-transform: translateY(-50%) translateX(0%);
  -moz-transform: translateY(-50%) translateX(0%);
  -ms-transform: translateY(-50%) translateX(0%);
  -o-transform: translateY(-50%) translateX(0%);
  transform: translateY(-50%) translateX(0%);
}
.bd-theme-settings-area.settings-opened .bd-theme-settings-gear {
  opacity: 0;
}
.bd-theme-settings-area.settings-opened .bd-theme-settings-close {
  opacity: 1;
}
.bd-theme-settings-open {
  position: absolute;
  top: -1px;
  inset-inline-end: 100%;
}
.bd-theme-settings-open button {
  background-color: var(--clr-common-white);
  border: 1px solid #EAEAEF;
  border-inline-end: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: var(--clr-common-black);
  position: relative;
  border-start-start-radius: 4px;
  border-bottom-left-radius: 4px;
}
[dir=rtl] .bd-theme-settings-open button {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
}
.bd-theme-settings-gear {
  display: inline-block;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bd-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.bd-theme-header-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
.bd-theme-wrapper {
  padding: 20px 30px 30px;
}
.bd-theme-toggle {
  text-align: center;
  display: none !important;
}
.bd-theme-toggle-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.bd-theme-toggle-light, .bd-theme-toggle-dark {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.bd-theme-toggle input {
  display: none;
}
.bd-theme-toggle:hover {
  cursor: pointer;
}
.bd-theme-toggle label {
  color: var(--clr-common-black);
  font-size: 14px;
  font-weight: 500;
}
.bd-theme-toggle label:hover {
  cursor: pointer;
}
.bd-theme-toggle #bd-theme-toggler {
  display: none;
}
.bd-theme-toggle #bd-theme-toggler:checked + i {
  right: calc(50% - 4px);
}
.bd-theme-toggle-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--clr-common-black);
  background-color: var(--clr-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.bd-theme-dir {
  text-align: center;
}
.bd-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.bd-theme-dir-ltr, .bd-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.bd-theme-dir input {
  display: none;
}
.bd-theme-dir:hover {
  cursor: pointer;
}
.bd-theme-dir label {
  color: var(--clr-common-black);
  font-size: 14px;
  font-weight: 500;
}
.bd-theme-dir label:hover {
  cursor: pointer;
}
.bd-theme-dir #bd-dir-toggler {
  display: none;
}
.bd-theme-dir-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--clr-common-black);
  background-color: var(--clr-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.bd-theme-color-item.active button::before {
  opacity: 1;
  visibility: visible;
}
.bd-theme-color-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}
.bd-theme-color-btn::before {
  position: absolute;
  content: "\f00c";
  font-weight: 600;
  font-family: var(--bd-ff-fontawesome);
  color: var(--clr-common-white);
  font-size: 16px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  opacity: 0;
  visibility: hidden;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#F50963"] {
  background-color: #F50963;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#008080"] {
  background-color: #008080;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#F31E5E"] {
  background-color: #F31E5E;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#2CAE76"] {
  background-color: #2CAE76;
  color: black;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#4353FF"] {
  background-color: #4353FF;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#3661FC"] {
  background-color: #3661FC;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#2CAE76"] {
  background-color: #2CAE76;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#F87A58"] {
  background-color: #F87A58;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#03041C"] {
  background-color: #03041C;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#ED212C"] {
  background-color: #ED212C;
}
.bd-theme-color-input {
  margin-top: 15px;
}
.bd-theme-color-input h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.bd-theme-color-input label {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--bd-theme-1);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.bd-theme-color-input label:hover {
  cursor: pointer;
}
.bd-theme-color-input input {
  display: none;
}

/*------------------------------
03. background css
------------------------------*/
/*------- Background color -------*/
.white-bg {
  background-color: var(--clr-common-white);
}

.black-bg {
  background-color: var(--clr-common-black);
}

.dark-bg {
  background-color: var(--clr-common-heading);
}

.grey-bg {
  background-color: var(--clr-bg-gray-1);
}

.footer-bg {
  background-color: var(--clr-bg-footer);
}

/*------------------------------
04. buttons css
------------------------------*/
.button {
  display: inline-block;
  background: var(--clr-gradient-1);
  color: var(--clr-common-white);
  padding: 12px 20px;
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-bold);
  font-size: 16px;
  
  -webkit-transition: all 300ms cubic-bezier(0.5, 2.5, 0.7, 0.7);
  -moz-transition: all 300ms cubic-bezier(0.5, 2.5, 0.7, 0.7);
}
@media (max-width:450px) {
  .button {
    padding: 12px 20px;
  }
}
.button:hover {
  color: var(--clr-common-white);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #141414;
}
.button:focus {
  color: var(--clr-common-white);
}

.button.black {
  background: var(--clr-bg-9);
  color: #fff;
}
.button.black:hover {
  color: var(--clr-common-white);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #fff;
}

.button.white {
  background: var(--clr-gradient-1);
  color: #fff;
}
.button.white:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #fff;
}

.unfill-btn {
  display: inline-block;
  color: var(--clr-text-9);
  padding: 10px 20px;
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-bold);
  font-size: 16px;
  transition: all 300ms cubic-bezier(0.5, 2.5, 0.7, 0.7);
  position: relative;
}
@media (max-width:450px) {
  .unfill-btn {
    padding: 10px 20px;
  }
}
.unfill-btn.button {
  background: linear-gradient(180deg, rgba(197, 31, 44, 0) 0%, rgba(254, 92, 83, 0) 100%);
}
.unfill-btn::before {
  width: 100%;
  height: 100%;
  color: var(--clr-text-9);
  border-style: solid;
  border-width: 2px;
  border-image: linear-gradient(180deg, rgb(197, 31, 44) 0%, rgb(254, 92, 83) 100%) 1;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
}
.unfill-btn:hover.button {
  background: var(--clr-gradient-1);
}
.unfill-btn:hover::before {
  opacity: 0;
  visibility: hidden;
}
.unfill-btn:focus {
  color: var(--clr-text-9);
}

.text-btn {
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-bold);
  font-size: var(--bd-fs-p);
  position: relative;
  transition: 0.4s;
}
.text-btn::after {
  width: 20%;
  height: 2px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  transition: 0.4s;
}
.text-btn:hover {
  -webkit-text-fill-color: transparent;
}
.text-btn:hover::after {
  width: 100%;
}
.text-btn:focus {
  color: var(--clr-text-9);
}

.header-btn .button {
  padding: 12px 27px;
  font-size: 16px;
}

.banner-button .button {
  margin-left: 3px;
}

.scroll-button-wrapper {
  position: absolute;
  bottom: 75px;
  left: 30px;
  z-index: 4;
  transform: rotate(-90deg);
}
[dir=rtl] .scroll-button-wrapper {
  left: auto;
  inset-inline-start: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .scroll-button-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .scroll-button-wrapper {
    inset-inline-start: -12px;
    bottom: 50px;
  }
  [dir=rtl] .scroll-button-wrapper {
    inset-inline-start: -5px;
  }
}
.scroll-button-wrapper .scroll-btn {
  position: relative;
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  transition: 0.3s;
}
.scroll-button-wrapper .scroll-btn:hover {
  color: var(--clr-theme-1);
}
.scroll-button-wrapper .scroll-btn:hover::before {
  border: 1px solid var(--clr-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll-button-wrapper .scroll-btn {
    font-size: 15px;
  }
}
.scroll-button-wrapper .scroll-btn::before {
  width: 80px;
  border: 1px solid #919191;
  position: absolute;
  top: 50%;
  inset-inline-end: -90px;
  content: "";
  transition: 0.3s;
}
[dir=rtl] .scroll-button-wrapper .scroll-btn::before {
  inset-inline-start: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll-button-wrapper .scroll-btn::before {
    width: 40px;
    inset-inline-end: -45px;
  }
}

.download-btn .button {
  padding: 13px 20px;
  font-size: 16px;
  font-weight: var(--bd-fw-normal);
}
.download-btn .button.black {
  transition: 0.3s;
}
.download-btn .unfill-btn {
  border: 1px solid #fff;
  padding: 12px 20px;
  transition: 0.3s;
  margin-inline-start: 15px;
}
.download-btn .unfill-btn::before {
  display: none;
}
.download-btn .unfill-btn:hover {
  border-color: transparent;
}
.download-btn .unfill-btn:hover.button {
  background: var(--clr-bg-9);
}
.download-btn img {
  margin-inline-end: 5px;
}

.price-item-btn {
  text-align: center;
  position: relative;
}
@media (max-width:450px) {
  .price-item-btn .unfill-btn {
    padding: 15px 24px;
  }
}

.active .price-item-btn .unfill-btn {
  color: var(--clr-common-white);
}

@media (max-width: 575px) {
  .feature-btn {
    margin-top: 5px;
  }
}
.feature-btn .unfill-btn {
  z-index: 2;
}
@media (max-width:450px) {
  .feature-btn .unfill-btn {
    margin-bottom: 30px;
  }
}
@media (max-width:450px) {
  .feature-btn .text-btn {
    margin-inline-start: 13px;
  }
}

.ak-banner2-button {
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-offer-content-button {
    width: 50%;
  }
}

.ak-cta2-btn-clr .unfill-btn {
  color: var(--clr-common-white);
}

.ak-footer5-widget-btn .button {
  font-size: 16px;
  padding: 13px 20px;
  border: 1px solid #4D4D4D;
  background: linear-gradient(180deg, rgba(197, 31, 44, 0) 0%, rgba(254, 92, 83, 0) 100%);
}
.ak-footer5-widget-btn .button:hover {
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  border: transparent;
}
.ak-footer5-widget-btn img {
  margin-inline-end: 5px;
}

.inner-team-item-btn .unfill-btn {
  color: var(--clr-common-white);
}

/*------------------------------
05. offcanvas css
------------------------------*/
.offcanvas__close button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}
.offcanvas__close button i {
  color: var(--clr-theme-1);
  font-size: 34px;
}
.offcanvas__close button:hover {
  transform: scale(0.8);
}
.offcanvas__info {
  background: var(--clr-common-white);
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0%);
  transform-origin: top;
  top: -100%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info.info-open {
  width: 100%;
  transform: scaleY(100%);
  opacity: 1;
  visibility: visible;
  top: 0;
}
.offcanvas__logo a img {
  max-width: 180px;
}
.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 73px 80px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.offcanvas__top {
  padding-bottom: 75px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}
.offcanvas__text p {
  margin-bottom: 25px;
}
.offcanvas__notification-icon a {
  font-size: 14px;
  color: var(--clr-common-heading);
  position: relative;
}
.offcanvas__notification-icon a .notification-count {
  position: absolute;
  top: -4px;
  inset-inline-end: -13px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--clr-theme-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-heading);
  text-align: center;
}
.offcanvas__notification-text p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--clr-common-heading);
  font-size: 14px;
}
.offcanvas__notification-text p .notification-number {
  color: var(--clr-theme-1);
}
.offcanvas__notification-text p a {
  color: var(--clr-theme-1);
}
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-black);
  z-index: 900;
  top: -100%;
  opacity: 0;
  visibility: hidden;
  inset-inline-end: 0;
  -webkit-transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.offcanvas__overlay.overlay-open {
  top: 0;
  opacity: 0.5;
  visibility: visible;
  background: var(--clr-common-white);
}
.offcanvas .signin-area.open {
  opacity: 0.6;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar__active {
  cursor: pointer;
}

.offcanvas-grid {
  display: grid;
  grid-template-columns: 20.5% 50% 20.5%;
  gap: 50px 80px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
  padding-bottom: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas-grid {
    grid-template-columns: 24% 42% 24%;
    gap: 50px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas-grid {
    grid-template-columns: 24% 42% 24%;
    gap: 50px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .offcanvas-grid {
    grid-template-columns: 100%;
  }
}

.offcanvas-social {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .offcanvas-social {
    margin-bottom: 50px;
  }
}
.offcanvas-social p {
  color: var(--clr-text-13);
}

.offcanvas-social-link h5 {
  color: var(--clr-text-1);
  font-weight: var(--bd-fw-medium);
  margin-bottom: 13px;
}
.offcanvas-social-link ul li {
  display: inline-block;
  position: relative;
}
.offcanvas-social-link ul li:first-child a {
  padding-inline-start: 0px;
}
.offcanvas-social-link ul li:last-child::before {
  display: none;
}
.offcanvas-social-link ul li::before {
  width: 1px;
  height: 13px;
  background: var(--clr-bg-5);
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}
.offcanvas-social-link ul li a {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-5);
  font-size: 15px;
  padding-inline-start: 16px;
  padding-inline-end: 20px;
  transition: 0.4s;
}
.offcanvas-social-link ul li a:hover {
  opacity: 1;
  color: var(--clr-theme-1);
}
.offcanvas-social-link ul li:last-child a {
  padding-inline-end: 0px;
}

.offcanvas-contact {
  border-left: 1px solid rgba(34, 34, 34, 0.1);
  border-right: 1px solid rgba(34, 34, 34, 0.1);
  padding: 0 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .offcanvas-contact {
    margin-bottom: 50px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas-contact {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .offcanvas-contact {
    padding: 0 35px;
  }
}
@media (max-width: 575px) {
  .offcanvas-contact {
    padding: 0px 20px;
  }
}

.offcanvas-contact-info {
  display: flex;
  align-items: center;
  gap: 20px 15px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
.offcanvas-contact-info:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .offcanvas-contact-info {
    margin-bottom: 50px;
  }
}
@media (max-width:450px) {
  .offcanvas-contact-info {
    flex-direction: column;
    text-align: center;
  }
}
.offcanvas-contact-info .offcanvas-contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-bg-5);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 72px;
}
.offcanvas-contact-info p {
  font-size: 36px;
  line-height: 1.2;
  color: var(--clr-text-1);
  text-transform: lowercase;
  color: var(--clr-text-1);
  margin-bottom: 0px;
}
@media only screen and (min-width: 1601px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .offcanvas-contact-info p br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas-contact-info p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas-contact-info p {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .offcanvas-contact-info p {
    font-size: 22px;
  }
}
.offcanvas-contact-info p a {
  transition: 0.4s;
}
.offcanvas-contact-info p a:hover {
  color: var(--clr-theme-1);
}
.offcanvas-contact-info:hover .offcanvas-contact-icon svg {
  animation: wiggle 0.2s infinite;
  animation-timing-function: linear;
}

.offcanvas-search-title h4 {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-1);
  line-height: 1.3;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1601px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .offcanvas-search-title h4 br {
    display: none;
  }
}

.offcanvas-search {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .offcanvas-search-form {
    max-width: 413px;
  }
}
.offcanvas-search-form input {
  width: 100%;
  padding: 20px 65px 20px 24px;
  border: 1px solid #222222;
  border-radius: 60px;
  color: var(--clr-text-5);
  background: var(--clr-common-white);
  font-family: var(--bd-ff-secondary);
}
.offcanvas-search-form .submit {
  width: 56px;
  height: 56px;
  background: var(--clr-bg-9);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  transition: 0.4s;
}
.offcanvas-search-form .submit span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.offcanvas-search-form .submit span i {
  color: var(--clr-common-white);
}
.offcanvas-search-form .submit:hover {
  background: var(--clr-text-4);
}
.offcanvas-search-form .submit:hover span i {
  animation: iconltr 0.5s forwards;
}

.offcanvas-search-logo {
  display: flex;
  gap: 10px;
}

/*------------------------------
06. section-title css
------------------------------*/
.section-title .sub-title {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  text-transform: uppercase;
}
.section-title .sub-title img {
  display: inline-block;
  margin-inline-end: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title .sub-title {
    margin-bottom: 27px;
  }
}
.section-title .main-title {
  font-size: 32px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.1;
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title .main-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .main-title {
    font-size: 27px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title .main-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .main-title {
    font-size: 24px;
  }
  .section-title .main-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .section-title .main-title {
    font-size: 24px;
  }
  .section-title .main-title br {
    display: none;
  }
}
@media (max-width:450px) {
  .section-title .main-title {
    font-size: 22px;
  }
  .section-title .main-title br {
    display: none;
  }
}
.section-title .home2-sub-title {
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: capitalize;
}

.banner-title .banner-sub-title {
  font-size: var(--bd-fs-p);
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  line-height: 1.3;
}
.banner-title .banner-sub-title img {
  display: inline-block;
  margin-inline-end: 5px;
}
.banner-title .banner-main-title {
  font-size: 42px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-title .banner-main-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-title .banner-main-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-title .banner-main-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-title .banner-main-title {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .banner-title .banner-main-title {
    font-size: 20px;
  }
}
@media (max-width:450px) {
  .banner-title .banner-main-title {
    font-size: 20px;
  }
}
.banner-title .banner-main-title span {
  background-image: linear-gradient(180deg, #f45269 0%, #e23e55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ak-home2-banner-main-title {
  letter-spacing: -1px;
}

.testi-title {
  transform: rotate(-90deg);
  position: absolute;
  bottom: 177px;
  inset-inline-start: -65px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-title {
    transform: rotate(0deg);
    position: inherit;
    bottom: 0px;
    inset-inline-start: 0px;
    text-align: center;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testi-title {
    inset-inline-start: -65px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .testi-title {
    inset-inline-start: -70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testi-title .sub-title-wrapper {
    justify-content: center;
  }
}

.testi-title4 {
  inset-inline-start: -95px;
  left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testi-title4 {
    inset-inline-start: -69px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .testi-title4 {
    inset-inline-start: 0px;
  }
}

.sub-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sub-title-wrapper .sub-title {
    margin-bottom: 0px;
  }
}

.sub-title-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #D4212F;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-45deg);
}
.sub-title-dot::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: #FE5C53;
  left: 0;
}

.section-title .service2-sub-title {
  color: var(--clr-text-5);
  text-transform: capitalize;
}

.ak-feature2-item-wrap .sub-title {
  text-transform: capitalize;
  color: var(--clr-text-5);
}

.theme-section-title .sub-title {
  text-transform: capitalize;
}

.banner-sub-title3 {
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-theme-1);
  background: rgba(212, 33, 47, 0.12);
  border-radius: 80px;
  padding: 12px 15px;
  text-align: center;
}

.banner-main-title3 {
  color: #fff;
  font-size: 76px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-main-title3 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-main-title3 {
    font-size: 50px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .banner-main-title3 {
    font-size: 43px;
  }
}
@media (max-width: 575px) {
  .banner-main-title3 {
    font-size: 38px;
  }
}
@media (max-width:450px) {
  .banner-main-title3 {
    font-size: 36px;
  }
}

.ak-sub-title3 {
  padding: 10px 16px;
  color: var(--clr-theme-1);
  background: rgba(212, 33, 47, 0.12);
  text-transform: uppercase;
  border-radius: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.section-title-4 {
  position: relative;
  z-index: 1;
}

.ak-sub-title4 {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-5);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.banner3-title .ak-sub-title4 {
  color: var(--clr-common-white);
}

.ak-title-highlight {
  position: relative;
}
.ak-title-highlight::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: url(../../img/banner/ak-title4-highlight-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  -webkit-animation: section-animation 3s infinite;
  animation: section-animation 3s infinite;
}

.ak-offer4-section-title .ak-sub-title4 {
  color: var(--clr-text-10);
}

.ak-testi4-section-title .ak-sub-title4 {
  color: var(--clr-text-11);
}

.ak-home5-section-title .sub-title {
  color: var(--clr-text-5);
  text-transform: capitalize;
}
.ak-home5-section-title .main-title {
  color: var(--clr-common-white);
}

.inner-brand-section-title .page-sub-title {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--clr-text-13);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .section-title p br {
    display: none;
  }
}

/*------------------------------
07. breadcrumb css
------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-title-area {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title-area {
    padding-bottom: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .page-title-area {
    padding-bottom: 100px;
  }
}
.page-title-area.is-bottom {
  padding-bottom: 280px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-title-area.is-bottom {
    padding-bottom: 205px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title-area.is-bottom {
    padding-bottom: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .page-title-area.is-bottom {
    padding-bottom: 0px;
  }
}

.page-title-area-bg {
  background: var(--clr-bg-9);
}

.page-title-bg-overlay {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}

.page-title-round-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.page-title-round-wrapper::after {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.page-title-round-wrapper .page-title-round-left {
  width: 491px;
  height: 643.01px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  bottom: -80px;
  left: 100px;
  opacity: 0.5;
}
.page-title-round-wrapper .page-title-round-right {
  width: 321px;
  height: 349px;
  background: #D4212F;
  filter: blur(250px);
  opacity: 0.5;
  position: absolute;
  bottom: 37%;
  inset-inline-end: 12%;
}

.page-title-2 .page-title-round-wrapper::after {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.page-title-2 .page-title-round-wrapper .page-title-round-left {
  width: 491px;
  height: 680px;
  opacity: 0.4;
}
.page-title-2 .page-title-round-wrapper .page-title-round-right {
  width: 600px;
  height: 552px;
  opacity: 0.4;
  top: -36%;
  inset-inline-end: 5%;
}

.page-sub-title {
  display: inline-block;
  padding: 5px 11px;
  color: var(--clr-text-9);
  background: var(--clr-common-white);
  border-radius: 16px;
  font-weight: var(--bd-fw-medium);
}

.page-title {
  font-size: 64px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .page-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-title {
    font-size: 56px;
  }
  .page-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title {
    font-size: 60px;
  }
  .page-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title {
    font-size: 40px;
  }
  .page-title br {
    display: none;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .page-title {
    font-size: 34px;
  }
  .page-title br {
    display: none;
  }
}

.page-title-content {
  position: relative;
  z-index: 1;
}
.page-title-content .page-title-wrapper {
  padding-top: 130px;
  padding-bottom: 130px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .page-title-content .page-title-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.page-title-content .page-title-wrapper span {
  color: var(--clr-text-10);
}
.page-title-content .page-title-wrapper .social-icon ul {
  display: flex;
  gap: 0 10px;
}
.page-title-content .page-title-wrapper .social-icon ul li {
  list-style: none;
}
.page-title-content .page-title-wrapper .social-icon ul li a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.page-title-content .page-title-wrapper .social-icon ul li a i {
  color: var(--clr-common-white);
  font-size: 15px;
}
.page-title-content .page-title-wrapper .social-icon ul li a:hover {
  background: var(--clr-bg-5);
}

.page-title-img {
  position: absolute;
  top: 65px;
  inset-inline-end: 0;
  max-width: 538px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-title-img {
    max-width: 438px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .page-title-img {
    max-width: 100%;
    position: inherit;
    margin-top: 0px;
  }
}
.page-title-img img {
  width: 100%;
}

.page-title-meta .ak-blog-meta-wrap {
  background: transparent;
  transform: translateY(0px);
  justify-content: center;
}
.page-title-meta .ak-blog-meta-wrap .ak-blog-author-icon i {
  color: var(--clr-text-10);
}
.page-title-meta .ak-blog-meta-wrap .ak-blog-author-text {
  color: var(--clr-text-10);
}
.page-title-meta .ak-blog-meta-wrap .ak-news-meta-box .ak-news-meta-icon path {
  fill: var(--clr-text-10);
}
.page-title-meta .ak-blog-meta-wrap .ak-news-meta-box .ak-news-meta-text {
  color: var(--clr-text-10);
}

.page-title-team-details .page-title-img {
  width: 538px;
  height: 538px;
  border-radius: 50%;
  background: var(--clr-common-white);
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .page-title-team-details .page-title-img {
    width: 438px;
    height: 438px;
  }
}
@media (max-width: 575px) {
  .page-title-team-details .page-title-img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width:450px) {
  .page-title-team-details .page-title-img {
    width: 290px;
    height: 290px;
  }
}
.page-title-team-details .page-title-img::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(33, 190, 212, 0.2) 0%, rgba(33, 190, 212, 0) 100%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .page-title-team-details .page-title-img::after {
    display: none;
  }
}

/*------------------------------
08. animation css
------------------------------*/
/* ========= video-ripple ========== */
@keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.testi-border-loader svg {
  transform: rotate(-90deg);
}

.testi-border-loader svg circle:last-child {
  stroke: #d72f3d;
  stroke-dashoffset: -356px;
  stroke-dasharray: 0px, 266px;
}
@-webkit-keyframes testi-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@-moz-keyframes testi-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@-ms-keyframes testi-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@keyframes testi-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@-webkit-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes section-animation {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
  }
  10% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
@keyframes fade-down-left {
  0% {
    transform: scale(1);
    transform-origin: center;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes border {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes ak-bg-img-move-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes ak-bg-img-move-x {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ak-round-rotation2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(4px, -20px) rotate(38deg);
    -webkit-transform: translate(4px, -20px) rotate(38deg);
    -moz-transform: translate(4px, -20px) rotate(38deg);
    -ms-transform: translate(4px, -20px) rotate(38deg);
    -o-transform: translate(4px, -20px) rotate(38deg);
  }
  41% {
    transform: translate(-50px, -60px) rotate(74deg);
    -webkit-transform: translate(-50px, -60px) rotate(74deg);
    -moz-transform: translate(-50px, -60px) rotate(74deg);
    -ms-transform: translate(-50px, -60px) rotate(74deg);
    -o-transform: translate(-50px, -60px) rotate(74deg);
  }
  60% {
    transform: translate(-20px, -30px) rotate(108deg);
    -webkit-transform: translate(-20px, -30px) rotate(108deg);
    -moz-transform: translate(-20px, -30px) rotate(108deg);
    -ms-transform: translate(-20px, -30px) rotate(108deg);
    -o-transform: translate(-20px, -30px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
    -moz-transform: translate(-195px, -49px) rotate(144deg);
    -ms-transform: translate(-195px, -49px) rotate(144deg);
    -o-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
    -moz-transform: translate(-1px, 0px) rotate(180deg);
    -ms-transform: translate(-1px, 0px) rotate(180deg);
    -o-transform: translate(-1px, 0px) rotate(180deg);
  }
}
.panel {
  position: absolute;
  top: 0;
  width: 0%;
  height: 100%;
  left: 0;
  background: white;
  z-index: 10;
  transition: transform 0.5s ease-in-out;
  animation: panel 1s;
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@keyframes panel {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes banner-round {
  0% {
    -webkit-transform: rotate(-180deg) scale(0.9);
    -moz-transform: rotate(-180deg) scale(0.9);
    -ms-transform: rotate(-180deg) scale(0.9);
    -o-transform: rotate(-180deg) scale(0.9);
    transform: rotate(-180deg) scale(0.9);
  }
  100% {
    -webkit-transform: rotate(-180deg) scale(1);
    -moz-transform: rotate(-180deg) scale(1);
    -ms-transform: rotate(-180deg) scale(1);
    -o-transform: rotate(-180deg) scale(1);
    transform: rotate(-180deg) scale(1);
  }
}
@keyframes iconltr {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes iconrtl {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
/***** Pulse *****/
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/***** Wiggle *****/
@keyframes wiggle {
  0% {
    transform: translate(2px, 0);
  }
  50% {
    transform: translate(-2px, 0);
  }
  100% {
    transform: translate(2px, 0);
  }
}
@keyframes iconltr {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
/*------------------------------
09. preloader css
------------------------------*/
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0;
  top: 0;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading-center-absolute {
    width: 60%;
  }
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0;
  top: 0;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.object {
  width: 20px;
  height: 20px;
  background-color: #5f3afc;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;
  position: absolute;
}

#object_one {
  -webkit-animation: object 2s linear infinite;
  animation: object 2s linear infinite;
}

#object_two {
  -webkit-animation: object 2s linear infinite -0.4s;
  animation: object 2s linear infinite -0.4s;
}

#object_three {
  -webkit-animation: object 2s linear infinite -0.8s;
  animation: object 2s linear infinite -0.8s;
}

#object_four {
  -webkit-animation: object 2s linear infinite -1.2s;
  animation: object 2s linear infinite -1.2s;
}

#object_five {
  -webkit-animation: object 2s linear infinite -1.6s;
  animation: object 2s linear infinite -1.6s;
}

@-webkit-keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
.loading-icon .loading-logo {
  width: 100px;
  height: 101px;
  -webkit-animation: ghurche 4s linear infinite -1.2s;
  animation: ghurche 4s linear infinite -1.2s;
  margin: 20px;
}

@media (max-width: 575px) {
  .loading-icon .loading-logo {
    margin-bottom: 10px;
  }
}
@-webkit-keyframes ghurche {
  0% {
    left: 100px;
    top: 0;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes ghurche {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-icon {
  width: 150px;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .loading-icon {
    width: 50px;
  }
}

/*------------------------------
10. meanmenu css
------------------------------*/
/* Mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--clr-common-heading);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
}
.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  border: 1px solid var(--clr-border-1) !important;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-common-heading);
  line-height: 30px;
  top: 0;
  font-weight: 400;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--clr-bg-5);
  color: var(--clr-common-white);
}

.mean-container .mean-nav ul li > a > i {
  display: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--clr-common-white);
  background-color: var(--clr-bg-5);
  border-color: var(--clr-bg-5) !important;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/*------------------------------
11. header css
------------------------------*/
.header__transparent {
  position: absolute;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
}

.sticky {
  position: fixed !important;
  top: 0;
  background: var(--clr-common-white);
  z-index: 800;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  -webkit-transition: all 2s ease-out 0s;
  -moz-transition: all 2s ease-out 0s;
  -ms-transition: all 2s ease-out 0s;
  -o-transition: all 2s ease-out 0s;
  transition: all 2s ease-out 0s;
  -webkit-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -moz-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -ms-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -o-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky-2 {
  position: fixed !important;
  top: 0px !important;
  background: rgb(20, 20, 20) !important;
  z-index: 800;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  -webkit-transition: all 2s ease-out 0s;
  -moz-transition: all 2s ease-out 0s;
  -ms-transition: all 2s ease-out 0s;
  -o-transition: all 2s ease-out 0s;
  transition: all 2s ease-out 0s;
  -webkit-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -moz-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -ms-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  -o-box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.bar-icon {
  width: 36px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--clr-common-white);
  display: inline-block;
}
.bar-icon span:nth-child(2) {
  margin-inline-start: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bar-icon span:nth-child(3) {
  margin-inline-start: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bar-icon:hover span:nth-child(2) {
  margin-inline-start: 10px;
}
.bar-icon:hover span:nth-child(3) {
  margin-inline-start: 0;
}

.header-area-1 {
  position: relative;
  z-index: 97;
}

.header-area-1 .container {
  max-width: 1790px;
}

.header-top-area .container {
  max-width: 1790px;
}

.header-bg {
  background: var(--clr-bg-6);
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-bg {
    padding: 10px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header-bg {
    padding: 22px 0;
  }
}

.header-bottom-bg-white {
  background: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), xxs {
  .header-bottom-bg-white {
    padding-top: 17px;
    padding-bottom: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header__left {
    justify-content: space-between;
  }
}

.header__menu {
  margin-inline-start: 102px;
  cursor: pointer;
}
@media (max-width:450px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__menu {
    margin-inline-start: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__menu {
    margin-inline-start: 50px;
  }
}
.header__menu-text {
  color: var(--clr-common-white);
  transition: 0.4s;
  padding-inline-end: 28px;
}
.header__menu-text:hover {
  color: var(--clr-theme-1);
}
.header__menu-text:hover::after {
  inset-inline-end: 0px;
}
.header__menu-text:hover::before {
  inset-inline-end: 8px;
}
.header__menu-text::after {
  width: 12.24px;
  height: 12.24px;
  background: var(--clr-bg-7);
  position: absolute;
  top: 5px;
  inset-inline-end: 8px;
  content: "";
  border-radius: 50%;
  transition: 0.4s;
}
.header__menu-text::before {
  width: 12.24px;
  height: 12.24px;
  background: var(--clr-common-white);
  position: absolute;
  top: 5px;
  inset-inline-end: 0px;
  content: "";
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s;
}
.header__menu-text.is-black {
  color: var(--clr-text-9);
}
.header__menu-text.is-black::after {
  background: var(--clr-bg-14);
}
.header__menu-text.is-black::before {
  background: var(--clr-bg-7);
}
.header__menu-text.is-black:hover {
  color: var(--clr-theme-1);
}

.header-nav-item-wrapper {
  display: flex;
  justify-content: center;
}

.header1-main-menu-wrap .main-menu ul li a:hover {
  color: var(--clr-common-white);
}

.main-menu .is-black li a {
  color: var(--clr-text-9);
}

.main-menu ul li {
  display: inline-block;
  margin: 0px 15px;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul li {
    margin: 0px 18px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin: 0px 13px;
  }
}
.main-menu ul li a {
  color: var(--clr-text-11);
  display: inline-block;
  padding: 37px 0;
  line-height: 1;
  font-weight: var(--bd-fw-sbold);
  position: relative;
  /*transition: 0.3s;*/
}
.main-menu ul li a::after {
  width: 0%;
  height: 3px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  position: absolute;
  bottom: 25px;
  left: 0;
  content: "";
  /*transition: 0.3s;*/
}
.main-menu ul li a:hover {
  color: var(--clr-text-8);
}
.main-menu ul li a:hover::after {
  width: 50%;
}
.main-menu ul li .sub-menu {
  background: var(--clr-common-white) none repeat scroll 0 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -40px;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  min-width: 270px;
  z-index: 9;
  text-align: left;
  padding: 15px 0;
  /*-webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transform-origin: top center;
  transform-origin: top center;*/
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
}
.main-menu ul li .sub-menu li {
  display: flex;
  margin: 0px;
  padding: 10px 30px 10px 30px;
  justify-content: space-between;
}
.main-menu ul li .sub-menu li a {
  padding: 0px;
  display: inline-block;
  color: var(--clr-text-5);
  position: relative;
  font-weight: var(--bd-fw-medium);
}
.main-menu ul li .sub-menu li a::before {
  width: 0%;
  height: 1px;
  background: var(--clr-bg-9);
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  transition: 0.4s;
}
.main-menu ul li .sub-menu li a:hover {
  color: var(--clr-text-9);
}
.main-menu ul li .sub-menu li a:hover:before {
  width: 100%;
}
.main-menu ul li .sub-menu li a:hover::after {
  width: 0px;
}
.main-menu ul li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  -webkit-transform: scaleY(1) translateZ(194px);
  transform: scaleY(1) translateZ(0px);
}
.main-menu ul li:hover > .sub-menu li:hover > .sub-menu {
  top: 0;
}

.header__right {
  justify-content: flex-end;
  gap: 30px 35px;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__right {
    gap: 30px 15px;
  }
}
.header__right .sign-up .login {
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-medium);
  font-size: var(--bd-fs-h5);
  color: var(--clr-text-8);
  transition: 0.3s;
}
.header__right .sign-up .login span {
  margin-inline-end: 6px;
}
.header__right .sign-up .login:hover {
  color: var(--clr-bg-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-btn .fill-btn {
    padding: 15px 23px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-btn .fill-btn {
    padding: 15px 25px;
  }
}

.mean-bar .mean-nav ul .has-dropdown .sub-menu li {
  /*display: flex;
  justify-content: space-around;*/
  align-items: left;
  border-top: 1px solid #e0e3ed;
}
.mean-bar .mean-nav ul .has-dropdown .sub-menu li a {
  border-top: none;
  padding: 10px 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .mean-bar .mean-nav ul .has-dropdown .sub-menu li a {
    width: 94% !important;
  }
}
.mean-bar .mean-nav ul .has-dropdown .sub-menu li svg {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.mean-bar .mean-nav ul .has-dropdown .sub-menu li:hover svg {
  opacity: 1;
  visibility: visible;
}

.mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item a {
  padding: 10px 4%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item a {
    padding: 10px 10%;
  }
}
.mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item ul li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #e0e3ed;
}
.mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item ul li a {
  border-top: none;
  padding: 10px 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item ul li a {
    padding: 10px 6%;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item ul li a {
    padding: 10px 7%;
    width: 50%;
  }
}
.mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item ul li svg {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.mean-bar .mean-nav ul .has-mega-menu .ak-mega-menu .page-item ul li:hover svg {
  opacity: 1;
  visibility: visible;
}

.main-menu ul li .ak-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--clr-common-white);
  padding: 35px 300px 25px 300px;
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  z-index: 99;
  width: 100%;
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  overflow: hidden;
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .main-menu ul li .ak-mega-menu {
    padding: 35px 200px 25px 200px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul li .ak-mega-menu {
    padding: 35px 100px 25px 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li .ak-mega-menu {
    padding: 35px 20px 25px 20px;
  }
}

.main-menu ul li.has-mega-menu {
  position: static;
}

.main-menu ul li .ak-mega-menu {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
}

.main-menu ul li:hover .ak-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateX(-50%);
}

.has-mega-menu .ak-mega-menu-2 li {
  margin: 0px;
}
.has-mega-menu .ak-mega-menu-2 li ul {
  margin-bottom: 15px;
  max-width: 100% !important;
}

.ak-mega-menu-2 li:last-child ul {
  border: none;
}
.ak-mega-menu-2 li ul {
  max-width: 416px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  padding: 0 20px 0px 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-mega-menu-2 li ul {
    border: none;
    max-width: 80% !important;
  }
}
.ak-mega-menu-2 li ul li {
  width: 100%;
}
.ak-mega-menu-2 li ul li:nth-child(2n) {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-mega-menu-2 li ul li:nth-child(2n) {
    border-top: none;
    border-bottom: none;
  }
}
.ak-mega-menu-2 li ul li .mega-service {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: var(--clr-common-white);
  width: 100%;
  padding: 25px 0px;
  transition: all 0.3s ease-out 0s;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-mega-menu-2 li ul li .mega-service {
    width: 80% !important;
  }
}
.ak-mega-menu-2 li ul li .mega-service::after {
  display: none;
}
.ak-mega-menu-2 li ul li .mega-service .mega-service-content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  align-items: center;
}
.ak-mega-menu-2 li ul li .mega-service .mega-service-content-wrap .mega-menu-2-inner-logo {
  width: 37px;
  height: 37px;
  background: rgba(212, 33, 47, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.ak-mega-menu-2 li ul li .mega-service .mega-service-content-wrap .mega-menu-2-inner-logo i {
  font-size: 18px;
  color: var(--clr-theme-1);
}
.ak-mega-menu-2 li ul li .mega-service .mega-service-content-wrap .mega-menu-2-inner-content h5 {
  font-size: 18px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-1);
  line-height: 1;
  margin-bottom: 5px;
}
.ak-mega-menu-2 li ul li .mega-service .mega-service-content-wrap .mega-menu-2-inner-content h6 {
  color: var(--clr-text-5);
  font-weight: var(--bd-fw-normal);
}
.ak-mega-menu-2 li ul li .mega-service .mega-menu-2-inner-icon {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.ak-mega-menu-2 li ul li .mega-service:hover .mega-menu-2-inner-logo {
  background: var(--clr-bg-5);
}
.ak-mega-menu-2 li ul li .mega-service:hover .mega-menu-2-inner-logo i {
  color: var(--clr-common-white);
}
.ak-mega-menu-2 li ul li .mega-service:hover .mega-menu-2-inner-logo svg path {
  fill: #fff;
}
.ak-mega-menu-2 li ul li .mega-service:hover .mega-menu-2-inner-icon {
  opacity: 1;
  visibility: visible;
}
.ak-mega-menu-2 li.test ul {
  padding: 0px;
}

.main-menu ul li .ak-mega-menu-2 .li {
  margin: 0px;
  margin-bottom: 15px;
  padding: 0px;
}
.main-menu ul li .ak-mega-menu-2 .li ul li {
  margin: 0px;
  width: 100%;
}
.main-menu ul li .ak-mega-menu-2 .li ul li .mega-service {
  display: flex;
  justify-content: space-between;
}

.mega-menu-2-inner-thumb-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 40px 30px 30px 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu-2-inner-thumb-content {
    padding: 40px 30px 39px 30px;
  }
}
@media (max-width:450px) {
  .mega-menu-2-inner-thumb-content {
    padding: 30px 30px 27px 30px;
  }
}
.mega-menu-2-inner-thumb-content h4 {
  font-size: 40px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.3;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .mega-menu-2-inner-thumb-content h4 {
    font-size: 35px;
  }
}
.mega-menu-2-inner-thumb-content a::after {
  display: none;
}
.mega-menu-2-inner-thumb-content .service-menu-btn {
  margin-top: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu-2-inner-thumb-content .service-menu-btn {
    margin-top: 50px;
  }
}
@media (max-width: 350px) {
  .mega-menu-2-inner-thumb-content .service-menu-btn {
    margin-top: 40px;
  }
}
@media (min-width: 351px) and (max-width: 450px) {
  .mega-menu-2-inner-thumb-content .service-menu-btn {
    margin-top: 80px;
  }
}
.mega-menu-2-inner-thumb-content .service-menu-btn .button {
  padding: 20px 32px;
  min-width: 177px !important;
  text-align: center;
  border-top: 0px;
  font-size: 18px;
  color: var(--clr-common-white);
}
.mega-menu-2-inner-thumb-content .service-menu-btn .button:hover {
  color: var(--clr-common-white);
}
@media (max-width:450px) {
  .mega-menu-2-inner-thumb-content .service-menu-btn .button {
    padding: 15px 12px;
    min-width: 117px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mega-menu-2-inner-thumb {
    width: 350px;
    margin-left: 15%;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-img img {
    width: 100%;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-content h4 {
    font-size: 33px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mega-menu-2-inner-thumb {
    width: 350px;
    margin-left: 10%;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-img img {
    width: 100%;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-content h4 {
    font-size: 33px;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-content .download-btn {
    margin-top: 40px;
  }
}
@media (max-width:450px) {
  .mega-menu-2-inner-thumb {
    width: 100%;
    margin-left: 0px;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-img img {
    width: 100%;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-content h4 {
    font-size: 24px;
  }
  .mega-menu-2-inner-thumb .mega-menu-2-inner-thumb-content .download-btn {
    margin-top: 30px;
  }
}

.main-menu ul li .ak-mega-menu .page-item {
  width: 306px;
  position: relative;
}
.main-menu ul li .ak-mega-menu .page-item::after {
  width: 1px;
  height: 100%;
  background: rgba(20, 20, 20, 0.1);
  position: absolute;
  top: 0;
  inset-inline-end: -75px;
  content: "";
}
.main-menu ul li .ak-mega-menu .page-item ul li {
  width: 100%;
  padding-bottom: 17px;
  margin: 0px;
  display: flex;
  justify-content: space-between;
}
.main-menu ul li .ak-mega-menu .page-item ul li a {
  color: var(--clr-text-5);
  transition: 0.4s;
  position: relative;
  padding: 0px;
}
.main-menu ul li .ak-mega-menu .page-item ul li a::after {
  display: none;
}
.main-menu ul li .ak-mega-menu .page-item ul li a::before {
  width: 0%;
  height: 1px;
  background: var(--clr-bg-9);
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  transition: 0.4s;
}
.main-menu ul li .ak-mega-menu .page-item ul li svg {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.main-menu ul li .ak-mega-menu .page-item ul li:hover a {
  color: var(--clr-text-9);
}
.main-menu ul li .ak-mega-menu .page-item ul li:hover a::before {
  width: 100%;
}
.main-menu ul li .ak-mega-menu .page-item ul li:hover svg {
  opacity: 1;
  visibility: visible;
}
.main-menu ul li .ak-mega-menu .page-item:hover .mega-menu-title {
  color: #000;
}
.main-menu ul li .ak-mega-menu .page-item:last-child::after {
  display: none;
}

.ak-mega-menu .mega-menu-title {
  width: 100%;
  font-size: 18px;
  color: #000;
  cursor: text;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  padding-top: 0px;
  padding-bottom: 17px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-mega-menu .mega-menu-title {
    border-bottom: none;
  }
}
.ak-mega-menu .mega-menu-title::after {
  display: none;
}
.ak-mega-menu .mega-menu-title:hover {
  color: #000;
}

.header-top-area-bg {
  background: var(--clr-bg-5);
  position: relative;
  z-index: 99;
}
@media (max-width: 575px) {
  .header-top-area-bg {
    padding-top: 10px;
  }
}

.header-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0px;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.header-top-left {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px), (max-width:450px) {
  .header-top-left {
    width: 100%;
  }
}

.header-login {
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-medium);
  font-size: 15px;
  color: var(--clr-common-white);
  padding-inline-end: 20px;
  position: relative;
}
.header-login:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header-login::before {
  height: 12px;
  border: 1.5px solid #FFFFFF;
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}
@media (max-width: 575px), (max-width:450px) {
  .header-login::before {
    display: none;
  }
}
.header-login svg {
  margin-inline-end: 3px;
}

.header-support {
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-medium);
  font-size: 15px;
  color: var(--clr-common-white);
  padding-inline-start: 20px;
}
.header-support:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header-support svg {
  margin-inline-end: 3px;
}

.header-top-right {
  display: flex;
  justify-content: space-between;
}

.header-social-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-inline-end: 40px;
}
@media (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-social-wrapper {
    display: none;
  }
}

.header-social-wrapper .header-social-item {
  list-style: none;
}
.header-social-wrapper .header-social-item a {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
  font-size: 15px;
  padding-inline-start: 16px;
  padding-inline-end: 20px;
  transition: 0.4s;
  opacity: 0.8;
  transition: 0.3s;
}
.header-social-wrapper .header-social-item a:hover {
  opacity: 1;
}

.header-social-second-item {
  position: relative;
}
.header-social-second-item::after {
  width: 1px;
  height: 13px;
  background: var(--clr-common-white);
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}
.header-social-second-item::before {
  width: 1px;
  height: 13px;
  background: var(--clr-common-white);
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}

.header-social-last-item {
  position: relative;
}
.header-social-last-item::after {
  width: 1px;
  height: 13px;
  background: var(--clr-common-white);
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}

.header-language-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 575px), (max-width:450px) {
  .header-language-wrapper {
    display: none;
  }
}
.header-language-wrapper .header-lang-toggle {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
  font-size: 16px;
}
.header-language-wrapper .header-lang-toggle .flaticon-down {
  top: 5px;
}
.header-language-wrapper .nice-select {
  border: none;
  padding: 0px;
  background: transparent;
  position: relative;
  z-index: 105;
  margin-inline-start: 7px;
  padding-inline-end: 20px;
}
.header-language-wrapper .nice-select .current {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
}
.header-language-wrapper .nice-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  inset-inline-end: 3px;
}
[dir=rtl] .header-language-wrapper .nice-select::after {
  right: auto;
  left: 0;
}
.header-language-wrapper .nice-select .list {
  right: 0;
  border-radius: 0;
  left: auto;
  z-index: 9999;
}
[dir=rtl] .header-language-wrapper .nice-select .list {
  right: auto;
  left: 0;
}
.header-language-wrapper .nice-select .list .option {
  font-weight: var(--bd-fw-medium);
}
.header-language-wrapper .nice-select .list .option:hover {
  color: var(--clr-theme-1);
}

.bottom-header-right-info {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .bottom-header-right-info {
    display: none;
  }
}

.bottom-header-right-info-icon {
  width: 47px;
  height: 47px;
  background: rgba(212, 33, 47, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 10px;
  min-width: 47px;
}

.bottom-header4-info-icon {
  background: transparent;
}

.bottom-header-right-info-text span {
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-5);
  line-height: 1.3;
  font-size: 14px;
}
.bottom-header-right-info-text h4 {
  color: var(--clr-text-9);
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  transition: 0.3s;
}
@media (max-width:450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bottom-header-right-info-text h4 {
    font-size: 18px;
  }
}
.bottom-header-right-info-text h4:hover {
  color: var(--clr-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header3-responsive {
    padding: 19px 0px 20px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header3-responsive {
    padding: 27px 0px;
  }
}

@media (max-width: 575px), (max-width:450px) {
  .ak-header3-left {
    justify-content: space-between;
  }
}
.ak-header3-left .header__menu {
  margin-inline-start: 136px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-header3-left .header__menu {
    margin-inline-start: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-header3-left .header__menu {
    margin-inline-start: 100px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-header3-left .header__menu {
    margin-inline-start: 0px;
  }
}

.header3-logo-bg {
  width: 285px;
  height: 90px;
  position: absolute;
  top: -28px;
  inset-inline-start: -72px;
  background: #F7F7F7;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header3-logo-bg {
    height: 84px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header3-logo-bg {
    width: 240px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header3-logo-bg {
    width: 240px;
  }
}
@media (max-width:450px) {
  .header3-logo-bg {
    width: 235px;
  }
}
.header3-logo-bg img {
  width: 100%;
  height: 100%;
}
.header3-logo-bg::after {
  width: 100%;
  height: 100%;
  background: rgba(247, 247, 247, 0.9);
  mix-blend-mode: lighten;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 23;
}

.ak-header3-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-header3-right {
    padding: 5px 0;
  }
}

.header-language-wrapper.is-black {
  padding-inline-end: 17px;
  position: relative;
}
.header-language-wrapper.is-black .nice-select {
  line-height: 32px;
  height: 30px;
}
.header-language-wrapper.is-black .nice-select .current {
  color: var(--clr-text-9);
}
.header-language-wrapper.is-black .nice-select .current:hover {
  color: var(--clr-theme-1);
}
.header-language-wrapper.is-black .nice-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #919191;
  border-right: 2px solid #919191;
}
.header-language-wrapper.is-black .nice-select .list {
  left: -25px;
}
.header-language-wrapper.is-black::before {
  height: 18px;
  border: 1px solid #C3C3C3;
  position: absolute;
  top: 7px;
  inset-inline-end: 0;
  content: "";
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header-language-wrapper.is-black::before {
    display: none;
  }
}

.header-login-wrapper {
  padding-inline-start: 17px;
  padding-inline-end: 19px;
}
.header-login-wrapper span {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-text-9);
  margin-inline-start: 5px;
  transition: 0.3s;
}
.header-login-wrapper a:hover span {
  color: var(--clr-theme-1);
}

.header3-search-btn {
  width: 50px;
  height: 50px;
  background: var(--clr-bg-9);
  border-radius: 50%;
  color: var(--clr-common-white);
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header3-search-btn {
    width: 40px;
    height: 40px;
  }
}
.header3-search-btn:hover {
  background: var(--clr-bg-5);
}

.header-area-4 .container {
  max-width: 1790px;
}

.ak-header4-main-wrapper {
  background: var(--clr-common-white);
  z-index: 3;
}

.header4-layout {
  padding-inline-start: 250px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header4-layout {
    padding-inline-start: 0px;
  }
}
.header4-layout .header-bottom-bg-white {
  padding-inline-start: 120px;
  padding-inline-end: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header4-layout .header-bottom-bg-white {
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header4-layout .header-bottom-bg-white {
    padding-inline-end: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header4-layout .header-bottom-bg-white {
    padding-inline-end: 23px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .header4-layout .header-bottom-bg-white {
    padding-inline-end: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header4-menu {
    justify-content: flex-end;
  }
}
.header4-menu .header__menu {
  margin-inline-start: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header4-menu .header__menu {
    padding-inline-end: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header4-menu .header__menu {
    padding-inline-end: 0px;
  }
}

.ak-header4-logo {
  width: 354px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: 100;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ak-header4-logo {
    width: 260px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-header4-logo {
    width: 284px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-header4-logo {
    width: 254px;
  }
}
@media (max-width: 575px) {
  .ak-header4-logo {
    width: 244px;
  }
}
@media (max-width:450px) {
  .ak-header4-logo {
    width: 180px;
  }
  .ak-header4-logo img {
    width: 140px;
  }
}
.ak-header4-logo::after {
  width: 23px;
  height: 46px;
  background: #A20000;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  content: "";
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 25% 100%);
}
[dir=rtl] .ak-header4-logo::after {
  inset-inline-start: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .ak-header4-logo::after {
    width: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-header4-logo::after {
    width: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-header4-logo::after {
    width: 26px;
    height: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-header4-logo::after {
    width: 23px;
    height: 48px;
  }
}
@media (max-width: 575px) {
  .ak-header4-logo::after {
    display: none;
  }
}
.ak-header4-logo::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--clr-bg-5);
  clip-path: polygon(0 0, 100% 0%, 86% 100%, 0% 100%);
  z-index: -1;
}
@media (max-width:450px) {
  .ak-header4-logo::before {
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  }
}

.header4-top-wrapper {
  padding-inline-start: 120px;
  padding-inline-end: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header4-top-wrapper {
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header4-top-wrapper {
    padding-inline-end: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header4-top-wrapper {
    padding-top: 11px;
    padding-bottom: 11px;
    padding-inline-end: 5px;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header4-top-wrapper {
    padding-inline-start: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header4-top-wrapper .header-social-wrapper {
    display: none;
  }
}

.header4-nav-item-wrapper {
  padding-inline-start: 55px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header4-nav-item-wrapper {
    padding-inline-start: 0px;
  }
}

.ak-header4-top-area-bg {
  background: var(--clr-bg-9);
  width: 100%;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-header4-top-area-bg {
    display: none;
  }
}

.header4-login {
  font-family: var(--bd-ff-secondary);
  font-size: 14px;
  color: var(--clr-text-8);
  padding-inline-end: 20px;
  position: relative;
}
.header4-login:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header4-login::before {
  height: 12px;
  border: 1.5px solid #FFFFFF;
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}
.header4-login svg {
  margin-inline-end: 5px;
}

.header4-support {
  font-family: var(--bd-ff-secondary);
  font-size: 14px;
  color: var(--clr-text-8);
  padding-inline-start: 20px;
}
.header4-support:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header4-support svg {
  margin-inline-end: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-header4-language-wrapper {
    display: none;
  }
}
.ak-header4-language-wrapper .nice-select .current {
  font-size: 14px;
  font-weight: var(--bd-fw-normal);
  color: var(--clr-common-white);
}
.ak-header4-language-wrapper .nice-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  inset-inline-end: 3px;
  top: 48%;
}
.ak-header4-language-wrapper .nice-select .list .option {
  font-weight: var(--bd-fw-medium);
  transition: 0.4s;
}
.ak-header4-language-wrapper .nice-select .list .option:hover {
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-header4-language-wrapper .nice-select .list {
    left: -30px;
  }
}

.header4-bottom-content-wrapper .main-menu ul li .ak-mega-menu {
  padding: 35px 300px 25px 300px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header4-bottom-content-wrapper .main-menu ul li .ak-mega-menu {
    padding: 35px 20px 25px 20px;
  }
}
.header4-bottom-content-wrapper .main-menu ul li .ak-mega-menu .test ul {
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header4-bottom-content-wrapper .bottom-header-right-info {
    display: none;
  }
}

.header5-wrapper {
  position: absolute;
  top: 28px;
  z-index: 99;
  width: 100%;
}
.header5-wrapper .container {
  max-width: 1890px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header5-left {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header5-left .header__menu {
    margin-inline-start: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1601px) and (max-width: 1799px) {
  .header5-left .header__menu .header__menu-text {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header5-left .header__menu .header__menu-text {
    margin-inline-start: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header5-left .header__menu .header__menu-text {
    margin-inline-start: 0px;
  }
}

.header-main-content-wrapper {
  background: rgba(20, 20, 20, 0.8);
  padding: 0px 25px 0px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main-content-wrapper {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .header-main-content-wrapper {
    padding: 17px;
  }
}

.main-menu-5 ul li a {
  padding: 27px 0;
  color: var(--clr-text-10);
}
.main-menu-5 ul li a:hover {
  color: var(--clr-common-white);
}
.main-menu-5 ul li a::after {
  bottom: 20px;
  border-radius: 50px;
}
.main-menu-5 ul li .sub-menu {
  border-top: 1px solid #fff;
}

.ak-header5-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-header5-right {
    padding: 5px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-header5-right {
    display: none;
  }
}
.ak-header5-right .header5-border-left {
  position: absolute;
  height: 100%;
  top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-inline-start: -15px;
}
.ak-header5-right .header-language-wrapper {
  margin: 0px 15px;
}
.ak-header5-right .header-language-wrapper .nice-select {
  height: 38px;
}
.ak-header5-right .header-language-wrapper .nice-select .current {
  color: var(--clr-text-10);
}
.ak-header5-right .header-language-wrapper .nice-select::after {
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #C3C3C3;
  border-right: 1px solid #C3C3C3;
  inset-inline-end: 3px;
}
.ak-header5-right .header-login-wrapper {
  margin: 0 15px;
}
[dir=rtl] .ak-header5-right .header-login-wrapper {
  margin-inline-start: 0;
}
.ak-header5-right .header-login-wrapper span {
  color: var(--clr-text-10);
}
.ak-header5-right .header5-login-wrap {
  padding: 0px 15px 0px 0px;
}
[dir=rtl] .ak-header5-right .header5-login-wrap {
  padding-inline-end: 15px;
}
.ak-header5-right .ak-search-btn {
  padding-inline-start: 10px;
}
.ak-header5-right .ak-search-btn::before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  margin-inline-start: -25px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/*------------------------------
12. features css
------------------------------*/
.feature-bg {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: 47%;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: luminosity;
}
@media (max-width: 575px) {
  .feature-bg {
    height: 360px;
    width: 100%;
    position: static;
    background-position: top;
  }
}
@media (max-width:450px) {
  .feature-bg {
    height: 260px;
    width: 100%;
    position: static;
    background-position: top;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-bg {
    height: 480px;
    width: 100%;
    position: static;
    background-position: top;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-bg {
    height: 600px;
    width: 100%;
    position: static;
    background-position: top;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-bg {
    width: 40%;
  }
}

.feature-img-area {
  position: relative;
}

.feature-content-img-shape {
  position: absolute;
  bottom: 40px;
  inset-inline-start: 39%;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .feature-content-img-shape {
  inset-inline-start: 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .feature-content-img-shape {
    inset-inline-start: 38%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-content-img-shape {
    inset-inline-start: 36%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-content-img-shape {
    bottom: 20px;
    inset-inline-start: 26%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-content-img-shape {
    top: 417px;
    inset-inline-start: 85%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-content-img-shape {
    top: 336px;
    inset-inline-start: 85%;
  }
  .feature-content-img-shape img {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .feature-content-img-shape {
    display: none;
  }
}
@media (max-width:450px) {
  .feature-content-img-shape {
    display: none;
  }
}

.fea-content-bg {
  background: var(--clr-bg-10);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}

@media (max-width: 575px) {
  .feature-content {
    margin-bottom: 50px;
  }
}
.feature-content .img-icon {
  width: 76px;
  height: 76px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  line-height: 76px;
  text-align: center;
}
.feature-content h3 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.9;
  color: var(--clr-text-9);
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-content h3 {
    font-size: 20px;
  }
}
.feature-content p {
  color: var(--clr-text-5);
  margin-top: 15px;
  margin-bottom: 0px;
  max-width: 280px;
}

.ak-feature2-shape-left-img {
  position: absolute;
  top: 0px;
  inset-inline-start: 0;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .ak-feature2-shape-left-img {
  top: 0px;
  animation-name: ak-bg-img-move-y;
}
[dir=rtl] .ak-feature2-shape-left-img img {
  transform: rotate(-180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-feature2-shape-left-img {
    display: none;
  }
}

.ak-feature2-shape-right-img {
  position: absolute;
  top: -155px;
  inset-inline-end: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .ak-feature2-shape-right-img {
  top: -55px;
}
[dir=rtl] .ak-feature2-shape-right-img img {
  transform: rotate(-180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-feature2-shape-right-img {
    display: none;
  }
}

.ak-feature2-item {
  text-align: center;
  background: var(--clr-common-white);
  border: 1px solid rgba(20, 20, 20, 0.1);
  padding: 30px 40px;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-feature2-item {
    overflow: hidden;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature2-item {
    overflow: hidden;
    padding: 30px 30px;
  }
}
.ak-feature2-item:hover {
  background: #D4212F;
  transform: translateY(-5px);
}
.ak-feature2-item:hover .ak-feature2-item-icon {
  transform: rotateY(180deg);
}
.ak-feature2-item:hover .ak-feature2-item-icon::after {
  background: rgba(255, 255, 255, 0.2);
}
.ak-feature2-item:hover .ak-feature2-item-icon img {
  color: #fff;
  -webkit-filter: invert(100%);
}
.ak-feature2-item:hover .ak-feature2-title {
  color: var(--clr-common-white);
}
.ak-feature2-item:hover p {
  color: var(--clr-text-8);
}
.ak-feature2-item:hover .ak-feature2-hover-img {
  opacity: 1;
  visibility: visible;
}

.ak-feature2-item-icon {
  position: relative;
  transition: 0.4s;
}
.ak-feature2-item-icon::after {
  width: 47px;
  height: 47px;
  background: rgba(212, 33, 47, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}

.ak-feature2-title {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.3;
}

.ak-feature2-content p {
  font-size: 15px;
  line-height: 23px;
  color: var(--clr-text-5);
}

.ak-feature2-hover-img {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
[dir=rtl] .ak-feature2-hover-img {
  top: -8px;
  transform: rotate(-90deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-feature2-hover-img {
    inset-inline-end: -25px;
  }
}
@media (max-width:450px) {
  .ak-feature2-hover-img {
    inset-inline-end: -40px;
  }
}

.ak-feature5-bg {
  background: var(--clr-bg-9);
  overflow: hidden;
}

.ak-active-overflow {
  overflow: visible;
}

.ak-feature5-item-wrapper .swiper-slide-active .ak-feature5-item {
  border: 3px solid #D4212F;
}
@media (max-width:450px) {
  .ak-feature5-item-wrapper .swiper-slide-active .ak-feature5-item {
    background-position: 70% center;
  }
}
.ak-feature5-item-wrapper .swiper-slide-active .ak-feature5-item::before {
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature5-item-wrapper .swiper-slide-active .ak-feature5-item::before {
    opacity: 0.55;
  }
}
.ak-feature5-item-wrapper .swiper-slide-active .ak-feature5-item .ak-feature5-item-content {
  opacity: 1;
}

.ak-feature5-item {
  padding: 45px 40px 40px 40px;
  min-height: 628px;
  position: relative;
  cursor: url(../../img/movies/drag-img.png) 32 32, auto;
  background-position: 100% center;
}
.tel-ftr-con{position:fixed; bottom:140px; right:15px; z-index:999999;}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-feature5-item {
    min-height: 500px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-feature5-item {
    min-height: 350px;
  }
}
@media (max-width:450px) {
  .ak-feature5-item {
    padding: 45px 17px 40px 17px;
  }
}
.ak-feature5-item::after {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #141414 0%, rgba(20, 20, 20, 0.65) 48.96%, rgba(20, 20, 20, 0) 100%);
  position: absolute;
  top: 1px;
  left: 0;
  content: "";
}
.ak-feature5-item::before {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  opacity: 0.75;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-feature5-item-content {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.ak-feature5-item-content h3 {
  font-size: 36px;
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  color: var(--clr-common-white);
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-feature5-item-content h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature5-item-content h3 {
    font-size: 20px;
  }
}

.ak-feature5-meta-list {
  display: flex;
  gap: 20px 40px;
}
@media (max-width:450px) {
  .ak-feature5-meta-list {
    gap: 20px 20px;
  }
}
.ak-feature5-meta-list .meta {
  font-size: 18px;
  line-height: 24px;
  color: var(--clr-text-10);
  position: relative;
}
@media (max-width:450px) {
  .ak-feature5-meta-list .meta {
    font-size: 16px;
  }
}
.ak-feature5-meta-list .meta:last-child::before {
  display: none;
}
.ak-feature5-meta-list .meta i {
  color: #FFAF13;
  margin-inline-end: 5px;
}
.ak-feature5-meta-list .meta span {
  color: #FFAF13;
  margin-inline-start: 3px;
  margin-inline-end: 3px;
}
.ak-feature5-meta-list .meta::before {
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 29%;
  inset-inline-end: -20px;
  content: "";
}
@media (max-width:450px) {
  .ak-feature5-meta-list .meta::before {
    inset-inline-end: -12px;
  }
}

.ak-feature5-video-icon {
  width: 125px;
  height: 70px;
  border: 1px solid #FFFFFF;
  border-radius: 57px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-feature5-video-icon {
    width: 115px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-feature5-video-icon {
    width: 105px;
    height: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature5-video-icon {
    width: 95px;
    height: 50px;
  }
}
.ak-feature5-video-icon::after {
  width: 143px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 57px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 143px;
  height: 86px;
  animation: borderanimate2 2s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-feature5-video-icon::after {
    width: 133px;
    height: 76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-feature5-video-icon::after {
    width: 123px;
    height: 66px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature5-video-icon::after {
    width: 113px;
    height: 66px;
  }
}
.ak-feature5-video-icon i {
  font-size: 30px;
  color: var(--clr-common-white);
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-feature5-video-icon i {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature5-video-icon i {
    font-size: 20px;
  }
}
.ak-feature5-video-icon:hover i {
  color: var(--clr-theme-1);
}

.ak-feature5-slider-dot {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-feature5-slider-dot {
    margin-top: 40px;
  }
}
.ak-feature5-slider-dot .swiper-pagination-bullet-active {
  background: transparent !important;
  border: 1px solid #fff !important;
}
.ak-feature5-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  opacity: 1;
}

/*------------------------------
13. service css
------------------------------*/
.service-bg {
  background: var(--clr-bg-1);
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.service-bg .service-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.service-left-bg-shape {
  width: 483px;
  height: 483px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  filter: blur(300px);
  position: absolute;
  bottom: 0;
  left: 70px;
  opacity: 0.1;
  z-index: -1;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .service-left-bg-shape {
    width: 383px;
    height: 383px;
    left: 22px;
  }
}
@media (max-width:450px) {
  .service-left-bg-shape {
    display: none;
  }
}

.service-right-bg-shape {
  width: 483px;
  height: 483px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  filter: blur(200px);
  position: absolute;
  top: 300px;
  inset-inline-end: 150px;
  opacity: 0.1;
  z-index: -1;
  border-radius: 50%;
}
@media (max-width:450px) {
  .service-right-bg-shape {
    display: none;
  }
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 76px;
}
.section-title-wrapper span {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: var(--clr-text-5);
  text-transform: uppercase;
}
.section-title-wrapper span i {
  color: var(--clr-text-3);
}
.section-title-wrapper .section-title {
  font-weight: var(--bd-fw-bold);
  line-height: 80px;
  color: var(--clr-text-1);
  margin-top: 25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-wrapper .section-title {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-wrapper .section-title {
    font-size: 50px;
    line-height: 1.2;
  }
}

.service-item {
  background: var(--clr-common-white);
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  position: relative;
  transition: 0.3s;
  height:100%;
}
.service-item .img-icon {
  width: 94px;
  height: 94px;
  background: var(--clr-gradient-3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  transition: 0.3s;
}
.service-item h3 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.5;
  color: var(--clr-text-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-item h3 {
    font-size: 20px;
  }
}
.service-item p {
  line-height: 1.7;
  color: var(--clr-text-5);
  margin-top: 15px;
  margin-bottom: 0px;
}
.service-item .service-btn-icon {
  position: absolute;
  bottom: -70px;
  inset-inline-start: 0px;
  transition-delay: 0s;
  transition-duration: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.service-item .service-btn-icon i {
  color: #fafafa;
  font-size: 30px;
}
.service-item:hover {
  background: hsl(355deg, 73%, 48%);
}
.service-item:hover .img-icon {
  transform: scale(0);
}
.service-item:hover h3 {
  color: var(--clr-common-white);
  transform: translateY(-93px);
  transition-delay: 0s;
}
.service-item:hover p {
  color: var(--clr-common-white);
  transform: translateY(-93px);
  transition-delay: 0.1s;
}
.service-item:hover .service-btn-icon {
  bottom: 10px;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
}
.service-item:hover .service-btn-icon i {
  transition: 0.3s;
}
.service-item:hover .service-btn-icon:hover i {
  margin-inline-start: 5px;
}
.service-item:hover .service-thumb {
  opacity: 1;
  visibility: visible;
}
.service-item:hover .service-item-overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

.service-item-content-wrap {
  position: relative;
  z-index: 1;
}

.service-item-overlay {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-5);
  position: absolute;
  top: 0;
  left: 0;
  inset-inline-end: 0;
  bottom: 0;
  transform: scale(0.2, 1);
  padding: 40px 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2;
}
.service-item-overlay h3 {
  font-weight: var(--bd-fw-bold);
  line-height: 1.2;
  color: var(--clr-common-white);
}
.service-item-overlay p {
  line-height: 32px;
  color: var(--clr-text-8);
  margin-top: 20px;
  margin-bottom: 0px;
}
.service-item-overlay .btn-icon a:hover {
  padding-inline-start: 10px;
}
.service-item-overlay .btn-icon i {
  color: #fafafa;
  font-size: 30px;
}
.service-item-overlay .service-item-hover-img img {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service2-item-border {
  border: 1px solid rgba(20, 20, 20, 0.1);
  gap: 0 24px;
}

.ak-service2-slider-active .slick-list {
  margin: 0 -12px;
}
.ak-service2-slider-active .slick-slide {
  margin: 0 12px;
}
.ak-service2-slider-active .slick-dots {
  text-align: center;
  margin-top: 25px;
}
.ak-service2-slider-active li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}
.ak-service2-slider-active button {
  font-size: 0px;
  width: 10px;
  height: 10px;
  border: 1px solid #141414;
  background: transparent;
  border-radius: 50%;
}
.ak-service2-slider-active .slick-dots .slick-active button {
  border: 1px solid #FE5C53;
  background: var(--clr-bg-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-service2-slider-active .service-item h3 {
    font-size: 21px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-service3-slider-wrapper {
    margin-top: 60px;
  }
}

.ak-service3-bg {
  background: var(--clr-bg-10);
  padding-bottom: 240px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-service3-bg {
    padding-bottom: 195px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-service3-bg {
    padding-bottom: 145px;
  }
}

.service3-item {
  border: 1px solid #141414;
  background: var(--clr-common-white);
  padding: 40px 30px;
  position: relative;
  margin-inline-end: 4px;
  transition: 0.4s;
}
.service3-item::after {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  opacity: 1;
  visibility: visible;
  z-index: -1;
  transition: 0.4s;
}
.service3-item .img-icon {
  width: 94px;
  height: 94px;
  background: var(--clr-gradient-3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.service3-item h3 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.5;
  color: var(--clr-text-1);
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .service3-item h3 {
    font-size: 20px;
  }
}
.service3-item p {
  line-height: 1.7;
  color: var(--clr-text-5);
  margin-bottom: 0px;
}
@media (max-width:450px) {
  .service3-item p {
    font-size: 16px;
  }
}
.service3-item .ak-service3-item-overlay-list {
  position: absolute;
  bottom: -90px;
  transition-delay: 0s;
  transition-duration: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.service3-item:hover {
  border: 1px solid rgba(255, 255, 255, 0);
}
.service3-item:hover .service3-item-content-wrap {
  position: relative;
  z-index: 7;
}
.service3-item:hover .img-icon {
  transform: scale(0);
}
.service3-item:hover h3 {
  opacity: 0;
}
.service3-item:hover p {
  opacity: 0;
}
.service3-item:hover .ak-service3-item-overlay-list {
  bottom: 0px;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
}
.service3-item:hover .ak-service3-item-overlay-list h3 {
  opacity: 1;
  color: var(--clr-common-white);
}
.service3-item:hover::after {
  opacity: 0;
  visibility: hidden;
}
.service3-item:hover .service3-item-overlay {
  opacity: 1;
  visibility: visible;
}

.service3-item-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 37px 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2;
}
.service3-item-overlay::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0.6;
}
.service3-item-overlay::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  mix-blend-mode: normal;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0.6;
}
.service3-item-overlay .service3-sub-overlay {
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  opacity: 0.36;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.service3-overlay-content {
  position: relative;
  z-index: 1;
}
.service3-overlay-content h3 {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.7;
  color: var(--clr-common-white);
  margin-bottom: 30px;
}
@media (max-width:450px) {
  .service3-overlay-content h3 {
    font-size: 21px;
  }
}

.ak-service3-item-overlay-list ul li {
  list-style: none;
  font-size: 18px;
  line-height: 30px;
  color: var(--clr-common-white);
  margin-bottom: 15px;
  padding-inline-start: 25px;
  position: relative;
}
.ak-service3-item-overlay-list ul li i {
  width: 17px;
  height: 17px;
  background: var(--clr-common-white);
  border-radius: 50%;
  color: var(--clr-text-9);
  font-size: 12px;
  text-align: center;
  line-height: 17px;
  margin-inline-end: 6px;
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

.service3-slider-dot {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service3-slider-dot {
    margin-top: 30px;
  }
}
.service3-slider-dot .swiper-pagination-bullet-active {
  background: var(--clr-bg-4) !important;
  border: none !important;
}
.service3-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #141414;
  background: transparent;
  opacity: 1;
}

.ak-service4-bg {
  background: var(--clr-bg-10);
}

.service4-section-title {
  position: relative;
  z-index: 1;
}
.service4-section-title .ak-sub-title4 {
  color: var(--clr-text-11);
}

.inner-service-area.is-top {
  padding-top: 195px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-service-area.is-top {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-service-area.is-top {
    padding-top: 70px;
  }
}

.inner-service-item {
  text-align: center;
  border: none;
  transition: 0.3s;
}
.inner-service-item::before {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(20, 20, 20, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.inner-service-item::after {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.inner-service-item .img-icon {
  margin: 0 auto;
  margin-bottom: 25px;
}
.inner-service-item .service3-item-overlay {
  text-align: left;
  transition: 0.4s;
  transform: scaleX(0);
}
[dir=rtl] .inner-service-item .service3-item-overlay {
  text-align: right;
}
.inner-service-item:hover::after {
  opacity: 1;
  visibility: visible;
}
.inner-service-item:hover .service3-item-overlay {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

.service-single-slider-wrapper {
  max-width: 1155px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-single-slider-wrapper {
    margin-inline-start: 60px;
    margin-inline-end: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-single-slider-wrapper {
    margin-inline-start: 60px;
    margin-inline-end: 60px;
  }
}
@media (max-width:450px) {
  .service-single-slider-wrapper {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
}

.service-single-item {
  padding: 18px 15px;
  display: flex;
  align-items: center;
  gap: 0px 10px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  justify-content: center;
  transition: 0.5s;
}
.service-single-item .service-single-item-text {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  transition: 0.3s;
}
.service-single-item:hover {
  background: var(--clr-bg-5);
}
.service-single-item:hover .service-single-item-text {
  color: var(--clr-common-white);
}
.service-single-item:hover svg path {
  fill: var(--clr-common-white);
}

.service-single-button-prev {
  width: 44px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(20, 20, 20, 0.1);
  position: absolute;
  top: 0px;
  inset-inline-start: 0px;
  z-index: 1;
  transition: 0.4s;
}
.service-single-button-prev i {
  font-size: 20px;
  color: var(--clr-text-5);
  transition: 0.4s;
}
.service-single-button-prev:hover {
  background: var(--clr-bg-9);
}
.service-single-button-prev:hover i {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-single-button-prev {
    inset-inline-start: 0px;
  }
}
@media (max-width:450px) {
  .service-single-button-prev {
    display: none;
  }
}

.service-single-button-next {
  width: 44px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(20, 20, 20, 0.1);
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  z-index: 1;
  transition: 0.4s;
}
.service-single-button-next i {
  font-size: 20px;
  color: var(--clr-text-5);
  transition: 0.4s;
}
.service-single-button-next:hover {
  background: var(--clr-bg-9);
}
.service-single-button-next:hover i {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-single-button-next {
    inset-inline-end: 0px;
  }
}
@media (max-width:450px) {
  .service-single-button-next {
    display: none;
  }
}

.inner-service-area.is-bottom {
  padding-bottom: 230px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-service-area.is-bottom {
    padding-bottom: 160px;
  }
}

.inner-service-slider-wrapper .service3-item {
  border: 1px solid rgba(20, 20, 20, 0.2);
}
[dir=rtl] .inner-service-slider-wrapper .service3-item {
  margin-right: 5px;
}
.inner-service-slider-wrapper .service3-item::after {
  inset-inline-start: 0;
  top: 0;
}
.inner-service-slider-wrapper .service3-item .img-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.inner-service-slider-wrapper .service3-item h3 {
  margin-bottom: 20px;
}
.inner-service-slider-wrapper .service3-item:hover {
  border-style: none;
}
.inner-service-slider-wrapper .service3-item:hover::after {
  opacity: 1;
  visibility: visible;
  inset-inline-start: 4px;
  top: 4px;
}

/*------------------------------
14. blog css
------------------------------*/
.blog-item {
  border-top: 1px solid rgba(77, 77, 77, 0.2);
}
.blog-item:hover .blog-img img {
  transform: scale(1.14);
}
.blog-item:hover .blog-btn-icon::after {
  opacity: 0;
  visibility: hidden;
}
.blog-item:hover .blog-btn-icon::before {
  opacity: 1;
  visibility: visible;
}
.blog-item:hover .blog-btn-icon i {
  transform: rotate(0deg);
  color: var(--clr-common-white);
}

.blog-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  transition: 0.4s;
}

.blog-content {
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-content {
    margin-top: 40px;
  }
}
.blog-content h3 {
  font-weight: var(--bd-fw-bold);
  font-size: 28px;
  line-height: 1.5;
  color: var(--clr-text-9);
  margin-bottom: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .blog-content h3 {
    font-size: 22px;
  }
}
.blog-content h3 a {
  background-image: linear-gradient(180deg, var(--clr-theme-1) 0%, var(--clr-theme-1) 100%), linear-gradient(180deg, var(--clr-theme-1) 0%, var(--clr-theme-1) 100%);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s;
}
.blog-content h3 a:hover {
  color: var(--clr-theme-1);
  background-size: 0 1px, 100% 1px;
}
.blog-content h3 a:focus {
  color: var(--clr-text-9);
}
.blog-content .blog-meta-wrapper {
  display: flex;
  margin-top: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-content .blog-meta-wrapper {
    margin-top: 30px;
  }
}
@media (max-width:450px) {
  .blog-content .blog-meta-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-content .blog-meta-wrapper .blog-meta {
  margin-inline-end: 30px;
}
.blog-content .blog-meta-wrapper .blog-meta span {
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-9);
}
.blog-content .blog-meta-wrapper .blog-meta svg {
  margin-inline-end: 8px;
  margin-top: -5px;
  color: var(--clr-text-5);
  opacity: 0.5;
}
.blog-content .blog-meta-wrapper .blog-meta a .ak-blog-author-icon i {
  font-size: 20px;
  color: rgba(77, 77, 77, 0.5);
  margin-inline-end: 8px;
}
.blog-content .blog-meta-wrapper .blog-meta a .ak-blog-author-text {
  transition: 0.3s;
}
.blog-content .blog-meta-wrapper .blog-meta a .ak-blog-author-text:hover {
  color: var(--clr-theme-1);
}

.blog-btn-icon {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s;
  position: relative;
}
@media (max-width: 575px) {
  .blog-btn-icon {
    width: 62px;
    height: 62px;
  }
}
.blog-btn-icon::after {
  width: 100%;
  height: 100%;
  border: 1px solid #222222;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  transition: 0.4s;
}
.blog-btn-icon i {
  font-size: 32px;
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-btn-icon i {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .blog-btn-icon i {
    font-size: 24px;
  }
}
.blog-btn-icon::before {
  width: 100%;
  height: 100%;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.blog-item-button {
  text-align: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item-button {
    text-align: left;
    margin-top: 40px;
  }
  [dir=rtl] .blog-item-button {
    text-align: right;
  }
}

.inner-blog-left-area.is-bottom {
  padding-bottom: 155px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-blog-left-area.is-bottom {
    padding-bottom: 95px;
  }
}

.blog-sidebar-search-form {
  position: relative;
}
.blog-sidebar-search-form input {
  height: 64px;
  width: 100%;
  border: none;
  padding: 0 18px;
  padding-inline-end: 70px;
  outline: 0;
  background: var(--clr-bg-10);
}
.blog-sidebar-search-form input::placeholder {
  font-weight: var(--bd-fw-medium);
  font-size: 16px;
  color: var(--clr-text-5);
}
.blog-sidebar-search-form button {
  width: 64px;
  height: 64px;
  background: var(--clr-bg-5);
  color: var(--clr-common-white);
  font-size: 14px;
  top: 0;
  inset-inline-end: 0;
  position: absolute;
  transition: 0.4s;
}
.blog-sidebar-search-form button:hover {
  background: var(--clr-bg-9);
}

.blog-sidebar-widget {
  padding: 30px 30px;
  background: var(--clr-bg-10);
  position: relative;
}
.blog-sidebar-widget::after {
  width: 4px;
  height: 36px;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 27px;
  inset-inline-start: 0px;
  content: "";
}

.blog-sidebar-widget-title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.blog-sidebar-category-list ul {
  display: flex;
  flex-direction: column;
  gap: 18px 20px;
}
.blog-sidebar-category-list ul li {
  list-style: none;
}
.blog-sidebar-category-list ul li a {
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--clr-text-5);
  line-height: 1;
  transition: 0.3s;
}
.blog-sidebar-category-list ul li a .category-item-number {
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: rgba(20, 20, 20, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  padding-bottom: 5px;
}
.blog-sidebar-category-list ul li a:hover {
  color: var(--clr-text-9);
}
.blog-sidebar-category-list ul li a:hover .category-item-number {
  background: var(--clr-bg-9);
  color: var(--clr-common-white);
}

.blog-sidebar-blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px 20px;
}
.blog-sidebar-blog-list ul li {
  list-style: none;
}
.blog-sidebar-blog-list .blog-single {
  display: flex;
  align-items: center;
  gap: 20px 12px;
  border: 0;
  margin-bottom: 0;
}
@media (max-width:450px) {
  .blog-sidebar-blog-list .blog-single {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}

.blog-sidebar-content .blog-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  margin-bottom: 10px;
}
@media (max-width:450px) {
  .blog-sidebar-content .blog-title {
    font-size: 16px;
  }
}
.blog-sidebar-content .blog-title a {
  background-image: linear-gradient(#C51F2C, #FE5C53), linear-gradient(#C51F2C, #FE5C53);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  transition: 0.3s;
}
.blog-sidebar-content .blog-title:hover a {
  background-size: 0 1px, 100% 1px;
  color: var(--clr-theme-1);
}

.blog-thumb img {
  max-width: 100px;
}
@media (max-width:450px) {
  .blog-thumb img {
    max-width: 100%;
  }
}

.sidebar-feeds .blog-sidebar-widget-title {
  margin-bottom: 15px;
}

.blog-sidebar-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tag {
  font-size: 16px;
  display: inline-block;
  color: var(--clr-text-5);
  padding: 0 10px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  transition: 0.4s;
}
.tag:hover {
  background: var(--clr-bg-9);
  color: var(--clr-common-white);
}

.blog-classic-item {
  padding: 20px;
  background: var(--clr-bg-10);
}
.blog-classic-item:hover .blog-classic-item-img {
  overflow: hidden;
}
.blog-classic-item:hover .blog-classic-item-img img {
  transform: scale(1.1);
}

.blog-classic-item-img {
  overflow: hidden;
}
.blog-classic-item-img img {
  transition: 0.4s;
}

.blog-classic-item-content h3 {
  font-size: 28px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.8;
  color: var(--clr-text-12);
  margin-bottom: 15px;
  transition: 0.4s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-classic-item-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .blog-classic-item-content h3 {
    font-size: 20px;
  }
}
.blog-classic-item-content h3:hover {
  color: var(--clr-theme-1);
}

.ak-blog-meta-wrap {
  background: var(--clr-common-white);
  display: inline-flex;
  padding: 8px 14px;
  transform: translateY(-22px);
  flex-wrap: wrap;
  gap: 5px 0;
}
.ak-blog-meta-wrap .ak-blog-author {
  padding-inline-end: 13px;
  position: relative;
}
.ak-blog-meta-wrap .ak-blog-author ::after {
  width: 1px;
  height: 14px;
  background: rgba(20, 20, 20, 0.2);
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  transform: translateY(-50%);
  content: "";
}
@media (max-width:450px) {
  .ak-blog-meta-wrap .ak-blog-author ::after {
    display: none;
  }
}
.ak-blog-meta-wrap .ak-news-meta-box {
  padding: 0;
  background: transparent;
  position: inherit;
  margin-inline-start: 17px;
}
@media (max-width:450px) {
  .ak-blog-meta-wrap .ak-news-meta-box {
    margin-inline-start: 0px;
  }
}
.ak-blog-meta-wrap .ak-news-meta-box .ak-news-meta-icon path {
  fill: var(--clr-text-5);
}
.ak-blog-meta-wrap .ak-news-meta-box .ak-news-meta-text {
  color: var(--clr-text-5);
}

.blog-classic-item-img img {
  aspect-ratio: 100/45.75;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.blog-single-main-img {
  position: relative;
  margin-top: -450px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-single-main-img {
    margin-top: -340px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-single-main-img {
    margin-top: 0px;
  }
}

.blog-single-img {
  height: 590px;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-single-img {
    height: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-single-img {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-img {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-single-img {
    height: 400px;
  }
}
@media (max-width:450px) {
  .blog-single-img {
    height: 190px;
  }
}
.blog-single-img img {
  width: 100%;
  height: 100%;
}

.blog-single-content-title {
  font-size: 28px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-bottom: 35px;
  text-transform: capitalize;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-single-content-title {
    font-size: 22px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .blog-single-content-title {
    font-size: 20px;
  }
}

.blog-single-rooms p {
  margin-bottom: 25px;
}

.blog-single-content-tips .service-single-about ul li i {
  width: 16px;
  height: 16px;
  font-size: 9px;
}

.blog-blockquote-wrapper {
  background: var(--clr-bg-10);
  padding: 25px 78px;
  position: relative;
  z-index: 2;
  margin: 35px 0 50px 0;
}
@media (max-width: 575px) {
  .blog-blockquote-wrapper {
    padding: 25px 30px;
  }
}

.blog-single-video-img img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
}

.blog-blockquote-content p {
  margin-bottom: 20px;
}
.blog-blockquote-content .blockquote-icon {
  position: absolute;
  top: 22px;
  left: 25px;
}
@media (max-width: 575px) {
  .blog-blockquote-content .blockquote-icon {
    top: 28px;
    left: 3px;
    width: 40px;
  }
}
.blog-blockquote-content .blockquote-icon img {
  width: 100%;
  opacity: 0.1;
}
.blog-blockquote-content .blockquote-othor-name {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-black);
  line-height: 32px;
  padding-inline-start: 65px;
  position: relative;
}
.blog-blockquote-content .blockquote-othor-name::after {
  width: 60px;
  height: 1px;
  background: rgba(20, 20, 20, 0.2);
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  content: "";
}

.blog-single-content-p {
  padding: 30px 30px 15px 30px;
  background: var(--clr-bg-10);
  position: relative;
}
.blog-single-content-p::after {
  width: 2px;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
}
.blog-single-content-p p a {
  color: var(--clr-theme-1);
  text-decoration: underline;
}

.blog-single-content-error .blog-single-content-title {
  margin-bottom: 25px;
}
.blog-single-content-error p {
  margin-bottom: 30px;
}

.blog-single-meta-wrapper {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 30px 30px;
  padding: 30px 0px 25px 0px;
  margin-top: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.meta-tags-wrapper {
  display: flex;
  gap: 12px;
}

.blog-tag {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-text-5);
  height: 28px;
  display: inline-flex;
  padding: 0 10px;
  background: var(--clr-common-white);
  align-items: center;
  border: 1px solid rgba(20, 20, 20, 0.1);
  margin-inline-end: 8px;
  transition: 0.4s;
}
@media (max-width:450px) {
  .blog-tag {
    margin-bottom: 10px;
  }
}
.blog-tag:hover {
  background: var(--clr-bg-9);
  color: var(--clr-common-white);
}

.blog-social ul {
  display: flex;
  gap: 0 8px;
}
.blog-social ul li {
  list-style: none;
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
}
.blog-social ul li::before {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  transition: 0.4s;
  z-index: -1;
}
.blog-social ul li a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-social ul li:nth-child(1) {
  background: var(--clr-bg-16);
  color: var(--clr-common-white);
}
.blog-social ul li:nth-child(2) {
  background: var(--clr-bg-17);
  color: var(--clr-common-white);
}
.blog-social ul li:nth-child(3) {
  background: var(--clr-bg-18);
  color: var(--clr-common-white);
}
.blog-social ul li:nth-child(4) {
  background: var(--clr-bg-19);
  color: var(--clr-common-white);
}
.blog-social ul li:nth-child(5) {
  background: var(--clr-bg-14);
  color: var(--clr-common-white);
}
.blog-social ul li:hover:nth-child(1) {
  background: var(--clr-bg-5);
}
.blog-social ul li:hover:nth-child(2) {
  background: var(--clr-bg-5);
}
.blog-social ul li:hover:nth-child(3) {
  background: var(--clr-bg-5);
}
.blog-social ul li:hover:nth-child(4) {
  background: var(--clr-bg-5);
}
.blog-social ul li:hover:nth-child(5) {
  background: var(--clr-bg-5);
}

.blog-single-author {
  background: var(--clr-bg-10);
  padding: 30px;
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .blog-single-author {
    flex-direction: column;
  }
}
.blog-single-author .author-thumb {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(212, 33, 47, 0.3) 0%, rgba(212, 33, 47, 0) 100%);
  overflow: hidden;
  position: relative;
  min-width: 160px;
}
.blog-single-author .author-thumb img {
  position: absolute;
  top: 0;
  left: 0;
}

.author-content h4 {
  font-weight: var(--bd-fw-bold);
  line-height: 1.6;
  color: var(--clr-text-9);
  margin-bottom: 25px;
}
.author-content ul {
  display: flex;
  gap: 0px 25px;
}
.author-content ul li {
  list-style: none;
}
.author-content ul li a i {
  color: var(--clr-text-11);
  transition: 0.4s;
}
.author-content ul li a:hover i {
  color: var(--clr-text-9);
}

.blog-single-btn-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.blog-single-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: var(--bd-fw-bold);
  line-height: 24px;
  color: var(--clr-text-9);
  position: relative;
  transition: 0.3s;
}
.blog-single-btn::after {
  width: 100%;
  height: 2px;
  background: var(--clr-bg-9);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  transition: 0.3s;
}
.blog-single-btn:hover {
  color: var(--clr-theme-1);
}
.blog-single-btn:hover::after {
  background: var(--clr-bg-5);
}

.blog-single-comment {
  background: var(--clr-bg-10);
  padding: 35px 30px 30px 30px;
}
@media (max-width:450px) {
  .blog-single-comment {
    padding: 35px 20px 30px 20px;
  }
}
.blog-single-comment .contact-from-input {
  margin-bottom: 30px;
}
.blog-single-comment .contact-from-input textarea {
  min-height: 210px;
  padding-top: 20px;
}

/*------------------------------
15. facilities css
------------------------------*/
.facilities__area {
  position: relative;
  margin-top: -165px;
}

.facilities-bg {
  background: var(--clr-bg-1);
  z-index: 1;
  padding-top: 90px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .facilities-bg {
    padding-top: 60px;
  }
}

.facilities-left-bg-shape {
  width: 483px;
  height: 598px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  filter: blur(300px);
  position: absolute;
  bottom: 0;
  left: 70px;
  opacity: 0.1;
  z-index: -1;
}

.facilities-right-bg-shape {
  width: 654px;
  height: 809px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  filter: blur(200px);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  opacity: 0.1;
  z-index: -1;
}

.facilities-ring-img {
  position: absolute;
  top: 44px;
  inset-inline-start: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .facilities-ring-img img {
  transform: rotate(-180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .facilities-ring-img {
    display: none;
  }
}

.facilities__slider .slick-center {
  position: relative;
}
.facilities__slider .slick-center::after {
  position: absolute;
  content: "";
  width: 1px;
  background-color: rgba(20, 20, 20, 0.06);
  height: 100%;
  top: 0;
  inset-inline-start: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .facilities__slider .slick-center::after {
    display: none;
  }
}
.facilities__slider .slick-center::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: rgba(20, 20, 20, 0.06);
  height: 100%;
  top: 0;
  inset-inline-end: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .facilities__slider .slick-center::before {
    display: none;
  }
}

.facilities__icon {
  margin-bottom: 16px;
}
.facilities__icon span {
  width: 104px;
  height: 104px;
  background-color: var(--clr-common-white);
  display: inline-block;
  text-align: center;
  line-height: 104px;
  border-radius: 50%;
}
.facilities__title {
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  color: var(--clr-text-9);
  margin-bottom: 28px;
  transition: 0.3s;
}
.facilities__title a:hover {
  color: var(--clr-theme-1);
}
.facilities__content p {
  color: var(--clr-text-5);
  width: 298px;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .facilities__content p {
    width: auto;
  }
}

.facilities__icon img {
  transition: 0.2s ease-in-out;
}

.facilities__item:hover .facilities__icon img {
  transform: scale(0.9);
}

.facilities__slider .slick-dots {
  text-align: center;
  margin-top: 30px;
}
.facilities__slider .slick-dots li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
}
.facilities__slider .slick-dots li button {
  font-size: 0px;
  width: 10px;
  height: 10px;
  background: var(--clr-bg-7);
  border-radius: 50%;
}
.facilities__slider .slick-slide img {
  display: inline-block;
}

.facilities__slider .slick-dots .slick-active button {
  background: var(--clr-bg-5);
}

.ak-facilities4-item {
  border: 1px solid rgba(20, 20, 20, 0.2);
  background: var(--clr-common-white);
  padding: 30px 30px 40px 30px;
  position: relative;
  margin-inline-end: 4px;
  overflow: hidden;
  transition: 0.3s;
}
.ak-facilities4-item::after {
  width: 130px;
  height: 121px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  border-radius: 0px 50px 235.5px;
  position: absolute;
  top: -100px;
  inset-inline-start: -100px;
  content: "";
  transition: 0.3s;
}
[dir=rtl] .ak-facilities4-item::after {
  inset-inline-start: -5px;
  transform: rotate(90deg);
}
@media (max-width:450px) {
  .ak-facilities4-item::after {
    width: 115px;
    height: 115px;
  }
}
.ak-facilities4-item::before {
  width: 130px;
  height: 121px;
  background: #AC0007;
  border-radius: 0px 50px 235.5px;
  position: absolute;
  top: -100px;
  inset-inline-start: -100px;
  content: "";
  transition: 0.3s;
}
[dir=rtl] .ak-facilities4-item::before {
  transform: rotate(90deg);
}
@media (max-width:450px) {
  .ak-facilities4-item::before {
    width: 115px;
    height: 115px;
  }
}
.ak-facilities4-item h3 {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.5;
  color: var(--clr-text-9);
  margin-top: 10px;
}
.ak-facilities4-item p {
  color: var(--clr-text-5);
  margin-top: 20px;
  margin-bottom: 0px;
}
.ak-facilities4-item:hover {
  background: var(--clr-bg-15);
  border-color: #fff;
}
.ak-facilities4-item:hover::after {
  top: 0;
  inset-inline-start: 0px;
}
.ak-facilities4-item:hover::before {
  top: 0;
  inset-inline-start: 4px;
}
.ak-facilities4-item:hover h3 {
  color: var(--clr-common-white);
}
.ak-facilities4-item:hover p {
  color: var(--clr-text-8);
}
.ak-facilities4-item:hover .ak-facilities4-item-img-wrapper .img-icon i {
  color: var(--clr-common-white);
}
.ak-facilities4-item:hover .ak-facilities4-item-img-wrapper .item-number {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.ak-facilities4-item-active-img {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  transition: all 0.6s ease-out 0s;
}
@media (max-width:450px) {
  .ak-facilities4-item-active-img {
    inset-inline-end: -50px;
  }
}

.ak-facilities4-content-wrapper {
  position: relative;
  z-index: 1;
}

.ak-facilities4-item-img-wrapper {
  display: flex;
  justify-content: space-between;
}
.ak-facilities4-item-img-wrapper .img-icon i {
  font-size: 65px;
}
@media (max-width:450px) {
  .ak-facilities4-item-img-wrapper .img-icon i {
    font-size: 55px;
  }
}
.ak-facilities4-item-img-wrapper .item-number {
  font-size: 96px;
  font-weight: var(--bd-fw-bold);
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 20, 20, 0.1);
  line-height: 38px;
}
@media (max-width:450px) {
  .ak-facilities4-item-img-wrapper .item-number {
    font-size: 76px;
  }
}

.ak-facilities4-slider-dot {
  text-align: center;
  margin-top: 60px;
  line-height: 0px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-facilities4-slider-dot {
    margin-top: 40px;
  }
}
.ak-facilities4-slider-dot .swiper-pagination-bullet-active {
  background: var(--clr-bg-4) !important;
  border: none !important;
}
.ak-facilities4-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #141414;
  background: transparent;
  opacity: 1;
}

/*------------------------------
16. video css
------------------------------*/
.video-overlay {
  position: relative;
  height: 544px;
  filter: grayscale(1);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video-overlay {
    height: 400px;
  }
}
@media (max-width:450px) {
  .video-overlay {
    max-height: 330px;
  }
}
.video-overlay::after {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0.5;
  z-index: 2;
}

.video__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video__content h1 {
  font-size: 278px;
  -webkit-text-stroke: 2px var(--clr-border-1);
  color: transparent;
  opacity: 8%;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video__content h1 {
    font-size: 240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video__content h1 {
    font-size: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__content h1 {
    font-size: 135px;
  }
}
@media (max-width: 575px) {
  .video__content h1 {
    font-size: 115px;
  }
}
@media (max-width:450px) {
  .video__content h1 {
    font-size: 80px;
  }
}
.video__content .video__btn {
  width: 132px;
  height: 132px;
  background: var(--clr-bg-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
}
@media (max-width:450px) {
  .video__content .video__btn {
    width: 77px;
    height: 77px;
  }
}
@media (max-width: 575px) {
  .video__content .video__btn {
    width: 87px;
    height: 87px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__content .video__btn {
    width: 92px;
    height: 92px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video__content .video__btn {
    width: 115px;
    height: 115px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video__content .video__btn {
    width: 125px;
    height: 125px;
  }
}
.video__content .video__btn i {
  font-size: 30px;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video__content .video__btn i {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__content .video__btn i {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .video__content .video__btn i {
    font-size: 20px;
  }
}
.video__content .video__btn::after {
  width: 120px;
  height: 120px;
  background: var(--clr-common-white);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  animation: video-ripple 2000ms ease-out infinite;
  content: "";
  z-index: -1;
}
@media (max-width:450px) {
  .video__content .video__btn::after {
    width: 70px;
    height: 70px;
    top: 4px;
    left: 4px;
  }
}
@media (max-width: 575px) {
  .video__content .video__btn::after {
    width: 77px;
    height: 77px;
    top: 5px;
    left: 4px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video__content .video__btn::after {
    width: 85px;
    height: 85px;
    top: 3px;
    left: 3px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video__content .video__btn::after {
    width: 106px;
    height: 106px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video__content .video__btn::after {
    width: 113px;
    height: 113px;
  }
}
.video__content .video__btn:hover {
  background: var(--clr-bg-5);
}
.video__content .video__btn:hover i {
  color: var(--clr-common-white);
}

.inner-video-area.is-top {
  position: relative;
  margin-top: -320px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inner-video-area.is-top {
    margin-top: -212px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-video-area.is-top {
    margin-top: 0px;
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-video-area.is-top {
    margin-top: 0px;
    padding-top: 80px;
  }
}

.service-single-video-img {
  overflow: hidden;
  height: 590px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-single-video-img {
    height: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-single-video-img {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-single-video-img {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-single-video-img {
    height: 400px;
  }
}
@media (max-width:450px) {
  .service-single-video-img {
    height: 350px;
  }
}
.service-single-video-img img {
  width: 100%;
  object-fit: cover;
  height: 120%;
  position: absolute;
  bottom: 0;
}

.blog-single-video-content .video__btn {
  width: 82px;
  height: 82px;
}
.blog-single-video-content .video__btn::after {
  width: 70px;
  height: 70px;
  left: 7px;
}
.blog-single-video-content .video__btn i {
  font-size: 25px;
}

/*------------------------------
17. search css
------------------------------*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 380px;
  background-color: var(--clr-common-black);
  z-index: 1210;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition-delay: 0.5s;
}
.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}

.search__top {
  margin-bottom: 80px;
}

.search__close-btn {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.582);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.search__close-btn:hover {
  color: var(--clr-common-white);
}

.search__input {
  position: relative;
  height: 70px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  transition-delay: 0.5s;
  opacity: 0;
}
.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: 0;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6862745098);
  border-radius: 6px;
  color: var(--clr-common-white);
  opacity: 0.8;
  padding-inline: 30px 70px;
}
.search__input input:focus {
  border-color: rgba(255, 255, 255, 0.685);
}
.search__input input::placeholder {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6862745098);
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--clr-common-white);
  opacity: 0.6;
}
[dir=rtl] .search__input button {
  right: unset;
  left: 35px;
}

.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.5s;
}

/*------------------------------
18. banner css
------------------------------*/
.banner-area-1 {
  min-height: 800px;
  padding-top: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-area-1 {
    min-height: 660px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area-1 {
    min-height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area-1 {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-area-1 {
    min-height: 760px;
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .banner-area-1 {
    min-height: 710px;
    padding-top: 5px;
  }
}
@media (max-width:450px) {
  .banner-area-1 {
    min-height: 740px;
  }
}

.banner1-blur-round {
  width: 309px;
  height: 295px;
  background: #D4212F;
  opacity: 0.3;
  filter: blur(200px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .banner1-blur-round {
    display: none;
  }
}

.banner-bg {
  background: var(--clr-gradient-2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-bg {
    padding-bottom: 130px;
  }
}
.banner-bg .container {
  max-width: 1550px;
}
.banner-bg::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.banner-content {
  margin-top: 45px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content {
    margin-top: 0px;
  }
}
.banner-content p {
  margin-top: 30px;
}

.banner__img {
  position: relative;
  z-index: 1;
  padding: 28px 28px 0px 0;
  margin-inline-start: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner__img {
    margin-inline-start: 0px;
  }
}
@media (max-width:450px) {
  .banner__img {
    padding: 18px 2px 0px 0;
    margin-inline-start: 0px;
  }
}
.banner__img::before {
  width: 97%;
  height: 100%;
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  content: "";
  background: var(--clr-gradient-4);
  z-index: -1;
  border-radius: 0px 26px 0px 0px;
}
[dir=rtl] .banner__img::before {
  inset-inline-end: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  [dir=rtl] .banner__img::before {
    inset-inline-end: 10px;
  }
}
@media (max-width:450px) {
  .banner__img::before {
    display: none;
  }
}
.banner__img img {
  width: 100%;
  border-radius: 26px 0px 0px 26px;
}
@media (max-width:450px) {
  .banner__img img {
    border-radius: 0px 0px 0px 0px;
  }
}

.shape::after {
  width: 15px;
  height: 15px;
  background: var(--clr-bg-5);
  position: absolute;
  bottom: 7px;
  inset-inline-end: -21px;
  content: "";
  transform: rotate(-180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shape::after {
    bottom: 4px;
    inset-inline-end: -20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .shape::after {
    display: none;
  }
}
[dir=rtl] .shape::after {
  inset-inline-start: -21px;
}
.shape::before {
  width: 30px;
  height: 30px;
  background: var(--clr-common-white);
  position: absolute;
  bottom: -22px;
  inset-inline-end: -51px;
  content: "";
  transform: rotate(-180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shape::before {
    width: 25px;
    height: 25px;
    inset-inline-end: -45px;
    bottom: -20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .shape::before {
    display: none;
  }
}
[dir=rtl] .shape::before {
  inset-inline-start: -50px;
}

.banner-item {
  padding-inline-end: 30px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-item {
    padding-inline-end: 0;
  }
}

.banner-img-shape {
  position: absolute;
  top: 55px;
  inset-inline-end: 52%;
  z-index: 2;
  animation: rotate 10s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-shape {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img-shape {
    inset-inline-end: 47%;
  }
  .banner-img-shape img {
    width: 90%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-img-shape {
    inset-inline-end: 55%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-img-shape {
    inset-inline-end: 55%;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .banner-img-shape {
    inset-inline-end: 55%;
  }
}

.ak-banner2-area {
  min-height: 900px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-banner2-area {
    min-height: 750px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner2-area {
    min-height: 630px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner2-area {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-banner2-area {
    padding-top: 100px;
  }
}
@media (max-width:450px) {
  .ak-banner2-area {
    min-height: 887px;
  }
}

.ak-banner2-content {
  padding-bottom: 40px;
  max-width: 850px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner2-content {
    padding-bottom: 0;
  }
}

.home2-banner-img {
  max-width: 768px;
}
.home2-banner-img img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home2-banner-img img {
    width: 120%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .home2-banner-img {
    max-width: 560px;
    position: absolute;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home2-banner-img {
    margin-left: -50px;
    margin-right: 42px;
  }
}

.banner-slider .slick-dots {
  position: absolute;
  inset-inline-end: -135px;
  bottom: 50%;
  transform: translateY(50%);
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .banner-slider .slick-dots {
    inset-inline-end: -35px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-slider .slick-dots {
    inset-inline-end: 50%;
    bottom: -50px;
    transform: translatex(50%);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-slider .slick-dots {
    inset-inline-end: 50%;
    bottom: 17px;
    transform: translateX(50%);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-slider .slick-dots {
    inset-inline-end: 50%;
    bottom: -30px;
    transform: translateX(50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-slider .slick-dots {
    inset-inline-end: 50%;
    bottom: 60px;
    transform: translateX(50%);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-slider .slick-dots {
    inset-inline-end: 54%;
    bottom: 33px;
    transform: translateX(50%);
  }
  [dir=rtl] .banner-slider .slick-dots {
    transform: translateX(-50%);
  }
}
@media (max-width: 575px) {
  .banner-slider .slick-dots {
    inset-inline-end: 50%;
    bottom: 15px;
    transform: translateX(50%);
  }
  [dir=rtl] .banner-slider .slick-dots {
    transform: translateX(-50%);
  }
}
@media (max-width:450px) {
  .banner-slider .slick-dots {
    bottom: -45px;
  }
}
.banner-slider .slick-dots li {
  list-style: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
}
.banner-slider .slick-dots li button {
  font-size: 0px;
  width: 10px;
  height: 10px;
  border: 1px solid #141414;
  border-radius: 50%;
}

.banner-slider .slick-dots .slick-active button {
  background: var(--clr-bg-5);
  border: transparent;
}

.ak-banner2-area .container {
  max-width: 1426px;
}

.banner-img-shape-home2 {
  background-repeat: no-repeat;
  z-index: 5;
}

.home2-banner-overlay {
  position: relative;
  background-repeat: no-repeat;
}
.home2-banner-overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.5) 0%, #F8F8F8 100%);
}

.ak-banner2-img-shape {
  position: absolute;
  top: 150px;
  inset-inline-end: 200px;
  z-index: -1;
  animation-name: rotate-infinite;
  animation-duration: 35s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 1601px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner2-img-shape {
    inset-inline-end: 0px;
  }
  .ak-banner2-img-shape img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner2-img-shape {
    inset-inline-end: 0px;
    top: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-banner2-img-shape {
    display: none;
  }
}

.ak-banner3-bg1 .container {
  max-width: 1440px;
}

.ak-banner3-bg1 {
  background: var(--clr-bg-9);
  width: 100%;
  min-height: 910px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner3-bg1 {
    min-height: 810px;
    padding-bottom: 100px;
  }
}
.ak-banner3-bg1::before {
  width: 49px;
  height: 49px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  mix-blend-mode: color;
  border-radius: 50%;
  position: absolute;
  top: 115PX;
  left: 50%;
  content: "";
  z-index: 1;
  animation: ak-round-rotation2 30s alternate infinite linear;
}
@media (max-width:450px) {
  .ak-banner3-bg1::before {
    display: none;
  }
}
.ak-banner3-bg1::after {
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  mix-blend-mode: color;
  border-radius: 50%;
  position: absolute;
  bottom: 155PX;
  left: 30%;
  content: "";
  animation: ak-round-rotation2 30s alternate infinite linear;
}

.ak-banner3-bg1-overlay {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}

.ak-banner3-bg-round-wrapper .ak-banner3-bg-round-left {
  width: 491px;
  height: 485px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  bottom: -80px;
  left: 100px;
}
.ak-banner3-bg-round-wrapper .ak-banner3-bg-round-right {
  width: 321px;
  height: 349px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  bottom: 25%;
  inset-inline-end: 31%;
}
.ak-banner3-bg-round-wrapper::after {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-banner3-content {
  position: relative;
  z-index: 1;
  margin-top: 182px;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner3-content {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner3-content {
    margin-top: 120px;
  }
}
.ak-banner3-content p {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
}

.ak-banner3-img-wrapper {
  position: relative;
}
.ak-banner3-img-wrapper::after {
  width: 681px;
  height: 681px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  mix-blend-mode: color;
  border-radius: 50%;
  position: absolute;
  top: 120px;
  inset-inline-end: 0px;
  -webkit-animation: banner-round 5s linear infinite alternate;
  content: "";
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner3-img-wrapper::after {
    width: 481px;
    height: 481px;
    top: 175px;
    inset-inline-end: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner3-img-wrapper::after {
    top: 250px;
    inset-inline-end: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner3-img-wrapper::after {
    width: 481px;
    height: 481px;
    top: 130px;
    inset-inline-end: 43px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner3-img-wrapper::after {
    display: none;
  }
}

.ak-banner3-img-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 174px;
  inset-inline-end: -35%;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner3-img-shape {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-banner3-img-shape {
    top: 173px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner3-img-shape {
    top: 201px;
  }
}

.ak-banner3-theme-img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-banner3-theme-img {
    margin-top: 60px;
  }
}
.ak-banner3-theme-img img {
  margin-top: 27px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner3-theme-img img {
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner3-theme-img img {
    max-width: 450px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner3-theme-img img {
    width: 100%;
  }
}
.ak-banner3-theme-img .ak-banner3-img-message-wrapper {
  width: 217px;
  height: 82px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 15px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper {
    top: 48%;
  }
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper img {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper {
    top: 48%;
  }
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper img {
    width: 60%;
  }
}
@media (max-width:450px) {
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper {
    width: 195px;
    height: 70px;
    top: 46%;
    padding: 10px 15px;
  }
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper img {
    width: 50%;
  }
}
.ak-banner3-theme-img .ak-banner3-img-message-wrapper::after {
  width: 18px;
  height: 18px;
  background: rgba(20, 20, 20, 0.8);
  position: absolute;
  bottom: -9px;
  left: 50%;
  content: "";
  -webkit-clip-path: polygon(100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(100% 50%, 50% 100%, 0% 50%);
}
.ak-banner3-theme-img .ak-banner3-img-message-wrapper .ak-banner3-message-icon {
  margin-top: 0px;
  margin-inline-end: 5px;
}
.ak-banner3-theme-img .ak-banner3-img-message-wrapper p {
  font-size: 17px;
  color: var(--clr-text-8);
  margin-bottom: 0px;
}
@media (max-width:450px) {
  .ak-banner3-theme-img .ak-banner3-img-message-wrapper p {
    font-size: 16px;
  }
}

.ak-banner4-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  filter: grayscale(1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner4-bg {
    background-position: 70% center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner4-bg {
    background-position: 10% center;
  }
}
@media (max-width: 575px) {
  .ak-banner4-bg {
    background-position: 22% center;
  }
}

.single-banner-wrapper {
  position: relative;
  overflow: hidden;
}
.single-banner-wrapper::after {
  width: 272px;
  height: 272px;
  background: rgba(212, 33, 47, 0.4);
  filter: blur(250px);
  position: absolute;
  top: 18%;
  left: 10%;
  content: "";
}
.single-banner-wrapper::before {
  width: 272px;
  height: 272px;
  background: rgba(212, 33, 47, 0.3);
  filter: blur(250px);
  position: absolute;
  top: 33%;
  inset-inline-end: 3%;
  content: "";
  z-index: 1;
}
.single-banner-wrapper .container {
  max-width: 1426px;
}

.ak-banner4-shape-left {
  position: absolute;
  top: -132px;
  inset-inline-start: 0;
  z-index: 1;
}
[dir=rtl] .ak-banner4-shape-left {
  transform: rotate(110deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner4-shape-left {
    top: -290px;
    inset-inline-start: -25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-banner4-shape-left {
    display: none;
  }
}

.ak-banner4-shape-right {
  position: absolute;
  bottom: -170px;
  inset-inline-end: 0;
  z-index: 1;
}
[dir=rtl] .ak-banner4-shape-right {
  transform: rotate(180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-banner4-shape-right {
    bottom: -332px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner4-shape-right {
    display: flex;
    justify-content: flex-end;
    bottom: -215px;
  }
  [dir=rtl] .ak-banner4-shape-right {
    justify-content: flex-start;
  }
  .ak-banner4-shape-right img {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-banner4-shape-right {
    display: none;
  }
}

.ak-banner4-bg-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #141414 0%, rgba(20, 20, 20, 0.65) 57.29%, rgba(20, 20, 20, 0.4) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.ak-banner4-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 177px;
  padding-bottom: 210px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner4-content-wrapper {
    padding-top: 270px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner4-content-wrapper {
    padding-top: 220px;
  }
}
@media (max-width: 575px) {
  .ak-banner4-content-wrapper {
    padding-top: 155px;
    padding-bottom: 100px;
  }
}
@media (max-width:450px) {
  .ak-banner4-content-wrapper {
    padding-top: 100px;
  }
}
.ak-banner4-content-wrapper p {
  color: var(--clr-text-8);
  width: 741px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-banner4-content-wrapper p {
    width: 100%;
  }
}

.ak-banner4-button-prev {
  padding: 12px 30px;
  background: var(--clr-bg-9);
  transform: rotate(90deg);
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
  position: absolute;
  bottom: 400px;
  inset-inline-end: -35px;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner4-button-prev {
    transform: rotate(0deg);
    bottom: 25px;
    inset-inline-end: 50%;
    display: flex;
    align-items: center;
  }
  .ak-banner4-button-prev i {
    transform: rotate(90deg);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner4-button-prev {
    padding: 12px 25px;
    transform: rotate(0deg);
    bottom: 70px;
    inset-inline-end: 50%;
    display: flex;
    align-items: center;
  }
  .ak-banner4-button-prev i {
    transform: rotate(90deg);
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner4-button-prev {
    display: none;
  }
}
.ak-banner4-button-prev i {
  margin-inline-end: 7px;
}
.ak-banner4-button-prev:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.ak-banner4-button-next {
  padding: 12px 30px;
  background: var(--clr-common-white);
  transform: rotate(90deg);
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  position: absolute;
  bottom: 276px;
  inset-inline-end: -37px;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner4-button-next {
    transform: rotate(0deg);
    bottom: 25px;
    inset-inline-end: 30%;
    display: flex;
    align-items: center;
  }
  .ak-banner4-button-next i {
    transform: rotate(90deg);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner4-button-next {
    padding: 12px 25px;
    transform: rotate(0deg);
    bottom: 70px;
    inset-inline-end: 30%;
    display: flex;
    align-items: center;
  }
  .ak-banner4-button-next i {
    transform: rotate(90deg);
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner4-button-next {
    display: none;
  }
}
.ak-banner4-button-next i {
  margin-inline-start: 7px;
}
.ak-banner4-button-next:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.banner4-slider-active .ak-banner4-bg {
  transform: scale(1);
  transition: all 8s linear 0s;
}

.swiper-slide-active .ak-banner4-bg {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.ak-banner5-bg {
  width: 100%;
  height: 100%;
  color: var(--clr-bg-9);
  position: absolute;
  top: 0;
  background-color: var(--clr-bg-9);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner5-bg {
    background-position: 60% center;
  }
}
.ak-banner5-bg::after {
  width: 84%;
  height: 100%;
  background: linear-gradient(269.99deg, #141414 16.51%, rgba(20, 20, 20, 0) 83.85%);
  opacity: 0.7;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.single-banner5-wrapper {
  min-height: 960px;
  display: flex;
  align-items: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-banner5-wrapper {
    min-height: 790px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-banner5-wrapper {
    min-height: 640px;
  }
}
@media (max-width:450px) {
  .single-banner5-wrapper {
    min-height: 560px;
  }
}
@media (max-width: 575px) {
  .single-banner5-wrapper {
    min-height: 600px;
  }
}
.single-banner5-wrapper .container {
  max-width: 1630px;
}

.ak-banner5-content-wrapper {
  position: relative;
  z-index: 2;
}
.ak-banner5-content-wrapper h1 {
  font-size: 86px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner5-content-wrapper h1 {
    font-size: 76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-content-wrapper h1 {
    font-size: 66px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner5-content-wrapper h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .ak-banner5-content-wrapper h1 {
    font-size: 55px;
  }
}
@media (max-width:450px) {
  .ak-banner5-content-wrapper h1 {
    font-size: 40px;
  }
}

.ak-banner5-content-btn .ak-feature5-video-icon {
  width: 139px;
  height: 78px;
  border-radius: 39px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner5-content-btn .ak-feature5-video-icon {
    width: 130px;
    height: 68px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-content-btn .ak-feature5-video-icon {
    width: 120px;
    height: 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner5-content-btn .ak-feature5-video-icon {
    width: 110px;
    height: 48px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner5-content-btn .ak-feature5-video-icon {
    width: 100px;
    height: 48px;
  }
}
.ak-banner5-content-btn .ak-feature5-video-icon::after {
  width: 160px;
  height: 96px;
  border-radius: 48px;
  animation: borderanimate2 2s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner5-content-btn .ak-feature5-video-icon::after {
    width: 150px;
    height: 86px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-content-btn .ak-feature5-video-icon::after {
    width: 140px;
    height: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner5-content-btn .ak-feature5-video-icon::after {
    width: 130px;
    height: 66px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner5-content-btn .ak-feature5-video-icon::after {
    width: 120px;
    height: 66px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-content-btn .ak-feature5-video-icon i {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-banner5-content-btn .ak-feature5-video-icon i {
    font-size: 20px;
  }
}

.ak-banner5-button-prev {
  width: 87px;
  height: 87px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--clr-bg-9);
  position: absolute;
  bottom: 0px;
  inset-inline-end: 0px;
  z-index: 1;
  cursor: pointer;
}
.ak-banner5-button-prev i {
  font-size: 20px;
  color: var(--clr-text-5);
  transition: 0.4s;
}
.ak-banner5-button-prev:hover i {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner5-button-prev {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-button-prev {
    width: 55px;
    height: 55px;
    bottom: 57px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner5-button-prev {
    width: 40px;
    height: 40px;
    bottom: 42px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner5-button-prev {
    width: 35px;
    height: 35px;
    bottom: 38px;
  }
}

.ak-banner5-button-next {
  width: 87px;
  height: 87px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--clr-bg-9);
  position: absolute;
  bottom: 88px;
  inset-inline-end: 0px;
  z-index: 1;
  cursor: pointer;
}
.ak-banner5-button-next i {
  font-size: 20px;
  color: var(--clr-text-5);
  transition: 0.4s;
}
.ak-banner5-button-next:hover i {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-banner5-button-next {
    width: 70px;
    height: 70px;
    bottom: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-button-next {
    width: 55px;
    height: 55px;
    bottom: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-banner5-button-next {
    width: 40px;
    height: 40px;
    bottom: 0px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-banner5-button-next {
    width: 35px;
    height: 35px;
    bottom: 0px;
  }
}

.ak-banner5-slider-dot {
  position: absolute;
  bottom: 120px !important;
  left: 30px !important;
  width: 5% !important;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-banner5-slider-dot {
    bottom: 40px !important;
    left: 15px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-banner5-slider-dot {
    display: none;
  }
}
.ak-banner5-slider-dot .swiper-pagination-bullet-active {
  background: var(--clr-bg-9) !important;
  border: 2px solid #fff !important;
}
.ak-banner5-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  opacity: 1;
  display: block !important;
  margin-bottom: 5px !important;
}

.banner5-slider-active .ak-banner5-bg {
  transform: scale(1);
  transition: all 9s linear 0s;
}
@media (max-width: 575px), (max-width:450px) {
  .banner5-slider-active .ak-banner5-bg {
    background-position: 65% center;
  }
}

.swiper-slide-active .ak-banner5-bg {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-blog-banner {
    padding-bottom: 0px;
  }
}

.blog-single-banner-area.is-bottom {
  padding-bottom: 290px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-single-banner-area.is-bottom {
    padding-bottom: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-single-banner-area.is-bottom {
    padding-bottom: 0px;
  }
}

/*------------------------------
19. about css
------------------------------*/
.akabout-wrapper {
  margin-inline-end: 30px;
  margin-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .akabout-wrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .akabout-wrapper {
    margin-inline-end: 0px;
  }
}

.akabout-img {
  padding-top: 36px;
  max-width: 574px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .akabout-img {
    max-width: 670px;
  }
}
.akabout-img::after {
  width: 356px;
  height: 640px;
  position: absolute;
  top: 7px;
  inset-inline-end: -29px;
  content: "";
  background: linear-gradient(180deg, #c51f2c 0%, rgba(254, 92, 83, 0.5) 100%);
  z-index: -1;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  opacity: 0.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .akabout-img::after {
    inset-inline-end: -30px;
    height: 574px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .akabout-img::after {
    top: 11px;
    inset-inline-end: -25px;
    height: 474px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .akabout-img::after {
    width: 451px;
    top: 5px;
    inset-inline-end: -30px;
    height: 727px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .akabout-img::after {
    width: 261px;
    top: 9px;
    inset-inline-end: -28px;
    height: 538px;
  }
}
@media (max-width: 575px) {
  .akabout-img::after {
    display: none;
  }
}
@media (max-width:450px) {
  .akabout-img::after {
    display: none;
  }
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .akabout-img .ak-theme-img {
    width: 100%;
  }
}
.akabout-img .about-channel {
  width: 247px;
  background: var(--clr-common-white);
  padding: 16px;
  position: absolute;
  bottom: 0px;
  left: 0;
}
[dir=rtl] .akabout-img .about-channel {
  inset-inline-start: 0;
}
@media (max-width:450px) {
  .akabout-img .about-channel {
    width: 244px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .akabout-img .about-channel {
    width: 239px;
  }
}
.akabout-img .about-channel p {
  color: var(--clr-text-9);
}
.akabout-img .about-channel .channel__img-two {
  position: absolute;
  bottom: 16px;
  left: 40px;
}
[dir=rtl] .akabout-img .about-channel .channel__img-two {
  inset-inline-start: 40px;
}
.akabout-img .about-channel .channel__img-three {
  position: absolute;
  bottom: 16px;
  left: 64px;
}
[dir=rtl] .akabout-img .about-channel .channel__img-three {
  inset-inline-start: 64px;
}
.akabout-img .about-victor {
  position: absolute;
  bottom: 0px;
  inset-inline-start: -74px;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .akabout-img .about-victor {
  transform: rotate(-90deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .akabout-img .about-victor {
    inset-inline-start: -44px;
  }
  .akabout-img .about-victor img {
    width: 80%;
  }
  [dir=rtl] .akabout-img .about-victor img {
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .akabout-img .about-victor {
    inset-inline-start: -53px;
    text-align: right;
  }
  [dir=rtl] .akabout-img .about-victor img {
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .akabout-img .about-victor {
    bottom: 0px;
    inset-inline-start: -28px;
  }
  .akabout-img .about-victor img {
    width: 50%;
  }
  [dir=rtl] .akabout-img .about-victor img {
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .akabout-img .about-victor {
    inset-inline-start: -32px;
  }
  .akabout-img .about-victor img {
    width: 55%;
  }
  [dir=rtl] .akabout-img .about-victor img {
    transform: rotate(-90deg);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .akabout-img .about-victor {
    display: none;
  }
}
.akabout-img .img-box {
  width: 20px;
  height: 20px;
  background: var(--clr-bg-5);
  position: absolute;
  bottom: 0;
  inset-inline-end: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .akabout-img .img-box {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .akabout-img .img-box {
    display: none;
  }
}
.akabout-img .after-box {
  width: 31px;
  height: 31px;
  background: var(--clr-common-white);
  position: absolute;
  bottom: -31px;
  inset-inline-end: -31px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .akabout-img .after-box {
    width: 25px;
    height: 25px;
    bottom: -25px;
    inset-inline-end: -25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .akabout-img .after-box {
    width: 28px;
    height: 26px;
    bottom: -26px;
    inset-inline-end: -28px;
  }
}
@media (max-width: 575px) {
  .akabout-img .after-box {
    display: none;
  }
}
@media (max-width:450px) {
  .akabout-img .after-box {
    display: none;
  }
}

.counter-area {
  border: 1px solid rgba(20, 20, 20, 0.1);
  display: grid;
  grid-template-columns: auto auto;
  margin-bottom: 70px;
}
@media (max-width:450px) {
  .counter-area {
    grid-template-columns: auto;
  }
}

.counter-item {
  display: flex;
  align-items: center;
  padding: 0px 25px 10px 25px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item {
    padding: 0px 25px 20px 25px;
  }
}
.counter-item:first-child {
  border-inline-end: 1px solid rgba(20, 20, 20, 0.1);
}
@media (max-width:450px) {
  .counter-item:first-child {
    border-inline-end: 0;
  }
}
.counter-item .counter-number {
  display: flex;
}
.counter-item .counter-number .counter-number-inner {
  font-size: 96px;
  line-height: 1;
  color: var(--clr-text-9);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item .counter-number .counter-number-inner {
    font-size: 70px;
  }
}
.counter-item .counter-number .counter-number-inner .text {
  font-size: 73px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item .counter-number .counter-number-inner .text {
    font-size: 53px;
  }
}
.counter-item .counter-number .counter-plus {
  font-size: 36px;
  line-height: 32px;
  background-image: linear-gradient(180deg, #c51f2c 9.5%, #fe5c53 39%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  line-height: 1;
  display: block;
  position: relative;
  top: 14px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item .counter-number .counter-plus {
    margin-top: -9px;
  }
}
.counter-item .counter-text {
  position: relative;
  top: 8px;
}
.counter-item .counter-text p {
  font-weight: var(--bd-fw-medium);
  line-height: 1.4;
  margin-bottom: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item .counter-text p {
    margin-top: 6px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item .counter-text p {
    margin-top: 0px;
  }
}
.counter-item .counter-line {
  width: 1px;
  height: 100%;
  background: #141414;
  opacity: 0.2;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}

.content-victor {
  position: absolute;
  bottom: -90px;
  inset-inline-end: -160px;
  animation: rotate 15s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .content-victor {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-victor {
    inset-inline-end: 0px;
  }
  .content-victor img {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .content-victor {
    inset-inline-end: -30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .content-victor {
    inset-inline-end: -30px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .content-victor {
    inset-inline-end: -130px;
  }
}

.ak-about2-bg {
  background: var(--clr-bg-10);
  position: relative;
}

.ak-about2-shape-img {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .ak-about2-shape-img {
  animation-name: ak-bg-img-move-y;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about2-shape-img {
    display: none;
  }
}

.ak-about2-img-wrapper {
  padding-inline-end: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about2-img-wrapper {
    padding-inline-end: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-about2-img-wrapper {
    padding-inline-end: 50px;
  }
}
.ak-about2-img-wrapper .ak-about2-main-img {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  height: 670px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-about2-img-wrapper .ak-about2-main-img {
    height: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-about2-img-wrapper .ak-about2-main-img {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .ak-about2-img-wrapper .ak-about2-main-img {
    height: 400px;
  }
}
.ak-about2-img-wrapper .ak-about2-main-img img {
  width: 100%;
  height: 110%;
  position: absolute;
  bottom: 0;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-about2-img-wrapper .ak-about2-main-img img {
    width: 100%;
  }
}

.ak-about2-sub-img {
  position: absolute;
  bottom: 0;
  inset-inline-end: 31px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-about2-sub-img {
    width: 260px;
    height: 300px;
    inset-inline-end: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-about2-sub-img {
    inset-inline-end: 88px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-about2-sub-img {
    width: 250px;
    height: 270px;
    inset-inline-end: 0px;
  }
}
@media (max-width: 575px) {
  .ak-about2-sub-img {
    width: 260px;
    height: 220px;
    inset-inline-end: 0px;
  }
}
@media (max-width:450px) {
  .ak-about2-sub-img {
    width: 185px;
    height: 185px;
    inset-inline-end: 0px;
  }
}
.ak-about2-sub-img img {
  position: relative;
  z-index: 1;
  filter: grayscale(1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about2-sub-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-about2-sub-img img {
    width: 100%;
    height: 100%;
  }
}
.ak-about2-sub-img::after {
  width: 96%;
  height: 103%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: -3%;
  content: "";
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-about2-sub-img::after {
    width: 90%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about2-sub-img::after {
    width: 93%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-about2-sub-img::after {
    width: 103%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-about2-sub-img::after {
    width: 104%;
  }
}
@media (max-width:450px) {
  .ak-about2-sub-img::after {
    width: 104%;
    height: 104%;
    left: -4%;
  }
}

.ak-about2-counter-item {
  width: 300px;
  background: var(--clr-bg-5);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-about2-counter-item {
    width: 253px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about2-counter-item {
    width: 235px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-about2-counter-item {
    width: 253px;
  }
}
@media (max-width: 575px) {
  .ak-about2-counter-item {
    width: 265px;
  }
}
@media (max-width:450px) {
  .ak-about2-counter-item {
    width: 200px;
  }
}
.ak-about2-counter-item .counter-number .counter-number-inner {
  color: var(--clr-common-white);
}
@media (max-width:450px) {
  .ak-about2-counter-item .counter-number .counter-number-inner {
    font-size: 50px;
  }
}
.ak-about2-counter-item .counter-number .counter-plus {
  color: var(--clr-common-white);
  -webkit-text-fill-color: white;
}
@media (max-width:450px) {
  .ak-about2-counter-item .counter-number .counter-plus {
    font-size: 30px;
    margin-top: 0px;
  }
}
@media (max-width:450px) {
  .ak-about2-counter-item .counter-text {
    margin-inline-start: 5px;
  }
}
.ak-about2-counter-item .counter-text p {
  color: var(--clr-text-8);
}
@media (max-width:450px) {
  .ak-about2-counter-item .counter-text p {
    font-size: 16px;
  }
}

.ak-about2-content-item {
  padding: 30px 30px 5px 25px;
  background: var(--clr-common-white);
  border-inline-end: 1px solid var(--clr-text-8);
  border-top: 1px solid var(--clr-text-8);
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width:450px) {
  .ak-about2-content-item {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-about2-content-item {
    padding: 30px 30px 10px 25px;
  }
}
.ak-about2-content-item:hover .ak-about2-content-item-img {
  background: transparent;
}
.ak-about2-content-item:hover .ak-about2-content-item-img i {
  font-size: 30px;
  color: #f9f8f8;
}
.ak-about2-content-item:hover .ak-about2-content-item-img::after {
  opacity: 1;
  visibility: visible;
}

.ak-about2-content-wrapper {
  margin-inline-start: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about2-content-wrapper {
    margin-inline-start: 0px;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-about2-content-wrapper {
    margin-inline-start: 0px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-about2-content-wrapper {
    margin-inline-start: 0px;
    margin-bottom: 60px;
  }
}

.ak-about2-content-item-wrapper .ak-about2-content-item:nth-child(2n) {
  border-right: 0;
}

.ak-about2-content-item-wrapper .ak-about2-content-item:nth-child(-n+2) {
  border-top: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about2-content-item-wrapper .ak-about2-content-item:nth-child(-n+2) {
    border-top: 1px solid var(--clr-text-8);
  }
}

.ak-about2-content-item-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about2-content-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ak-about2-content-item-img {
  width: 60px;
  height: 60px;
  background: rgba(212, 33, 47, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 12px;
  min-width: 60px;
  position: relative;
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width:450px) {
  .ak-about2-content-item-img {
    margin-bottom: 10px;
  }
}
.ak-about2-content-item-img i {
  font-size: 30px;
  color: #c51f2c;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.ak-about2-content-item-img::after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.ak-about2-content-item-text h4 {
  font-size: var(--bd-fs-p);
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ak-about2-content-item-text p {
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .ak-about2-content-item-text p {
    line-height: 26px;
  }
}

.ak-about3-bg {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: 47%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about3-bg {
    height: calc(100% - 260px);
    top: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-about3-bg {
    height: 600px;
    width: 690px;
    margin-left: auto;
    margin-right: auto;
    top: 130px;
    position: relative;
    margin-bottom: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-about3-bg {
    height: 500px;
    width: 510px;
    margin-left: auto;
    margin-right: auto;
    top: 70px;
    position: relative;
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .ak-about3-bg {
    height: 500px;
    width: 100%;
    position: static;
    background-position: top;
  }
}
@media (max-width:450px) {
  .ak-about3-bg {
    height: 350px;
    width: 100%;
    position: static;
    background-position: top;
  }
}

.ak-about3-content-bg {
  background: var(--clr-bg-10);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}

.ak-about3-content-area p {
  color: var(--clr-text-13);
}

.ak-about3-slider-wrapper {
  background: #fff;
  border: 1px solid #141414;
  padding: 37px 17px 25px 17px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about3-slider-wrapper {
    margin-bottom: 30px;
  }
}
.ak-about3-slider-wrapper::after {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  z-index: -1;
}

.ak-about3-active-item .ak-about3-active-item-img {
  width: 86px;
  height: 86px;
  background: linear-gradient(180deg, rgba(212, 33, 47, 0.12) 0%, rgba(212, 33, 47, 0) 100%);
  border-radius: 50%;
  min-width: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:450px) {
  .ak-about3-active-item .ak-about3-active-item-img {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }
  .ak-about3-active-item .ak-about3-active-item-img img {
    width: 80%;
  }
}
.ak-about3-active-item .ak-about3-active-item-img:hover img {
  transform: scale(0.9);
}
.ak-about3-active-item .ak-about3-active-item-content {
  margin-inline-start: 20px;
}
.ak-about3-active-item .ak-about3-active-item-content h4 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-black);
  margin-bottom: 10px;
}
.ak-about3-active-item .ak-about3-active-item-content p {
  font-size: 16px;
  color: var(--clr-text-5);
  margin-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about3-responsive-device {
    gap: 30px;
  }
}

.ak-about3-counter-wrapper {
  background-color: var(--clr-bg-5);
  padding: 5px;
}
.ak-about3-counter-wrapper .counter-item {
  display: block;
  padding: 10px 25px 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about3-counter-wrapper .counter-item {
    display: flex;
  }
}
.ak-about3-counter-wrapper .counter-item .counter-number-inner {
  color: var(--clr-common-white);
  font-size: 96px;
}
.ak-about3-counter-wrapper .counter-item .counter-plus {
  color: var(--clr-common-white);
  -webkit-text-fill-color: var(--clr-common-white);
  top: 21px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about3-counter-wrapper .counter-item .counter-text {
    margin-inline-start: 0px;
  }
}
.ak-about3-counter-wrapper .counter-item .counter-text p {
  color: var(--clr-text-8);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-about3-counter-wrapper .counter-item .counter-text p {
    margin-top: 10px;
  }
}

.ak-about3-button-box {
  display: flex;
  align-items: center;
  gap: 30px 30px;
  flex-wrap: wrap;
}

.ak-icon-btn {
  display: flex;
  align-items: center;
}
.ak-icon-btn .icon-round {
  width: 79px;
  height: 79px;
  background: rgba(20, 20, 20, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 15px;
}
.ak-icon-btn .icon-round .icon {
  width: 64px;
  height: 64px;
  background: var(--clr-bg-9);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ak-icon-btn .icon-round .icon i {
  font-size: 30px;
  color: var(--clr-common-white);
}
.ak-icon-btn .icon-round .icon-bg-red {
  background: var(--clr-bg-5);
}
.ak-icon-btn .icon-round .icon-bg-red i {
  font-size: 20px;
  color: var(--clr-common-white);
}
.ak-icon-btn .msg-icon:hover .icon i {
  animation: wiggle 0.2s infinite;
  animation-timing-function: linear;
}
.ak-icon-btn span {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  line-height: 24px;
  color: var(--clr-text-5);
}

.video-icon-round .icon-round {
  background: transparent;
  position: relative;
}
.video-icon-round .icon-round::after {
  width: 60px;
  height: 60px;
  background: rgba(20, 20, 20, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  animation: video-ripple 2000ms ease-out infinite;
  content: "";
  z-index: -1;
}

.about3-slider-dot {
  width: 50px !important;
  display: inline-block;
  position: absolute;
  bottom: 0px !important;
  inset-inline-start: 19px !important;
  z-index: 1;
}
@media (max-width:450px) {
  .about3-slider-dot {
    left: 4px !important;
  }
}
.about3-slider-dot .swiper-pagination-bullet-active {
  background: red !important;
  border: none !important;
}
.about3-slider-dot .swiper-pagination-bullets {
  margin-inline-start: 20px;
}

.home3-2nd-about-wrapper {
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .home3-2nd-about-wrapper {
    padding-inline-end: 38px;
  }
}
.home3-2nd-about-wrapper .home3-about2-victor {
  position: absolute;
  bottom: 0;
  left: -54px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .home3-2nd-about-wrapper .home3-about2-victor {
    display: none;
  }
}

.home3-2nd-about-img {
  padding-top: 38px;
  position: relative;
  padding-bottom: 38px;
  max-width: 565px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .home3-2nd-about-img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .home3-2nd-about-img {
    padding-top: 0px;
  }
}
.home3-2nd-about-img::after {
  width: calc(100% + 76px - 30%);
  position: absolute;
  top: 0px;
  inset-inline-end: -37px;
  content: "";
  background: linear-gradient(180deg, #C51F2C 0%, rgba(254, 92, 83, 0.5) 100%);
  z-index: -1;
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .home3-2nd-about-img::after {
    padding-inline-end: 38px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .home3-2nd-about-img::after {
    display: none;
  }
}
.home3-2nd-about-img .home3-2nd-about-theme-img {
  width: 100%;
}
.home3-2nd-about-img .home3-2nd-about-author {
  width: 264px;
  padding: 27px 21px;
  background: var(--clr-common-white);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 37px;
  inset-inline-start: 0;
}
@media (max-width:450px) {
  .home3-2nd-about-img .home3-2nd-about-author {
    width: 244px;
  }
}
.home3-2nd-about-img .home3-2nd-about-author p {
  color: var(--clr-text-9);
}
.home3-2nd-about-img .home3-2nd-about-author .home3-2nd-about-author-text {
  margin-inline-start: 12px;
}
.home3-2nd-about-img .home3-2nd-about-author .home3-2nd-about-author-text h4 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.2;
  color: var(--clr-common-black);
}
@media (max-width:450px) {
  .home3-2nd-about-img .home3-2nd-about-author .home3-2nd-about-author-text h4 {
    font-size: 18px;
  }
}
.home3-2nd-about-img .home3-2nd-about-author .home3-2nd-about-author-text span {
  font-size: 14px;
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-11);
}
.home3-2nd-about-img .home3-2nd-about-img-box {
  width: 20px;
  height: 20px;
  background: var(--clr-common-white);
  position: absolute;
  bottom: 38px;
  inset-inline-end: 0px;
}
@media (max-width: 575px), (max-width:450px) {
  .home3-2nd-about-img .home3-2nd-about-img-box {
    display: none;
  }
}
.home3-2nd-about-img .home3-2nd-about-after-box {
  width: 38px;
  height: 38px;
  background: var(--clr-common-white);
  position: absolute;
  bottom: 0px;
  inset-inline-end: -38px;
}
@media (max-width: 575px), (max-width:450px) {
  .home3-2nd-about-img .home3-2nd-about-after-box {
    display: none;
  }
}

.home3-2nd-about-content-victor {
  position: absolute;
  bottom: 0;
  inset-inline-end: -250px;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .home3-2nd-about-content-victor {
  inset-inline-end: -200px;
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  [dir=rtl] .home3-2nd-about-content-victor {
    inset-inline-end: -130px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  [dir=rtl] .home3-2nd-about-content-victor {
    bottom: -140px;
    inset-inline-end: -15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  [dir=rtl] .home3-2nd-about-content-victor {
    bottom: -140px;
    inset-inline-end: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  [dir=rtl] .home3-2nd-about-content-victor {
    display: none;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .home3-2nd-about-content-victor {
    inset-inline-end: -130px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .home3-2nd-about-content-victor {
    bottom: -140px;
    inset-inline-end: -30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .home3-2nd-about-content-victor {
    bottom: -140px;
    inset-inline-end: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .home3-2nd-about-content-victor {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home3-2nd-about-content-victor {
    inset-inline-end: -35px;
  }
  .home3-2nd-about-content-victor img {
    width: 70%;
  }
}

.ak-about-content .counter-area {
  margin-bottom: 60px;
}

.ak-about4-features-list ul li {
  list-style: none;
  font-weight: var(--bd-fw-medium);
  font-size: 16px;
  line-height: 24px;
  color: var(--clr-common-black);
  margin-bottom: 15px;
  padding-inline-start: 30px;
  position: relative;
}
.ak-about4-features-list ul li i {
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 6px;
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

.ak-about4-content-bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}

.ak-about4-author {
  background: var(--clr-common-white);
  display: flex;
  align-items: center;
}
.ak-about4-author p {
  color: var(--clr-text-9);
}
.ak-about4-author .ak-about4-author-text {
  margin-inline-start: 12px;
}
.ak-about4-author .ak-about4-author-text h4 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.2;
  color: var(--clr-common-black);
}
.ak-about4-author .ak-about4-author-text span {
  font-size: 14px;
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-11);
}

.author-signature-img {
  position: absolute;
  bottom: 0;
  inset-inline-end: -100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .author-signature-img {
    display: none;
  }
}

.ak-about4-counter-wrapper {
  display: flex;
  align-items: center;
  padding: 3px 20px 18px 20px;
  background: var(--clr-common-white);
  width: 264px;
  position: absolute;
  bottom: 37px;
  inset-inline-start: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-about4-counter-wrapper {
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .ak-about4-counter-wrapper {
    padding: 5px 0 15px 15px;
  }
}
.ak-about4-counter-wrapper .ak-about4-counter-number {
  display: flex;
}
.ak-about4-counter-wrapper .ak-about4-counter-number .counter-number-inner {
  font-size: 96px;
  line-height: 1;
  color: var(--clr-text-9);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about4-counter-wrapper .ak-about4-counter-number .counter-number-inner {
    font-size: 70px;
  }
}
.ak-about4-counter-wrapper .ak-about4-counter-number .counter-plus {
  font-size: 36px;
  line-height: 32px;
  background-image: linear-gradient(180deg, #c51f2c 9.5%, #fe5c53 39%);
  background-clip: text;
  color: transparent;
  margin-top: 15px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-about4-counter-wrapper .ak-about4-counter-number .counter-plus {
    margin-top: 4px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-about4-counter-wrapper .ak-about4-counter-number .counter-plus {
    margin-top: 5px;
  }
}
@media (max-width: 575px) {
  .ak-about4-counter-wrapper .ak-about4-counter-number .counter-plus {
    margin-top: 8px;
  }
}
.ak-about4-counter-wrapper .counter-text p {
  font-weight: var(--bd-fw-medium);
  line-height: 1.4;
  margin-top: 15px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-about4-counter-wrapper .counter-text p {
    margin-top: 6px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-about4-counter-wrapper .counter-text p {
    margin-top: 0px;
  }
}

.ak-mission-area.is-top {
  padding-top: 195px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-mission-area.is-top {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-mission-area.is-top {
    padding-top: 70px;
  }
}

.mission-item {
  border: 1px solid rgba(20, 20, 20, 0.2);
  text-align: center;
  padding: 20px 20px 10px 20px;
  transition: 0.3s;
  height:100%;
}
.mission-item .mission-item-content {
  position: relative;
  z-index: 1;
}
.mission-item .mission-item-content .img-icon {
  width: 90px;
  height: 90px;
  background: var(--clr-bg-9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 25px;
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .mission-item .mission-item-content .img-icon {
    width: 70px;
    height: 70px;
  }
}
.mission-item .mission-item-content .img-icon i {
  font-size: 46px;
  color: var(--clr-common-white);
  transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .mission-item .mission-item-content .img-icon i {
    font-size: 36px;
  }
}
.mission-item .mission-item-content h3 {
  font-weight: var(--bd-fw-bold);
  font-size: 22px;
  color: var(--clr-text-9);
  line-height: 1;
  margin-bottom: 20px;
  transition: 0.3s;
}
@media (max-width:450px) {
  .mission-item .mission-item-content h3 {
    font-size: 23px;
  }
}
.mission-item .mission-item-content p {
  font-size: 16px;
  transition: 0.3s;
  margin-bottom:0px;
}
.mission-item:hover {
  background: var(--clr-bg-5);
}
.mission-item:hover .mission-item-content .img-icon {
  background: var(--clr-common-white);
}
.mission-item:hover .mission-item-content .img-icon i {
  color: var(--clr-text-9);
}
.mission-item:hover .mission-item-content h3 {
  color: var(--clr-common-white);
}
.mission-item:hover .mission-item-content p {
  color: var(--clr-common-white);
}
.mission-item .mission-shape-img {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}
[dir=rtl] .mission-item .mission-shape-img {
  transform: rotate(180deg);
}

.ak-mission-active {
  margin-inline-end: -420px;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-mission-active {
    margin-inline-end: 0px;
  }
}

.inner-about-shape-img {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .inner-about-shape-img img {
  transform: rotate(180deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-about-shape-img {
    display: none;
  }
}

.inner-about-img {
  max-width: 582px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-about-img {
    max-width: 100%;
  }
}
.inner-about-img img {
  width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-about-content {
    margin-bottom: 0px;
  }
}

.inner-about-slider-wrapper {
  position: absolute;
  bottom: -1px;
  inset-inline-start: 0;
  z-index: 1;
  max-width: 414px;
  padding: 40px 30px 0px 0px;
  background: var(--clr-common-white);
}
@media (max-width:450px) {
  .inner-about-slider-wrapper {
    max-width: 100%;
    padding: 30px 0px 0px 0px;
    position: inherit;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-single-about-bg {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service-single-about-bg {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-single-about-bg {
    padding-bottom: 10px;
  }
}
.service-single-about-bg::after {
  width: 68%;
  height: 100%;
  background: var(--clr-bg-10);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  content: "";
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-single-about-bg::after {
    width: 100%;
  }
}

.service-single-about-shape {
  position: absolute;
  bottom: -40%;
  inset-inline-start: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .service-single-about-shape img {
  transform: rotate(180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-single-about-shape {
    display: none;
  }
}

.service-single-about-img-wrapper {
  padding-inline-end: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-single-about-img-wrapper {
    margin-bottom: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-single-about-img-wrapper {
    padding-inline-end: 0px;
  }
}

.ak-service-single-img {
  position: relative;
}
.ak-service-single-img img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.ak-service-single-img::after {
  width: 100%;
  height: 100%;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
}

.service-single-about ul li {
  position: relative;
  padding-inline-start: 30px;
}
.service-single-about ul li i {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.2);
  color: var(--clr-text-9);
  position: absolute;
  top: 11px;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

.service-single-progress-wrap {
  max-width: 330px;
  padding: 35px 30px 15px 30px;
  background: var(--clr-bg-9);
  width: 100%;
  position: absolute;
  bottom: -95px;
  inset-inline-end: 0;
  z-index: 1;
}
.service-single-progress-wrap .service-single-progress-wrap-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.service-single-progress-wrap .service-single-progress-wrap-bg img {
  mix-blend-mode: color-dodge;
  width: 100%;
  height: 100%;
}
.service-single-progress-wrap .service-single-progress-wrap-bg::after {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.service-single-progress-content {
  position: relative;
  z-index: 1;
}
.service-single-progress-content .service-single-progress-title {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
  line-height: 1;
  margin-bottom: 20px;
}
.service-single-progress-content .single-progress {
  display: flex;
  justify-content: space-between;
  padding: 2px 12px;
  margin-bottom: 20px;
  background: var(--clr-common-white);
  position: relative;
}
.service-single-progress-content .single-progress::before {
  width: 20px;
  height: 20px;
  background: var(--clr-common-white);
  clip-path: polygon(50% 0%, 100% 50%, 0% 50%);
  position: absolute;
  bottom: -8px;
  left: -10px;
  content: "";
  transform: rotate(90deg);
}
.service-single-progress-content .single-progress span {
  font-size: 14px;
  color: var(--clr-text-9);
  line-height: 24px;
}
.service-single-progress-content .single-progress .count {
  color: var(--clr-text-5);
}
.service-single-progress-content .single-progress:nth-child(2) {
  width: 74%;
}
.service-single-progress-content .single-progress:nth-child(3) {
  background: var(--clr-bg-5);
}
.service-single-progress-content .single-progress:nth-child(3)::before {
  background: var(--clr-bg-5);
}
.service-single-progress-content .single-progress:nth-child(3) span {
  color: var(--clr-common-white);
}
.service-single-progress-content .single-progress:nth-child(4) {
  width: 69%;
}

/*------------------------------
20. brand css
------------------------------*/
.brand-area-1 {
  top: -65px;
}
@media (max-width: 575px) {
  .brand-area-1 {
    padding-bottom: 0px;
  }
}

.brand-wrapper {
  background: var(--clr-common-white);
  box-shadow: 0px 5px 30px rgba(20, 20, 20, 0.1);
}

.brand-slider {
  position: relative;
}
.brand-slider::before {
  width: 1px;
  height: 100%;
  background: var(--clr-common-white);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  content: "";
  z-index: 1;
}

.brand-item {
  transition: 0.4s;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 134px;
}
.brand-item::after {
  width: 1px;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  opacity: 0.1;
  content: "";
}
@media (max-width:450px) {
  .brand-item::after {
    display: none;
  }
}
.brand-item img {
  opacity: 0.4;
  filter: grayscale(80%);
}
.brand-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.ak-brand2-bg {
  background: var(--clr-common-white);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.ak-brand2-wrapper {
  padding: 70px 0px;
}
.ak-brand2-wrapper .brand-slider .ak-brand2-item {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ak-brand2-wrapper .brand-slider .ak-brand2-item::after {
  width: 1px;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  opacity: 0.1;
  content: "";
}
@media (max-width:450px) {
  .ak-brand2-wrapper .brand-slider .ak-brand2-item::after {
    display: none;
  }
}
.ak-brand2-wrapper .brand-slider .ak-brand2-item img {
  opacity: 0.4;
  filter: grayscale(80%);
}
.ak-brand2-wrapper .brand-slider .ak-brand2-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.ak-brand4-shadow {
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: none;
}

.inner-brand-border {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-brand-border {
    margin-bottom: 170px;
  }
}

.ak-brand2-wrapper .inner-sub-title {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}

/*------------------------------
21. download css
------------------------------*/
.download-content {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .download-content {
    margin-bottom: 60px;
  }
}
.download-content p {
  color: var(--clr-text-8);
}

.download-title {
  margin-bottom: 15px;
}
.download-title .main-title {
  color: var(--clr-common-white);
}

.download__bg {
  background: var(--clr-bg-5);
  top: 0px;
  left: 0;
  z-index: 2;
  padding: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .download__bg {
    padding: 45px;
  }
}
@media (max-width: 575px) {
  .download__bg {
    padding: 28px;
  }
}
@media (max-width:450px) {
  .download__bg {
    padding-bottom: 60px;
  }
}

.download-wrapper .download__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.87;
  height: 100%;
}
.download-wrapper .download__bg-img img {
  width: 100%;
  height: 100%;
}

.download-img {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .download-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .download-img {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .download-img {
    justify-content: flex-start;
    margin-top: 60px;
  }
  [dir=rtl] .download-img {
    justify-content: flex-start;
  }
}
@media (max-width:450px) {
  .download-img {
    margin-top: 60px;
    justify-content: left;
  }
  .download-img img {
    width: 100%;
  }
  [dir=rtl] .download-img {
    justify-content: right;
  }
}
.download-img span {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 41px;
  inset-inline-start: -10px;
}
@media (max-width: 575px) {
  .download-img span {
    inset-inline-start: 170px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .download-img span {
    inset-inline-start: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .download-img span {
    transform: rotate(0deg);
    bottom: -33px;
    inset-inline-start: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .download-img span {
    inset-inline-start: -30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .download-img span {
    inset-inline-start: -55px;
  }
}
@media (max-width:450px) {
  .download-img span {
    transform: rotate(0deg);
    bottom: -33px;
    inset-inline-start: 0px;
  }
}

.download-btn {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
@media (max-width:450px) {
  .download-btn .unfill-btn {
    margin-inline-start: 0px;
  }
}

/*------------------------------
22. price css
------------------------------*/
.price__shape {
  position: relative;
}
.price__shape-img {
  position: absolute;
  top: -55px;
  inset-inline-end: -195px;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .price__shape-img {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .price__shape-img {
    top: -100px;
    inset-inline-end: -26px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .price__shape-img {
    top: -83px;
    inset-inline-end: -45px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .price__shape-img {
    inset-inline-end: -135px;
  }
}

.price-item-active {
  background: var(--clr-bg-9);
  position: relative;
}
.price-item-active .price-item-active-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.09;
}
.price-item-active .price-item-active-img img {
  width: 100%;
  height: 100%;
}
.price-item-active .price-item {
  position: relative;
  z-index: 4;
}
.price-item-active .price-item .price-item-title h3 {
  color: var(--clr-common-white);
}
.price-item-active .price-item .price-item-title p {
  color: var(--clr-text-10);
}
.price-item-active .price-item .package-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-item-active .price-item .package-list ul li {
  color: var(--clr-text-10);
  padding-inline-start: 30px;
  position: relative;
}
.price-item-active .price-item .package-list ul li img {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}
.price-item-active .price-item .package-price span {
  color: var(--clr-text-11);
  position: relative;
  top: 26px;
}
@media (max-width:450px) {
  .price-item-active .price-item .package-price span {
    top: 20px;
  }
}
.price-item-active .price-item .package-price h2 {
  color: var(--clr-common-white);
}
.price-item-active .price-item .package-price .price-point {
  color: var(--clr-common-white);
}

.price-item {
  padding: 40px 50px;
  border: 1px solid #141414;
  transition: 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-item {
    padding: 40px 40px;
  }
}
@media (max-width:450px) {
  .price-item {
    padding: 40px 30px;
  }
}
.price-item .price-item-icon {
  width: 64px;
  height: 64px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  line-height: 64px;
  text-align: center;
  margin-inline-end: 12px;
}
.price-item .price-item-title h3 {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.3;
}
.price-item .package-list {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}
.price-item .package-list ul li {
  list-style: none;
  font-size: 18px;
  color: var(--clr-text-5);
  line-height: 30px;
  margin-bottom: 18px;
  padding-inline-start: 28px;
  position: relative;
}
.price-item .package-list ul li img {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}
.price-item .package-price span {
  font-size: 24px;
  color: var(--clr-text-5);
  line-height: 1;
  position: relative;
  top: 26px;
}
.price-item .package-price h2 {
  font-size: 96px;
  line-height: 1;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-inline-start: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-item .package-price h2 {
    font-size: 80px;
  }
}
@media (max-width:450px) {
  .price-item .package-price h2 {
    font-size: 70px;
  }
}
.price-item .package-price .price-point {
  font-size: 48px;
  line-height: 1;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-inline-start: 10px;
  position: relative;
  top: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price-item .package-price .price-point {
    font-size: 41px;
    top: 40px;
  }
}
@media (max-width:450px) {
  .price-item .package-price .price-point {
    font-size: 35px;
    top: 35px;
  }
}
.price-item:hover .price-item-icon img {
  transform: scale(1.2);
}
.price-item:hover .unfill-btn.button {
  background: var(--clr-gradient-1);
  color: var(--clr-common-white);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #141414;
}
.price-item:hover .unfill-btn::before {
  opacity: 0;
  visibility: hidden;
}

.price-item-active:hover .unfill-btn.button {
  background: linear-gradient(180deg, rgba(197, 31, 44, 0) 0%, rgba(254, 92, 83, 0) 100%);
}
.price-item-active:hover .unfill-btn.button.white {
  transform: translate(0px, 0px);
  box-shadow: none;
}
.price-item-active:hover .unfill-btn::before {
  opacity: 1;
  visibility: visible;
}

.price-item-btn .button:focus {
  color: var(--clr-text-9);
}

.price-active-item-btn .unfill-btn {
  display: inline-block;
  color: var(--clr-common-white);
  padding: 19px 40px;
  font-family: var(--bd-ff-heading);
  font-weight: var(--bd-fw-bold);
  font-size: 18px;
  transition: all 300ms cubic-bezier(0.5, 2.5, 0.7, 0.7);
  position: relative;
  text-align: center;
}
@media (max-width:450px) {
  .price-active-item-btn .unfill-btn {
    padding: 15px 30px;
  }
}
.price-active-item-btn .unfill-btn.button {
  background: var(--clr-gradient-1);
}
.price-active-item-btn .unfill-btn.button.white {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #fff;
}
.price-active-item-btn .unfill-btn::before {
  width: 100%;
  height: 100%;
  color: var(--clr-text-9);
  border-style: solid;
  border-width: 2px;
  border-image: linear-gradient(180deg, rgb(197, 31, 44) 0%, rgb(254, 92, 83) 100%) 1;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.ak-package2-area.is-top {
  padding-top: 195px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-package2-area.is-top {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-package2-area.is-top {
    padding-top: 70px;
  }
}

.ak-price-area.is-bottom {
  padding-bottom: 195px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-price-area.is-bottom {
    padding-bottom: 130px;
  }
}

/*------------------------------
23. testimonial css
------------------------------*/
.testi-slide-box-wrapper {
  padding: 0 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .testi-slide-box-wrapper {
    padding: 0px;
  }
}

.testimonial-1-section-wrap .testi-title {
  left: -85px;
}
[dir=rtl] .testimonial-1-section-wrap .testi-title {
  left: auto;
  inset-inline-start: -85px;
}

.testi-slide-box {
  border: 1px solid #141414;
  padding: 65px 60px 55px 55px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testi-slide-box {
    padding: 50px 30px 43px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testi-slide-box {
    padding: 65px 40px 43px 40px;
  }
}
@media (max-width: 575px) {
  .testi-slide-box {
    padding: 35px;
  }
}
@media (max-width:450px) {
  .testi-slide-box {
    padding: 15px;
  }
}

.testi-content {
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testi-content {
    margin-top: 30px;
  }
}
.testi-content h3 {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-theme-1);
  line-height: 1.3;
  margin-bottom: 5px;
}
.testi-content p {
  font-size: var(--bd-fs-h4);
  color: var(--clr-text-9);
  font-weight: var(--bd-fw-medium);
  margin-top: 35px;
  margin-bottom: 50px;
}
@media (max-width:450px) {
  .testi-content p {
    font-size: 18px;
  }
}
.testi-content__othore {
  position: relative;
}
.testi-content__othore h4 {
  font-size: var(--bd-fs-p);
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-12);
  margin-bottom: 5px;
}
.testi-content__othore span {
  color: var(--clr-text-13);
  font-size: var(--bd-fs-h6);
  font-family: var(--bd-ff-secondary);
}
.testi-content__othore::after {
  width: 100%;
  height: 1px;
  background: rgb(205, 205, 205);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.testi-content__bg-img {
  position: absolute;
  inset-inline-end: 130px;
  top: 110px;
  z-index: -1;
  opacity: 0.1;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testi-content__bg-img {
    inset-inline-end: 110px;
    top: 155px;
  }
  .testi-content__bg-img img {
    width: 90%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testi-content__bg-img {
    inset-inline-end: 55px;
    top: 170px;
  }
  .testi-content__bg-img img {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-content__bg-img {
    inset-inline-end: 80px;
    top: 300px;
  }
  .testi-content__bg-img img {
    width: 80%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .testi-content__bg-img {
    display: none;
  }
}

.testi-content__icon-img img {
  display: inline-block;
}

.testi-img-slider .testi-active-img {
  margin: 13px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.testi-img-slider .testi-active-img img {
  opacity: 0.5;
}
.testi-img-slider .testi-active-img .testi-big-img {
  width: 70px;
  height: 70px;
}

@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-img-active-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .testi-img-active-wrapper {
    margin-bottom: 30px;
  }
}
.testi-img-slider {
  width: 90px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-img-slider {
    width: 260px;
  }
}
.testi-img-slider .slick-center {
  position: relative;
}
.testi-img-slider .slick-center img {
  opacity: 1;
  transform: scale(1.05);
}
.testi-img-slider .slick-center .testi-border-loader {
  opacity: 1;
}

.testi-thumb-nav {
  position: relative;
  background-color: var(--tp-theme-2);
}
.testi-thumb-nav:hover {
  cursor: pointer;
}
.testi-thumb-nav .testi-border-loader {
  position: absolute;
  top: -7px;
  left: 2px;
  opacity: 0;
}
.testi-thumb-nav .testi-border-loader svg {
  width: 84px;
  height: 84px;
}

.testi-border-loader svg circle:last-child {
  animation: testi-border-loader 8s linear infinite;
}

.testi-content-slider .slick-prev {
  display: none !important;
}
.testi-content-slider .slick-next {
  display: none !important;
}

.testi-content-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0 15px;
  position: relative;
  z-index: 1;
}

.testi-content-nav.top {
  margin-top: -50px;
}

.testi-content-active-left-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 20, 28, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  inset-inline-end: 60px;
  z-index: 1;
  transition: 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-content-active-left-btn {
    width: 38px;
    height: 38px;
    font-size: 23px;
    bottom: 6px;
    inset-inline-end: 50px;
  }
}
.testi-content-active-left-btn:hover {
  background: var(--clr-bg-13);
  color: var(--clr-text-14);
}

.testi-content-active-right-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 20, 28, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  inset-inline-end: 0;
  transition: 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testi-content-active-right-btn {
    width: 38px;
    height: 38px;
    font-size: 23px;
    bottom: 6px;
  }
}
.testi-content-active-right-btn:hover {
  background: var(--clr-bg-13);
  color: var(--clr-text-14);
}

.testimonial-2-section-wrap .testi-title {
  left: -45px;
}
[dir=rtl] .testimonial-2-section-wrap .testi-title {
  inset-inline-start: -45px;
  left: auto;
}

.ak-testimonial3-bg {
  background-color: var(--clr-bg-9);
  position: relative;
  overflow: hidden;
}
.ak-testimonial3-bg:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #0D0D0D 0%, rgba(13, 13, 13, 0.8) 100%);
}
.ak-testimonial3-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D0D0D;
  z-index: 2;
  opacity: 0.6;
}

.ak-testimonial3-round-1 {
  background: #D4212F;
  filter: blur(250px);
  width: 440px;
  height: 539px;
  display: inline-block;
  bottom: -20%;
  position: absolute;
}

.ak-testimonial3-round-2 {
  background: #D4212F;
  filter: blur(250px);
  width: 449px;
  height: 422px;
  display: inline-block;
  top: -31%;
  inset-inline-end: 30%;
  position: absolute;
}

.ak-testimonial3-round-3 {
  background: #D4212F;
  filter: blur(250px);
  width: 321px;
  height: 393px;
  display: inline-block;
  top: 50%;
  inset-inline-end: 31%;
  position: absolute;
}

.ak-testimonial3-content-wrapper .main-title {
  color: var(--clr-common-white);
}

.ak-testimonial3-item {
  background: var(--clr-common-white);
  padding: 45px 40px 45px 40px;
  position: relative;
}
@media (max-width:450px) {
  .ak-testimonial3-item {
    padding: 45px 35px 45px 35px;
  }
}
.ak-testimonial3-item .ak-testi3-item-header {
  margin-bottom: 25px;
}
.ak-testimonial3-item .ak-testi3-item-header h3 {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-theme-1);
  margin-bottom: 5px;
}
.ak-testimonial3-item p {
  font-size: 19px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-bg-9);
  padding-top: 33px;
  padding-bottom: 23px;
  margin-bottom: 0px;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.ak-testi3-active-icon-img {
  position: absolute;
  top: 43px;
  inset-inline-end: 40px;
  opacity: 0;
  visibility: hidden;
}

.ak-testi3-item-author {
  display: flex;
  align-items: center;
  margin-top: 35px;
}
.ak-testi3-item-author .ak-testi3-item-author-text {
  margin-inline-start: 15px;
}
.ak-testi3-item-author .ak-testi3-item-author-text h4 {
  font-size: 18px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.2;
  color: var(--clr-text-12);
}
.ak-testi3-item-author .ak-testi3-item-author-text span {
  font-family: var(--bd-ff-secondary);
  font-size: 14px;
  color: var(--clr-text-13);
}

.ak-testimonial3-slider-wrapper .swiper {
  overflow: visible;
}

.testimonial3-slider-dot {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 575px), (max-width:450px) {
  .testimonial3-slider-dot {
    margin-top: 30px;
  }
}
.testimonial3-slider-dot .swiper-pagination-bullet-active {
  background: var(--clr-bg-4) !important;
  border: none !important;
}
.testimonial3-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}

.ak-testimonial3-active .swiper-slide-active .ak-testimonial3-item {
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
}
.ak-testimonial3-active .swiper-slide-active .ak-testimonial3-item .ak-testi3-item-header h3 {
  color: var(--clr-common-white);
}
.ak-testimonial3-active .swiper-slide-active .ak-testimonial3-item p {
  color: var(--clr-common-white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.ak-testimonial3-active .swiper-slide-active .ak-testimonial3-item .ak-testi3-item-author-text h4 {
  color: var(--clr-common-white);
}
.ak-testimonial3-active .swiper-slide-active .ak-testimonial3-item .ak-testi3-item-author-text span {
  color: var(--clr-text-8);
}
.ak-testimonial3-active .swiper-slide-active .ak-testi3-active-icon-img {
  opacity: 0.2;
  visibility: visible;
}

.testimonial-area.is-bottom {
  padding-bottom: 235px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .testimonial-area.is-bottom {
    padding-bottom: 170px;
  }
}

.inner-testi-item {
  border: 1px solid rgba(20, 20, 20, 0.1);
  margin-inline-start: 17px;
  margin-inline-end: 17px;
  padding: 35px 40px 45px 40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .inner-testi-item {
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding: 35px 35px 45px 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .inner-testi-item {
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
}
@media (max-width:450px) {
  .inner-testi-item {
    padding: 35px 30px 45px 30px;
  }
}
.inner-testi-item::before {
  width: 0%;
  height: 100%;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
  transition: all 0.3s ease-out 0s;
}
.inner-testi-item .ak-testi3-item-header {
  margin-bottom: 35px;
}
.inner-testi-item p {
  padding-bottom: 25px;
}
.inner-testi-item .ak-testi3-item-author {
  margin-top: 35px;
}
.inner-testi-item .ak-testi3-item-author-img {
  max-width: 52px;
}
.inner-testi-item .ak-testi3-item-author-img img {
  width: 100%;
}
.inner-testi-item:hover {
  border-color: transparent;
}
.inner-testi-item:hover h3 {
  color: var(--clr-common-white);
}
.inner-testi-item:hover p {
  color: var(--clr-common-white);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.inner-testi-item:hover .ak-testi3-item-author .ak-testi3-item-author-text h4 {
  color: var(--clr-common-white);
}
.inner-testi-item:hover .ak-testi3-item-author .ak-testi3-item-author-text span {
  color: var(--clr-text-8);
}
.inner-testi-item:hover::before {
  width: 100%;
}

.inner-testi-item-content {
  position: relative;
  z-index: 1;
}

.inner-testimonial-area.is-top {
  padding-top: 195px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-testimonial-area.is-top {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-testimonial-area.is-top {
    padding-top: 70px;
  }
}

.testimonial-about-bg {
  background: var(--clr-bg-10);
}

.testi-about-content .ak-about4-author {
  background: transparent;
}

.testi-about-form {
  padding: 0 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .testi-about-form {
    padding: 0px;
  }
}
.testi-about-form .contact-from-input {
  margin-bottom: 30px;
}

/*------------------------------
24. faq css
------------------------------*/
.faq-bg {
  background: var(--clr-bg-12);
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-content-wrapper {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-content-wrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-content-wrapper p br {
    display: none;
  }
}

.ak-faq .accordion-button {
  border: 1px solid var(--clr-bg-9);
  padding: 15px 28px;
  padding-inline-end: 8px;
  justify-content: space-between;
  text-align: left;
  background: var(--clr-common-white);
  font-size: var(--bd-fs-h4);
  font-weight: var(--bd-fw-sbold);
  line-height: 1.6;
  color: var(--clr-text-9);
}
@media (max-width: 575px) {
  .ak-faq .accordion-button {
    padding: 15px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-faq .accordion-button {
    padding: 12px 28px;
  }
}

.ak-faq .accordion-button::after {
  content: "\f067";
  background-image: none;
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  font-weight: 400;
  height: 40px;
  width: 40px;
  line-height: 36px;
  border-radius: 50%;
  margin-inline-start: 0;
  text-align: center;
  color: var(--clr-theme-1);
}

.ak-faq .accordion-button:not(.collapsed) {
  border: 2px solid var(--clr-bg-5);
  color: var(--clr-text-8);
  background: var(--clr-bg-5);
  box-shadow: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-faq .accordion-button:not(.collapsed) {
    padding: 12px 28px;
  }
}

.ak-faq .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--clr-text-8);
}

.ak-faq .accordion-button:focus {
  box-shadow: none;
}

.ak-faq .accordion-body {
  font-size: var(--bd-fs-p);
  line-height: 1.6;
  color: var(--clr-common-white);
  background: var(--clr-bg-9);
  padding: 28px 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-faq .accordion-body {
    padding: 15px 24px;
    font-size: 17px;
  }
}

.ak-faq .accordion-collapse {
  border: none;
  transition: all 0.5s;
}

.ak-faq .accordion-item {
  border: none;
}

.ak-faq .accordion-item:first-of-type .accordion-button {
  border-radius: 0px;
}

.ak-faq .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}

.ak-faq-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-faq-group {
    padding: 0px;
  }
}

.faq-area.style-2 {
  background: var(--clr-theme-3);
}

.faq-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: var(--clr-common-white);
  text-align: center;
  line-height: 160px;
  border-radius: 550%;
}

@media (max-width: 450px) {
  .faq-thumb {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
.faq-accordion-wrapper {
  position: relative;
}
.faq-accordion-wrapper::after {
  width: 727px;
  height: 521px;
  transform: rotate(-20.93deg);
  background: var(--clr-bg-5);
  opacity: 0.1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  transform: translateX(-50%) rotate(-20.93deg);
}
@media (max-width: 575px) {
  .faq-accordion-wrapper::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-accordion-wrapper::after {
    width: 541px;
    height: 390px;
    top: 15px;
    transform: translateX(-50%) rotate(-0.93deg);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-accordion-wrapper::after {
    top: -15px;
    transform: translateX(-50%) rotate(-0.93deg);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-accordion-wrapper::after {
    width: 550px;
    height: 375px;
    top: 20px;
    transform: translateX(-50%) rotate(-5.93deg);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-accordion-wrapper::after {
    width: 560px;
    height: 421px;
    top: 32px;
    transform: translateX(-50%) rotate(-9.93deg);
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .faq-accordion-wrapper::after {
    width: 673px;
    height: 490px;
    transform: translateX(-50%) rotate(-7.93deg);
  }
}

.ak-faq {
  position: relative;
  z-index: 1;
}

.faq-shape-img {
  position: absolute;
  bottom: -95px;
  inset-inline-start: 0px;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width: 575px) {
  .faq-shape-img {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-shape-img {
    bottom: -70px;
    inset-inline-start: 10px;
  }
}

.ak-faq2-group {
  padding-inline-start: 0px;
}

.ak-faq2-content-wrapper {
  padding-inline-start: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-faq2-content-wrapper {
    margin-top: 0px;
    padding-inline-start: 0px;
    margin-bottom: 70px;
  }
}

.ak-faq2-right-shape {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .ak-faq2-right-shape img {
  transform: rotate(-180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-faq2-right-shape {
    bottom: 55px;
    text-align: right;
  }
  .ak-faq2-right-shape img {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-faq2-right-shape {
    display: none;
  }
}

.faq-padding {
  padding-bottom: 235px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .faq-padding {
    padding-bottom: 165px;
  }
}

.ak-faq4-left-shape {
  position: absolute;
  bottom: 145px;
  inset-inline-start: -84px;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-faq4-left-shape {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-faq4-left-shape {
    bottom: 101px;
    inset-inline-start: -108px;
  }
}

.service-single-faq-bg {
  background: var(--clr-bg-10);
}
.service-single-faq-bg .faq-accordion-wrapper::after {
  display: none;
}

.inner-faq-shape-img {
  position: absolute;
  bottom: -120px;
  inset-inline-end: 95%;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-faq-shape-img {
    display: none;
  }
}

.inner-faq.is-top {
  padding-top: 195px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-faq.is-top {
    padding-top: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-faq.is-top {
    padding-top: 70px !important;
  }
}
.inner-faq .faq-accordion-wrapper::after {
  display: none;
}
.inner-faq .faq-accordion-wrapper .accordion-button {
  border: 1px solid rgba(20, 20, 20, 0.1);
}
.inner-faq .faq-accordion-wrapper .accordion-button::after {
  color: var(--clr-text-5);
}
.inner-faq .faq-accordion-wrapper .accordion-button:not(.collapsed)::after {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-faq .faq-accordion-wrapper .ak-faq-group {
    padding: 0 0px;
  }
}

.ak-inner-faq {
  padding: 0 50px;
}
.ak-inner-faq .accordion-body {
  padding: 45px 24px;
}

.accordion-button:not(.collapsed) {
  pointer-events: none;
}

/*------------------------------
25. location css
------------------------------*/
.location-content-wrapper {
  padding-inline-start: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .location-content-wrapper {
    padding-inline-start: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .location-content-wrapper {
    padding-inline-start: 0px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .location-content-wrapper {
    padding-inline-start: 0px;
  }
}

.location__map-img {
  margin-inline-start: -119px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .location__map-img {
    margin-inline-start: 0px;
  }
  .location__map-img .ak-map-img {
    width: 100%;
  }
}

.location-dot-main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.location-dot {
  width: 16px;
  height: 16px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.location-dot::after {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #919191;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}
.location-dot:hover .location-active-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.location-dot.active .location-active-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .location-dot.active .location-active-img {
    width: 150px;
  }
  .location-dot.active .location-active-img img {
    width: 100%;
  }
}

.location-dot-item .dot-1 {
  top: 150px;
  inset-inline-start: 13%;
}
@media (max-width: 575px) {
  .location-dot-item .dot-1 {
    top: 110px;
  }
}
.location-dot-item .dot-2 {
  top: 170px;
  inset-inline-start: 58%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .location-dot-item .dot-2 {
    inset-inline-start: 55%;
  }
}
@media (max-width: 575px) {
  .location-dot-item .dot-2 {
    top: 135px;
    inset-inline-start: 50%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .location-dot-item .dot-2 {
    top: 215px;
    inset-inline-start: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .location-dot-item .dot-2 {
    top: 188px;
    inset-inline-start: 52%;
  }
}
.location-dot-item .dot-3 {
  top: 75px;
  inset-inline-start: 73%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .location-dot-item .dot-3 {
    inset-inline-start: 43%;
  }
}
@media (max-width: 575px) {
  .location-dot-item .dot-3 {
    top: 34px;
    inset-inline-start: 64%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .location-dot-item .dot-3 {
    top: 26px;
    inset-inline-start: 70%;
  }
}
.location-dot-item .dot-4 {
  top: 280px;
  inset-inline-start: 70%;
}
@media (max-width:450px) {
  .location-dot-item .dot-4 {
    display: none;
  }
}
@media (max-width: 575px) {
  .location-dot-item .dot-4 {
    top: 158px;
    inset-inline-start: 75%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .location-dot-item .dot-4 {
    top: 121px;
    inset-inline-start: 67%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .location-dot-item .dot-4 {
    inset-inline-start: 28%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .location-dot-item .dot-4 {
    inset-inline-start: 77%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .location-dot-item .dot-4 {
    top: 0px;
    inset-inline-start: 59%;
  }
}
.location-dot-item .dot-5 {
  top: -10px;
  inset-inline-start: 36%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .location-dot-item .dot-5 {
    inset-inline-start: 20%;
  }
}
@media (max-width: 575px) {
  .location-dot-item .dot-5 {
    top: -50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .location-dot-item .dot-5 {
    top: -40px;
    inset-inline-start: 35%;
  }
}

.location-active-img {
  position: relative;
  top: -8px;
  inset-inline-start: 30px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
  transition: 0.5s;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .location-active-img {
    top: 30px;
    inset-inline-start: -50px;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .location-active-img {
    top: -10px;
    inset-inline-start: -50px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  .location-active-img img {
    display: none;
  }
}

.location-active-img-content {
  padding: 8px 16px;
  background: var(--clr-bg-9);
  color: var(--clr-common-white);
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .location-active-img-content {
    padding: 4px 12px;
  }
}
.location-active-img-content h5 {
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-sbold);
  margin-inline-start: 8px;
  line-height: 1.6;
}

.location__country {
  display: flex;
  column-gap: 60px;
}
@media (max-width: 575px) {
  .location__country {
    flex-wrap: wrap;
    gap: 30px 50px;
  }
}
@media (max-width:450px) {
  .location__country {
    gap: 30px 30px;
  }
}
.location__country-item h4 {
  font-weight: var(--bd-fw-medium);
  line-height: 1.3;
  color: var(--clr-text-9);
  margin-bottom: 10px;
}
.location__country-item span {
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-5);
  line-height: 1.3;
}

.location-item-2 {
  position: relative;
}
.location-item-2::after {
  width: 1px;
  height: 49px;
  background: rgba(145, 145, 145, 0.2);
  position: absolute;
  top: 6px;
  inset-inline-start: -30px;
  content: "";
}
@media (max-width:450px) {
  .location-item-2::after {
    display: none;
  }
}
.location-item-2::before {
  width: 1px;
  height: 49px;
  background: rgba(145, 145, 145, 0.2);
  position: absolute;
  top: 6px;
  inset-inline-end: -30px;
  content: "";
}
@media (max-width:450px) {
  .location-item-2::before {
    display: none;
  }
}

/*------------------------------
26. confused css
------------------------------*/
.confused-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  filter: grayscale(1);
}
.confused-bg:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #141414;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.confused-content {
  position: relative;
  z-index: 55;
}
.confused-content .main-title {
  color: var(--clr-common-white);
}
.confused-content p {
  color: var(--clr-text-8);
  margin-top: 30px;
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .confused-content p br {
    display: none;
  }
}

/*------------------------------
27. copy-right css
------------------------------*/
.copy-right-1 {
  padding: 23px 0;
}

.copy-right-bg {
  background: var(--clr-bg-9);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .copy-right-content {
    text-align: center;
  }
}
.copy-right-content p {
  margin-bottom: 0px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-8);
}

.copy-right-social-link {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .copy-right-social-link {
    margin-top: 20px;
    justify-content: center;
  }
  [dir=rtl] .copy-right-social-link {
    justify-content: center;
  }
}
.copy-right-social-link ul li {
  display: inline-block;
  position: relative;
}
.copy-right-social-link ul li:first-child a {
  padding-inline-start: 0px;
}
.copy-right-social-link ul li:last-child::before {
  display: none;
}
.copy-right-social-link ul li::before {
  width: 1px;
  height: 13px;
  background: var(--clr-bg-8);
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}
.copy-right-social-link ul li a {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-8);
  opacity: 0.5;
  padding-inline-start: 16px;
  padding-inline-end: 20px;
  transition: 0.4s;
}
.copy-right-social-link ul li a:hover {
  opacity: 1;
  color: var(--clr-theme-1);
}
.copy-right-social-link ul li:last-child a {
  padding-inline-end: 0px;
}

.ak-theme-copy-right-wrapper {
  padding: 30px 0;
  position: relative;
}
.ak-theme-copy-right-wrapper::after {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-theme-copy-right-content {
    text-align: center;
  }
}
.ak-theme-copy-right-content p {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-11);
  margin-bottom: 0px;
}

.ak-theme-copy-right-logo {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-theme-copy-right-logo {
    margin-top: 20px;
    justify-content: center;
  }
}
.ak-theme-copy-right-logo span {
  font-size: 18px;
  line-height: 30px;
  color: var(--clr-text-11);
  margin-inline-end: 10px;
}
@media (max-width:450px) {
  .ak-theme-copy-right-logo .copy-right-theme-logo {
    width: 65%;
  }
}
@media (max-width:450px) {
  .ak-theme-copy-right-logo .copy-right-theme-logo img {
    width: 100%;
  }
}

.bdevs:hover {
  color: var(--clr-theme-1);
}

/*------------------------------
28. cta css
------------------------------*/
.cta-area-top {
  position: relative;
  margin-top: -107px;
  z-index: 3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-area-top {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area-top {
    margin-top: 0px;
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .cta-area-top {
    margin-top: -60px;
    padding-top: 130px;
  }
}

.ak-cta-bg {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-9);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ak-cta-bg .ak-cta-bg-top-left-shape {
  position: absolute;
  top: -22px;
  left: -23px;
}
.ak-cta-bg .ak-cta-bg-dots-shape {
  position: absolute;
  top: 29px;
  left: 49%;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width:450px) {
  .ak-cta-bg .ak-cta-bg-dots-shape {
    top: 67px;
  }
}
.ak-cta-bg .ak-cta-bg-bottom-right-shape {
  position: absolute;
  bottom: -40px;
  inset-inline-end: -23px;
}
[dir=rtl] .ak-cta-bg .ak-cta-bg-bottom-right-shape {
  inset-inline-start: 0px;
}

.ak-cta-bg-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.ak-cta-content-wrapper {
  position: relative;
  z-index: 1;
  padding: 64px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-cta-content-wrapper {
    padding: 30px;
    padding-bottom: 45px;
  }
}
@media (max-width:450px) {
  .ak-cta-content-wrapper {
    padding: 27px;
  }
}

.ak-cta-details p {
  color: var(--clr-text-10);
  margin-bottom: 0px;
}

.ak-cta-heading {
  font-size: 40px;
  line-height: 1;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-cta-heading {
    font-size: 39px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-cta-heading {
    font-size: 38px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .ak-cta-heading {
    line-height: 1.2;
    font-size: 27px;
  }
}
@media (max-width:450px) {
  .ak-cta-heading {
    line-height: 1.2;
    font-size: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-cta-seach-box {
    margin-top: 30px;
  }
}
.ak-cta-seach-box .ak-cta-form {
  display: flex;
  padding: 17px 15px 19px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-inline-end: none;
}
.ak-cta-seach-box .ak-cta-form .ak-cta-form-icon {
  margin-inline-end: 10px;
}
.ak-cta-seach-box .ak-cta-form .ak-cta-form-icon i {
  color: var(--clr-theme-1);
}
.ak-cta-seach-box .ak-cta-form input {
  background: transparent;
  border: none;
  color: var(--clr-text-10);
  width: 85%;
}
.ak-cta-seach-box .ak-cta-form input::placeholder {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
}
.ak-cta-seach-box .ak-cta-form .ak-cta-search-btn {
  width: 64px;
  height: 64px;
  background: var(--clr-bg-5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  inset-inline-end: 0;
  transition: 0.3s;
}
.ak-cta-seach-box .ak-cta-form .ak-cta-search-btn i {
  font-size: 20px;
  color: var(--clr-common-white);
  transition: 0.3s;
}
.ak-cta-seach-box .ak-cta-form .ak-cta-search-btn:hover {
  background: var(--clr-common-white);
}
.ak-cta-seach-box .ak-cta-form .ak-cta-search-btn:hover i {
  color: var(--clr-text-9);
}

.ak-cta2-bg {
  background: rgba(20, 20, 20, 0.8);
}

.ak-cta2-bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.ak-cta2-bg-img img {
  width: 100%;
  height: 100%;
}
@media (max-width:450px) {
  .ak-cta2-bg-img img {
    object-fit: cover;
  }
}

.ak-cta2-button {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-cta2-button {
    margin-top: 30px;
    justify-content: flex-start;
  }
}

.ak-cta2-top-shape {
  position: absolute;
  top: 0;
  left: 47%;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-cta2-top-shape {
    display: none;
  }
}

.ak-cta2-bottom-shape {
  position: absolute;
  bottom: 2px;
  inset-inline-end: 38px;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-cta2-bottom-shape {
    display: none;
  }
}

.ak-cta3-area-top {
  position: relative;
  margin-top: -120px;
  z-index: 3;
}
@media (max-width:450px) {
  .ak-cta3-area-top {
    margin-top: -74px;
  }
}

.ak-cta3-bg {
  background: var(--clr-bg-5);
}
.ak-cta3-bg::after {
  width: 100%;
  height: 164px;
  background: linear-gradient(180deg, #C51F2C 0%, rgba(197, 31, 44, 0) 100%);
  mix-blend-mode: normal;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-cta3-bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}
.ak-cta3-bg-img img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-cta3-bg-img img {
    object-fit: cover;
  }
}

.ak-cta3-bg-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(212, 33, 47, 0.2);
}

.btn-bg-black {
  background: var(--clr-bg-9);
}

.ak-cta3-content-wrapper {
  position: relative;
  z-index: 1;
  padding: 70px 65px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-cta3-content-wrapper {
    padding: 45px 40px;
  }
}
@media (max-width: 575px) {
  .ak-cta3-content-wrapper {
    padding: 30px;
  }
}
@media (max-width:450px) {
  .ak-cta3-content-wrapper {
    padding: 27px;
  }
}

.ak-cta3-details p {
  color: var(--clr-text-8);
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-cta3-details p br {
    display: none;
  }
}

.inner-cta-area-top {
  position: relative;
  top: 100px;
  z-index: 3;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-cta-area-top {
    top: 40px;
  }
}

/*------------------------------
29. package css
------------------------------*/
.ak-package-top-shape-img {
  position: absolute;
  top: 90px;
  inset-inline-start: 59%;
  filter: grayscale(1);
  animation: rotate 15s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-package-top-shape-img {
    top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-package-top-shape-img {
    top: 35px;
    inset-inline-start: 66%;
    text-align: right;
  }
  .ak-package-top-shape-img img {
    width: 75%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-package-top-shape-img {
    display: none;
  }
}

.ak-intro-title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-intro-title-wrapper .ak-package2-btn {
    margin-bottom: 60px;
  }
}

.ak-package-tag-info {
  background: var(--clr-bg-1);
  width: 171px;
  height: 30px;
  color: var(--clr-theme-1);
  border-radius: 50px;
  font-weight: var(--bd-fw-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.ak-package-item-wrapper {
  padding: 30px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  transition: 0.4s;
}
@media (max-width:450px) {
  .ak-package-item-wrapper {
    padding: 35px 25px;
  }
}
.ak-package-item-wrapper h3 {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.4;
  color: var(--clr-text-9);
  margin-bottom: 30px;
}
.ak-package-item-wrapper .button {
  display: flex;
  justify-content: space-between;
  padding: 17px 40px;
  align-items: center;
}
.ak-package-item-wrapper .button i {
  color: var(--clr-common-white);
  font-size: 26px;
}
.ak-package-item-wrapper:hover .unfill-btn.button {
  background: var(--clr-gradient-1);
  color: var(--clr-common-white);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #141414;
}
.ak-package-item-wrapper:hover .unfill-btn.button i {
  color: var(--clr-common-white);
}
.ak-package-item-wrapper:hover .unfill-btn::before {
  opacity: 0;
  visibility: hidden;
}

.ak-internet-speed-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width:450px) {
  .ak-internet-speed-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ak-package-info {
  padding: 10px 11px 23px 11px;
}
.ak-package-info .number {
  display: inline-block;
  font-size: 48px;
  line-height: 1;
  font-weight: var(--bd-fw-bold);
  margin-inline-end: 3px;
  color: var(--clr-text-9);
  margin-bottom: 0px;
}
@media (max-width:450px) {
  .ak-package-info .number {
    font-size: 40px;
  }
}
.ak-package-info span {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-5);
  margin-top: 20px;
}

.ak-package-info-text {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  padding: 2px 11px 0px 11px;
}
.ak-package-info-text p {
  font-size: 16px;
  margin-bottom: 0px;
}

.ak-package-item {
  border: 1px solid rgba(20, 20, 20, 0.1);
}
.ak-package-item:last-child {
  border-left: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width:450px) {
  .ak-package-item:last-child {
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-top: 0;
  }
}

.ak-package-select .nice-select {
  height: 60px;
  width: 100%;
  border: none;
  padding: 0px;
  background: transparent;
  position: relative;
}
.ak-package-select .nice-select .current {
  font-size: 18px;
  line-height: 24px;
  color: var(--clr-text-9);
  font-weight: var(--bd-fw-bold);
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding-inline-end: 20px;
}
.ak-package-select .nice-select::after {
  width: 12px;
  height: 12px;
  color: var(--clr-text-11);
  top: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-package-select .nice-select::after {
    top: 10px;
  }
}
.ak-package-select .nice-select .list {
  width: 100%;
  margin-top: -10px;
  left: 0px;
  border-radius: 0px;
}
.ak-package-select .nice-select .list .option {
  font-size: 18px;
}

.ak-package-item-active {
  position: relative;
  background: var(--clr-bg-9);
  transition: 0.3s;
}
@media (max-width:450px) {
  .ak-package-item-active {
    overflow-x: clip;
  }
}
.ak-package-item-active h3 {
  color: var(--clr-common-white);
}
.ak-package-item-active .ak-package-item {
  border-color: rgba(255, 255, 255, 0.2);
}
.ak-package-item-active .ak-package-info .number {
  color: var(--clr-common-white);
}
@media (max-width:450px) {
  .ak-package-item-active .ak-package-info .number {
    font-size: 40px;
  }
}
.ak-package-item-active .ak-package-info span {
  color: var(--clr-text-10);
}
.ak-package-item-active .ak-package-tag-info {
  background: rgba(212, 33, 47, 0.1);
}
.ak-package-item-active .ak-package-info-text {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.ak-package-item-active .ak-package-info-text p {
  color: var(--clr-text-10);
}
.ak-package-item-active .ak-package-select .nice-select span {
  color: var(--clr-common-white);
}
.ak-package-item-active .ak-package-thumb-img {
  position: absolute;
  top: 25px;
  inset-inline-end: 20px;
  mix-blend-mode: luminosity;
  z-index: 1;
}
@media (max-width:450px) {
  .ak-package-item-active .ak-package-thumb-img {
    top: 15px;
    inset-inline-end: 8px;
  }
}
.ak-package-item-active .ak-package-active-shape-img {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  opacity: 0.1;
}
[dir=rtl] .ak-package-item-active .ak-package-active-shape-img {
  transform: rotate(-90deg);
}
@media (max-width:450px) {
  .ak-package-item-active .ak-package-active-shape-img {
    inset-inline-end: -30px;
  }
}
.ak-package-item-active:hover .unfill-btn.button {
  background: linear-gradient(180deg, rgba(197, 31, 44, 0) 0%, rgba(254, 92, 83, 0) 100%);
}
.ak-package-item-active:hover .unfill-btn.button.white {
  transform: translate(0px, 0px);
  box-shadow: none;
}
.ak-package-item-active:hover .unfill-btn::before {
  opacity: 1;
  visibility: visible;
}

.ak-package-item-btn .button {
  display: inline-flex;
  justify-content: space-between;
  padding: 17px 40px;
}
@media (max-width:450px) {
  .ak-package-item-btn .button {
    padding: 17px 20px;
  }
}
.ak-package-item-btn .button i {
  font-size: 26px;
  color: var(--clr-theme-1);
}
.ak-package-item-btn .button:hover i {
  color: var(--clr-common-white);
}

@media (max-width:450px) {
  .package2-item-active .button {
    padding: 17px 20px;
  }
}
.package2-item-active .button:focus {
  color: var(--clr-common-white);
}

.ak-package3-item {
  border: 1px solid #141414;
  padding: 25px 30px 20px 30px;
  background-color: var(--clr-common-white);
  position: relative;
  height:100%
}
@media (max-width:450px) {
  .ak-package3-item {
    padding: 35px 35px 35px 35px;
  }
}
.ak-package3-item::after {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  z-index: -1;
  transition: 0.4s;
}
.ak-package3-item .button {
  text-align: center;
}
.ak-package3-item:hover .unfill-btn.button {
  background: var(--clr-gradient-1);
  color: var(--clr-common-white);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px 0px #141414;
}
.ak-package3-item:hover .unfill-btn.button i {
  color: var(--clr-common-white);
}
.ak-package3-item:hover .unfill-btn::before {
  opacity: 0;
  visibility: hidden;
}

.ak-package3-item-heading {
  padding-bottom: 18px;
}
.ak-package3-item-heading h3 {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  color: var(--clr-text-9);
  margin-bottom: 5px;
}
.ak-package3-item-heading span {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-theme-1);
}

.ak-package3-item-price {
  padding: 18px 0;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}
.ak-package3-item-price span {
  font-size: 24px;
  line-height: 2;
  color: var(--clr-text-5);
}
.ak-package3-item-price h2 {
  font-size: 72px;
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  color: var(--clr-text-9);
  margin-inline-start: 5px;
}
.ak-package3-item-price .ak-package3-item-price-date {
  font-weight: var(--bd-fw-medium);
  line-height: 32px;
  color: var(--clr-text-5);
  margin-top: 35px;
  margin-inline-start: 10px;
}

.ak-package3-item-price-list {
  padding-top: 30px;
}
.ak-package3-item-price-list ul li {
  list-style: none;
  font-size: 15px;
  line-height: 24px;
  color: var(--clr-text-5);
  margin-bottom: 17px;
  padding-inline-start: 30px;
  position: relative;
}
.ak-package3-item-price-list ul li i {
  width: 17px;
  height: 17px;
  background: linear-gradient(180deg, #C51F2C 0%, #FE5C53 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 17px;
  margin-inline-end: 6px;
  position: absolute;
  top: 15px;
  inset-inline-start: 0;
  transform: translateY(-50%);
}

.ak-package3-item-btn .ak-home2-unfill-btn {
  justify-content: center;
  padding: 20px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-package3-item-btn .ak-home2-unfill-btn {
    padding: 20px 33px;
  }
}
@media (max-width:450px) {
  .ak-package3-item-btn .ak-home2-unfill-btn {
    padding: 15px 28px;
  }
}

.ak-package3-item-active {
  background-color: var(--clr-bg-9);
  padding-bottom: 39px;
}
.ak-package3-item-active::after {
  display: none;
}
.ak-package3-item-active .ak-package3-item-heading h3 {
  color: var(--clr-common-white);
}
.ak-package3-item-active .ak-package3-item-price {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ak-package3-item-active .ak-package3-item-price span {
  color: var(--clr-text-10);
}
.ak-package3-item-active .ak-package3-item-price h2 {
  color: var(--clr-common-white);
}
.ak-package3-item-active .ak-package3-item-price .ak-package3-item-price-date {
  color: var(--clr-text-11);
}
.ak-package3-item-active .ak-package3-item-price-list ul li {
  color: var(--clr-common-white);
  padding-inline-start: 30px;
  position: relative;
}
.ak-package3-item-active .ak-package3-item-price-list ul li i {
  position: absolute;
  top: 15px;
  inset-inline-start: 0;
  transform: translateY(-50%);
}
.ak-package3-item-active .ak-package-active-item-btn .button {
  padding: 19px 40px;
}
.ak-package3-item-active:hover .unfill-btn.button {
  background: linear-gradient(180deg, rgba(197, 31, 44, 0) 0%, rgba(254, 92, 83, 0) 100%);
}
.ak-package3-item-active:hover .unfill-btn.button.white {
  transform: translate(0px, 0px);
  box-shadow: none;
}
.ak-package3-item-active:hover .unfill-btn::before {
  opacity: 1;
  visibility: visible;
}
.ak-package3-item-active .ak-package3-new-img {
  position: absolute;
  top: -10px;
  inset-inline-end: 50px;
}
@media (max-width:450px) {
  .ak-package3-item-active .ak-package3-new-img {
    top: -8px;
    inset-inline-end: 10px;
  }
  .ak-package3-item-active .ak-package3-new-img img {
    width: 80%;
  }
}

.ak-package3-left-shape {
  position: absolute;
  top: 260px;
  inset-inline-start: 240px;
  animation: rotate 15s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-package3-left-shape {
    display: none;
  }
}

.ak-package3-right-shape {
  position: absolute;
  bottom: 50%;
  inset-inline-end: 0;
  transform: translateY(50%);
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-package3-right-shape {
    display: none;
  }
}

.ak-package4-bg {
  background: var(--clr-bg-10);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .package4-item {
    padding: 35px 30px 35px 30px;
  }
}
.package4-item::after {
  display: none;
}
.package4-item .ak-package3-item-price-list {
  padding: 40px 0px 25px 0px;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}
.package4-item .ak-package3-item-price-list ul li {
  padding-inline-start: 30px;
  position: relative;
}
.package4-item .ak-package3-item-price-list ul li i {
  width: 18px;
  height: 18px;
  line-height: 19px;
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}
.package4-item .ak-package3-item-price span {
  line-height: 3.3;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .package4-item .ak-package3-item-price span {
    line-height: 2.3;
  }
}
.package4-item .ak-package3-item-price {
  border: none;
}
.package4-item .ak-package3-item-price h2 {
  font-size: 96px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .package4-item .ak-package3-item-price h2 {
    font-size: 76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .package4-item .ak-package3-item-price h2 {
    font-size: 70px;
  }
}
@media (max-width:450px) {
  .package4-item .ak-package3-item-price h2 {
    font-size: 60px;
  }
}
.package4-item .ak-offer-price-point {
  font-size: 48px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-inline-start: 8px;
  position: relative;
  top: 19px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .package4-item .ak-offer-price-point {
    font-size: 38px;
    top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .package4-item .ak-offer-price-point {
    font-size: 32px;
    top: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .package4-item .ak-offer-price-point {
    font-size: 32px;
    top: 16px;
  }
}
@media (max-width: 575px) {
  .package4-item .ak-offer-price-point {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .package4-item .ak-offer-price-point {
    font-size: 30px;
    top: 10px;
  }
}
.package4-item .ak-offer-price-date {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-11);
  display: block;
  margin-top: 10px;
}
@media (max-width:450px) {
  .package4-item .ak-offer-price-date {
    margin-top: 6px;
  }
}

.ak-package4-item-content {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-package4-item-active {
    padding: 35px 30px 35px 30px;
  }
}
.ak-package4-item-active .ak-package4-item-active-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
}
.ak-package4-item-active .ak-package4-item-active-img::after {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.ak-package4-item-active .ak-package4-item-active-img img {
  width: 100%;
  height: 100%;
}
.ak-package4-item-active .ak-package3-item-price-list {
  padding: 40px 0px 25px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ak-package4-item-active .ak-package3-item-price-list ul li {
  padding-inline-start: 30px;
  position: relative;
}
.ak-package4-item-active .ak-package3-item-price-list ul li i {
  width: 18px;
  height: 18px;
  line-height: 19px;
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
}
.ak-package4-item-active .ak-package3-item-price span {
  line-height: 3.3;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-package4-item-active .ak-package3-item-price span {
    line-height: 2.3;
  }
}
.ak-package4-item-active .ak-package3-item-price {
  border: none;
}
.ak-package4-item-active .ak-package3-item-price h2 {
  font-size: 96px;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-package4-item-active .ak-package3-item-price h2 {
    font-size: 76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-package4-item-active .ak-package3-item-price h2 {
    font-size: 70px;
  }
}
@media (max-width:450px) {
  .ak-package4-item-active .ak-package3-item-price h2 {
    font-size: 60px;
  }
}
.ak-package4-item-active .ak-offer-price-point {
  font-size: 48px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-inline-start: 8px;
  position: relative;
  top: 19px;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-package4-item-active .ak-offer-price-point {
    font-size: 38px;
    top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-package4-item-active .ak-offer-price-point {
    font-size: 32px;
    top: 11px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-package4-item-active .ak-offer-price-point {
    font-size: 32px;
    top: 16px;
  }
}
@media (max-width: 575px) {
  .ak-package4-item-active .ak-offer-price-point {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .ak-package4-item-active .ak-offer-price-point {
    font-size: 30px;
    top: 10px;
  }
}
.ak-package4-item-active .ak-offer-price-date {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-11);
  display: block;
  margin-top: 10px;
}
@media (max-width:450px) {
  .ak-package4-item-active .ak-offer-price-date {
    margin-top: 6px;
  }
}

/*------------------------------
30. broadband css
------------------------------*/
.ak-broadband-bg {
  background: var(--clr-bg-21);
  position: relative;
}
.ak-broadband-bg_1 {
  background: var(--clr-bg-22);
  position: relative;
}
.ak-broadband-bg_23 {
  background: var(--clr-bg-23);
  position: relative;
  padding:60px 0 0 0;
}
.ak-broadband-bg.is-bottom {
  padding-bottom: 245px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-broadband-bg.is-bottom {
    padding-bottom: 220px;
  }
}

.ak-broadband-right-shape {
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  transform: translateY(-50%);
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .ak-broadband-right-shape img {
  transform: rotate(-180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-broadband-right-shape {
    display: none;
  }
}

.ak-broadband-accordion-wrapper #accordionExample {
  --bs-accordion-bg: transparent;
}
.ak-broadband-accordion-wrapper .accordion-button {
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  transition: 0.3s;
}
.ak-broadband-accordion-wrapper .accordion-button:hover {
  border-bottom: 1px solid #141414;
}
.ak-broadband-accordion-wrapper .accordion-collapse {
  background: var(--clr-common-white);
}
.ak-broadband-accordion-wrapper .accordion-button.collapsed {
  color: var(--clr-text-9);
  font-weight: var(--bd-fw-bold);
  font-size: var(--bd-fs-h4);
  transition: 0.3s;
  padding: 24px 30px 23px 30px;
  position: relative;
}
@media (max-width:450px) {
  .ak-broadband-accordion-wrapper .accordion-button.collapsed {
    padding: 24px 15px 23px 15px;
  }
}
.ak-broadband-accordion-wrapper .accordion-button.collapsed::after {
  width: 100%;
  border: 1px solid var(--clr-bg-9);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 2;
}
.ak-broadband-accordion-wrapper .accordion-button.collapsed .ak-accordion-number {
  color: var(--clr-theme-1);
  margin-inline-end: 12px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.ak-broadband-accordion-wrapper .accordion-button.collapsed .ak-accordion-heading {
  transition: 0.3s;
}
.ak-broadband-accordion-wrapper .accordion-button.collapsed:hover .ak-accordion-heading {
  margin-inline-start: 40px;
}
.ak-broadband-accordion-wrapper .accordion-button.collapsed:hover .ak-accordion-number {
  opacity: 1;
  visibility: visible;
}
.ak-broadband-accordion-wrapper .accordion-button::after {
  display: none;
}
.ak-broadband-accordion-wrapper .accordion-button:not(.collapsed)::after {
  display: none;
}
.ak-broadband-accordion-wrapper .accordion-item:first-of-type .accordion-button {
  border-radius: 0px;
  color: var(--clr-text-9);
  font-weight: 700;
  font-size: 20px;
}
.ak-broadband-accordion-wrapper .accordion-item:first-of-type .accordion-button .ak-accordion-number {
  color: var(--clr-theme-1);
  margin-inline-end: 12px;
}
.ak-broadband-accordion-wrapper .accordion-item:first-of-type .accordion-button:hover .ak-accordion-number {
  opacity: 1;
  visibility: visible;
}
.ak-broadband-accordion-wrapper .accordion-item:first-of-type {
  border: 0px;
}
.ak-broadband-accordion-wrapper .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.ak-broadband-accordion-wrapper .accordion-button:not(.collapsed) {
  color: var(--clr-text-9);
  box-shadow: none;
  border-bottom: none;
  font-size: 20px;
  font-weight: var(--bd-fw-bold);
  padding: 35px 0px 0px 30px;
  background: var(--clr-common-white);
}
.ak-broadband-accordion-wrapper .accordion-button:not(.collapsed) .ak-accordion-number {
  color: var(--clr-theme-1);
  margin-inline-end: 12px;
}
[dir=rtl] .ak-broadband-accordion-wrapper .accordion-button:not(.collapsed) {
  padding-inline-start: 30px;
}
.ak-broadband-accordion-wrapper .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: transparent;
}
.ak-broadband-accordion-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}
.ak-broadband-accordion-wrapper .ak-accordion-bofy-button {
  position: relative;
  z-index: 3;
}
.ak-broadband-accordion-wrapper .accordion-body {
  position: relative;
  padding: 25px 10px 25px 25px;
}
[dir=rtl] .ak-broadband-accordion-wrapper .accordion-body {
  padding-inline-start: 25px;
}
.ak-broadband-accordion-wrapper .accordion-body .ak-accourdion-body-shape {
  position: absolute;
  bottom: -8px;
  inset-inline-end: -4px;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-broadband-accordion-wrapper .accordion-body .ak-accourdion-body-shape {
    display: none;
  }
}
.ak-broadband-accordion-wrapper .accordion-body .ak-accordion-body-content {
  position: relative;
  z-index: 1;
}

.ak-broadband-img-wrapper {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-broadband-img-wrapper {
    margin-top: 60px;
  }
}
.ak-broadband-img-wrapper img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.ak-broadband-img-wrapper::after {
  width: 100%;
  height: 100%;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
}

.ak-broadband-area.is-top {
  padding-top: 220px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-broadband-area.is-top {
    padding-top: 110px !important;
  }
}

.experience-accordion-wrap .accordion-body {
  padding: 35px 25px 15px 25px;
}

/*------------------------------
31. counter css
------------------------------*/
.ak-counter2-area-top {
  position: relative;
  margin-top: -107px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter2-area-top {
    margin-top: -80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-counter2-area-top {
    margin-top: -165px;
  }
}

.ak-counter2-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ak-counter2-bg-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
.ak-counter2-bg-overlay .ak-counter2-bg-top-left-shape {
  position: absolute;
  top: -22px;
  left: -23px;
}
@media (max-width: 575px) {
  .ak-counter2-bg-overlay .ak-counter2-bg-top-left-shape {
    top: -35px;
  }
}
.ak-counter2-bg-overlay .ak-counter2-bg-dots-shape {
  position: absolute;
  top: 29px;
  left: 49%;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 575px) {
  .ak-counter2-bg-overlay .ak-counter2-bg-dots-shape {
    display: none;
  }
}
.ak-counter2-bg-overlay .ak-counter2-bg-bottom-right-shape {
  position: absolute;
  bottom: -40px;
  inset-inline-end: -23px;
}
[dir=rtl] .ak-counter2-bg-overlay .ak-counter2-bg-bottom-right-shape {
  inset-inline-start: -23px;
}

.ak-counter2-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 57px 0px 60px 0px;
}

.ak-counter2-item {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter2-item {
    margin-bottom: 30px;
  }
}
.ak-counter2-item .ak-counter2-number-wrapper {
  display: flex;
}
.ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
  color: var(--clr-text-8);
  font-size: 96px;
  font-weight: var(--bd-fw-bold);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
    font-size: 76px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
    font-size: 86px;
  }
}
@media (max-width:450px) {
  .ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
    font-size: 66px;
  }
}
.ak-counter2-item .ak-counter2-number-wrapper .count-text {
  font-size: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .ak-counter2-item .ak-counter2-number-wrapper .count-text {
    font-size: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter2-item .ak-counter2-number-wrapper .count-text {
    font-size: 66px;
  }
}
@media (max-width:450px) {
  .ak-counter2-item .ak-counter2-number-wrapper .count-text {
    font-size: 48px;
  }
}
.ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-plus {
  color: var(--clr-theme-1);
  font-size: 36px;
  position: relative;
  top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-plus {
    top: 15px;
  }
}
@media (max-width:450px) {
  .ak-counter2-item .ak-counter2-number-wrapper .ak-counter2-plus {
    top: 10px;
  }
}
.ak-counter2-item .counter-text p {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
  margin-bottom: 0px;
  margin-top: 25px;
  line-height: 24px;
}
@media (max-width: 575px) {
  .ak-counter2-item .counter-text p {
    margin-top: 22px;
  }
}

.ak-counter3-bg1 {
  background: var(--clr-bg-9);
  overflow: hidden;
}

.ak-counter3-bg1-overlay {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}

.ak-counter3-bg-round-wrapper .ak-counter3-bg-round-1 {
  width: 491px;
  height: 382px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  top: 0px;
  left: 126px;
}
.ak-counter3-bg-round-wrapper .ak-counter3-bg-round-2 {
  width: 683px;
  height: 230px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  top: -100px;
  inset-inline-end: 88px;
}
@media (max-width:450px) {
  .ak-counter3-bg-round-wrapper .ak-counter3-bg-round-2 {
    top: 500px;
    inset-inline-end: 28px;
  }
}
.ak-counter3-bg-round-wrapper::after {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.bd-ud-counter-item-wrapper {
  padding: 65px 0px 55px 0px;
  position: relative;
  z-index: 1;
}

.counter_item {
  display: flex;
  align-items: center;
  padding-inline-start: 28px;
  padding-inline-end: 28px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter_item {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .counter_item {
    flex-direction: column;
    text-align: center;
    margin: 35px 0px;
  }
}
.counter_item::before {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  inset-inline-end: -12px;
  content: "";
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .counter_item::before {
    display: none;
  }
}
.counter_item .counter_canvas {
  position: relative;
}
.counter_item .counter_canvas canvas {
  -webkit-transform: rotate(110deg);
  -moz-transform: rotate(110deg);
  -ms-transform: rotate(110deg);
  -o-transform: rotate(110deg);
  transform: rotate(110deg);
}
@media (max-width: 575px) {
  .counter_item .counter_canvas canvas {
    width: 120px;
    height: 120px;
  }
}
@media (max-width:450px) {
  .counter_item .counter_canvas canvas {
    width: 100px;
    height: 100px;
  }
}
.counter_item .counter_percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 36px;
  color: var(--clr-common-white);
  font-weight: var(--bd-fw-bold);
  line-height: 70px;
  -webkit-transform: translate(-50%, -55%);
  -moz-transform: translate(-50%, -55%);
  -ms-transform: translate(-50%, -55%);
  -o-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
}
@media (max-width: 575px) {
  .counter_item .counter_percentage {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .counter_item .counter_percentage {
    font-size: 25px;
  }
}
.counter_item .bd-ud-counter-title {
  color: var(--clr-text-10);
  margin-inline-start: 20px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .counter_item .bd-ud-counter-title {
    margin-top: 20px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .counter_item .bd-ud-counter-title {
    margin-top: 15px;
  }
}
.counter_item:last-child .counter_canvas canvas {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.counter_item .counter_canvas {
  text-align: center;
}

.row [class*=col-]:last-child .counter_item::before {
  display: none;
}

.ak-counter4-bg {
  background: var(--clr-bg-5);
  position: relative;
}
.ak-counter4-bg .ak-counter4-bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.ak-counter4-bg .ak-counter4-bg-img img {
  width: 100%;
  height: 100%;
}

.ak-counter4-content-wrapper {
  padding: 55px 0px 59px 0px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-counter4-content-wrapper {
    padding: 45px 0px 29px 0px;
  }
}

.ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
  font-size: 96px;
  color: var(--clr-text-8);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), md {
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
    font-size: 86px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
    font-size: 76px;
    margin-bottom: 30px;
  }
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-number-inner .count-text {
    font-size: 59px;
  }
}
@media (max-width:450px) {
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-number-inner {
    font-size: 66px;
    margin-bottom: 30px;
  }
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-number-inner .count-text {
    font-size: 50px;
  }
}
.ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-plus {
  color: var(--clr-common-white);
  top: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-plus {
    top: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-counter4-item .ak-counter2-number-wrapper .ak-counter2-plus {
    top: 15px;
  }
}
.ak-counter4-item .counter-text p {
  color: var(--clr-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-counter4-item .counter-text p {
    margin-top: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-counter4-item .counter-text p {
    margin-top: 23px;
  }
}
@media (max-width:450px) {
  .ak-counter4-item .counter-text p {
    margin-top: 17px;
  }
}

.counter4-border {
  position: relative;
}
.counter4-border::after {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  content: "";
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .counter4-border::after {
    display: none;
  }
}
.counter4-border::before {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .counter4-border::before {
    display: none;
  }
}

.ak-counter4-left-shape {
  position: absolute;
  top: 0;
  inset-inline-start: 5%;
  opacity: 0.3;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-counter4-left-shape {
    display: none;
  }
}

.ak-counter4-middle-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  [dir=rtl] .ak-counter4-middle-shape {
    inset-inline-start: -90px;
    left: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  [dir=rtl] .ak-counter4-middle-shape {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-counter4-middle-shape {
    left: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-counter4-middle-shape {
    left: 33px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .ak-counter4-middle-shape {
    display: none;
  }
}
.ak-counter4-middle-shape img {
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.ak-counter4-right-shape {
  position: absolute;
  bottom: 0px;
  inset-inline-end: 50px;
  opacity: 0.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-counter4-right-shape {
    display: flex;
    justify-content: flex-end;
  }
  .ak-counter4-right-shape img {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-counter4-right-shape {
    display: none;
  }
}
.ak-counter4-right-shape img {
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*------------------------------
32. offer css
------------------------------*/
.ak-offer-bg {
  width: 100%;
  background: #005e9b;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-offer-bg {
    min-height: 200px;
  }
}
.ak-offer-bg .ak-offer-bg-overlay-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  /*background-attachment: fixed;
  background-position: top;*/
}
.ak-offer-bg .ak-offer-bg-overlay-img::after {
  width: 50%;
  height: 100%;
  background: rgba(0, 129, 172, 0.8);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-offer-bg .ak-offer-bg-overlay-img::after {
    width: 100%;
  }
}

.ak-offer-content-wrapper {
  position: relative;
  z-index: 1;
}
.ak-offer-content-wrapper .main-title {
  color: var(--clr-common-white);
}
.ak-offer-content-wrapper p {
  width: 600px;
  color: var(--clr-text-15);
  padding-bottom: 35px;
  margin-bottom: 0px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-offer-content-wrapper p {
    width: auto;
  }
}
.ak-offer-content-wrapper p::after {
  width: 100%;
  border: 1px solid rgba(250, 250, 250, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
}
.ak-offer-content-wrapper .ak-offer-content-price-wrapper {
  display: flex;
  padding-top: 30px;
}
.ak-offer-content-wrapper .ak-offer-content-price-wrapper .ak-offer-content-price-icon {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:450px) {
  .ak-offer-content-wrapper .ak-offer-content-price-wrapper .ak-offer-content-price-icon {
    width: 76px;
    height: 76px;
  }
  .ak-offer-content-wrapper .ak-offer-content-price-wrapper .ak-offer-content-price-icon img {
    width: 60%;
  }
}

.ak-offer-content-price {
  display: flex;
  margin-inline-start: 13px;
}
.ak-offer-content-price span {
  font-size: 24px;
  color: var(--clr-text-10);
  line-height: 76px;
}
@media (max-width:450px) {
  .ak-offer-content-price span {
    line-height: 56px;
  }
}
.ak-offer-content-price h2 {
  font-size: 70px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
}
@media (max-width:450px) {
  .ak-offer-content-price h2 {
    font-size: 60px;
  }
}
.ak-offer-content-price .ak-offer-price-point {
  font-size: 22px;
  line-height: 1;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  margin-top: 35px;
  margin-inline-start: 7px;
}
@media (max-width:450px) {
  .ak-offer-content-price .ak-offer-price-point {
    margin-top: 22px;
  }
}
.ak-offer-content-price .ak-offer-price-point .ak-offer-price-date {
  font-size: 14px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-11);
  margin-top: 8px;
  display: block;
}

.ak-offer-img-wrapper {
  display: flex;
  justify-content: end;
  margin-right: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-offer-img-wrapper {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-offer-img-wrapper {
    justify-content: center;
    margin-right: 0px;
  }
}
.ak-offer-img-wrapper .ak-offer-img-border {
  width: 416px;
  height: 416px;
  background: rgba(250, 250, 250, 0.24);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-offer-img-wrapper .ak-offer-img-border {
    width: 390px;
    height: 390px;
  }
}
@media (max-width: 575px) {
  .ak-offer-img-wrapper .ak-offer-img-border {
    width: 300px;
    height: 300px;
  }
}
.ak-offer-img-wrapper .ak-offer-img-border .ak-offer-border-inner-img {
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.ak-offer-img-wrapper .ak-offer-img-border .ak-offer-border-inner-img:after {
  width: 100%;
  height: 100%;
  background: rgba(21, 20, 28, 0.3);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.ak-offer-img-wrapper .ak-offer-img-border .ak-offer-border-inner-img img {
  width: 100%;
}
.ak-offer-img-wrapper .ak-offer-round-text-img {
  position: absolute;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
}
.ak-offer-img-wrapper .ak-offer-round-text-img img {
  width: 100%;
  animation: rotate-infinite 200s linear infinite reverse;
}
.ak-offer-img-wrapper .ak-offer-round-text-img {
  animation: rotate-infinite 15s linear infinite;
}
.ak-offer-img-wrapper .ak-offer-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ak-offer-img-wrapper .ak-offer-play-icon i {
  font-size: 60px;
  color: var(--clr-common-white);
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-offer-img-wrapper .ak-offer-play-icon i {
    font-size: 40px;
  }
}
@media (max-width:450px) {
  .ak-offer-img-wrapper .ak-offer-play-icon i {
    font-size: 30px;
  }
}
.ak-offer-img-wrapper .ak-offer-play-icon:hover i {
  color: var(--clr-theme-1);
}

.ak-offer4-bg .ak-offer-bg-overlay-img::after {
  width: 40%;
  height: 100%;
  background: rgba(21, 20, 28, 0.8);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  content: "";
  z-index: -1;
  display: none;
}
.ak-offer4-bg .ak-offer-bg-overlay-img::before {
  width: 37%;
  height: 100%;
  background: rgba(0, 129, 172, 0.8);
  position: absolute;
  top: 0;
  inset-inline-start: 13%;
  content: "";
}
@media only screen and (min-width: 1601px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-offer4-bg .ak-offer-bg-overlay-img::before {
    width: 50%;
    inset-inline-start: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-offer4-bg .ak-offer-bg-overlay-img::before {
    width: 100%;
    inset-inline-start: 0px;
    background: rgba(21, 20, 28, 0.6);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-offer-content {
    margin-top: 60px;
  }
}
.service-offer-content p {
  color: var(--clr-text-13);
  margin-bottom: 30px;
}

/*------------------------------
33. news css
------------------------------*/
.ak-news-bg {
  background: var(--clr-bg-10);
}

.ak-news-left-shape {
  position: absolute;
  top: 75px;
  left: 0;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .ak-news-left-shape {
  animation-name: ak-bg-img-move-y;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-news-left-shape {
    display: none;
  }
}

.ak-news-item:hover .ak-news-item-img img {
  transform: scale(1.14);
}

.ak-news-item-img {
  position: relative;
  overflow: hidden;
}
.ak-news-item-img img {
  transition: 0.4s;
  width: 100%;
}

.ak-news-meta-box {
  display: flex;
  align-items: center;
  background: var(--clr-bg-5);
  padding: 8px 11px;
  position: absolute;
  bottom: 0;
  inset-inline-start: 25px;
  z-index: 1;
}
.ak-news-meta-box .ak-news-meta-icon {
  line-height: 1;
}
.ak-news-meta-box .ak-news-meta-text {
  font-family: var(--bd-ff-secondary);
  color: var(--clr-common-white);
  margin-inline-start: 10px;
}

.ak-news-item-content {
  width: 96%;
  background: var(--clr-common-white);
  padding: 42px 25px 32px 25px;
  position: relative;
  margin-top: -19px;
}
.ak-news-item-content h4 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.6;
  color: var(--clr-text-12);
  margin-bottom: 25px;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-news-item-content h4 {
    font-size: 20px;
  }
}
.ak-news-item-content h4 a {
  transition: 0.4s;
}
.ak-news-item-content h4 a:hover {
  color: var(--clr-theme-1);
}

.ak-blog-author a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.ak-blog-author a .ak-blog-author-icon {
  line-height: 1;
}
.ak-blog-author a .ak-blog-author-icon i {
  font-size: 22px;
  color: rgba(67, 66, 72, 0.5);
}
.ak-blog-author a .ak-blog-author-text {
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-5);
}
.ak-blog-author a:hover .ak-blog-author-text {
  color: var(--clr-theme-1);
}

.ak-news4-bg::after {
  width: 50%;
  height: 100%;
  background: var(--clr-bg-1);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  content: "";
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-news4-bg::after {
    width: 100%;
    z-index: -1;
  }
}

.news4-section-title .ak-sub-title4 {
  color: var(--clr-text-11);
}

.ak-news4-active {
  margin-inline-end: -400px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-news4-active {
    margin-inline-end: 0px;
  }
}

.ak-news4-button-prev {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 20, 28, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  inset-inline-start: 0px;
  transition: 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-news4-button-prev {
    width: 38px;
    height: 38px;
    font-size: 23px;
    bottom: 6px;
  }
}
.ak-news4-button-prev:hover {
  background: var(--clr-bg-13);
  color: var(--clr-text-14);
}

.ak-news4-button-next {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 20, 28, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  inset-inline-start: 60px;
  transition: 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-news4-button-next {
    width: 38px;
    height: 38px;
    font-size: 23px;
    bottom: 6px;
  }
}
.ak-news4-button-next:hover {
  background: var(--clr-bg-13);
  color: var(--clr-text-14);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-news4-content-wrapper p br {
    display: none;
  }
}

.inner-news-are.is-bottom {
  padding-bottom: 235px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-news-are.is-bottom {
    padding-bottom: 165px;
  }
}

.inner-blog-item-content {
  background: var(--clr-bg-10);
}
.inner-blog-item-content .ak-blog-author .ak-blog-author-text {
  color: var(--clr-text-5);
}

/*------------------------------
34. contact css
------------------------------*/
.ak-contact-bg {
  padding-bottom: 250px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-bg {
    padding-bottom: 210px;
  }
}
.ak-contact-bg::after {
  width: 50%;
  height: 100%;
  background: var(--clr-bg-10);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-bg::after {
    width: 100%;
  }
}

.ak-contact-form-wrapper {
  margin-inline-end: 54px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-form-wrapper {
    margin-inline-end: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-form-wrapper {
    margin-bottom: 70px;
  }
}

.contact-from-input {
  margin-bottom: 25px;
}
.contact-from-input input {
  width: 100%;
  border: none;
  padding: 10px 12px;
  outline: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: var(--clr-text-5);
  border-bottom: 1px solid #000000;
}
.contact-from-input input::placeholder {
  color: var(--clr-text-5);
}
.contact-from-input input:focus {
  border-bottom: 2px solid #D4212F;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact-from-input input:focus::placeholder {
  color: rgba(212, 33, 47, 0.3);
}
.contact-from-input textarea {
  height: 60px;
  width: 100%;
  border: none;
  padding: 15px 20px;
  outline: 0;
  min-height: 215px;
  color: rgba(212, 33, 47, 0.7);
  resize: none;
  border-bottom: 1px solid #000000;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-from-input textarea::placeholder {
  color: var(--clr-text-5);
}
.contact-from-input textarea:focus {
  border-bottom: 2px solid #D4212F;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.contact-from-input textarea:focus::placeholder {
  color: rgba(212, 33, 47, 0.3);
}

.contact-select {
  position: relative;
}
.contact-select .nice-select {
  height: 60px;
  width: 100%;
  background: var(--clr-common-white);
  border: none;
  padding: 15px 15px;
  outline: 0;
  color: var(--clr-text-5);
  position: relative;
  appearance: none;
  font-size: 16px;
  line-height: 28px;
  border-bottom: 1px solid #000000;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .contact-select .nice-select {
    margin-bottom: 25px;
  }
}
.contact-select .nice-select::after {
  width: 10px;
  height: 10px;
  inset-inline-end: 20px;
  border-bottom: 2px solid #4D4D4D;
  border-right: 2px solid #4D4D4D;
  margin-top: -8px;
}
.contact-select .nice-select .list {
  width: 100%;
  border-radius: 0px;
}
.contact-select .nice-select:focus {
  border-bottom: 2px solid #D4212F;
}

.ak-contact-img-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 20px;
  margin-inline-start: 30px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-img-wrapper {
    margin-inline-start: 0px;
    position: relative;
    z-index: 1;
  }
}
.ak-contact-img-wrapper::after {
  width: 290px;
  height: 452px;
  border: 1px solid #D4212F;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px) {
  .ak-contact-img-wrapper::after {
    display: none;
  }
}

.ak-contact-img {
  max-width: 290px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-img {
    max-width: 100%;
  }
}
.ak-contact-img img {
  width: 100%;
}

.ak-contact-img-shape1 {
  position: absolute;
  top: 120px;
  inset-inline-end: -33px;
  z-index: -1;
  animation: rotate 15s linear infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-img-shape1 {
    display: none;
  }
}

.ak-contact-img-shape2 {
  position: absolute;
  bottom: 10px;
  left: 61%;
  z-index: -1;
  animation: rotate 15s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-contact-img-shape2 {
    bottom: -80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-contact-img-shape2 {
    bottom: -55px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-contact-img-left {
    width: 45%;
  }
  .ak-contact-img-left .ak-contact-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-img-left {
    width: 100%;
  }
  .ak-contact-img-left img {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-contact-img-right {
    width: 45%;
  }
  .ak-contact-img-right .ak-contact-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-img-right {
    width: 100%;
  }
  .ak-contact-img-right img {
    width: 100%;
  }
}

.ak-contact-info-area.is-top {
  padding-top: 190px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-info-area.is-top {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-contact-info-area.is-top {
    padding-top: 70px;
  }
}

.contact-info-item {
  text-align: center;
  padding: 40px 28px 30px 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  position: relative;
}
.contact-info-item .contact-info-item-overlay {
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  inset-inline-end: 0;
  left: auto;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 0.6s ease-out 0s;
  background-color: var(--clr-bg-9);
  overflow: hidden;
  filter: grayscale(1);
}
.contact-info-item .contact-info-item-overlay::before {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
  content: "";
}
.contact-info-item:hover .contact-info-item-overlay {
  width: 100%;
  inset-inline-end: auto;
  left: 0;
}
.contact-info-item:hover .contact-info-item-content path {
  fill: var(--clr-common-white);
}
.contact-info-item:hover .contact-info-item-content h4 {
  color: var(--clr-common-white);
}
.contact-info-item:hover .contact-info-item-content p {
  color: var(--clr-common-white);
}

.info-item-img path {
  transition: 0.4s;
}

.info-item-icon {
  width: 37px;
  height: 37px;
  background: var(--clr-gradient-1);
  border-radius: 6px;
  position: absolute;
  top: 58%;
  inset-inline-end: -50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
[dir=rtl] .info-item-icon {
  inset-inline-end: 50%;
}
.info-item-icon::after {
  width: 16px;
  height: 16px;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 11px;
  left: -10px;
  content: "";
  clip-path: polygon(0 50%, 70% 100%, 70% 0);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-item-icon::after {
    top: 10px;
  }
}
.info-item-icon i {
  font-size: 20px;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .info-item-icon i {
    font-size: 18px;
  }
}

.contact-info-item-content h4 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  margin-bottom: 25px;
}
.contact-info-item-content p {
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .contact-info-item-content p br {
    display: none;
  }
}

.contact-map-area.is-bottom {
  padding-bottom: 235px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .contact-map-area.is-bottom {
    padding-bottom: 165px;
  }
}

.contact-map-content-wrap {
  background: var(--clr-bg-10);
}

.ak-contact-map iframe {
  width: 100%;
  min-height: 691px;
  mix-blend-mode: luminosity;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-contact-map iframe {
    min-height: 470px;
    max-height: 470px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .ak-contact-map iframe {
    min-height: 370px;
    max-height: 370px;
    margin-bottom: 40px;
  }
}
@media (max-width:450px) {
  .ak-contact-map iframe {
    min-height: 270px;
    max-height: 270px;
  }
}

.map-form-wrapper {
  padding: 0 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .map-form-wrapper {
    padding: 60px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .map-form-wrapper {
    padding: 60px 20px;
  }
}
.map-form-wrapper .ak-contact-form-wrapper {
  margin-inline-end: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .map-form-wrapper .ak-contact-form-wrapper {
    margin-bottom: 0px;
  }
}
.map-form-wrapper .ak-contact-form-wrapper .contact-from-input textarea {
  min-height: 215px;
}

/*------------------------------
35. order css
------------------------------*/
.ak-order-bg {
  background: var(--clr-bg-9);
  overflow: hidden;
}

.ak-order-shape {
  position: absolute;
  top: 25px;
  inset-inline-end: -90px;
  animation-name: ak-bg-img-move-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-order-shape {
    display: none;
  }
}

.ak-order-bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.12;
}
.ak-order-bg-img img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-order-bg-img img {
    width: auto;
  }
}

.order-section-title .ak-sub-title4 {
  color: var(--clr-text-10);
}
.order-section-title .main-title {
  color: var(--clr-common-white);
}

/*------------------------------
36. movies css
------------------------------*/
.movies-area-bg {
  background: var(--clr-bg-9);
}

.ak-movies-menu {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-movies-menu {
    justify-content: flex-start;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-movies-menu {
    justify-content: flex-start;
    margin-bottom: 50px;
  }
}
.ak-movies-menu .nav-tabs {
  border-bottom: transparent;
}
.ak-movies-menu .nav-tabs .nav-link {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-5);
  border: transparent;
  padding: 8px 15px;
}
.ak-movies-menu .nav-tabs .nav-link.active {
  background: transparent;
  color: var(--clr-theme-1);
}

.movies-rating-box {
  background: rgba(20, 20, 20, 0.5);
  border-radius: 5px;
  backdrop-filter: blur(2px);
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 15px;
}
.movies-rating-box span {
  font-size: 18px;
  color: var(--clr-common-white);
  padding: 3px 8px;
}
.movies-rating-box span i {
  color: #FFAF13;
  margin-inline-end: 4px;
}

.ak-movies-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s;
}
.ak-movies-item:hover .ak-movies-img::after {
  height: 100%;
}
.ak-movies-item:hover .ak-movies-info {
  opacity: 1;
  visibility: visible;
}
.ak-movies-item:hover .ak-movies-quality-img {
  opacity: 1;
  visibility: visible;
}
.ak-movies-item:hover .ak-movies-video-icon {
  opacity: 1;
  visibility: visible;
}

.new-movies-item-wrapper .ak-movies-img {
  width: 100%;
}
.new-movies-item-wrapper .ak-movies-img img {
  width: 100%;
  aspect-ratio: 100/136;
}

.ak-movies-img {
  position: relative;
  width: 100%;
}
.ak-movies-img::after {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0.65) 54.17%, rgba(20, 20, 20, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
  border-radius: 8px;
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  transition: 0.3s;
}
.ak-movies-img img {
  width: 100%;
  aspect-ratio: 100/135;
}

.ak-movies-info {
  position: absolute;
  bottom: 0;
  inset-inline-start: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.ak-movies-info h4 {
  font-size: 22px;
  color: var(--clr-common-white);
  transition: 0.3s;
  margin-bottom: 6px;
}
.ak-movies-info h4:hover a {
  color: var(--clr-theme-1);
}
.ak-movies-info p {
  color: var(--clr-theme-1);
}

.ak-movies-quality-img {
  position: absolute;
  bottom: 20px;
  inset-inline-end: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.ak-movies-video-icon {
  width: 118px;
  height: 66px;
  border: 1px solid #FFFFFF;
  border-radius: 57px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-movies-video-icon {
    width: 108px;
    height: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-movies-video-icon {
    width: 98px;
    height: 46px;
  }
}
@media (max-width:450px) {
  .ak-movies-video-icon {
    width: 98px;
    height: 46px;
  }
}
.ak-movies-video-icon::after {
  width: 136px;
  height: 81px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 57px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: -1;
  animation: borderanimate2 2s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-movies-video-icon::after {
    width: 126px;
    height: 71px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-movies-video-icon::after {
    width: 116px;
    height: 61px;
  }
}
@media (max-width:450px) {
  .ak-movies-video-icon::after {
    width: 116px;
    height: 61px;
  }
}
.ak-movies-video-icon i {
  font-size: 30px;
  color: var(--clr-common-white);
  transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width:450px) {
  .ak-movies-video-icon i {
    font-size: 25px;
  }
}
.ak-movies-video-icon:hover i {
  color: var(--clr-theme-1);
}

.ak-movies-slider-dot {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-movies-slider-dot {
    margin-top: 40px;
  }
}
.ak-movies-slider-dot .swiper-pagination-bullet-active {
  background: transparent !important;
  border: 1px solid #fff !important;
}
.ak-movies-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  opacity: 1;
}

.ak-top-movies-bg {
  background: var(--clr-bg-9);
  position: relative;
  z-index: 1;
}
.ak-top-movies-bg::before {
  width: 280px;
  height: 206px;
  background: var(--clr-common-white);
  filter: blur(200px);
  position: absolute;
  top: 47%;
  inset-inline-end: 28%;
  content: "";
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-top-movies-bg::before {
    display: none;
  }
}
.ak-top-movies-bg::after {
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.top-movies-content-wrapper {
  position: relative;
  z-index: 1;
}

.ak-top-movies-accordion-wrapper #accordionExample {
  --bs-accordion-bg: transparent;
}
.ak-top-movies-accordion-wrapper .accordion-button.collapsed {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  color: var(--clr-text-5);
  padding: 30px 0px;
}
@media (max-width:450px) {
  .ak-top-movies-accordion-wrapper .accordion-button.collapsed {
    font-size: 18px;
  }
}
.ak-top-movies-accordion-wrapper .accordion-button.collapsed:hover {
  color: var(--clr-common-white);
}
.ak-top-movies-accordion-wrapper .accordion-button.collapsed .ak-accordion-number {
  color: var(--clr-text-5);
  margin-inline-end: 12px;
  font-size: 18px;
}
@media (max-width:450px) {
  .ak-top-movies-accordion-wrapper .accordion-button.collapsed .ak-accordion-number {
    font-size: 16px;
    margin-inline-end: 5px;
  }
}
.ak-top-movies-accordion-wrapper .accordion-button::after {
  display: none;
}
.ak-top-movies-accordion-wrapper .accordion-button:not(.collapsed)::after {
  display: none;
}
.ak-top-movies-accordion-wrapper .accordion-item:first-of-type {
  border-top: 1px solid rgba(77, 77, 77, 0.5);
  border-radius: 0px;
}
.ak-top-movies-accordion-wrapper .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.ak-top-movies-accordion-wrapper .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  padding: 30px 0px 15px 0px;
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-bg-8);
  line-height: 1;
}
@media (max-width:450px) {
  .ak-top-movies-accordion-wrapper .accordion-button:not(.collapsed) {
    font-size: 18px;
  }
}
.ak-top-movies-accordion-wrapper .accordion-button:not(.collapsed) .ak-accordion-number {
  color: var(--clr-text-5);
  margin-inline-end: 12px;
  font-size: 18px;
}
@media (max-width:450px) {
  .ak-top-movies-accordion-wrapper .accordion-button:not(.collapsed) .ak-accordion-number {
    font-size: 16px;
    margin-inline-end: 5px;
  }
}
.ak-top-movies-accordion-wrapper .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border-bottom: 1px solid rgba(77, 77, 77, 0.5);
  border-radius: 0px;
  border-left: 0px;
  border-right: 0px;
  position: relative;
}
.ak-top-movies-accordion-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}
.ak-top-movies-accordion-wrapper .accordion-body {
  padding: 0px 0px 30px 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-top-movies-accordion-wrapper .accordion-body {
    padding: 0px 0px 30px 0px;
  }
}
.ak-top-movies-accordion-wrapper .accordion-body::after {
  width: 100%;
  height: 1px;
  background: var(--clr-gradient-1);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  animation: border 2s;
}
.ak-top-movies-accordion-wrapper .accordion-body .ak-accourdion-body-shape {
  position: absolute;
  bottom: -8px;
  inset-inline-end: 0;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-top-movies-accordion-wrapper .accordion-body .ak-accourdion-body-shape {
    display: none;
  }
}
.ak-top-movies-accordion-wrapper .accordion-body .ak-accordion-body-content {
  position: relative;
  z-index: 1;
}

.ak-top-movies-img {
  max-width: 636px;
  position: absolute;
  top: 0px;
  inset-inline-end: 0px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-top-movies-img {
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ak-top-movies-img {
    position: relative;
    top: 0 !important;
    margin-top: 30px;
    inset-inline-end: auto !important;
  }
}
.ak-top-movies-img::after {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.ak-top-movies-img .ak-movies-video-icon {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-top-movies-img .ak-movies-video-icon {
    width: 98px;
    height: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-top-movies-img .ak-movies-video-icon::after {
    width: 116px;
    height: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-top-movies-img .ak-movies-video-icon i {
    font-size: 25px;
  }
}
.ak-top-movies-img img {
  width: 100%;
  aspect-ratio: 1/0.73;
  object-fit: cover;
}

.top-movies-img-1 {
  top: 3px;
  inset-inline-end: 42px;
  z-index: 99;
  animation: fade-down-left 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-movies-img-1 {
    top: 7px;
    inset-inline-end: 0px;
  }
}

.top-movies-img-2 {
  top: -84px;
  inset-inline-end: 42px;
  animation: fade-down-left 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-movies-img-2 {
    top: -35px;
    inset-inline-end: 0px;
  }
}

.top-movies-img-3 {
  top: -171px;
  inset-inline-end: 42px;
  animation: fade-down-left 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-movies-img-3 {
    top: -125px;
    inset-inline-end: 0px;
  }
}

.top-movies-img-4 {
  top: -258px;
  inset-inline-end: 42px;
  animation: fade-down-left 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-movies-img-4 {
    top: -205px;
    inset-inline-end: 0px;
  }
}

.top-movies-img-5 {
  top: -346px;
  inset-inline-end: 42px;
  animation: fade-down-left 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-movies-img-5 {
    top: -245px;
    inset-inline-end: 0px;
  }
}

.new-movies-bg {
  background: var(--clr-bg-9);
}

.new-movies-video-icon {
  width: 96px;
  height: 53px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .new-movies-video-icon {
    width: 86px;
    height: 43px;
  }
}
.new-movies-video-icon::after {
  width: 109px;
  height: 66px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .new-movies-video-icon::after {
    width: 99px;
    height: 56px;
  }
}
.new-movies-video-icon i {
  font-size: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .new-movies-video-icon i {
    font-size: 20px;
  }
}

.ak-new-movies-btn .text-btn {
  color: var(--clr-common-white);
}

.movie-page-title-area.is-bottom {
  padding-bottom: 270px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .movie-page-title-area.is-bottom {
    padding-bottom: 0px;
  }
}

.movie-single-main-img {
  position: relative;
  margin-top: -430px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .movie-single-main-img {
    margin-top: -340px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .movie-single-main-img {
    margin-top: 0px;
  }
}

.movie-single-img {
  position: relative;
  overflow: hidden;
  height: 590px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .movie-single-img {
    height: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .movie-single-img {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-single-img {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .movie-single-img {
    height: 400px;
  }
}
@media (max-width:450px) {
  .movie-single-img {
    height: 350px;
  }
}
.movie-single-img img {
  width: 100%;
  object-fit: cover;
  height: 120%;
  position: absolute;
  bottom: 0;
}
.movie-single-img .ak-feature5-video-icon {
  width: 174px;
  height: 97px;
  border-radius: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-single-img .ak-feature5-video-icon {
    width: 120px;
    height: 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-single-img .ak-feature5-video-icon {
    width: 110px;
    height: 48px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .movie-single-img .ak-feature5-video-icon {
    width: 100px;
    height: 48px;
  }
}
.movie-single-img .ak-feature5-video-icon::after {
  width: 200px;
  height: 120px;
  border-radius: 120px;
  animation: borderanimate2 2.5s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-single-img .ak-feature5-video-icon::after {
    width: 140px;
    height: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .movie-single-img .ak-feature5-video-icon::after {
    width: 130px;
    height: 66px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .movie-single-img .ak-feature5-video-icon::after {
    width: 120px;
    height: 66px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .movie-single-img .ak-feature5-video-icon i {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .movie-single-img .ak-feature5-video-icon i {
    font-size: 20px;
  }
}

.about-movies p {
  margin-bottom: 20px;
}

.movie-cast-wrapper .blog-single-content-title {
  margin-bottom: 35px;
}

.movie-cast-item-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .movie-cast-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:450px) {
  .movie-cast-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.movie-cast-item {
  padding: 16px 14px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  text-align: center;
  transition: 0.3s ease-in-out;
}
.movie-cast-item span {
  color: var(--clr-text-11);
}
.movie-cast-item:hover {
  border: 1px solid #f5f5f5;
  background: var(--clr-bg-10);
}

.movie-cast-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 15px;
}
.movie-cast-img img {
  width: 100%;
}

h6 {
  margin-bottom: 8px;
}
h6 .movie-cast-name {
  font-size: 18px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  transition: 0.3s;
}
h6 .movie-cast-name:hover {
  color: var(--clr-theme-1);
}

.movie-trailer-wrapper .blog-single-content-title {
  margin-bottom: 35px;
}

.movie-fun-fact-wrap .blog-single-content-title {
  margin-bottom: 35px;
}

/*------------------------------
37. categories css
------------------------------*/
.ak-categories-bg {
  background: var(--clr-bg-9);
  position: relative;
  overflow: hidden;
}
.ak-categories-bg::before {
  width: 157px;
  height: 156px;
  background: var(--clr-common-white);
  filter: blur(200px);
  border-radius: 200px;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
.ak-categories-bg::after {
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-categories-content-wrapper {
  position: relative;
  z-index: 1;
}

.categories-item-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 50px 0px;
}

.categories-item-name {
  font-size: 48px;
  font-weight: var(--bd-fw-bold);
  line-height: 1;
  color: var(--clr-text-5);
  padding-inline-end: 50px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories-item-name {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-item-name {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .categories-item-name {
    font-size: 32px;
  }
}
@media (max-width:450px) {
  .categories-item-name {
    font-size: 28px;
  }
}
.categories-item-name::after {
  width: 5px;
  height: 5px;
  background: var(--clr-common-white);
  position: absolute;
  top: 55%;
  inset-inline-end: 25px;
  content: "";
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .categories-item-name::after {
    width: 3px;
    height: 3px;
  }
}

.categories-list-item {
  position: relative;
}

.categories-list-item:hover .categories-item-name {
  color: var(--clr-common-white);
  position: relative;
  z-index: 2;
}
.categories-list-item:hover .categories-hover-img {
  opacity: 1;
  z-index: 1;
}

.categories-list-item:hover .categories-hover-img {
  opacity: 1;
}

.categories-hover-img {
  width: 240px;
  height: 240px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -125px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .categories-hover-img {
    width: 200px;
    height: 200px;
    margin: -150px 0 0 -120px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .categories-hover-img {
    width: 150px;
    height: 150px;
    margin: -100px 0 0 -100px;
  }
}

.categories-item-wrapper a:nth-child(5) .categories-list-item .categories-item-content .categories-item-name::after {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .categories-item-wrapper a:nth-child(5) .categories-list-item .categories-item-content .categories-item-name::after {
    display: block;
  }
}
.categories-item-wrapper a:last-child .categories-list-item .categories-item-content .categories-item-name::after {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .categories-item-wrapper a:last-child .categories-list-item .categories-item-content .categories-item-name::after {
    display: block;
  }
}

/*------------------------------
38. journey css
------------------------------*/
.ak-journey-bg {
  background: var(--clr-bg-9);
}

.inner-journey-round-wrapper .inner-journey-round-left {
  width: 491px;
  height: 1076px;
  background: rgba(212, 33, 47, 0.4);
  filter: blur(250px);
  position: absolute;
  bottom: -350px;
  left: 100px;
}
.inner-journey-round-wrapper .inner-journey-round-right {
  width: 686px;
  height: 648px;
  background: rgba(212, 33, 47, 0.4);
  filter: blur(250px);
  position: absolute;
  top: -35%;
  inset-inline-end: 10%;
}
.inner-journey-round-wrapper::after {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.journey-content-wrapper {
  position: relative;
  z-index: 1;
}
.journey-content-wrapper .section-title .main-title {
  color: var(--clr-common-white);
}
.journey-content-wrapper .section-title p {
  color: var(--clr-text-10);
}

.journey-item .date {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-theme-1);
  line-height: 32px;
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.journey-item h4 {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  line-height: 1.6;
  color: var(--clr-text-10);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .journey-item h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1799px), only screen and (min-width: 1200px) and (max-width: 1399px), (max-width:450px) {
  .journey-item h4 br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .journey-item h4 {
    font-size: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .journey-item h4 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .journey-item h4 {
    font-size: 18px;
  }
}
@media (max-width:450px) {
  .journey-item h4 {
    font-size: 17px;
  }
}

.journey-item {
  position: relative;
}

.journey-item-border {
  position: relative;
  margin-inline-start: 30px;
  padding-bottom: 55px;
  padding-inline-end: 10px;
}
.journey-item-border::after {
  width: calc(100% - 90px);
  height: 1px;
  background: rgba(77, 77, 77, 0.5);
  position: absolute;
  top: 16px;
  inset-inline-end: 0px;
  content: "";
}
.journey-item-border::before {
  width: 1px;
  height: calc(100% - 50px);
  background: rgba(77, 77, 77, 0.5);
  position: absolute;
  top: 16px;
  inset-inline-end: 0px;
  content: "";
}
.journey-item-border .journey-item-round {
  width: 24px;
  height: 24px;
  background: var(--clr-text-9);
  border-radius: 50%;
  border: 1px solid rgba(212, 33, 47, 0.5);
  position: absolute;
  bottom: 0px;
  inset-inline-end: -12px;
}
.journey-item-border .journey-item-round::after {
  width: 14px;
  height: 14px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

.journey-bottom-item-main {
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .journey-bottom-item-main {
    padding-top: 145px;
  }
}
@media (max-width: 575px) {
  .journey-bottom-item-main {
    padding-top: 140px;
  }
}
@media (max-width:450px) {
  .journey-bottom-item-main {
    padding-top: 0px;
  }
}

.journey-bottom-item-border {
  position: relative;
  padding-top: 55px;
  margin-inline-start: 30px;
  padding-inline-end: 10px;
}
.journey-bottom-item-border::after {
  width: calc(100% - 90px);
  height: 1px;
  background: rgba(77, 77, 77, 0.5);
  position: absolute;
  bottom: 15px;
  inset-inline-end: 0px;
  content: "";
}
.journey-bottom-item-border::before {
  width: 1px;
  height: calc(100% - 50px);
  background: rgba(77, 77, 77, 0.5);
  position: absolute;
  bottom: 16px;
  inset-inline-end: 0px;
  content: "";
}
.journey-bottom-item-border h4 {
  top: 0px;
  margin-bottom: 20px;
}
.journey-bottom-item-border .date {
  margin-bottom: 0px;
}
.journey-bottom-item-border .journey-item-round {
  width: 24px;
  height: 24px;
  background: var(--clr-text-9);
  border-radius: 50%;
  border: 1px solid rgba(212, 33, 47, 0.5);
  position: absolute;
  top: 0px;
  inset-inline-end: -12px;
}
.journey-bottom-item-border .journey-item-round::after {
  width: 14px;
  height: 14px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

.journey-round-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(77, 77, 77, 0.5);
  left: 0;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width:450px) {
  .journey-round-line {
    display: none;
  }
}

/*------------------------------
39. team css
------------------------------*/
.team-left-shape {
  position: absolute;
  bottom: 130px;
  inset-inline-start: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .team-left-shape img {
  transform: rotate(180deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-left-shape {
    display: none;
  }
}

.team-right-shape {
  position: absolute;
  top: 320px;
  inset-inline-end: 50px;
  animation: rotate 15s linear infinite;
}
@media only screen and (min-width: 1601px) and (max-width: 1799px) {
  .team-right-shape {
    inset-inline-end: -30px;
    animation-name: ak-bg-img-move-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-right-shape {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-item-main-wrapper {
    margin-top: 60px;
  }
}

.ak-team-item {
  text-align: center;
  padding: 20px 20px 15px 20px;
  border: 1px solid rgba(20, 20, 20, 0.2);
}
.ak-team-item .item-name {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  transition: 0.3s;
}
@media (max-width:450px) {
  .ak-team-item .item-name {
    font-size: 20px;
  }
}
.ak-team-item .item-name:hover {
  color: var(--clr-theme-1);
}
.ak-team-item span {
  color: var(--clr-text-11);
  display: block;
}
.ak-team-item .team-img-round img {
  transition: 0.4s;
}
.ak-team-item:hover .team-img-round img {
  transform: scale(1.1);
}

.team-img-round {
  background: linear-gradient(180deg, rgba(212, 33, 47, 0.2) 0%, rgba(212, 33, 47, 0) 100%);
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 25px;
  transition: 0.3s;
}
/*@media (max-width:450px) {
  .team-img-round {
    max-width: 154px;
  }
}*/
.team-img-round img {
  width: 100%;
}

.team-round-bg div:nth-child(2) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(33, 126, 212, 0.2) 0%, rgba(33, 126, 212, 0) 100%);
}
.team-round-bg div:nth-child(3) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(212, 194, 33, 0.2) 0%, rgba(212, 194, 33, 0) 100%);
}
.team-round-bg div:nth-child(4) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(212, 76, 33, 0.2) 0%, rgba(212, 76, 33, 0) 100%);
}
.team-round-bg div:nth-child(5) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(33, 212, 40, 0.2) 0%, rgba(33, 212, 40, 0) 100%);
}
.team-round-bg div:nth-child(6) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(187, 33, 212, 0.2) 0%, rgba(187, 33, 212, 0) 100%);
}
.team-round-bg div:nth-child(7) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(165, 212, 33, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}
.team-round-bg div:nth-child(8) .ak-team-item .team-img-round {
  background: linear-gradient(180deg, rgba(33, 190, 212, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.ak-team-area.is-top {
  padding-top: 190px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-team-area.is-top {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-team-area.is-top {
    padding-top: 70px;
  }
}
.ak-team-area.is-bottom {
  padding-bottom: 205px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-team-area.is-bottom {
    padding-bottom: 135px;
  }
}

.ak-team2-item-wrapper .ak-team-item {
  position: relative;
  transition: 0.3s;
}
.ak-team2-item-wrapper .ak-team-item:hover {
  border-color: transparent;
}
.ak-team2-item-wrapper .ak-team-item:hover .team-item-overlay {
  visibility: visible;
  opacity: 1;
}

.team-item-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out 0s;
  background-color: var(--clr-bg-5);
  visibility: hidden;
  opacity: 0;
  padding: 35px 40px 35px 40px;
  text-align: left;
}
.team-item-overlay .team-item-overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.team-item-overlay .team-item-overlay-img img {
  mix-blend-mode: luminosity;
  opacity: 0.1;
  width: 100%;
  height: 100%;
}

.team-item-overlay-content {
  position: relative;
  z-index: 1;
}
.team-item-overlay-content h3 {
  font-size: 26px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  line-height: 1.4;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item-overlay-content h3 {
    font-size: 23px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item-overlay-content h3 {
    margin-bottom: 15px;
  }
}
@media (max-width:450px) {
  .team-item-overlay-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.team-item-overlay-content p {
  font-size: 15px;
  color: var(--clr-common-white);
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item-overlay-content p {
    margin-bottom: 30px;
  }
}
@media (max-width:450px) {
  .team-item-overlay-content p {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-form-wrapper .ak-contact-form-wrapper {
    margin-bottom: 0px;
  }
}

.experience-bg {
  background: var(--clr-bg-10);
}

.expericene-accordion-wrapper .accordion-button:not(.collapsed) {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-bottom: 0px;
}
.expericene-accordion-wrapper .accordion-collapse {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-top: 0px;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.team-details-left-shape {
  position: absolute;
  top: 30px;
  inset-inline-start: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .team-details-left-shape img {
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-details-left-shape {
    display: none;
  }
}

.team-details-right-shape {
  position: absolute;
  bottom: 30px;
  inset-inline-end: 0;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
[dir=rtl] .team-details-right-shape img {
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-details-right-shape {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .experience-accordion-wrap {
    margin-bottom: 60px;
  }
}

@media (max-width:450px) {
  .ak-accordion-heading {
    font-size: 18px;
  }
}

.team-member-area.is-bottom {
  padding-bottom: 225px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .team-member-area.is-bottom {
    padding-bottom: 165px;
  }
}

.team-member-active .swiper-slide-active .ak-team-item .item-name {
  color: var(--clr-theme-1);
}

.team-member-slider-dot {
  text-align: center;
  margin-top: 15px;
}
.team-member-slider-dot .swiper-pagination-bullet-active {
  background: var(--clr-bg-4) !important;
  border: none !important;
}
.team-member-slider-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #141414;
  background: transparent;
  opacity: 1;
}

/*------------------------------
40. works css
------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-works-area {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .inner-works-area {
    padding-top: 70px;
  }
}

.works-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .works-grid {
    gap: 30px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .works-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0px;
  }
}

.works-item {
  padding: 30px 30px 15px 30px;
  background: var(--clr-common-white);
  border: 1px solid rgba(20, 20, 20, 0.1);
  position: relative;
}
.works-item h4 {
  margin-bottom: 25px;
  color: var(--clr-text-9);
  font-weight: var(--bd-fw-medium);
}
.works-item h4 a {
  font-size: 22px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.3;
  transition: 0.3s;
  
}
.works-item h4:hover a {
  color: var(--clr-theme-1);
}
.works-item p {
  font-size: 16px;
  line-height: 28px;
  color: var(--clr-text-5);
}
.works-item .inner-works-item-icon {
  transition: 0.4s;
  margin-bottom: 35px;
}
.works-item:hover .inner-works-item-icon {
  transform: translateY(-10px);
}

.work-icon-shape {
  position: absolute;
  bottom: 40%;
  inset-inline-end: -38px;
  transform: translate(50%);
}
[dir=rtl] .work-icon-shape {
  inset-inline-end: -80px;
  transform: rotateY(180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .work-icon-shape {
    display: none;
  }
}
.work-icon-shape img {
  animation: iconltr 1.5s infinite;
}

.works-map-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .works-map-img {
    display: none;
  }
}

/*------------------------------
41. skills css
------------------------------*/
.skills-area.is-top {
  padding-top: 185px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .skills-area.is-top {
    padding-top: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .skills-area.is-top {
    padding-top: 70px;
  }
}

.skills-contact-info ul li {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 0px 13px;
}
.skills-contact-info ul li i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--clr-bg-10);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-theme-1);
  font-size: 20px;
}
.skills-contact-info ul li a {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  transition: 0.3s;
}
.skills-contact-info ul li a:hover {
  color: var(--clr-theme-1);
}

.skills-content-area {
  padding: 40px;
  border: 1px solid rgba(20, 20, 20, 0.1);
}
@media (max-width:450px) {
  .skills-content-area {
    padding: 30px;
  }
}

.skills-progress-wrapper {
  gap: 30px 0px;
  display: grid;
}

.skills-single-wrapper .skill-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.skills-single-wrapper .skill-category {
  font-size: 18px;
  color: var(--clr-text-9);
}
.skills-single-wrapper span {
  font-size: 18px;
  color: var(--clr-text-9);
}
.skills-single-wrapper .progress {
  background: var(--clr-bg-20);
  border-radius: 0px;
}
.skills-single-wrapper .progress .progress-bar {
  background: var(--clr-bg-5);
}

/*------------------------------
42. gallery css
------------------------------*/
.gallery-grid-area.is-bottom {
  padding-bottom: 235px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .gallery-grid-area.is-bottom {
    padding-bottom: 165px;
  }
}

.gallery-grid-menu-wrapper .ak-movies-menu {
  justify-content: center;
}

.gallery-grid-img {
  position: relative;
  overflow: hidden;
}
.gallery-grid-img img {
  width: 100%;
  transition: 0.5s;
}
.gallery-grid-img::before {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  content: "";
  transition: 0.5s;
}
.gallery-grid-img .popup-image {
  width: 124px;
  height: 124px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
@media (max-width: 575px), (max-width:450px) {
  .gallery-grid-img .popup-image {
    width: 80px;
    height: 80px;
  }
}
.gallery-grid-img .popup-image i {
  font-size: 48px;
  color: var(--clr-common-white);
}
@media (max-width: 575px), (max-width:450px) {
  .gallery-grid-img .popup-image i {
    font-size: 35px;
  }
}
.gallery-grid-img:hover img {
  transform: scale(1.02);
}
.gallery-grid-img:hover::before {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.gallery-grid-img:hover .popup-image {
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
}

.gallery-grid-3-img .popup-image {
  width: 90px;
  height: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-grid-3-img .popup-image {
    width: 124px;
    height: 124px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .gallery-grid-3-img .popup-image {
    width: 80px;
    height: 80px;
  }
}
.gallery-grid-3-img .popup-image i {
  font-size: 38px;
}
@media (max-width: 575px), (max-width:450px) {
  .gallery-grid-3-img .popup-image i {
    font-size: 35px;
  }
}

.gallery-grid-4-img .popup-image {
  width: 86px;
  height: 86px;
}
@media (max-width: 575px), (max-width:450px) {
  .gallery-grid-4-img .popup-image {
    width: 80px;
    height: 80px;
  }
}
.gallery-grid-4-img .popup-image i {
  font-size: 38px;
}
@media (max-width: 575px), (max-width:450px) {
  .gallery-grid-4-img .popup-image i {
    font-size: 35px;
  }
}

/*------------------------------
43. error css
------------------------------*/
.ak-error-area.is-bottom {
  padding-bottom: 270px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-error-area.is-bottom {
    padding-bottom: 165px;
  }
}

.ak-error-thumb img {
  width: 100%;
}

/*------------------------------
44. login css
------------------------------*/
.login-area.is-bottom {
  padding-bottom: 230px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .login-area.is-bottom {
    padding-bottom: 170px;
  }
}

.login-title {
  font-size: 30px;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-9);
  line-height: 1.3;
  margin-bottom: 10px;
}

.login-content-wrapper {
  max-width: 480px;
  margin: 0 auto;
}
.login-content-wrapper .section-title p {
  font-size: 16px;
  color: var(--clr-text-17);
}
.login-content-wrapper .login-input-wrapper .contact-from-input:nth-child(2) {
  margin-bottom: 15px;
}
.login-content-wrapper .login-input-wrapper .contact-from-input label {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-9);
  margin-bottom: 12px;
}
.login-content-wrapper .login-input-wrapper .contact-from-input label span {
  color: var(--clr-theme-1);
}
.login-content-wrapper .login-input-wrapper .contact-from-input input {
  background: var(--clr-bg-1);
}

.form-check {
  display: flex;
  align-items: center;
}
.form-check input {
  width: 16px;
  height: 16px;
  border: 1px solid #5D636A !important;
  border-radius: 40px !important;
  min-width: 16px;
}
.form-check input:checked {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1) !important;
}
.form-check input:focus {
  box-shadow: 0 0 0;
}
.form-check .form-check-input {
  margin-inline-end: 12px;
}
.form-check .form-check-label {
  color: var(--clr-text-5);
}
.form-check .form-check-label span a {
  color: var(--clr-theme-1);
}

.forgotpassword {
  color: var(--clr-theme-1);
  transition: 0.3s;
}
.forgotpassword:hover {
  color: var(--clr-theme-1);
}

.login-no-account {
  text-align: center;
}
.login-no-account span {
  color: var(--clr-text-17);
}
.login-no-account span a {
  color: var(--clr-theme-1);
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
  position: relative;
}
.form-check-input:checked[type=checkbox]::after {
  width: 8px;
  height: 8px;
  background: var(--clr-common-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

/*------------------------------
45. footer css
------------------------------*/
.footer-widget3-bg {
  width: 41%;
  height: 100%;
  background: var(--clr-bg-10);
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget3-bg {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget3-bg {
    width: 35%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget3-bg {
    width: 37%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-widget3-bg {
    width: 38%;
  }
}

.footer-tv-img img {
  position: absolute;
  bottom: 40px;
  inset-inline-start: 134px;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-tv-img img {
    bottom: 90px;
    inset-inline-start: 134px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .footer-tv-img {
    display: none;
  }
}

.footer-widget-content {
  color: var(--clr-text-1);
  font-weight: var(--bd-fw-bold);
  line-height: 1.6;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-content {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-widget3 {
    padding-inline-start: 30px;
  }
}
.footer-widget3 .footer-title {
  font-size: 28px;
  color: var(--clr-text-1);
  font-weight: var(--bd-fw-bold);
  line-height: 1.6;
}
.footer-widget3 p {
  width: 341px;
}
@media (max-width:450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget3 p {
    width: auto;
  }
}
.footer-widget3 .mb-form input {
  width: 100%;
  padding: 20px 70px 20px 24px;
  background: var(--clr-common-white);
  font-family: var(--bd-ff-secondary);
  border-radius: 60px;
  border: none;
}
[dir=rtl] .footer-widget3 .mb-form input {
  padding: 20px 24px 20px 65px;
}
.footer-widget3 .mb-form input ::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--clr-text-1);
}
.footer-widget3 .mb-form .submit {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  transition: 0.4s;
}
.footer-widget3 .mb-form .submit::after {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-9);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  content: "";
  transition: 0.4s;
}
.footer-widget3 .mb-form .submit::before {
  width: 56px;
  height: 56px;
  background: var(--clr-gradient-1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  transition: 0.4s;
}
.footer-widget3 .mb-form .submit i {
  position: relative;
  z-index: 1;
  font-size: 25px;
  color: var(--clr-common-white);
  transition: 0.4s;
}
.footer-widget3 .mb-form .submit:hover::after {
  opacity: 1;
  visibility: visible;
}
.footer-widget3 .mb-form .submit:hover::before {
  opacity: 0;
  visibility: hidden;
}
.footer-widget3 .mb-form .submit:hover i {
  transform: rotate(45deg);
}

.footer-item {
  display: flex;
  align-items: center;
}
.footer-item .footer-img {
  width: 96px;
  height: 96px;
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-item .footer-img {
    width: 76px;
    height: 76px;
  }
  .footer-item .footer-img img {
    width: 50%;
  }
}
.footer-item .footer-img img {
  transition: 0.2s ease-in-out;
}
.footer-item .footer-img:hover img {
  transform: scale(0.9);
}
.footer-item .footer-details span {
  font-family: var(--bd-ff-secondary);
  color: var(--clr-text-5);
  line-height: 1.3;
}
.footer-item .footer-details h4 {
  color: var(--clr-text-9);
  font-weight: var(--bd-fw-bold);
  margin-top: 10px;
  line-height: 1.6;
}
.footer-item .footer-details h4 a {
  transition: 0.4s;
}
.footer-item .footer-details h4 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width:450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-item .footer-details h4 {
    font-size: 18px;
  }
}

.ak-footer-cta-top {
  position: relative;
  top: -105px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-footer-cta-top {
    top: -95px;
  }
}

.ak-footer-cta-bg {
  background: var(--clr-bg-5);
  position: relative;
}
.ak-footer-cta-bg .ak-footer-cta-bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
}
.ak-footer-cta-bg .ak-footer-cta-bg-img img {
  width: 100%;
  height: 100%;
}

.ak-footer-cta-content-wrapper {
  position: relative;
  z-index: 1;
  padding: 70px 60px 45px 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-footer-cta-content-wrapper {
    padding: 60px 20px 40px 20px;
  }
}
.ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
    font-size: 45px;
  }
}
.menu-dnone{display:none !important;}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
    font-size: 39px;
  }
  .menu-none{display:none !important}
  .menu-dnone{display:block !important;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
    font-size: 40px;
  }
  .menu-none{display:none !important}
  .menu-dnone{display:block !important;}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
    font-size: 32px;
  }
  .menu-none{display:none !important}
  .menu-dnone{display:block !important;}
}
@media (max-width:450px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-details .ak-footer-cta-heading {
    font-size: 28px;
  }
  .menu-none{display:none !important}
  .menu-dnone{display:block !important;}
}
.ak-footer-cta-content-wrapper .ak-footer-cta-details p {
  color: var(--clr-text-8);
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box {
  margin-bottom: 30px;
  margin-inline-start: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-footer-cta-content-wrapper .ak-footer-cta-seach-box {
    margin-inline-start: 0px;
  }
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box input {
  width: 100%;
  padding: 20px 70px 20px 24px;
  background: var(--clr-bg-10);
  font-family: var(--bd-ff-secondary);
  border-radius: 60px;
  border: none;
}
[dir=rtl] .ak-footer-cta-content-wrapper .ak-footer-cta-seach-box input {
  padding: 20px 24px 20px 65px;
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box input ::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--clr-text-1);
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box .submit {
  width: 56px;
  height: 56px;
  background: var(--clr-bg-9);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  transition: 0.4s;
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box .submit:hover {
  background: var(--clr-text-4);
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box .submit:hover i {
  transform: rotate(45deg);
}
.ak-footer-cta-content-wrapper .ak-footer-cta-seach-box .submit i {
  font-size: 20px;
  color: var(--clr-common-white);
  transition: 0.4s;
}

.ak-theme-footer-bg {
  background: var(--clr-bg-9);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-theme-footer-widget {
    margin-bottom: 50px;
  }
}
.ak-theme-footer-widget p {
  color: var(--clr-text-10);
  margin-top: 30px;
  margin-bottom: 30px;
}
.ak-theme-footer-widget span {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-common-white);
}
.ak-theme-footer-widget .ak-theme-footer-widget-title {
  margin-bottom: 25px;
}
.ak-theme-footer-widget .ak-theme-footer-widget-title h4 {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-common-white);
  line-height: 1.8;
}
.ak-theme-footer-widget .ak-theme-footer-widget-link ul li {
  list-style: none;
  margin-top: 5px;
}
.ak-theme-footer-widget .ak-theme-footer-widget-link ul li a {
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
  transition: 0.3s;
  position: relative;
}
.ak-theme-footer-widget .ak-theme-footer-widget-link ul li a::after {
  width: 0%;
  height: 1px;
  background: var(--clr-common-white);
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  content: "";
  transition: 0.3s;
}
.ak-theme-footer-widget .ak-theme-footer-widget-link ul li a:hover {
  color: var(--clr-common-white);
}
.ak-theme-footer-widget .ak-theme-footer-widget-link ul li a:hover::after {
  width: 100%;
}
.ak-theme-footer-widget .ak-theme-footer-input-form {
  margin-bottom: 30px;
}
.ak-theme-footer-widget .ak-theme-footer-input-form input {
  width: 100%;
  padding: 20px 67px 20px 24px;
  background: var(--clr-bg-10);
  font-family: var(--bd-ff-secondary);
  border-radius: 60px;
  border: none;
}
[dir=rtl] .ak-theme-footer-widget .ak-theme-footer-input-form input {
  padding-inline-start: 24px;
  padding-inline-end: 64px;
}
.ak-theme-footer-widget .ak-theme-footer-input-form input ::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--clr-text-1);
}
.ak-theme-footer-widget .ak-theme-footer-input-form .submit {
  width: 56px;
  height: 56px;
  background: var(--clr-gradient-1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  transition: 0.4s;
  z-index: 1;
}
.ak-theme-footer-widget .ak-theme-footer-input-form .submit span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ak-theme-footer-widget .ak-theme-footer-input-form .submit span i {
  font-size: 20px;
  color: var(--clr-common-white);
}
.ak-theme-footer-widget .ak-theme-footer-input-form .submit:hover span i {
  animation: iconltr 0.5s forwards;
}

.theme-widget3 {
  padding-inline-start: 41px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .theme-widget3 {
    padding-inline-start: 0px;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ak-theme-footer-social-link {
    margin-top: 20px;
    justify-content: left;
  }
}
.ak-theme-footer-social-link ul li {
  display: inline-block;
  position: relative;
}
.ak-theme-footer-social-link ul li:first-child a {
  padding-inline-start: 0px;
}
.ak-theme-footer-social-link ul li:last-child::before {
  display: none;
}
.ak-theme-footer-social-link ul li::before {
  width: 1px;
  height: 13px;
  background: var(--clr-bg-8);
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  content: "";
  transform: translateY(-50%);
  opacity: 0.2;
}
.ak-theme-footer-social-link ul li a {
  font-weight: var(--bd-fw-bold);
  color: var(--clr-text-10);
  font-size: 15px;
  padding-inline-start: 16px;
  padding-inline-end: 20px;
  transition: 0.4s;
}
.ak-theme-footer-social-link ul li a:hover {
  opacity: 1;
  color: var(--clr-theme-1);
}
.ak-theme-footer-social-link ul li:last-child a {
  padding-inline-end: 0px;
}

/*.theme-widget2 {
  padding-inline-start: 110px;
}*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .theme-widget2 {
    padding-inline-start: 0px;
  }
  .mean-container .mean-nav ul li li li a {
  width: 95%;
  padding: 10px 5%;
}
}

.theme-widget4 p {
  font-size: 16px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
  margin-top: 7px;
  margin-bottom: 25px;
}
.theme-widget4 .ak-theme-footer-widget-title {
  margin-bottom: 20px;
}

.footer-cta-top {
  position: relative;
  margin-bottom: -140px;
  margin-top: -140px;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .footer-cta-top {
    margin-bottom: -170px;
  }
}

.ak-footer3-bg1 {
  background: var(--clr-bg-9);
  padding-top: 240px;
}

.ak-footer3-bg1-overlay {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.ak-footer3-bg-round-wrapper .ak-footer3-bg-round-left {
  width: 370px;
  height: 354px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  bottom: 0px;
  left: 90px;
}
@media (max-width: 575px), (max-width:450px) {
  .ak-footer3-bg-round-wrapper .ak-footer3-bg-round-left {
    display: none;
  }
}
.ak-footer3-bg-round-wrapper .ak-footer3-bg-round-right {
  width: 449px;
  height: 430px;
  background: #D4212F;
  filter: blur(250px);
  position: absolute;
  top: 25px;
  inset-inline-end: 33%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-footer3-bg-round-wrapper .ak-footer3-bg-round-right {
    display: none;
  }
}
.ak-footer3-bg-round-wrapper::after {
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-footer3-content-wrapper {
  position: relative;
  z-index: 1;
}

.ak-footer3-shape-img {
  position: absolute;
  bottom: 0;
  left: 83px;
  z-index: 1;
  animation-name: ak-bg-img-move-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .ak-footer3-shape-img {
    display: none;
  }
}

.ak-footer4-bg-img-wrapper {
  width: 100%;
  height: 410px;
  position: absolute;
  bottom: 0;
  left: 0;
  filter: grayscale(1);
  z-index: -2;
}
.ak-footer4-bg-img-wrapper::before {
  position: absolute;
  content: "";
  height: 319px;
  width: 100%;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0) 100%);
  top: 0;
}

.ak-footer4-contact-info {
  display: flex;
  align-items: center;
}
.ak-footer4-contact-info .ak-footer4-contact-icon {
  width: 32px;
  height: 32px;
  background: var(--clr-gradient-1);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline-end: 15px;
  min-width: 32px;
}
.ak-footer4-contact-info .ak-footer4-contact-icon::after {
  width: 10px;
  height: 10px;
  background: var(--clr-gradient-1);
  position: absolute;
  top: 11px;
  inset-inline-end: -4px;
  border-radius: 3px;
  content: "";
  transform: rotate(-45deg);
  z-index: -1;
}
.ak-footer4-contact-info .ak-footer4-contact-icon i {
  font-size: 20px;
  color: var(--clr-common-white);
}
.ak-footer4-contact-info a {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
  transition: 0.4s;
}
.ak-footer4-contact-info a:hover {
  color: var(--clr-text-4);
}
.ak-footer4-contact-info span {
  font-size: 18px;
  font-weight: var(--bd-fw-medium);
  color: var(--clr-text-10);
}
.ak-footer4-contact-info:hover .ak-footer4-contact-icon i {
  animation: wiggle 0.2s infinite;
  animation-timing-function: linear;
}

/*----------------------------------------*/
/*  HOME-5  CSS START
/*----------------------------------------*/
.ak-footer5-bg-overlay {
  position: relative;
}
.ak-footer5-bg-overlay::after {
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-movies-footer-cta {
  padding: 0px;
  position: relative;
  z-index: 1;
}

.ak-footer5-content-wrapper {
  position: relative;
  z-index: 1;
}
.ak-footer5-content-wrapper::after {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.ak-footer5-widget p {
  font-size: 15px;
  font-weight: var(--bd-fw-medium);
  margin-top: 35px;
  margin-bottom: 20px;
}

.footer5-widget {
  padding-inline-start: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .footer5-widget {
    padding-inline-start: 0px;
  }
}
.footer5-widget .ak-theme-footer-widget-link ul li a {
  color: var(--clr-text-11);
}

.footer5-copy-right {
  padding: 40px 30px;
}

.ak-align {
  align-items: self-end;
}

/*----------------------------------------*/
/*  HOME-5  CSS END
/*----------------------------------------*/
@media (max-width:450px) {
  .ak-theme-footer-area {
    padding-bottom: 0px;
  }
}

/*# sourceMappingURL=main.css.map */
