@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Zen+Dots&display=swap");
*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit;
}

/*
============================================
FONTS
============================================
*/
/*
============================================
BODY
============================================
*/
body {
  max-width: 1920px;
  margin: auto !important;
  box-sizing: border-box;
  font-family: "Hind", sans-serif;
  background: #ffffff;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}
body.blur-body {
  position: relative;
  overflow: hidden;
}
body.blur-body::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(9, 30, 33, 0.8);
  backdrop-filter: blur(11px);
  position: absolute;
  top: 0;
  left: 0;
}
body.no-scroll-y {
  overflow: hidden;
}

/*
============================================
HEADER TAGS
============================================
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #2D2D2D;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  outline: none;
  color: #2D2D2D;
}

a:hover {
  text-decoration: none !important;
  cursor: pointer;
}

.image-wrapper {
  line-height: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f7f4f4 inset !important;
  box-shadow: 0 0 0 1000px #f7f4f4 inset !important;
  -webkit-text-fill-color: #2D2D2D;
}

/*
============================================
COMMON BTN CSS
============================================
*/
.btn_wrapper {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  background-size: 100% 100%;
  font-family: "Zen Dots", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: 18px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(109, 141, 173, 0.55);
  position: relative;
  transition: all 0.3s ease;
}
.btn_wrapper img {
  margin-left: 24px;
}
@media screen and (max-width: 575px) {
  .btn_wrapper img {
    margin-left: 15px;
  }
}
.btn_wrapper:hover {
  background-size: 100% 300%;
}
@media (max-width: 1399px) {
  .btn_wrapper {
    font-size: 12px;
  }
}
.btn_wrapper.White-btn {
  background: #ffffff;
  color: #F907FC;
  outline: 10px solid rgba(45, 45, 45, 0.4);
}
.btn_wrapper.White-btn:hover img {
  animation: Scale 1.5s linear infinite;
}
@keyframes Scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

/*
============================================
COMMON BTN CSS
============================================
*/
/*
============================================
PARAGRAPH CSS
============================================
*/
p {
  color: #2D2D2D;
  margin: 0 0 30px;
  text-transform: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1399px) {
  p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  p {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  p {
    font-size: 14px;
  }
}

/*
============================================
PARAGRAPH CSS
============================================
*/
/*
============================================
SECTION TITLE CSS
============================================
*/
h1.title {
  font-size: 68px;
}
@media (max-width: 1399px) {
  h1.title {
    font-size: 58px;
  }
}
@media (max-width: 1199px) {
  h1.title {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  h1.title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1.title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h1.title {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  h1.title {
    font-size: 22px;
  }
}

.title {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #2D2D2D;
  font-size: 42px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-bottom: 35px;
}
@media screen and (max-width: 1399px) {
  .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .title {
    font-size: 24px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .title {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
.title span {
  font-size: 26px;
}
@media screen and (max-width: 1399px) {
  .title span {
    font-size: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .title span {
    font-size: 18px;
  }
}

p.blog-title {
  font-weight: 600;
  color: rgba(45, 45, 45, 0.8);
  font-size: 22px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1399px) {
  p.blog-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  p.blog-title {
    font-size: 16px;
  }
}
p.blog-title.big {
  font-size: 38px;
}
@media screen and (max-width: 1399px) {
  p.blog-title.big {
    font-size: 34px;
  }
}
@media screen and (max-width: 1199px) {
  p.blog-title.big {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  p.blog-title.big {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  p.blog-title.big {
    font-size: 20px;
  }
}

.titles {
  font-family: "Hind", sans-serif;
  font-weight: 600;
  color: #F907FC;
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  padding-bottom: 12px;
  border-bottom: 1px solid #E6E6E6;
}

/*
============================================
SECTION TITLE CSS
============================================
*/
/*
============================================
SECTION GAP CSS
============================================
*/
.default-padding {
  padding: 65px 0;
}
@media screen and (max-width: 1399px) {
  .default-padding {
    padding: 40px 0;
  }
}
@media screen and (max-width: 991px) {
  .default-padding {
    padding: 30px 0;
  }
}
@media screen and (max-width: 575px) {
  .default-padding {
    padding: 20px 0;
  }
}

/*
============================================
SECTION GAP CSS
============================================
*/
/*
============================================
BREADCRUMBS BUTTON CSS
============================================
*/
.breadcrumbs-section {
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .breadcrumbs-section {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumbs-section {
    padding-bottom: 40px;
  }
}
.breadcrumbs-section::before {
  content: "";
  width: 100%;
  height: 200%;
  background: url(../images/background/breadcrumbs-img.webp) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.breadcrumbs-section .breadcrumbs-block {
  display: flex;
  width: 100%;
  max-width: max-content;
  padding: 2px;
  border: 1px solid #ffffff;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(231, 231, 231) 100%);
  border-radius: 89px;
  align-items: center;
}
.breadcrumbs-section .breadcrumbs-block .item {
  position: relative;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(45, 45, 45, 0.15);
}
.breadcrumbs-section .breadcrumbs-block .item.active {
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
}
.breadcrumbs-section .breadcrumbs-block a:hover {
  color: #F907FC;
}

/*
============================================
BREADCRUMBS BUTTON CSS
============================================
*/
/*
============================================
BLOG SECTION READ CSS
============================================
*/
.read a {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  background: linear-gradient(90deg, rgb(248, 99, 250) 0%, rgb(249, 7, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-size: 22px;
  line-height: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1399px) {
  .read a {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .read a {
    font-size: 18px;
  }
}
.read a:hover {
  background: linear-gradient(90deg, rgba(248, 99, 250, 0.7) 0%, rgba(249, 7, 252, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.read p {
  font-size: 16px;
  color: rgba(45, 45, 45, 0.4);
  text-transform: uppercase;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .read p {
    font-size: 14px;
  }
}

/*
============================================
BLOG SECTION READ CSS
============================================
*/
/*
============================================
BACK TOP BUTTON CSS
============================================
*/
#button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  border-radius: 50%;
  position: fixed;
  bottom: 60px;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  #button {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }
}
#button.show {
  opacity: 1;
  z-index: 9;
}

/*
============================================
BACK TOP BUTTON CSS
============================================
*/
/*
============================================
SCROLL BAR
============================================
*/
::-webkit-scrollbar,
::-webkit-scrollbar-width {
  width: 5px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-color {
  background: rgb(249, 7, 252);
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

/*
============================================
SCROLL BAR
============================================
*/
/*
============================================
COMMON FORM CSS
============================================
*/
.fill-up-form form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.fill-up-form form .form-group .image-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgb(5, 246, 249) -100%, rgb(249, 7, 252) 100%);
  border-radius: 9px;
  box-shadow: 0 4px 24px 0 rgba(109, 141, 173, 0.5);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .fill-up-form form .form-group .image-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
}
.fill-up-form form .form-group .user-input {
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(231, 231, 231, 0.4) 100%);
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 18px 0 rgba(109, 141, 173, 0.1), inset 0 4px 14px 0 rgba(202, 182, 182, 0.25);
  color: #2D2D2D;
  font-size: 16px;
  line-height: 1;
  padding: 15px 24px;
  outline: none;
  resize: none;
}
@media screen and (max-width: 480px) {
  .fill-up-form form .form-group .user-input {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.fill-up-form form .form-group .user-input::placeholder {
  color: rgba(45, 45, 45, 0.4);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .fill-up-form form .form-group .user-input::placeholder {
    font-size: 14px;
  }
}

/*
============================================
COMMON FORM CSS
============================================
*/
textarea {
  resize: none;
}

.swiper-wrapper {
  box-sizing: border-box;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-color {
  background: rgb(249, 7, 252);
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar,
::-webkit-scrollbar-width {
  width: 5px;
}

#pricing {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 767px) {
  #pricing {
    padding-top: 50px;
    margin-top: -50px;
  }
}

/*
============================================
PAGE LOADER CSS
============================================
*/
.page_loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_loader img {
  animation: loader 5s linear infinite;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page_loaderV2 {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_loaderV2 img {
  animation: loader 5s linear infinite;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*
============================================
PAGE LOADER CSS
============================================
*/
/*
============================================
SWIPER BUTTON CSS
============================================
*/
.btn-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .btn-block {
    justify-content: center;
  }
}
.btn-block .button {
  background: #ffffff;
  padding: 15px;
  border: 1px solid rgba(249, 7, 252, 0.12);
  border-radius: 50%;
}
@media screen and (max-width: 575px) {
  .btn-block .button {
    padding: 10px;
  }
}
.btn-block .prev img {
  transform: rotate(180deg);
}

/*
============================================
SWIPER BUTTON CSS
============================================
*/
/*
============================================
MODAL CSS
============================================
*/
.modal .modal-dialog {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .modal .modal-dialog {
    max-width: 500px;
  }
}
@media screen and (max-width: 575px) {
  .modal .modal-dialog {
    max-width: 100%;
  }
}
.modal .modal-dialog .modal-content .modal-body .btn-close {
  box-shadow: none;
}
.modal .modal-dialog .modal-content .modal-body video {
  width: 100%;
}

/*
============================================
MODAL CSS
============================================
*/
/*
============================================
BACKGROUND STRIPS LINES CSS
============================================
*/
img.strips {
  width: 120%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*
============================================
BACKGROUND STRIPS LINES CSS
============================================
*/
/*
============================================
HEADER CSS START FROM HERE
============================================
*/
header {
  position: relative;
  z-index: 9;
}
header::after {
  content: "";
  position: fixed;
  right: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  transition: right 0.6s ease;
}
header.active .header_block, header.active::after {
  right: 0;
}
header .navbar {
  padding: 15px 0;
}
header .navbar .logo {
  padding: 0;
}
@media (max-width: 575px) {
  header .navbar .logo {
    max-width: 100px;
  }
}
@media (max-width: 480px) {
  header .navbar .logo {
    max-width: 80px;
  }
}
header .navbar .hamburger {
  display: flex;
  align-items: center;
}
header .navbar .hamburger span {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #2D2D2D;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 480px) {
  header .navbar .hamburger span {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  header .navbar .hamburger img {
    max-width: 30px;
  }
}
header .header_block {
  position: fixed;
  right: -120%;
  top: 0;
  background-color: #ffffff;
  background-image: url(../images/background/header-menu-lines.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 999;
  width: 100%;
  max-width: 670px;
  height: 100%;
  transition: right 0.5s ease;
  padding: 40px;
}
@media (max-width: 991px) {
  header .header_block {
    max-width: 500px;
  }
}
@media (max-width: 575px) {
  header .header_block {
    max-width: 350px;
    padding: 30px;
  }
}
header .header_block .MobileView .closeBtn p {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 480px) {
  header .header_block .MobileView .closeBtn p {
    font-size: 12px;
  }
}
header .header_block .MobileView .closeBtn .close-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  position: relative;
}
header .header_block .MobileView .closeBtn .close-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F907FC;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .header_block .MobileView .closeBtn .close-icon span:last-child {
  transform: translate(-50%, -50%) rotate(135deg);
}
header .header_block ul li {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
}
@media (max-width: 1199px) {
  header .header_block ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  header .header_block ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
header .header_block ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
header .header_block ul li a {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.5);
  font-size: 38px;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  transition: all 0.5s ease;
}
@media (max-width: 1399px) {
  header .header_block ul li a {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  header .header_block ul li a {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  header .header_block ul li a {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  header .header_block ul li a {
    font-size: 18px;
  }
}
header .header_block ul li a::before {
  content: "";
  width: 45px;
  height: 45px;
  background: url(../images/icon/header-arrow.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) {
  header .header_block ul li a::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 575px) {
  header .header_block ul li a::before {
    width: 25px;
    height: 25px;
  }
}
header .header_block ul li a:hover, header .header_block ul li a.active {
  color: #F907FC;
}
header .header_block ul li a:hover::before, header .header_block ul li a.active::before {
  right: -100px;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  header .header_block ul li a:hover::before, header .header_block ul li a.active::before {
    right: -60px;
  }
}
@media screen and (max-width: 575px) {
  header .header_block ul li a:hover::before, header .header_block ul li a.active::before {
    right: -50px;
  }
}
header .header_block ul li a:hover img, header .header_block ul li a.active img {
  left: 100%;
  opacity: 1;
}
header .header_block ul li.dropdown a::before {
  display: none;
}
header .header_block ul li.dropdown .dropdown-menu {
  margin-top: 10px;
  padding: 0;
}
header .header_block ul li.dropdown .dropdown-menu li {
  margin-bottom: 0;
  padding-bottom: 0;
}
header .header_block ul li.dropdown .dropdown-menu .dropdown-item {
  font-size: 20px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  header .header_block ul li.dropdown .dropdown-menu .dropdown-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  header .header_block ul li.dropdown .dropdown-menu .dropdown-item {
    font-size: 16px;
  }
}
header .header_block ul li.dropdown .dropdown-menu .dropdown-item::after {
  display: none;
}
header.stickyMenu {
  position: sticky;
  top: -200px;
  width: 100%;
  transition: 0.3s all ease;
  background-color: #ffffff !important;
  box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.16);
  padding: 0;
}
header.menuActive {
  top: 0px;
}

/*
============================================
HEADER CSS END FROM HERE
============================================
*/
/*
============================================
FOOTER CSS START FROM HERE
============================================
*/
footer .footer-wrapper {
  padding: 50px 0 30px;
  background: rgba(45, 45, 45, 0.8);
}
footer .footer-wrapper .footer-block .top-block {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 575px) {
  footer .footer-wrapper .footer-block .top-block {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-wrapper .footer-block .top-block .logo {
    max-width: 130px;
  }
}
footer .footer-wrapper .footer-block .top-block .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-wrapper .footer-block .top-block .icon-wrapper .image-wrapper {
  transition: all 0.3s ease;
}
footer .footer-wrapper .footer-block .top-block .icon-wrapper .image-wrapper:hover {
  transform: scale(1.2);
}
footer .footer-wrapper .footer-block .footer-content ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
}
@media screen and (max-width: 1399px) {
  footer .footer-wrapper .footer-block .footer-content ul {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  footer .footer-wrapper .footer-block .footer-content ul {
    gap: 20px;
  }
}
footer .footer-wrapper .footer-block .footer-content ul li a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1399px) {
  footer .footer-wrapper .footer-block .footer-content ul li a {
    font-size: 16px;
  }
}
footer .footer-wrapper .footer-block .footer-content ul li a:hover {
  color: #ffffff;
}
footer .copyright {
  padding: 10px;
  background: #2D2D2D;
}
@media screen and (max-width: 991px) {
  footer .copyright {
    padding-bottom: 70px;
  }
}
footer .copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  footer .copyright p {
    font-size: 14px;
  }
}
footer.error-page .copyright {
  padding: 10px !important;
}

/*
============================================
FOOTER CSS END'S FROM HERE
============================================
*/
/*
============================================
404 SECTION CSS
============================================
*/
.error-wrapper {
  padding: 250px 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/background/error-page-lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: calc(100vh - 97px);
}
@media screen and (max-width: 991px) {
  .error-wrapper {
    padding: 200px 0;
    height: calc(100vh - 86px);
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper {
    padding: 30px 0;
    height: calc(100vh - 79px);
  }
}
.error-wrapper::after, .error-wrapper::before {
  content: "";
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.error-wrapper::after {
  width: 340px;
  height: 370px;
  background-image: url(../images/background/error-img-1.webp);
  top: -30px;
  right: 0;
  animation: floating 3s linear infinite;
}
@media screen and (max-width: 1399px) {
  .error-wrapper::after {
    width: 240px;
    height: 270px;
  }
}
@media screen and (max-width: 991px) {
  .error-wrapper::after {
    width: 180px;
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .error-wrapper::after {
    width: 100px;
    height: 120px;
  }
}
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.error-wrapper::before {
  width: 220px;
  height: 220px;
  background-image: url(../images/background/error-img-2.webp);
  bottom: 50px;
  left: -50px;
  animation: floating2 3s linear infinite;
}
@media screen and (max-width: 1399px) {
  .error-wrapper::before {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 480px) {
  .error-wrapper::before {
    width: 140px;
    height: 140px;
  }
}
@keyframes floating2 {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.error-wrapper .wrapper {
  background: url(../images/background/strips.svg) no-repeat;
  background-size: cover;
  position: relative;
}
.error-wrapper .wrapper::after, .error-wrapper .wrapper::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  filter: blur(100px);
  opacity: 0.5;
  z-index: -1;
}
.error-wrapper .wrapper::after {
  width: 560px;
  height: 240px;
  background: #16CC3E;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 1399px) {
  .error-wrapper .wrapper::after {
    width: 460px;
  }
}
@media screen and (max-width: 1199px) {
  .error-wrapper .wrapper::after {
    width: 360px;
  }
}
@media screen and (max-width: 991px) {
  .error-wrapper .wrapper::after {
    width: 260px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper::after {
    top: 20%;
  }
}
.error-wrapper .wrapper::before {
  width: 680px;
  height: 360px;
  background: #234EE7;
  top: 70%;
  right: 0;
}
@media screen and (max-width: 1399px) {
  .error-wrapper .wrapper::before {
    width: 580px;
  }
}
@media screen and (max-width: 1199px) {
  .error-wrapper .wrapper::before {
    width: 480px;
  }
}
@media screen and (max-width: 991px) {
  .error-wrapper .wrapper::before {
    width: 380px;
    height: 260px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper::before {
    top: 90%;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper .error-img {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
}
.error-wrapper .wrapper .text-block .count-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.error-wrapper .wrapper .text-block .count-section .count-item {
  width: 120px;
  height: 110px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.21) 100%);
  border: 1px solid #ffffff;
  padding: 10px;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .error-wrapper .wrapper .text-block .count-section .count-item {
    width: 110px;
    height: 100px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper .text-block .count-section .count-item {
    width: 100px;
    height: 90px;
  }
}
.error-wrapper .wrapper .text-block .count-section .count-item span {
  color: #555555;
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .error-wrapper .wrapper .text-block .count-section .count-item span {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .error-wrapper .wrapper .text-block .count-section .count-item span {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper .text-block .count-section .count-item span {
    font-size: 22px;
  }
}
.error-wrapper .wrapper .text-block .count-section .count-item p {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #F907FC;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  padding-top: 10px;
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper .text-block .count-section .count-item p {
    font-size: 12px;
  }
}
.error-wrapper .wrapper .lines {
  display: flex;
  align-items: center;
}
.error-wrapper .wrapper .lines span {
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
}
.error-wrapper .wrapper .join-block .title {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .error-wrapper .wrapper .join-block .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .error-wrapper .wrapper .join-block .title {
    font-size: 20px;
  }
}

/*
============================================
404 SECTION CSS
============================================
*/
/*
============================================
SITEMAP SECTION CSS
============================================
*/
.sitemap-section .sitemap-wrapper .sitemap-block ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sitemap-section .sitemap-wrapper .sitemap-block ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sitemap-section .sitemap-wrapper .sitemap-block ul li::before {
  content: url(../images/icon/gradient-arrow.svg);
  width: 24px;
  height: 24px;
}
.sitemap-section .sitemap-wrapper .sitemap-block ul li .sub-menu {
  width: 100%;
  padding-left: 50px;
}
.sitemap-section .sitemap-wrapper .sitemap-block ul li a {
  color: #2D2D2D;
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .sitemap-section .sitemap-wrapper .sitemap-block ul li a {
    font-size: 18px;
  }
}
.sitemap-section .sitemap-wrapper .sitemap-block ul li a:hover {
  color: rgb(249, 7, 252);
}

/*
============================================
SITEMAP SECTION CSS
============================================
*/
/*
============================================
BANNER SECTION START FROM HERE
============================================
*/
.banner-wrapper {
  position: relative;
}
.banner-wrapper::after, .banner-wrapper::before {
  content: "";
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .banner-wrapper::after, .banner-wrapper::before {
    filter: blur(70px);
  }
}
@media (max-width: 575px) {
  .banner-wrapper::after, .banner-wrapper::before {
    display: none;
  }
}
.banner-wrapper::after {
  width: 140px;
  height: 140px;
  background-color: #16CC3E;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .banner-wrapper::after {
    width: 100px;
    height: 100px;
  }
}
.banner-wrapper::before {
  width: 180px;
  height: 180px;
  background-color: #234EE7;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .banner-wrapper::before {
    width: 100px;
    height: 100px;
  }
}
.banner-wrapper .strips {
  width: 125%;
  height: 125%;
  top: -15%;
}
.banner-wrapper .imgBlock {
  position: relative;
  background-image: url(../images/background/banner-pettern.svg), url(../images/background/strips.svg);
  background-repeat: no-repeat;
  background-position: 0px;
}
.banner-wrapper .imgBlock::after, .banner-wrapper .imgBlock::before {
  content: "";
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .banner-wrapper .imgBlock::after, .banner-wrapper .imgBlock::before {
    filter: blur(60px);
  }
}
@media (max-width: 480px) {
  .banner-wrapper .imgBlock::after, .banner-wrapper .imgBlock::before {
    filter: blur(30px);
  }
}
.banner-wrapper .imgBlock::after {
  width: 470px;
  height: 470px;
  background-color: rgba(22, 204, 62, 0.5);
  filter: blur(120px);
  left: 50%;
  bottom: 75px;
}
@media (max-width: 1399px) {
  .banner-wrapper .imgBlock::after {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1199px) {
  .banner-wrapper .imgBlock::after {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 575px) {
  .banner-wrapper .imgBlock::after {
    display: none;
  }
}
.banner-wrapper .imgBlock::before {
  width: 500px;
  height: 400px;
  background-color: rgba(35, 78, 231, 0.5);
  left: 200px;
}
@media (max-width: 1399px) {
  .banner-wrapper .imgBlock::before {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1199px) {
  .banner-wrapper .imgBlock::before {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 575px) {
  .banner-wrapper .imgBlock::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .banner-wrapper .imgBlock::before {
    width: 100px;
    height: 100px;
  }
}
.banner-wrapper .imgBlock .members {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  bottom: 150px;
  left: 0;
}
@media (max-width: 1399px) {
  .banner-wrapper .imgBlock .members {
    bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  .banner-wrapper .imgBlock .btn_wrapper {
    position: absolute;
    bottom: 150px;
    right: 40px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .banner-wrapper .imgBlock .btn_wrapper {
    bottom: 100px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-wrapper .imgBlock .btn_wrapper {
    right: 0;
  }
}

/*
============================================
BANNER SECTION END'S FROM HERE
============================================
*/
/*
============================================
SUCCESS SECTION START FROM HERE
============================================
*/
.success-section .success-wrapper .success-box {
  height: 100%;
  border-radius: 18px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .success-section .success-wrapper .success-box {
    max-width: 350px;
    margin: auto;
  }
}
.success-section .success-wrapper .success-box.icon-box {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .success-section .success-wrapper .success-box.icon-box {
    padding: 20px;
  }
}
.success-section .success-wrapper .success-box.icon-box .box-text {
  padding: 0;
}
.success-section .success-wrapper .success-box.first-box {
  background: linear-gradient(180deg, rgb(22, 204, 62) 0%, rgb(4, 144, 35) 100%);
}
.success-section .success-wrapper .success-box.first-box.opacity-box {
  background: linear-gradient(180deg, rgba(22, 204, 62, 0.2) 0%, rgba(4, 144, 35, 0.2) 100%);
}
.success-section .success-wrapper .success-box.last-box {
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
}
.success-section .success-wrapper .success-box.last-box.opacity-box {
  background: linear-gradient(180deg, rgba(5, 246, 249, 0.2) -80%, rgba(249, 7, 252, 0.2) 100%);
}
.success-section .success-wrapper .success-box .image-wrapper.icon {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 25px;
}
.success-section .success-wrapper .success-box .image-wrapper .box-img {
  display: block;
  width: 100%;
}
.success-section .success-wrapper .success-box .box-text {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .success-section .success-wrapper .success-box .box-text {
    padding: 20px;
  }
}
.success-section .success-wrapper .success-box .box-text.position {
  position: absolute;
  bottom: 0;
  left: 0;
}
.success-section .success-wrapper .success-box .box-text span {
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
.success-section .success-wrapper .success-box .box-text span.white {
  color: #ffffff;
  font-size: 40px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1399px) {
  .success-section .success-wrapper .success-box .box-text span.white {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .success-section .success-wrapper .success-box .box-text span.white {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .success-section .success-wrapper .success-box .box-text span.white {
    font-size: 20px;
  }
}
.success-section .success-wrapper .success-box .box-text span.gradient {
  font-size: 34px;
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1399px) {
  .success-section .success-wrapper .success-box .box-text span.gradient {
    font-size: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .success-section .success-wrapper .success-box .box-text span.gradient {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .success-section .success-wrapper .success-box .box-text span.gradient {
    font-size: 18px;
  }
}
.success-section .success-wrapper .success-box .box-text span.gradient-2 {
  background: linear-gradient(180deg, rgb(22, 204, 62) 0%, rgb(4, 144, 35) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.success-section .success-wrapper .success-box .box-text p {
  color: #ffffff;
}

/*
============================================
SUCCESS SECTION END'S FROM HERE
============================================
*/
/*
============================================
ABOUT SECTION START FROM HERE
============================================
*/
.about-section .about-wrapper .image-wrapper {
  position: relative;
}
@media screen and (max-width: 575px) {
  .about-section .about-wrapper .image-wrapper {
    max-width: 320px;
    margin: auto;
  }
}
.about-section .about-wrapper .image-wrapper::after, .about-section .about-wrapper .image-wrapper::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(80px);
}
@media screen and (max-width: 575px) {
  .about-section .about-wrapper .image-wrapper::after, .about-section .about-wrapper .image-wrapper::before {
    filter: blur(40px);
  }
}
.about-section .about-wrapper .image-wrapper::after {
  width: 420px;
  height: 180px;
  background-color: #16CC3E;
  left: 0;
}
@media screen and (max-width: 575px) {
  .about-section .about-wrapper .image-wrapper::after {
    width: 220px;
    height: 80px;
  }
}
.about-section .about-wrapper .image-wrapper::before {
  width: 340px;
  height: 200px;
  background-color: #234EE7;
  right: 50px;
  transform: translateY(-50%) rotate(120deg);
}
@media screen and (max-width: 575px) {
  .about-section .about-wrapper .image-wrapper::before {
    width: 140px;
    height: 100px;
  }
}
.about-section .about-wrapper .image-wrapper .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*
============================================
ABOUT SECTION END'S FROM HERE
============================================
*/
/*
============================================
CTA SECTION START FROM HERE
============================================
*/
.cta-section {
  background: url(../images/background/cta-line.svg) no-repeat;
  background-size: contain;
  background-position: top center;
}
@media screen and (max-width: 575px) {
  .cta-section {
    background-image: none;
  }
}
.cta-section .cta-wrapper .cta-text {
  padding: 50px 100px 200px 50px;
  border-radius: 28px;
  background: radial-gradient(119.23% 119.23% at 50% -19.23%, #05F6F9 0%, #F907FC 100%), #D9D9D9;
  transform: perspective(1000px) rotateX(-25deg);
}
@media screen and (max-width: 1399px) {
  .cta-section .cta-wrapper .cta-text {
    padding: 50px 100px 150px 50px;
  }
}
@media screen and (max-width: 767px) {
  .cta-section .cta-wrapper .cta-text {
    padding: 50px 50px 100px;
  }
}
@media screen and (max-width: 575px) {
  .cta-section .cta-wrapper .cta-text {
    padding: 30px 30px 100px;
  }
}
@media screen and (max-width: 480px) {
  .cta-section .cta-wrapper .cta-text {
    padding: 30px 30px 80px;
  }
}
.cta-section .cta-wrapper .cta-text .title,
.cta-section .cta-wrapper .cta-text p {
  color: #ffffff;
}
.cta-section .cta-wrapper .mockup {
  margin-top: -200px;
  position: relative;
  margin-bottom: -90px;
}
@media screen and (max-width: 1399px) {
  .cta-section .cta-wrapper .mockup {
    margin-top: -150px;
  }
}
@media screen and (max-width: 767px) {
  .cta-section .cta-wrapper .mockup {
    margin-top: -100px;
    margin-bottom: -40px;
  }
}
@media screen and (max-width: 575px) {
  .cta-section .cta-wrapper .mockup {
    max-width: 320px;
  }
}
@media screen and (max-width: 480px) {
  .cta-section .cta-wrapper .mockup {
    margin-top: -80px;
  }
}

/*
============================================
CTA SECTION END'S FROM HERE
============================================
*/
/*
============================================
NOTICE SECTION START FROM HERE
============================================
*/
.notice-section {
  overflow: hidden;
}
.notice-section .notice {
  position: relative;
  height: 200px;
}
@media screen and (max-width: 575px) {
  .notice-section .notice {
    height: 150px;
  }
}
@media screen and (max-width: 480px) {
  .notice-section .notice {
    height: 100px;
  }
}
.notice-section .notice .notice-slide {
  width: calc(100% + 50px);
  margin-left: -20px;
  background: linear-gradient(90deg, rgb(22, 204, 62) 0%, rgb(22, 204, 62) 32%, rgb(35, 78, 231) 66%, rgb(35, 78, 231) 100%);
  box-shadow: 0px 10px 32px rgba(65, 121, 234, 0.28);
  padding: 20px 0;
  display: flex;
  transform: translateY(-50%) skew(0deg, -4deg);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 991px) {
  .notice-section .notice .notice-slide {
    padding: 15px 0;
    transform: translateY(-50%) skew(0deg, -6deg);
  }
}
@media screen and (max-width: 480px) {
  .notice-section .notice .notice-slide {
    padding: 10px 0;
  }
}
.notice-section .notice .notice-slide:last-child {
  transform: translateY(-50%) skew(0deg, 4deg);
  background: linear-gradient(270deg, rgb(22, 204, 62) 0%, rgb(22, 204, 62) 32%, rgb(35, 78, 231) 66%, rgb(35, 78, 231) 100%);
}
@media screen and (max-width: 991px) {
  .notice-section .notice .notice-slide:last-child {
    transform: translateY(-50%) skew(0deg, 6deg);
  }
}
.notice-section .notice .notice-slide:last-child img {
  animation: marquee2 15s linear infinite;
}
.notice-section .notice .notice-slide img {
  animation: marquee1 15s linear infinite;
  margin-right: 20px;
}
@keyframes marquee1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes marquee2 {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/*
============================================
NOTICE SECTION END'S FROM HERE
============================================
*/
/*
============================================
STAND WITH SECTION START FROM HERE
============================================
*/
.stand-with-section.strips {
  background: url(../images/background/strips.svg) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.stand-with-section.strips::after {
  content: "";
  width: 580px;
  height: 340px;
  background: #234EE7;
  position: absolute;
  top: 50%;
  right: 150px;
  transform: translateY(-50%);
  filter: blur(150px);
  z-index: -1;
}
@media screen and (max-width: 1399px) {
  .stand-with-section.strips::after {
    width: 380px;
    height: 240px;
    right: 100px;
  }
}
@media screen and (max-width: 991px) {
  .stand-with-section.strips::after {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .stand-with-section.strips::after {
    width: 280px;
    height: 140px;
    filter: blur(100px);
  }
}
@media screen and (max-width: 480px) {
  .stand-with-section.strips::after {
    filter: blur(60px);
  }
}
.stand-with-section.strips::before {
  content: "";
  width: 560px;
  height: 230px;
  background: #16CC3E;
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
  filter: blur(150px);
  z-index: -1;
}
@media screen and (max-width: 1399px) {
  .stand-with-section.strips::before {
    width: 360px;
    height: 130px;
  }
}
@media screen and (max-width: 991px) {
  .stand-with-section.strips::before {
    display: none;
  }
}
.stand-with-section .stand-with-wrapper .text-block {
  position: relative;
  z-index: 1;
}
.stand-with-section .stand-with-wrapper .text-block span {
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #2D2D2D;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .stand-with-section .stand-with-wrapper .text-block span {
    font-size: 16px;
  }
}
.stand-with-section .img-block .image-wrapper {
  position: relative;
  background-image: url(../images/background/stand-with-pettern.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 30px;
}
@media screen and (min-width: 992px) {
  .stand-with-section .img-block .image-wrapper {
    margin-top: -150px;
  }
}
.stand-with-section .img-block .image-wrapper .btn_wrapper {
  position: absolute;
  bottom: 100px;
  right: 100px;
}
@media screen and (max-width: 1199px) {
  .stand-with-section .img-block .image-wrapper .btn_wrapper {
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  .stand-with-section .img-block .image-wrapper .btn_wrapper {
    position: static;
  }
}
.stand-with-section .img-block.img-block-2 .image-wrapper {
  background-position: center;
}
@media screen and (min-width: 992px) {
  .stand-with-section .img-block.img-block-2 .image-wrapper {
    margin-top: -100px;
  }
}
.stand-with-section .img-block.img-block-2 .image-wrapper::after {
  left: 150px;
}
.stand-with-section .img-block.img-block-2 .image-wrapper::before {
  top: auto;
  bottom: 50px;
  right: 200px;
}
@media screen and (max-width: 991px) {
  .stand-with-section .img-block.img-block-2 .image-wrapper img {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
}
@media screen and (max-width: 575px) {
  .stand-with-section .img-block.img-block-2 .image-wrapper img {
    max-width: 350px;
  }
}

/*
============================================
STAND WITH SECTION END'S FROM HERE
============================================
*/
/*
============================================
PRICING SECTION END'S FROM HERE
============================================
*/
.pricing-section {
  background: url(../images/background/pricing-paper-texture.webp) no-repeat;
  background-position: center;
}
@media screen and (max-width: 1199px) {
  .pricing-section .content {
    overflow-x: auto;
    padding: 25px 0;
  }
}
.pricing-section ::-webkit-scrollbar,
.pricing-section ::-webkit-scrollbar-height {
  height: 5px;
}
@media screen and (max-width: 1199px) {
  .pricing-section .pricing-wrapper {
    width: 1116px;
  }
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper {
    width: 856px;
  }
}
@media screen and (max-width: 480px) {
  .pricing-section .pricing-wrapper {
    width: 806px;
  }
}
.pricing-section .pricing-wrapper .option-wrapper .nav {
  width: 100%;
  max-width: max-content;
  padding: 6px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(231, 231, 231) 100%);
  border: 1px solid #ffffff;
  border-radius: 33px;
  box-shadow: 0 13px 36px 0 rgba(109, 141, 173, 0.21), inset 0 4px 14px 0 rgba(202, 182, 182, 0.25);
}
@media screen and (max-width: 480px) {
  .pricing-section .pricing-wrapper .option-wrapper .nav {
    padding: 5px;
  }
}
.pricing-section .pricing-wrapper .option-wrapper .nav .nav-item .nav-link {
  background: transparent;
  padding: 16px 34px;
  border-radius: 48px;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.45);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1399px) {
  .pricing-section .pricing-wrapper .option-wrapper .nav .nav-item .nav-link {
    font-size: 12px;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .option-wrapper .nav .nav-item .nav-link {
    padding: 10px 20px;
    font-size: 10px;
  }
}
.pricing-section .pricing-wrapper .option-wrapper .nav .nav-item .nav-link.active {
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  color: #ffffff;
}
.pricing-section .pricing-wrapper .option-wrapper .options ul li {
  font-weight: 500;
  color: #2D2D2D;
  font-size: 20px;
  line-height: 1.5;
  padding-left: 35px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E6E6E6;
  position: relative;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .option-wrapper .options ul li {
    font-size: 16px;
    padding-left: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.pricing-section .pricing-wrapper .option-wrapper .options ul li::after {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, rgb(22, 204, 62) 0%, rgb(22, 204, 62) 32%, rgb(35, 78, 231) 66%, rgb(35, 78, 231) 100%);
  position: absolute;
  top: 10px;
  left: 14px;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .option-wrapper .options ul li::after {
    display: none;
  }
}
.pricing-section .pricing-wrapper .option-wrapper .options .price {
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .option-wrapper .options .price {
    font-size: 20px;
  }
}
.pricing-section .pricing-wrapper .pricing-block {
  position: relative;
}
.pricing-section .pricing-wrapper .pricing-block::before {
  content: "";
  width: 100%;
  height: 60px;
  background: #ebeffc;
  border-radius: 48px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1399px) {
  .pricing-section .pricing-wrapper .pricing-block::before {
    height: 56px;
  }
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block::before {
    height: 44px;
  }
}
@media screen and (max-width: 480px) {
  .pricing-section .pricing-wrapper .pricing-block::before {
    height: 42px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan {
  position: relative;
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan .title {
  padding: 20px;
  background: #EBEFFC;
  border-radius: 48px;
  color: rgba(45, 45, 45, 0.45);
  font-size: 20px;
  line-height: 1;
  text-align: center;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1399px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .title {
    padding: 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .title {
    font-size: 12px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan ul li {
  padding-bottom: 24px;
  margin-bottom: 24px;
  line-height: 0;
  border-bottom: 1px solid #E6E6E6;
  transition: all 0.5s ease;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan ul li img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan ul li img {
    width: 24px;
    height: 24px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing {
  text-align: center;
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing span {
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #2D2D2D;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 1399px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing span {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing span {
    font-size: 16px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing span.free {
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing p {
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .pricing p {
    font-size: 14px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan .btn_wrapper {
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan .btn_wrapper {
    padding: 10px 20px;
    font-size: 10px;
    border-radius: 8px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/background/pricing-bg.svg), #ffffff;
  background-repeat: no-repeat;
  background-position: top;
  border: 1px solid #F907FC;
  border-radius: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan::after {
    border-radius: 14px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan:hover .title {
  background: linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan:hover ul li {
  border-color: transparent;
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan:hover::after {
  height: calc(100% + 50px);
  opacity: 1;
}
@media screen and (max-width: 575px) {
  .pricing-section .pricing-wrapper .pricing-block .pricing-plan:hover::after {
    height: calc(100% + 30px);
    border-radius: 14px;
  }
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan:hover::before {
  opacity: 1;
}
.pricing-section .pricing-wrapper .pricing-block .pricing-plan:hover .btn_wrapper {
  opacity: 1;
  z-index: 1;
}
.pricing-section .faqs-wrapper {
  width: 750px;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .pricing-section .faqs-wrapper {
    width: 100%;
  }
}

/*
============================================
PRICING SECTION END'S FROM HERE
============================================
*/
/*
============================================
SPECIAL SECTION END'S FROM HERE
============================================
*/
.special-section {
  background: url(../images/background/special-line.svg) no-repeat;
  background-size: 100% 100%;
  background-position: 0 center;
}
@media screen and (max-width: 991px) {
  .special-section {
    background-image: none;
  }
}
.special-section .special-wrapper .special-block {
  padding: 35px;
  border-radius: 20px;
  background-image: url(../images/background/special-pettern.svg), linear-gradient(180deg, rgb(5, 246, 249) -80%, rgb(249, 7, 252) 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .special-section .special-wrapper .special-block {
    padding: 20px;
  }
}
.special-section .special-wrapper .special-block.second-box {
  background-image: url(../images/background/special-pettern-2.svg), linear-gradient(180deg, rgb(22, 204, 62) 0%, rgb(4, 144, 35) 100%);
  background-position: top;
}
.special-section .special-wrapper .special-block span {
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1399px) {
  .special-section .special-wrapper .special-block span {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .special-section .special-wrapper .special-block span {
    font-size: 22px;
  }
}
.special-section .special-wrapper .special-block span.tags {
  font-size: 28px;
  margin-bottom: 0;
}
@media screen and (max-width: 1399px) {
  .special-section .special-wrapper .special-block span.tags {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .special-section .special-wrapper .special-block span.tags {
    font-size: 18px;
  }
}
.special-section .special-wrapper .special-block p {
  color: #ffffff;
}
.special-section .special-wrapper .special-block .image-wrapper {
  margin-right: -35px;
  margin-left: -35px;
}
@media screen and (max-width: 480px) {
  .special-section .special-wrapper .special-block .image-wrapper {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.special-section .special-wrapper .special-block .image-wrapper img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 575px) {
  .special-section .special-wrapper .special-block .image-wrapper img {
    width: 100%;
    max-width: 350px;
  }
}

/*
============================================
SPECIAL SECTION END'S FROM HERE
============================================
*/
/*
============================================
CLIENT SECTION END'S FROM HERE
============================================
*/
.client-section {
  overflow: hidden;
}
.client-section .client-wrapper .clientImg {
  position: relative;
}
.client-section .client-wrapper .clientImg::after, .client-section .client-wrapper .clientImg::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(80px);
}
@media screen and (max-width: 575px) {
  .client-section .client-wrapper .clientImg::after, .client-section .client-wrapper .clientImg::before {
    filter: blur(40px);
  }
}
.client-section .client-wrapper .clientImg::after {
  width: 420px;
  height: 180px;
  background-color: #16CC3E;
  left: 0;
}
@media screen and (max-width: 575px) {
  .client-section .client-wrapper .clientImg::after {
    width: 220px;
    height: 80px;
  }
}
.client-section .client-wrapper .clientImg::before {
  width: 340px;
  height: 200px;
  background-color: #234EE7;
  right: 50px;
  transform: translateY(-50%) rotate(120deg);
}
@media screen and (max-width: 575px) {
  .client-section .client-wrapper .clientImg::before {
    width: 140px;
    height: 100px;
  }
}
@media screen and (max-width: 575px) {
  .client-section .client-wrapper .clientImg > img {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}
.client-section .client-wrapper .clientImg .pettern {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  overflow: hidden;
}
.client-section .client-wrapper .clientImg .pettern img {
  display: block;
  margin: auto;
  animation: marquee-slide 10s linear infinite;
}
@keyframes marquee-slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
.client-section .client-wrapper .client-text .title {
  font-size: 34px;
}
@media screen and (max-width: 1399px) {
  .client-section .client-wrapper .client-text .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .client-section .client-wrapper .client-text .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .client-section .client-wrapper .client-text .title {
    font-size: 20px;
  }
}
.client-section .client-wrapper .client-text .ClientSwiper {
  position: relative;
}
.client-section .client-wrapper .client-text .ClientSwiper .swiper-slide {
  height: auto;
}
.client-section .client-wrapper .client-text .ClientSwiper .review-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .client-section .client-wrapper .client-text .ClientSwiper .review-block {
    text-align: center;
  }
}
.client-section .client-wrapper .client-text .ClientSwiper .review {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .client-section .client-wrapper .client-text .ClientSwiper .review {
    text-align: left;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .client-section .client-wrapper .client-text .ClientSwiper .review img {
    max-width: 60px;
  }
}
.client-section .client-wrapper .client-text .ClientSwiper .review .review-text span {
  display: block;
  font-weight: 600;
  color: #2D2D2D;
  font-size: 22px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .client-section .client-wrapper .client-text .ClientSwiper .review .review-text span {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .client-section .client-wrapper .client-text .ClientSwiper .btn-block {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
}

/*
============================================
CLIENT SECTION END'S FROM HERE
============================================
*/
/*
============================================
BLOG SECTION END'S FROM HERE
============================================
*/
@media screen and (max-width: 575px) {
  .blog-section .blog-wrapper .blog-block {
    display: block;
    max-width: 350px;
    margin: auto;
  }
}
.blog-section .blog-wrapper .blog-block .image-wrapper {
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.blog-section .blog-wrapper .blog-block img {
  display: block;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.blog-section .blog-wrapper .blog-block:hover img {
  transform: scale(1.2);
}

/*
============================================
BLOG SECTION END'S FROM HERE
============================================
*/
/*
============================================
INSTAGRAM SECTION END'S FROM HERE
============================================
*/
.instagram-section .instagram-wrapper {
  position: relative;
  overflow: hidden;
}
.instagram-section .instagram-wrapper .image-wrapper {
  position: relative;
}
.instagram-section .instagram-wrapper .image-wrapper img {
  display: block;
  width: 100%;
}
.instagram-section .instagram-wrapper .image-wrapper .img-block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.instagram-section .instagram-wrapper .image-wrapper .img-block img.img-3 {
  margin-left: -150px;
}
@media screen and (max-width: 1399px) {
  .instagram-section .instagram-wrapper .image-wrapper .img-block img.img-3 {
    margin-left: -100px;
  }
}
@media screen and (max-width: 991px) {
  .instagram-section .instagram-wrapper .image-wrapper .img-block img.img-3 {
    margin-left: -50px;
  }
}
@media screen and (max-width: 480px) {
  .instagram-section .instagram-wrapper .image-wrapper .img-block img.img-3 {
    margin-left: -20px;
  }
}
.instagram-section .instagram-wrapper .image-wrapper .img-block img.img-6 {
  margin-left: 150px;
  animation-direction: unset;
}
@media screen and (max-width: 1399px) {
  .instagram-section .instagram-wrapper .image-wrapper .img-block img.img-6 {
    margin-left: 100px;
  }
}
@media screen and (max-width: 991px) {
  .instagram-section .instagram-wrapper .image-wrapper .img-block img.img-6 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 480px) {
  .instagram-section .instagram-wrapper .image-wrapper .img-block img.img-6 {
    margin-left: 20px;
  }
}
.instagram-section .instagram-wrapper .text-block {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.instagram-section .instagram-wrapper .text-block p {
  font-size: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .instagram-section .instagram-wrapper .text-block p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .instagram-section .instagram-wrapper .text-block p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .instagram-section .instagram-wrapper .text-block p {
    font-size: 14px;
  }
}
.instagram-section .instagram-wrapper .text-block a {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 1;
  background: linear-gradient(270deg, rgb(22, 204, 62) 0%, rgb(22, 204, 62) 32%, rgb(35, 78, 231) 66%, rgb(35, 78, 231) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 1399px) {
  .instagram-section .instagram-wrapper .text-block a {
    font-size: 52px;
  }
}
@media screen and (max-width: 991px) {
  .instagram-section .instagram-wrapper .text-block a {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .instagram-section .instagram-wrapper .text-block a {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .instagram-section .instagram-wrapper .text-block a {
    font-size: 20px;
  }
}

/*
============================================
INSTAGRAM SECTION END'S FROM HERE
============================================
*/
/*
============================================
STAND WITH SECTION START FROM HERE
============================================
*/
.stand-with-section.strips-2::after {
  top: 65%;
  right: 350px;
  opacity: 0.8;
}
@media screen and (max-width: 1399px) {
  .stand-with-section.strips-2::after {
    right: 150px;
  }
}
.stand-with-section .img-block.img-block-2 .image-wrapper {
  background-position: center;
}
@media screen and (min-width: 992px) {
  .stand-with-section .img-block.img-block-2 .image-wrapper {
    margin-top: -100px;
  }
}
@media screen and (max-width: 991px) {
  .stand-with-section .img-block.img-block-2 .image-wrapper img {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
}
@media screen and (max-width: 575px) {
  .stand-with-section .img-block.img-block-2 .image-wrapper img {
    max-width: 350px;
  }
}

/*
============================================
STAND WITH SECTION END'S FROM HERE
============================================
*/
/*
============================================
MISSION SECTION END'S FROM HERE
============================================
*/
.mission-section .mission-wrapper .image-wrapper {
  position: relative;
}
@media screen and (max-width: 575px) {
  .mission-section .mission-wrapper .image-wrapper {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
}
.mission-section .mission-wrapper .image-wrapper::after, .mission-section .mission-wrapper .image-wrapper::before {
  content: "";
  position: absolute;
  filter: blur(100px);
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .mission-section .mission-wrapper .image-wrapper::after, .mission-section .mission-wrapper .image-wrapper::before {
    filter: blur(50px);
  }
}
.mission-section .mission-wrapper .image-wrapper::after {
  width: 420px;
  height: 180px;
  background: #16CC3E;
  left: 0;
  top: 100px;
}
@media screen and (max-width: 1399px) {
  .mission-section .mission-wrapper .image-wrapper::after {
    width: 320px;
    height: 100px;
  }
}
@media screen and (max-width: 991px) {
  .mission-section .mission-wrapper .image-wrapper::after {
    width: 220px;
    height: 80px;
  }
}
.mission-section .mission-wrapper .image-wrapper::before {
  width: 345px;
  height: 200px;
  background: #234EE7;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-120deg);
}
@media screen and (max-width: 1399px) {
  .mission-section .mission-wrapper .image-wrapper::before {
    width: 245px;
    height: 100px;
  }
}
@media screen and (max-width: 991px) {
  .mission-section .mission-wrapper .image-wrapper::before {
    width: 145px;
    height: 80px;
  }
}

/*
============================================
MISSION SECTION END'S FROM HERE
============================================
*/
/*
============================================
TEAM SECTION END'S FROM HERE
============================================
*/
.team-section .team-wrapper .team-block .image-wrapper {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .team-section .team-wrapper .team-block .image-wrapper {
    display: block;
    max-width: 350px;
    margin: auto;
    margin-bottom: 15px;
  }
}
.team-section .team-wrapper .team-block .image-wrapper::before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  background: url(../images/team/team-bg.svg) no-repeat;
  background-size: contain;
  background-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.team-section .team-wrapper .team-block .image-wrapper img {
  display: block;
  margin: auto;
  filter: grayscale(1);
  transition: all 0.5s ease;
}
.team-section .team-wrapper .team-block .image-wrapper:hover img {
  filter: grayscale(0);
  transition: all 0.5s ease;
}
.team-section .team-wrapper .team-block .text-block span {
  font-weight: 600;
  color: #2D2D2D;
  font-size: 22px;
  line-height: 1;
}
.team-section .team-wrapper .team-block .text-block p {
  font-size: 16px;
}

/*
============================================
TEAM SECTION END'S FROM HERE
============================================
*/
/*
============================================
BLOG DETAILS SECTION CSS
============================================
*/
.blog-details-section .blogdtls .blogdtls-wrapper {
  padding-bottom: 30px;
}
.blog-details-section .blogdtls .blogdtls-wrapper .social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-details-section .blogdtls .blogdtls-wrapper .social span {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}
.blog-details-section .blogdtls .blogdtls-wrapper .social .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgb(5, 246, 249) -30%, rgb(249, 7, 252) 100%);
  width: 33px;
  height: 33px;
  border-radius: 30px;
  flex: 0 0 auto;
  padding: 5px;
  transition: all 0.3s ease;
}
.blog-details-section .blogdtls .blogdtls-wrapper .social .image-wrapper:hover {
  transform: scale(1.1);
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block {
  padding-bottom: 30px;
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block span {
  display: block;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.8);
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 10px;
}
@media screen and (max-width: 1399px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block span {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block span {
    font-size: 18px;
  }
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block ul {
  padding-bottom: 30px;
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block ul li {
  padding-left: 30px;
  padding-bottom: 15px;
  position: relative;
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block ul li:last-child {
  padding-bottom: 0;
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block ul li::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #F907FC;
  border: 3px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
  outline: 2px solid #16CC3E;
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper {
  padding-bottom: 30px;
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock {
  background: linear-gradient(180deg, rgba(5, 246, 249, 0.2) 0%, rgba(249, 7, 252, 0.2) 200%);
  border: 1px solid rgba(249, 7, 252, 0.42);
  padding: 45px 100px;
  border-radius: 24px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock {
    padding: 40px;
  }
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::after, .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::before {
  content: "";
  width: 30px;
  height: 23px;
  background: url(../images/icon/quote.svg) no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (max-width: 991px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::after, .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::before {
    width: 25px;
    height: 18px;
  }
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::after {
  bottom: 30px;
  right: 30px;
  transform: rotate(180deg);
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::after {
    bottom: 20px;
    right: 20px;
  }
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::before {
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock::before {
    top: 20px;
    left: 20px;
  }
}
.blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock p {
  color: #F907FC;
  font-size: 19px;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock p {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blogdtls-wrapper .blogdtls-block .boxWrapper .boxBlock p {
    font-size: 16px;
  }
}
.blog-details-section .blogdtls .blog-line {
  padding: 25px 0;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blog-line {
    padding: 15px 0;
  }
}
.blog-details-section .blogdtls .blog-line .blog-btn {
  display: block;
  width: 100%;
  max-width: 165px;
  background: #ffffff;
  box-shadow: 0 13px 27px 0 rgba(109, 141, 173, 0.25);
  border-radius: 12px;
  padding: 18px;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #F907FC;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .blog-details-section .blogdtls .blog-line .blog-btn {
    max-width: 120px;
    padding: 15px;
  }
}
@media screen and (max-width: 575px) {
  .blog-details-section .blogdtls .blog-line .blog-btn {
    max-width: 100px;
    font-size: 12px;
  }
}
.blog-details-section .blogdtls .blog-line .blog-btn.active {
  color: #ffffff;
  background: linear-gradient(180deg, rgb(5, 246, 249) -100%, rgb(249, 7, 252) 100%);
}
.blog-details-section .blogdtls .comment-wrapper .title {
  font-size: 24px;
}
@media screen and (max-width: 1399px) {
  .blog-details-section .blogdtls .comment-wrapper .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .blog-details-section .blogdtls .comment-wrapper .title {
    font-size: 18px;
  }
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E6E6E6;
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls {
    gap: 15px;
  }
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls span {
  font-weight: 600;
  color: #2D2D2D;
  font-size: 22px;
  line-height: 1;
}
@media screen and (max-width: 1399px) {
  .blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls span {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls span {
    font-size: 16px;
  }
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls p {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls p {
    font-size: 14px;
  }
}
.blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls .forward {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .blog-details-section .blogdtls .comment-wrapper .comment-block .comment .person-dtls .dtls .forward {
    gap: 20px;
  }
}
.blog-details-section .blogdtls .comment-wrapper .fill-up-form {
  padding: 40px 30px;
  border: 2px solid #ffffff;
  border-radius: 24px;
  box-shadow: 0 21px 40px 0 rgba(45, 109, 173, 0.15);
}
@media screen and (max-width: 1199px) {
  .blog-details-section .blogdtls .comment-wrapper .fill-up-form {
    padding: 30px 20px;
  }
}
.blog-details-section .blogdtls .wrapper .block {
  padding: 20px;
  background: linear-gradient(90deg, rgba(236, 236, 236, 0.3) 0%, rgba(231, 231, 231, 0.3) 100%);
  border-radius: 18px;
}
.blog-details-section .blogdtls .wrapper .block .box {
  padding-top: 12px;
}
.blog-details-section .blogdtls .wrapper .block .box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #E6E6E6;
}
.blog-details-section .blogdtls .wrapper .block .box ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details-section .blogdtls .wrapper .block .box ul li a, .blog-details-section .blogdtls .wrapper .block .box ul li p {
  margin: 0;
  color: rgba(45, 45, 45, 0.75);
  font-size: 16px;
  transition: all 0.3s ease;
}
.blog-details-section .blogdtls .wrapper .block .box ul li a:hover {
  color: #2D2D2D;
}
.blog-details-section .blogdtls .wrapper .block .box ul li p {
  color: rgba(45, 45, 45, 0.35);
}
.blog-details-section .blogdtls .wrapper .block .box.searchBlock input.user-input {
  padding-right: 50px;
}
.blog-details-section .blogdtls .wrapper .block .box.tagsBlock {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-details-section .blogdtls .wrapper .block .box.tagsBlock a {
  display: block;
  font-size: 18px;
  padding: 7px 18px;
  border: 1px solid rgba(45, 45, 45, 0.5);
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 1399px) {
  .blog-details-section .blogdtls .wrapper .block .box.tagsBlock a {
    font-size: 16px;
  }
}
.blog-details-section .blogdtls .wrapper .block .box.tagsBlock a::after {
  content: "";
  width: 0;
  height: 0;
  background: rgba(45, 45, 45, 0.5);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}
.blog-details-section .blogdtls .wrapper .block .box.tagsBlock a:hover::after {
  width: 100%;
  height: 100%;
}
.blog-details-section .blogdtls .wrapper .block .box.postBlock .post {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E6E6E6;
}
.blog-details-section .blogdtls .wrapper .block .box.postBlock .post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.blog-details-section .blogdtls .wrapper .block .box.postBlock .post .image-wrapper {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}
.blog-details-section .blogdtls .wrapper .block .box.postBlock .post span {
  font-weight: 600;
  color: rgba(45, 45, 45, 0.75);
  font-size: 14px;
}
.blog-details-section .blogdtls .wrapper .block .box.postBlock .post p {
  color: rgba(45, 45, 45, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 5px;
}

/*
============================================
BLOG DETAILS SECTION CSS
============================================
*/
/*
============================================
CONTACT SECTION CSS
============================================
*/
.contact-section.form-section {
  background-image: url(../images/background/map-img.webp);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 992px) {
  .contact-section.details-section {
    background-image: url(../images/background/contact-lines.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
}
.contact-section .contact-wrapper .fill-up-form {
  background: linear-gradient(180deg, rgb(250, 250, 250) 0%, rgb(252, 252, 252) 100%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 21px 40px 0 rgba(45, 109, 173, 0.15);
}
@media screen and (max-width: 480px) {
  .contact-section .contact-wrapper .fill-up-form {
    padding: 30px;
  }
}
.contact-section .contact-wrapper .fill-up-form .nice-select {
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .contact-section .contact-wrapper .fill-up-form .nice-select {
    height: 47px;
  }
}
.contact-section .contact-wrapper .fill-up-form .nice-select::after {
  position: static;
  width: 12px;
  height: 12px;
  background-image: url(../images/icon/gradient-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  transform: rotate(0deg);
  transform-origin: unset;
  transition: all 0.3s ease;
}
.contact-section .contact-wrapper .fill-up-form .nice-select.open::after {
  transform: rotate(90deg);
}
.contact-section .contact-wrapper .fill-up-form .nice-select .class {
  display: block;
  font-family: "Hind", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.contact-section .contact-dtls .contact-block {
  background: linear-gradient(180deg, rgb(22, 204, 62) 0%, rgb(4, 144, 35) 100%);
  padding: 20px;
  border-radius: 24px;
}
@media screen and (max-width: 575px) {
  .contact-section .contact-dtls .contact-block {
    max-width: 350px;
    margin: auto;
  }
}
.contact-section .contact-dtls .contact-block.emailBlock {
  background: linear-gradient(180deg, rgb(5, 246, 249) -50%, rgb(249, 7, 252) 100%);
}
.contact-section .contact-dtls .contact-block .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  margin-bottom: 12px;
}
.contact-section .contact-dtls .contact-block span {
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 12px;
}
@media screen and (max-width: 480px) {
  .contact-section .contact-dtls .contact-block span {
    font-size: 22px;
  }
}
.contact-section .contact-dtls .contact-block p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.contact-section .contact-dtls .contact-block a {
  color: #ffffff;
  transition: all 0.3s ease;
}
.contact-section .contact-dtls .contact-block a:hover {
  opacity: 0.7;
}

/*
============================================
CONTACT SECTION CSS
============================================
*/
/*
============================================
GALLERY SECTION CSS
============================================
*/
.gallery-section .gallery-wrapper .image-wrapper {
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 575px) {
  .gallery-section .gallery-wrapper .image-wrapper {
    max-width: 350px;
    margin: auto;
  }
}
.gallery-section .gallery-wrapper .image-wrapper:hover img {
  transform: scale(1.2);
}
.gallery-section .gallery-wrapper .image-wrapper img {
  transition: all 0.3s ease;
}

/*
============================================
GALLERY SECTION CSS
============================================
*/

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