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

:root {
  --color-dark: #0E2148;
  --color-violet: #483AA0;
  --color-yellow: #ffd586;
}


* {
  margin: 0;
  border: 0;
  outline: none;
}

html,
body {
  height: 100%;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  background-color: var(--color-dark);
  vertical-align: baseline;
  line-height: 29px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: ltr;
}

p {
  font-size: 16px;
  color: #EEE;
  line-height: 29px;
}

img {
  max-width: 100%;
  height: auto;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Michroma", sans-serif;
  letter-spacing: 2px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-style: normal;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}


h2 {
  font-size: 50px;
  line-height: normal;
  font-weight: 400;
}

h3 {
  font-size: 38px;
  line-height: normal;
  font-weight: 400;
}

h4 {
  font-size: 28px;
  line-height: normal;
  font-weight: 400;
}

h5 {
  font-size: 22px;
  line-height: normal;
  font-weight: 400;
  color: #b0b0b0;
}

h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.text-yellow {
  color: var(--color-yellow)
}

.mt-10 {
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 100px;
}

.pt-10 {
  padding-top: 100px;
}

.pb-10 {
  padding-bottom: 100px;
}

.ml-10 {
  margin-left: 100px;
}

.mr-10 {
  margin-right: 100px;
}

.pl-10 {
  padding-left: 100px;
}

.pr-10 {
  padding-right: 100px;
}

.mx-10 {
  margin-left: 100px;
  margin-right: 100px;
}

.my-10 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.px-10 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-10 {
  padding-top: 100px;
  padding-bottom: 100px;
}

label {
  color: #616670;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

button {
  cursor: pointer;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  background: transparent;
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

a,
.button {
  text-decoration: none;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus {
  color: #a67a55;
  text-decoration: none;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

a,
button {
  color: #fff;
  outline: medium none;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

a:hover,
button:hover {
  color: #ffd586;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

ul {
  list-style: outside none none;
}

li {
  list-style: none;
}

::-moz-selection {
  color: var(--color-violet);
  text-shadow: none;
  color: #fff;
}

::selection {
  background: #ffd586;
  text-shadow: none;
  color: var(--color-violet);
}

textarea:focus,
input:focus {
  outline: none;
}

.background-black {
  background-color: #ffd586;
}

.background-gray {
  background-color: #f4f4f4;
}

.background-orange {
  background-color: #ffd586;
}

.page-bg {
  background-color: #141414;
}

.bg-gray-100 {
  background-color: #f4f4f4;
}

.page-section {
  padding-top: 113px;
  padding-bottom: 100px;
}

.blog-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {

  .page-section,
  .blog-section {
    padding-top: 100px;
    padding-bottom: 52px;
  }
}

@media (max-width: 767px) {

  .page-section,
  .blog-section {
    padding-top: 80px;
    padding-bottom: 32px;
  }
}

.page-section .page-links,
.blog-section .page-links {
  margin-bottom: 20px;
}

.border-radius-12 {
  border-radius: 12px;
}

.text-white-100 {
  color: rgba(255, 255, 255, 0.7019607843);
}

code {
  color: #ffd586;
}

.theme-btn,
.wp-block-loginout a,
input.theme-btn {
  display: inline-flex;
  background-color: #ffd586;
  border: 1px solid #ffd586;
  color: #ffffff;
  padding: 14px 24px;
  text-align: center;
  font-weight: 700;
  font-family: "Gilroy-Bold";
  text-transform: uppercase;
  position: relative;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  font-size: 16px;
  letter-spacing: 1.28px;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  z-index: 2;
  white-space: nowrap;
}

@media only screen and (min-width: 0px) and (max-width: 350px) {

  .theme-btn,
  .wp-block-loginout a,
  input.theme-btn {
    letter-spacing: initial;
    font-size: 14px;
  }
}

.theme-btn:hover,
.wp-block-loginout a:hover,
input.theme-btn:hover {
  color: #fff;
  border-color: #0000ff;
  background-color: #0000ff;
}

.theme-btn:hover:before,
.wp-block-loginout a:hover:before,
input.theme-btn:hover:before {
  width: 150%;
  background-color: #0000ff;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.theme-btn:focus,
.wp-block-loginout a:focus,
input.theme-btn:focus {
  color: #ffffff;
}

.simple-btn {
  color: #141414;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: "Rubik", sans-serif;
}

.simple-btn:hover {
  color: #ffd586;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.wp-block-loginout a {
  position: relative;
}

.contact-form-btn {
  justify-content: center;
  width: 100%;
  display: block;
  line-height: 42px;
}

.contact-form-btn .icon {
  float: right;
}

input.theme-btn {
  display: inline-block !important;
  width: inherit !important;
  border: 0 !important;
}

.circle-btn-text {
  position: absolute;
  z-index: 99;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.circle-btn-text text {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .circle-btn-text text {
    font-size: 13px;
  }
}

.circle-btn-text svg {
  animation-name: rotate;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.animate-move-left-right {
  animation: MoveLeftRight 1.5s linear infinite alternate;
}

.animate-move-top-bottom {
  animation: MoveUpDown 1.5s linear infinite alternate;
}

.slider-nav-btn-wrapper {
  display: flex;
  gap: 18px;
}

.slider-nav-btn-wrapper a {
  width: 72px;
  height: 72px;
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0px 12px 24px 0px rgba(2, 24, 93, 0.06);
  font-size: 24px;
  color: #141414;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .slider-nav-btn-wrapper a {
    width: 60px;
    height: 60px;
  }
}

.slider-nav-btn-wrapper a:hover {
  background-color: #ffd586;
  color: #ffffff;
}

.circle-rotate-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.circle-rotate-wrapper .circle-rotate-inner {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-rotate-text {
  transform-origin: center center;
  animation: spin 6s linear infinite;
  position: absolute !important;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
}

.circle-rotate-text span {
  font-family: "Gilroy-Bold";
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.gx-6 {
  --bs-gutter-x: 7.55rem;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gx-6 {
    --bs-gutter-x: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gx-6 {
    --bs-gutter-x: 1rem;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gx-6 {
    --bs-gutter-x: 1rem;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gx-6 {
    --bs-gutter-x: 2rem;
  }
}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
  padding: 0 12px !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 540px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 720px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 960px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1140px !important;
  }
}

@keyframes MovefadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotated_circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.MovefadeUp {
  animation-name: MovefadeUp;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
}

@keyframes animatelinebar {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(25px);
  }
}

@keyframes slideUpIn {
  0% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0);
  }

  0% {
    transform: translateY(40px);
  }
}

@keyframes MoveLeftRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20px);
  }
}

@keyframes MoveUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}

@keyframes Animated3 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes Animated4 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-10px);
  }
}

@keyframes UpToDown {
  49% {
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    transform: translateY(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes Scroll {
  0% {
    transform: translateX(-50vw);
    transform: translateX(-50vw);
  }

  100% {
    transform: translateX(50vw);
    transform: translateX(50vw);
  }
}

@keyframes spin {
  100% {
    transform: rotate(359deg);
  }
}

@keyframes borderAnimation {
  from {
    background-position: 0 0, -23px 0, 100% -23px, 0 100%;
  }

  to {
    background-position: 0 -23px, 0 0, 100% 0, -23px 100%;
  }
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

body {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 20px;
}

ul {
  list-style: disc;
  padding-left: 0;
}

/* Protected Post Type */
.post-password-form label {
  width: 100%;
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}

.post-password-form input[type="password"] {
  font-size: 1.2rem;
  line-height: 20px;
  padding: 12px 20px;
  border: 1px solid #e4e4f2;
  width: 100%;
}

.post-password-form input[type="submit"] {
  background-color: #ffd586;
  border: none;
  padding: 10px 40px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.post-password-form input[type="submit"]:hover {
  background-color: #ffffff;
}

.textwidget p>strong {
  color: #141414;
}

/* Table */
table {
  margin-bottom: 20px;
  width: 100%;
}

table caption {
  border: 1px solid #dfe2e9;
  padding: 6px 10px;
  border-top: 0;
  color: #616670;
}

table th,
table td {
  background-color: transparent;
  border: 1px solid #dfe2e9;
  text-align: center;
  padding: 8px;
  transition: 0.3s;
  color: #616670;
}

table th#today,
table td#today {
  background: #ffd586;
  color: #ffffff;
}

table th#today a,
table td#today a {
  color: #ffffff;
}

.page-content .size-full.alignright {
  margin-bottom: 15px;
  margin-top: 20px;
}

.page-content figure.wp-caption.aligncenter {
  margin-top: 40px;
}

.page-content dl,
.page-content ol,
.page-content ul {
  margin-bottom: 11px;
}

.page-content .comment-respond {
  margin-top: 78px;
  margin-bottom: 20px;
}

.page-content .latest-comments .comment-respond {
  margin-bottom: 40px;
}

.page-content .post-comments {
  margin-top: 80px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*
 Caption
============================*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  font-size: 14px;
  font-style: italic;
}

.wp-caption-text {
  text-align: center;
}

/*
 Galleries
============================*/
.gallery {
  margin-bottom: 10px;
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding-right: 5px !important;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

.size-thumbnail {
  margin-bottom: 20px;
}

img.emoji {
  width: 15px;
  height: 15px;
}

/*
 Alignments
============================*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em !important;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em !important;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/*
 Block Unit Test Widget
============================*/
.wp-block-search__input {
  border: 1px solid #e3e3e3 !important;
}

.wp-block-search__button {
  margin-left: 0 !important;
}

.wp-block-social-links {
  padding-left: 0 !important;
}

.wp-block-social-links li {
  padding-top: 0 !important;
}

.single-post-item.format-quote blockquote {
  padding: 45px;
}

@media (max-width: 767px) {
  .single-post-item.format-quote blockquote {
    padding: 35px;
  }
}

blockquote {
  overflow: hidden;
  margin: 40px 0;
  position: relative;
  z-index: 1;
  padding: 40px 60px !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  blockquote {
    padding: 30px !important;
  }
}

blockquote p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #616670;
  line-height: 30px;
  font-weight: 400;
  margin: 0 !important;
}

blockquote p a {
  color: #ffd586;
  text-decoration: underline;
}

blockquote footer {
  font-family: "Gilroy-Bold";
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #141414;
  margin-top: 20px;
}

.wp-block-group.has-background p,
.wp-block-columns.has-background p,
.wp-block-columns .has-background p {
  color: #ffffff;
}

.wp-block-quote,
blockquote {
  border-left: 2px solid #ffd586;
}

.wp-block-pullquote {
  border-top: 2px solid #ffd586 !important;
  border-bottom: 2px solid #ffd586 !important;
  background-color: #f4f4f4;
}

.wp-block-pullquote.is-style-solid-color {
  background-color: #f4f4f4 !important;
}

.wp-block-pullquote.is-style-solid-color .blockquote {
  background-color: #ffffff;
}

.wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
  margin-top: 10px;
  display: block;
}

.wp-block-column:not(:first-child),
.wp-block-column:nth-child(2n) {
  margin-left: 10px;
}

.wp-block-column:not(:last-child) {
  margin-right: 10px;
}

.wp-block-column:nth-child(2n + 1) {
  margin-right: 10px;
}

.post-content>.alignwide {
  margin-left: 0;
  margin-right: 0;
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
}

.post-content h2.has-small-font-size {
  line-height: 24px;
}

.post-content h2.has-medium-font-size {
  line-height: 32px;
}

.post-content h2.has-large-font-size {
  line-height: 48px;
}

.post-content p.has-large-font-size {
  font-size: 36px;
  line-height: 1.2;
}

.post-content .wp-block-search {
  margin-bottom: 15px;
}

.post-content .wp-block-file {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-content .wp-block-group__inner-container p {
  margin-top: 0 !important;
}

.has-very-light-gray-color.has-very-light-gray-color {
  color: #fff;
  background: #ffd586 !important;
}

.wp-block-button {
  margin-bottom: 10px;
}

.wp-block-archives select,
.wp-block-categories select {
  height: 66px;
  width: 200px;
  border: 1px solid #e3e3e3;
  padding: 0 10px;
  margin-bottom: 10px;
}

.wp-block-latest-comments {
  padding-left: 0 !important;
}

.wp-block-cover p.wp-block-cover-text,
.wp-block-cover.is-light .wp-block-cover__inner-container {
  color: #fff !important;
}

.wp-block-cover-text a {
  color: #fff;
}

.wp-block-rss {
  padding-left: 0 !important;
}

.widget .wp-block-archives-dropdown,
.widget .wp-block-categories-dropdown,
.widget .wp-block-loginout,
.widget .wp-block-social-links,
.widget.widget_archive select,
.widget.widget_categories select,
.widget.widget_text select,
.widget.widget_search .search-form,
.widget.widget_tag_cloud .tagcloud,
.widget .wp-block-tag-cloud {
  margin-bottom: 6px;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title {
  display: inline-block;
  width: 100%;
}

nav.wp-calendar-nav {
  justify-content: space-between;
  display: flex;
}

nav.wp-calendar-nav a {
  color: #616670;
}

nav.wp-calendar-nav a:hover {
  color: #ffd586;
}

.blog-search-content .search-form input {
  width: 50%;
  border: 1px solid #e3e3e3;
}

@media (max-width: 991px) {
  .blog-search-content .search-form input {
    width: 100%;
  }
}

/* Search Widget */
.search-form {
  display: flex !important;
}

.search-form button {
  width: 62px;
  flex-shrink: 0;
}

.wp-block-search {
  margin-bottom: -2px;
}

.wp-block-search,
.search-form {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  gap: 10px;
}

.wp-block-search .wp-block-search__inside-wrapper,
.search-form .wp-block-search__inside-wrapper {
  display: flex;
  padding: 0 !important;
}

.wp-block-search label,
.search-form label {
  font-size: 24px;
  display: block;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ffffff;
  font-family: "Gilroy-Bold";
}

.wp-block-search input,
.search-form input {
  padding: 0 25px;
  height: 60px;
  width: 100%;
  color: #141414;
  font-size: 18px;
}

.wp-block-search button,
.search-form button {
  color: #ffffff;
  padding: 0 20px;
  position: relative;
  right: 0;
  background-color: #ffd586;
  top: 0;
  height: auto;
  line-height: 0;
  border: 0;
  margin-left: 0 !important;
}

/*
 Media
============================*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

figure.wp-block-embed {
  overflow: hidden;
}

.comment-respond.style-two .wpcf7-form .wpcf7-not-valid-tip {
  color: #d9c0b8 !important;
}

.comment-respond .wpcf7-form .wpcf7-not-valid {
  border-color: #dc3232 !important;
}

.comment-respond .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 5px;
}

.comment-respond .wpcf7-form.sent .wpcf7-response-output {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #72dc60;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  background: #f4fff5;
  border: 1px solid #cdf5c8 !important;
  border-radius: 10px;
}

.comment-respond .wpcf7-form.invalid .wpcf7-response-output {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #dc3232;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  background: #fff7f7;
  border: 1px solid #fed8d8 !important;
  border-radius: 10px;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 22px !important;
  height: 22px !important;
  border-color: #e3e4e5;
  border-radius: 6px !important;
  background-color: #e3e4e5 !important;
  transform: scale(1);
  transition: 0.3s;
  position: relative !important;
  padding: 0 !important;
  cursor: pointer;
  margin-top: 0 !important;
  display: flex;
  align-self: center;
  flex-shrink: 0;
  box-shadow: none !important;
}

input[type="radio"]::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  transition: 0.3s;
  transform: scale(0);
  background-color: #ffd586;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

input[type="checkbox"]::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.44899 7.76355C3.36328 7.84971 3.24641 7.89784 3.12495 7.89784C3.00349 7.89784 2.88662 7.84971 2.80091 7.76355L0.213156 5.17534C-0.0554271 4.90676 -0.0554271 4.47134 0.213156 4.20321L0.537198 3.87917C0.805781 3.61059 1.24074 3.61059 1.50932 3.87917L3.12495 5.4948L7.49057 1.12917C7.75916 0.860589 8.19457 0.860589 8.4627 1.12917L8.78674 1.45321C9.05532 1.7218 9.05532 2.15721 8.78674 2.42534L3.44899 7.76355Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  transform: scale(0);
  background-color: #ffd586;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1);
  box-sizing: inherit !important;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  border-color: #ffd586 !important;
}

.wpcf7-form-control {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control .wpcf7-list-item label {
  display: flex;
  align-content: center;
  margin: 0;
  gap: 10px;
}

.wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
}

.logged-in .comment-respond textarea {
  margin-bottom: 12px;
}

.zoom-instagram-widget p {
  color: #ffffff;
}

.zoom-instagram-widget p a {
  color: #ffd586;
}

.zoom-instagram-widget ul {
  list-style: none;
}

.zoom-instagram-widget ul li {
  color: #ffffff;
}

/* Recent Comment List Block Widget & Latest Post Widget Block */
.has-avatars.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  font-weight: 500;
  color: #141414;
}

.has-avatars.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author,
.has-avatars.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-link,
.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author,
.has-dates.has-excerpts.wp-block-latest-comments li.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-link {
  font-weight: 500;
}

.wp-block-latest-comments li.wp-block-latest-comments__comment,
.wp-block-latest-posts li.wp-block-latest-comments__comment {
  margin-bottom: 0;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments li .wp-block-latest-posts__post-title,
.wp-block-latest-posts li .wp-block-latest-comments__comment-meta,
.wp-block-latest-posts li .wp-block-latest-posts__post-title {
  line-height: 28px;
  font-weight: 400;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date,
.wp-block-latest-comments li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date,
.wp-block-latest-posts li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date,
.wp-block-latest-posts li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date {
  font-size: 14px !important;
  margin-bottom: 10px;
  position: relative;
  color: #616670;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date:before,
.wp-block-latest-comments li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date:before,
.wp-block-latest-posts li .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date:before,
.wp-block-latest-posts li .wp-block-latest-posts__post-title .wp-block-latest-comments__comment-date:before {
  content: "\f274";
  font-family: "Font Awesome 6 Pro";
  padding-right: 8px;
}

.wp-block-latest-comments li a,
.wp-block-latest-posts li a {
  color: #141414;
}

.wp-block-latest-comments li a.wp-block-latest-comments__comment-author,
.wp-block-latest-comments li a.wp-block-latest-comments__comment-link,
.wp-block-latest-posts li a.wp-block-latest-comments__comment-author,
.wp-block-latest-posts li a.wp-block-latest-comments__comment-link {
  display: inline !important;
  text-transform: capitalize;
  line-height: 28px;
  font-weight: 400;
}

.wp-block-latest-comments li a:hover,
.wp-block-latest-posts li a:hover {
  color: #ffd586;
}

.wp-block-latest-comments li .wp-block-latest-comments__comment-excerpt p,
.wp-block-latest-posts li .wp-block-latest-comments__comment-excerpt p {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

body.admin-bar .header-menu-area.sticky_menu {
  top: 30px;
}

@media (max-width: 600px) {
  body.admin-bar .header-menu-area.sticky_menu {
    top: 0;
  }
}

.page-template-default.page-id-146 .page-content p:last-child {
  margin-bottom: 10px;
}

.page-template-default.page-id-156 .page-content-wrapper .page-content>p {
  margin-bottom: 10px;
}

.page-template-default.page-id-1133 .page-content .comment-respond {
  margin-top: 78px;
  display: inline-block;
  width: 100%;
}

.page-template-default.page-id-3 .page-area {
  padding-top: 120px;
}

.page-template-default.page-id-3 .page-area .page-content {
  margin-top: -9px;
}

.post-template-default.postid-163 .blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 34px;
}

.post-template-default.postid-150 .blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 34px;
}

.post-template-default.postid-150 .blog-details-wrapper .single-post-item .post-content .wp-block-group.is-layout-constrained:last-child {
  border: 1px solid #000;
}

.post-template-default.postid-51 .blog-details-wrapper .single-post-item .post-content {
  margin-bottom: 25px;
}

.post-template-default.postid-51 .blog-details-wrapper .single-post-item .post-content p:last-child {
  margin-bottom: 0;
}

.post-template-default.postid-1163 .blog-details-wrapper .single-post-item .post-content .wp-caption,
.post-template-default.postid-568 .blog-details-wrapper .single-post-item .post-content .wp-caption {
  margin-top: 20px;
}

.post-template-default.postid-1785 .blog-details-wrapper .single-post-item .post-content .wp-block-button__link {
  color: #ffffff !important;
}

.post-template-default.postid-555 .blog-details-wrapper .single-post-item .post-content .gallery {
  margin-top: 20px;
}

.post-template-default.postid-1786 .blog-details-wrapper .single-post-item .post-title {
  margin-bottom: 20px;
}

.post-template-default.postid-1780 .blog-details-wrapper .single-post-item .wp-block-button {
  margin-top: 20px;
  margin-bottom: 40px;
}

.error-404.not-found {
  margin-top: -20px;
  margin-bottom: 40px;
}

.error-404.not-found .error-content .error-btn-bh {
  margin-top: 20px;
}

html {
  scroll-behavior: smooth;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.z-index-99 {
  z-index: 99;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.overflow-x-visible {
  overflow-x: visible;
  overflow-y: hidden;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.body-black {
  background: #0e2148;
}

.footer-bg {
  background: #483aa0;
}

.width-100 {
  width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mb-140 {
    margin-bottom: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mb-140 {
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb-140 {
    margin-bottom: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .mb-140 {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pb-140 {
    padding-bottom: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-140 {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-140 {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pb-140 {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mt-140 {
    margin-top: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-140 {
    margin-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mt-140 {
    margin-top: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .mt-140 {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pt-140 {
    padding-top: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-140 {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-140 {
    padding-top: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pt-140 {
    padding-top: 40px;
  }
}

.progress-circle .progress {
  stroke: #ffd586;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  animation: progress-animation 2s linear forwards;
}

.progress-circle .progress.progress-2 {
  stroke-dasharray: 265.2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title.style-1 h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title.style-1 h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-1 h2 {
    font-size: 25px;
  }
}

.section-title.style-1 span {
  color: #ffd586;
  font-weight: 300;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  display: block;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-1 span {
    font-size: 16px;
  }
}

.section-title.style-2 {
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title.style-2 h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title.style-2 h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-2 h2 {
    font-size: 25px;
  }
}

.section-title.style-2 span {
  color: #ffd586;
  font-weight: 300;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  display: block;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .section-title.style-2 span {
    font-size: 16px;
  }
}

.hero-area-title {
  margin-left: 50px;
}

@media screen and (min-width:992px) {
  .hero-area-title {
    margin-left: 250px;
  }
}

.hero-area-slider-text-2 {
  font-weight: 300;
  ;
}

.hero-area-slider-text-2 span {
  font-weight: bold;
}

.hero-area .text-marque-area-shape {
  left: -100px;
  top: 20px;
  right: inherit;
}

.hero-area .slick-arrow.btn-prev {
  position: absolute;
  top: 2px;
  right: 100px;
  z-index: 11;
  width: 46px;
  height: 46px;
  color: #ffffff;
  transform: rotate(180deg);
  background: var(--color-dark);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.hero-area .slick-arrow.btn-prev:hover {
  background: #ffd586;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .slick-arrow.btn-prev {
    width: 36px;
    height: 36px;
    left: 40px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area .slick-arrow.btn-prev {
    width: 36px;
    height: 36px;
    left: 40px;
  }
}

.hero-area .slick-arrow.btn-next {
  position: absolute;
  top: 2px;
  right: 50px;
  z-index: 11;
  width: 46px;
  height: 46px;
  color: #ffffff;
  transform: rotate(180deg);
  background: var(--color-dark);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.hero-area .slick-arrow.btn-next:hover,
.hero-area .slick-arrow.btn-prev:hover {
  background: #ffd586;
  color: var(--color-violet)
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area .slick-arrow.btn-next {
    width: 36px;
    height: 36px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area .slick-arrow.btn-next {
    width: 36px;
    height: 36px;
  }
}

.testimonial-area.style-1 .slick-arrow.btn-prev {
  position: absolute;
  bottom: -50px;
  left: 10px;
  z-index: 11;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--color-dark);
  transform: rotate(180deg);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}


.testimonial-area.style-1 .slick-arrow.btn-next {
  position: absolute;
  bottom: -50px;
  left: 66px;
  z-index: 11;
  width: 44px;
  height: 44px;
  color: #ffffff;
  transform: rotate(180deg);
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.testimonial-area.style-1 .slick-arrow.btn-prev:hover,
.testimonial-area.style-1 .slick-arrow.btn-next:hover {
  color: var(--color-violet);
  background-color: var(--color-yellow);
}

.title-border-1 {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 1.51%,
      #ffd586 105.37%);
  width: 531px;
  height: 2px;
  margin-top: 3px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-border-1 {
    width: 360px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .title-border-1 {
    width: 260px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .title-border-1 {
    width: 130px;
  }
}

.title-border-2 {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 1.51%,
      #ffd586 105.37%);
  width: 386px;
  height: 1px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-border-2 {
    width: 320px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-border-2 {
    width: 200px;
  }
}

.title-border-3 {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 1.51%,
      #ffd586 105.37%);
  width: 416px;
  height: 1px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .title-border-3 {
    width: 395px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-border-3 {
    width: 320px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-border-3 {
    width: 346px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .title-border-3 {
    width: 300px;
    margin: 15px 0;
  }
}

.title-border-4 {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 1.51%,
      #ffd586 105.37%);
  width: 856px;
  height: 1px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  margin: 30px 0 50px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .title-border-4 {
    width: 395px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-border-4 {
    width: 320px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-border-4 {
    width: 346px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .title-border-4 {
    width: 300px;
    margin: 15px 0;
  }
}

.title-border-5 {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 1.51%,
      #ffd586 105.37%);
  width: 690px;
  height: 1px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  margin: 15px 0 50px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .title-border-5 {
    width: 395px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-border-5 {
    width: 320px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-border-5 {
    width: 346px;
    margin: 20px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .title-border-5 {
    width: 300px;
    margin: 15px 0;
  }
}

.about-area-card-section {
  padding: 0 50px 0 50px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area-card-section {
    padding: 0 70px 0 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-card-section {
    padding: 0 100px 0 100px;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-card-section {
    padding: 0 70px 0 70px;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-card-section {
    padding: 0 30px 0 30px;
  }
}

.about-area-card-section .card-wrapper.style-1 {
  background: #0e2148;
  border: 1px solid #483aa0;
  padding: 30px 20px;
}


.about-area-card-section .card-wrapper.style-1 .card-text h3 {
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 2px;
  font-style: normal;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-card-section .card-wrapper.style-1 .card-text {
    margin-bottom: 20px;
  }
}

.about-area-card-section .card-wrapper.style-1 .card-content a {
  width: 32px;
  height: 32px;
  background: #ffd586;
  display: inline-block;
  border-radius: 50%;
  padding: 8px;
  line-height: 12px;
  text-align: center;
  transition: all 0.5s ease 0s;
}

.about-area-card-section .card-wrapper.style-1 .card-content span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
  font-size: 50px;
  font-weight: 400;
  line-height: normal;
  color: transparent;
  transition: all 0.5s ease 0s;
  color: #ffd586;
}

.about-area-card-section .card-wrapper .card-content a {
  width: 42px;
  height: 42px;
  line-height: 38px;
}

.about-area-card-section .card-wrapper.style-1 .card-content {
  opacity: .3;
  transition: all 0.5s ease 0s;
}

.about-area-card-section .card-wrapper.style-1:hover .card-content {
  opacity: 1;
  transition: all 0.5s ease 0s;
}

.about-card-area li {
  list-style-type: circle;
  margin-left: 30px;
  font-size: 18px;
}

.toggle-menus {
  visibility: hidden;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: all 0.5s ease 0s;
  position: fixed;
  z-index: 100;
  top: 0;
  z-index: 99999;
  right: 0;
  width: 450px;
  height: 100%;
  padding: 50px;
  background: #222222;
}

.toggle-menus.toggle-menu-active {
  visibility: visible;
  opacity: 1;
  transform: scaleX(1);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus {
    width: 300px;
    padding: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus .toggle-menu-header {
    margin-bottom: 15px;
  }
}

.toggle-menus .toggle-menu-header .toggle-close-icon {
  font-size: 30px;
  cursor: pointer;
}

.toggle-menus ul {
  padding: 25px 0;
}

.toggle-menus ul li {
  border-top: 1px solid #383838;
  border-bottom: 1px solid #383838;
  position: relative;
  line-height: 23px;
}

.toggle-menus ul li a {
  padding: 10px 0;
  display: inline-block;
}

.toggle-menus ul li a:hover {
  text-decoration: underline;
}

.toggle-menus ul li .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 0;
  width: 50px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  border-left: 1px solid #383838;
  cursor: pointer;
}

.toggle-menus ul li ul.hidden-list {
  height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin-left: 20px;
  transition: all 0.5s ease 0s;
}

.toggle-menus ul li ul li a {
  font-size: 14px;
  padding: 6px 0px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus .toggle-menu-contact h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus .toggle-menu-contact span {
    font-size: 14px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus .toggle-menu-contact .address {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus .toggle-menu-contact .email {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .toggle-menus .toggle-menu-contact .phone {
    margin-bottom: 10px;
  }
}

.toggle-menus .toggle-social-icon ul {
  padding-top: 20px;
}

.toggle-menus .toggle-social-icon ul li {
  border: none;
}

.toggle-menus .toggle-social-icon ul li a {
  display: inline-block;
  padding: 10px;
}

.toggle-menus .toggle-social-icon ul li a:hover {
  background: red;
  padding: 10px;
  border-radius: 50%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-area {
    margin-right: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area {
    gap: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area {
    gap: 50px;
    display: flex;
  }
}

@media (max-width: 520px) {
  .counter-area {
    gap: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area.style-1 .counter-area-wrapper {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area.style-1 .counter-area-wrapper {
    margin-bottom: 10px;
  }
}

.counter-area.style-1 .counter-area-wrapper span {
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area.style-1 .counter-area-wrapper span {
    font-size: 60px;
  }
}

.counter-area.style-1 .counter-area-wrapper p {
  color: #fff;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  /* 161.111% */
  letter-spacing: 6.66px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-area.style-1 .counter-area-wrapper p {
    letter-spacing: 4px;
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area.style-1 .counter-area-wrapper p {
    font-size: 16px;
    letter-spacing: 4.66px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area.style-1 .counter-area-wrapper p {
    font-size: 15px;
    letter-spacing: 2.66px;
  }
}

@media (max-width: 520px) {
  .counter-area.style-1 .counter-area-wrapper p {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 420px) {
  .counter-area.style-1 .counter-area-wrapper p {
    font-size: 12px;
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area.style-2 .counter-area-wrapper {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area.style-2 .counter-area-wrapper {
    margin-right: 20px;
  }
}

.counter-area.style-2 .counter-area-wrapper span {
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area.style-2 .counter-area-wrapper span {
    font-size: 60px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area.style-2 .counter-area-wrapper span {
    font-size: 60px;
  }
}

.counter-area.style-2 .counter-area-wrapper p {
  color: #fff;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  /* 161.111% */
  letter-spacing: 6.66px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-area.style-2 .counter-area-wrapper p {
    letter-spacing: 4px;
    font-size: 17px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-area.style-2 .counter-area-wrapper p {
    letter-spacing: 3.66px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area.style-2 .counter-area-wrapper p {
    letter-spacing: 1.66px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .counter-area.style-2 .counter-area-wrapper p {
    font-size: 15px;
    letter-spacing: 2.66px;
  }
}

@media (max-width: 520px) {
  .counter-area.style-2 .counter-area-wrapper p {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 420px) {
  .counter-area.style-2 .counter-area-wrapper p {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.bg-light-color.style-2 {
  position: absolute;
  width: 376px;
  height: 376px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(250px);
  z-index: 5;
  right: 30px;
  top: 70px;
  animation: zoomInOut 5s 2s infinite;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .bg-light-color.style-2 {
    right: 0;
    top: 0px;
    width: 276px;
    height: 276px;
  }
}

.bg-light-color.style-3 {
  position: absolute;
  width: 376px;
  height: 376px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(250px);
  left: 0;
  top: 315px;
  animation: zoomInOut 5s 2s infinite;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .bg-light-color.style-3 {
    width: 276px;
    height: 276px;
  }
}

.bg-light-color.style-4 {
  position: absolute;
  width: 376px;
  height: 376px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(250px);
  right: 0;
  bottom: 0;
  z-index: 5;
  animation: zoomInOut 5s 2s infinite;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .bg-light-color.style-4 {
    width: 276px;
    height: 276px;
  }
}

.bg-light-color.style-5 {
  position: absolute;
  width: 376px;
  height: 376px;
  right: 790px;
  top: 160px;
  background: rgba(237, 188, 90, 0.4);
  filter: blur(200px);
  z-index: 5;
  animation: zoomInOut 5s 2s infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bg-light-color.style-5 {
    right: 380px;
    top: 240px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bg-light-color.style-5 {
    right: 406px;
    top: 150px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .bg-light-color.style-5 {
    width: 276px;
    height: 276px;
  }
}

@media (max-width: 1399px) {
  .pages-heading {
    margin: 0 30px;
  }
}

.pages-heading::before {
  content: "";
  position: absolute;
  width: 508px;
  height: 508px;
  left: -106px;
  bottom: -170px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  animation: zoomInOut 5s 2s infinite;
  z-index: 0;
  border-radius: 508px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pages-heading::before {
    width: 270px;
  }
}

.pages-heading::after {
  content: "";
  position: absolute;
  width: 381px;
  height: 381px;
  right: 0;
  top: -162px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  animation: zoomInOut 5s 2s infinite;
  z-index: 0;
  border-radius: 381px;
}

.pages-heading-image {
  text-align: center;
}

.pages-heading-image img {
  border-radius: 15px;
}

.pages-heading-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pages-heading-text.style-2 span {
    font-size: 9px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pages-heading-text.style-2 h2 {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .pages-heading-text span {
    font-size: 14px;
  }
}

.pages-heading-text h2 {
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pages-heading-text h2 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pages-heading-text h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pages-heading-text h2 {
    font-size: 24px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pages-heading-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .pages-heading-text h2 {
    font-size: 18px;
  }
}

.team-secondary-partner.blog-details-form {
  padding: 80px 83px 87px 80px;
  background: #1a1717;
  border-radius: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner.blog-details-form {
    padding: 20px 10px 20px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner.contact-page-form {
    padding: 25px 20px 25px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner.contact-page-form .form-heading h3 {
    font-size: 31px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner.contact-page-form .form-heading h3 {
    font-size: 31px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner.contact-page-form .contact-form .page-btn a {
    padding: 10px 17px 11px 35px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner .section-title p {
    font-size: 15px;
  }
}

.team-secondary-partner .contact-form form {
  display: flex;
  flex-direction: column;
}

.team-secondary-partner .contact-form form .contract-group {
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner .contact-form form .contract-group {
    display: block;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner .contact-form form .contract-group {
    display: block;
  }
}

.team-secondary-partner .contact-form form .contract-group .input-col {
  width: calc(50% - 24px);
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner .contact-form form .contract-group .input-col {
    width: calc(100% - 20px);
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner .contact-form form .contract-group .input-col {
    width: calc(100% - 20px);
    margin-bottom: 20px;
  }
}

.team-secondary-partner .contact-form form .contract-group .input-col label {
  display: block;
  color: #ffffff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.team-secondary-partner .contact-form form .contract-group .input-col label.name::before {
  content: "\e91e";
  font-family: "icomoon";
  font-size: 22px;
  margin-right: 17px;
}

.team-secondary-partner .contact-form form .contract-group .input-col label.phone::before {
  content: "\e91c";
  font-family: "icomoon";
  font-size: 22px;
  margin-right: 17px;
}

.team-secondary-partner .contact-form form .contract-group .input-col label.email::before {
  content: "\e91d";
  font-family: "icomoon";
  font-size: 22px;
  margin-right: 17px;
}

.team-secondary-partner .contact-form form .contract-group .input-col input,
.team-secondary-partner .contact-form form .contract-group .input-col select,
.team-secondary-partner .contact-form form .contract-group .input-col textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  transition: border-color 0.3s ease;
  background-color: transparent;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
}

.team-secondary-partner .contact-form form .contract-group .input-col input:focus,
.team-secondary-partner .contact-form form .contract-group .input-col select:focus,
.team-secondary-partner .contact-form form .contract-group .input-col textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.team-secondary-partner .contact-form form .contract-group .input-col textarea {
  min-height: 80px;
}

.team-secondary-partner .contact-form form .contract-group .input-col select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/selector-arrow.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  padding-right: 30px;
  color: #ffffff;
}

.team-secondary-partner .contact-form form .contract-group .input-col select option.selector-menu {
  background: #141414;
}

.team-secondary-partner .contact-form form .contract-group.full-row {
  flex-direction: column;
}

.team-secondary-partner .contact-form form .contract-group.full-row label {
  color: #ffffff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

.team-secondary-partner .contact-form form .contract-group.full-row label.inbox::before {
  content: "\e91b";
  font-family: "icomoon";
  font-size: 22px;
  margin-right: 17px;
}

.team-secondary-partner .contact-form form .contract-group.full-row textarea {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  font-size: 14px;
  transition: border-color 0.3s ease;
  min-height: 105px;
  background-color: transparent;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner .contact-form form .contract-group.full-row textarea {
    min-height: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner .contact-form form .contract-group.full-row textarea {
    min-height: 90px;
  }
}

.team-secondary-partner .contact-form form .contract-group.full-row textarea:focus {
  outline: none;
  border-color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-partner .contact-form form .page-btn {
    margin-top: 35px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner .contact-form form .page-btn {
    margin-top: 24px;
  }
}

.team-secondary-partner .contact-form form .page-btn a {
  display: inline-block;
  padding: 22px 19px 22px 42px;
  border: 1px solid #ffd586;
  color: var(--White, #fff);
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  border-radius: 38px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-partner .contact-form form .page-btn a {
    font-size: 22px;
    padding: 12px 20px 12px 20px;
  }
}

.team-secondary-partner .contact-form form .page-btn a::after {
  content: "\e90f";
  font-family: icomoon;
  margin: 20px 0 0 23px;
}

.team-secondary-partner .contact-form form .page-btn a:hover {
  background: #ffd586;
}

.off-canvas-menu {
  width: 530px;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .off-canvas-menu {
    width: 430px;
  }
}

@media (max-width: 500px) {
  .off-canvas-menu {
    width: 330px;
  }
}

.off-canvas-menu.canvas-ative {
  visibility: visible;
  opacity: 1;
  right: 0;
  top: 0;
  transform: scaleX(1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .off-canvas-menu.canvas-ative {
    right: 0;
  }
}

.off-canvas-menu-wrapper {
  background: #483AA0;
  padding: 70px 35px 380px 35px;
}

.off-canvas-menu-header .close-icon {
  font-size: 30px;
  cursor: pointer;
}

.off-canvas-menu .content .appatment-form form label,
.off-canvas-menu .content .appatment-form form input,
.off-canvas-menu .content .appatment-form form textarea {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  background: transparent;
  border: 1px solid;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 25px;
  color: #FFFFFF !important;
}

.off-canvas-menu .content .appatment-form form input::placeholder,
.off-canvas-menu .content .appatment-form form textarea::placeholder {
  color: #CCC;
}

.off-canvas-menu .content .appatment-form form textarea {
  height: 100px;
  color: #ffffff;
}

.off-canvas-menu .content .appatment-form form a {
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  border: 1px solid #ffffff;
  display: block;
  text-align: center;
}

.off-canvas-menu .content .appatment-form form a:hover {
  background-color: #ffd586;
}

.off-canvas-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: all 0.5s ease 0s;
}

.off-canvas-menu-overlay.canvas-overlay-ative {
  visibility: visible;
  opacity: 1;
  right: 0;
  top: 0;
  transform: scaleX(1);
}

.off-canvas-menu .offcanves-socail-icon ul li {
  margin: 0 35px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .off-canvas-menu .offcanves-socail-icon ul li {
    margin: 0 10px;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-dark);
  z-index: 9999999;
  right: 0;
  bottom: 0;
}

#preloader-status {
  max-height: 210px;
  max-width: 210px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#wifi-loader {
  --background: #62abff;
  --front-color: #ef4d86;
  --front-color-in: #fbb216;
  --back-color: #c3c8de;
  --text-color: #a3ca14;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg circle {
  position: absolute;
  fill: none;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-100deg);
  transform-origin: center;
}

#wifi-loader svg circle.back {
  stroke: var(--back-color);
}

#wifi-loader svg circle.front {
  stroke: var(--front-color);
}

#wifi-loader svg.circle-outer {
  height: 86px;
  width: 86px;
}

#wifi-loader svg.circle-outer circle {
  stroke-dasharray: 62.75 188.25;
}

#wifi-loader svg.circle-outer circle.back {
  animation: circle-outer135 1.8s ease infinite 0.3s;
}

#wifi-loader svg.circle-outer circle.front {
  animation: circle-outer135 1.8s ease infinite 0.15s;
}

#wifi-loader svg.circle-middle {
  height: 60px;
  width: 60px;
}

#wifi-loader svg.circle-middle circle {
  stroke: var(--front-color-in);
  stroke-dasharray: 42.5 127.5;
}

#wifi-loader svg.circle-middle circle.back {
  animation: circle-middle6123 1.8s ease infinite 0.25s;
}

#wifi-loader svg.circle-middle circle.front {
  animation: circle-middle6123 1.8s ease infinite 0.1s;
}

#wifi-loader svg.circle-inner {
  height: 34px;
  width: 34px;
}

#wifi-loader svg.circle-inner circle {
  stroke-dasharray: 22 66;
}

#wifi-loader svg.circle-inner circle.back {
  animation: circle-inner162 1.8s ease infinite 0.2s;
}

#wifi-loader svg.circle-inner circle.front {
  animation: circle-inner162 1.8s ease infinite 0.05s;
}

#wifi-loader .text {
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
}

#wifi-loader .text::before,
#wifi-loader .text::after {
  content: attr(data-text);
}

#wifi-loader .text::before {
  color: var(--text-color);
}

#wifi-loader .text::after {
  color: var(--front-color-in);
  animation: text-animation76 3.6s ease infinite;
  position: absolute;
  left: 0;
}

@keyframes circle-outer135 {
  0% {
    stroke-dashoffset: 25;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 301;
  }

  80% {
    stroke-dashoffset: 276;
  }

  100% {
    stroke-dashoffset: 276;
  }
}

@keyframes circle-middle6123 {
  0% {
    stroke-dashoffset: 17;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 204;
  }

  80% {
    stroke-dashoffset: 187;
  }

  100% {
    stroke-dashoffset: 187;
  }
}

@keyframes circle-inner162 {
  0% {
    stroke-dashoffset: 9;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 106;
  }

  80% {
    stroke-dashoffset: 97;
  }

  100% {
    stroke-dashoffset: 97;
  }
}

@keyframes text-animation76 {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  50% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }

  100% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}

.scrollup-wrapper {
  position: fixed;
  right: 40px;
  bottom: 20px;
  z-index: 9999;
}

.scrollup-btn {
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 26px;
  color: var(--color-violet);
  text-decoration: none;
  width: 50px;
  height: 50px;
  background-color: #ffd586;
  border-radius: 50px;
  border: 2px solid transparent;
  outline: 2px dashed #ffd586;
  align-items: center;
  cursor: pointer;
}

.scrollup-btn i {
  margin-top: -3px;
  display: block;
}

.search-menu-container {
  position: fixed;
  top: -100%;
  left: 50%;
  width: 700px;
  z-index: 1000;
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s ease 0s;
}

.search-menu-container.search-menu-active {
  visibility: visible;
  opacity: 1;
  left: 50%;
  top: 50%;
  transform: scaleY(1);
  transform: translate(-50%, -50%);
}

.search-menu-container form {
  display: flex;
  align-items: center;
  background: #333333;
  border-radius: 5px;
  width: 100%;
  padding: 15px;
}

.search-menu-container .input-field {
  flex: 1;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 4px;
  outline: none;
  background: #333333;
  color: #ffffff;
  transition: border-color 0.3s;
}

.search-menu-container .input-field:focus {
  border-bottom: 2px solid #ffffff;
}

.search-menu-container .submit-btn {
  padding: 10px;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-menu-container .submit-btn:hover {
  color: #ffd586;
}

.search-menu-container .close-btn {
  margin-left: 10px;
  padding: 10px;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-menu-container .close-btn:hover {
  color: #ffd586;
}

.search-menu-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: right center;
  transition: all 0.5s ease 0s;
}

.search-menu-overlay.search-menu-overlay-active {
  visibility: visible;
  opacity: 1;
  right: 0;
  top: 0;
  transform: scaleY(1);
}

@media (max-width: 1399px) {
  .hero-area {
    padding-top: 0;
  }
}

.hero-area::after {
  content: "";
  position: absolute;
  width: 376px;
  height: 376px;
  right: 50px;
  top: -90px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  z-index: 5;
  animation: zoomInOut 5s 2s infinite;
}

.hero-area-bg-one {
  top: 3px;
  left: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-bg-one {
    opacity: 0.3;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-bg-one {
    opacity: 0.3;
  }
}

.hero-area-bg-four {
  right: 340px;
  bottom: 325px;
}

@media (max-width: 1550px) {
  .hero-area-bg-four {
    right: 15%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-bg-four {
    right: 5%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-bg-four {
    display: none;
  }
}

.hero-area-bg-block-shape {
  top: 0;
  right: 150px;
  z-index: 11;
  max-width: 480px;
}

@media (max-width: 1700px) {
  .hero-area-bg-block-shape {
    max-width: 50%;
    max-height: 50%;
  }
}

@media (max-width: 1500px) {
  .hero-area-bg-block-shape {
    max-width: 45%;
    max-height: 45%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-bg-block-shape {
    max-width: 35%;
    max-height: 35%;
    right: 65px;
  }
}

@media (max-width: 1199px) {
  .hero-area-bg-block-shape {
    display: none;
    visibility: hidden;
  }
}

.hero-area-title-one {
  position: relative;
  font-size: 50px;
  color: #FFD586;
}

.hero-area-title-two {
  font-size: 50px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  margin-top: 30px;
  display: inline-block;
  position: relative;
}

.hero-area-title-two::before {
  content: "";
  width: 149px;
  height: 132px;
  background: url(../images/hero-1-super-toroid-black-matte-2.png) no-repeat 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  right: 79px;
  top: -198px;
  z-index: -1;
  animation: rotated_circle 30s infinite;
}


.hero-area-title-two::after {
  content: "";
  width: 180px;
  height: 156px;
  background: url(../images/hero-1-element-3.png) no-repeat 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  right: -100px;
  top: -98px;
  z-index: -1;
}


.hero-area-title-three {
  font-size: 32px;
  line-height: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 5px;
  display: inline-block;
}




.hero-area-slider-inner-text {
  bottom: 140px;
  left: 114px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-slider-inner-text {
    bottom: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-slider-inner-text {
    bottom: 70px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-slider-inner-text {
    bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero-area-slider-inner-text {
    bottom: 50px;
    left: 55px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-slider-inner-text h3 {
    margin-bottom: 15px;
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-slider-inner-text h3 {
    margin-bottom: 15px;
    font-size: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-slider-inner-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .hero-area-slider-inner-text h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.hero-area-slider-text-1 {
  color: #b0b0b0;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .hero-area-slider-text-1 {
    font-size: 12px;
  }
}

@media only screen and (min-width: 991px) {
  .hero-area-slider-section {
    margin: 0 100px
  }

}

.hero-area-slider-section .slick-list {
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #ffd586;
  box-shadow: 0 0 100px 10px rgba(255, 213, 134, .5);
}



@media (max-width: 1831px) {
  .hero-area-author-Wrapper {
    padding-left: 120px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .hero-area-author-Wrapper {
    padding: 0 55px 0 65px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-area-author-Wrapper {
    padding: 0 28px 0 28px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-author-Wrapper {
    padding: 0px 3px 0 11px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-author-Wrapper {
    padding: 0 10px 0 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-author-Wrapper {
    display: none;
    visibility: hidden;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-author-Wrapper p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-author-Wrapper p {
    font-size: 11px;
  }
}

.hero-area-author-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-area-author-text h5 {
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
}

.hero-area-author-text span {
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.hero-area-author-profile .author-img-wrapper {
  width: 100px;
  height: 100px;
}

.hero-area-author-profile .author-img-wrapper img {
  border-radius: 50%;
}

.hero-area-two {
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-two {
    padding-top: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-two {
    padding-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-two {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two {
    padding-top: 20px;
  }
}

.hero-area-two::after {
  content: "";
  position: absolute;
  width: 376px;
  height: 376px;
  right: 58px;
  top: 0px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  animation: zoomInOut 5s 2s infinite;
  z-index: 1;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two::after {
    width: 276px;
    height: 276px;
    right: 20px;
  }
}

.hero-area-two .spiral-shape {
  right: 90px;
  top: 10px;
  animation: rotated_circle 30s infinite;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two .spiral-shape {
    left: 76px;
    width: 189px;
  }
}

.hero-area-two-first-containt-inner {
  margin-left: -60px;
}

@media (max-width: 1600px) {
  .hero-area-two-first-containt-inner {
    margin-left: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-first-containt-inner {
    margin-bottom: 30px;
  }
}

.hero-area-two-first-containt-inner h1 {
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area-two-first-containt-inner h1 {
    font-size: 130px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-two-first-containt-inner h1 {
    font-size: 105px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-two-first-containt-inner h1 {
    font-size: 82px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-first-containt-inner h1 {
    font-size: 53px;
  }
}

@media (max-width: 480px) {
  .hero-area-two-first-containt-inner h1 {
    font-size: 35px;
  }
}

.hero-area-two-first-containt-inner h1.after-shape {
  position: relative;
}

.hero-area-two-first-containt-inner h1.after-shape::after {
  content: "";
  background: url(../images/h2-hero-star-shape.svg) no-repeat 100% 100%;
  background-size: 100% 100%;
  width: 132px;
  height: 132px;
  z-index: 1;
  position: absolute;
  margin-left: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-two-first-containt-inner h1.after-shape::after {
    width: 120px;
    height: 120px;
    margin: -15px 0 0 33px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-first-containt-inner h1.after-shape::after {
    width: 60px;
    height: 60px;
    margin: -8px 0 0 33px;
  }
}

@media (max-width: 480px) {
  .hero-area-two-first-containt-inner h1.after-shape::after {
    width: 60px;
    height: 60px;
    margin: -20px 0 0 33px;
  }
}

.hero-area-two-first-containt-inner h1 span {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}

.hero-area-two-second-inner {
  margin-left: -60px;
  margin-left: -60px;
}

@media (max-width: 1600px) {
  .hero-area-two-second-inner {
    margin-left: 0;
  }
}

.hero-area-two-contain-img {
  border-radius: 250px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area-two-contain-img {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-contain-img {
    margin-bottom: 30px;
  }
}

.hero-area-two-contain-text {
  width: 191px;
  height: 191px;
  border-radius: 50%;
  background: #ffd586;
  text-align: center;
  padding: 40px 36px;
  bottom: 0;
  right: -10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-two-contain-text {
    width: 140px;
    height: 140px;
    padding: 18px 36px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-contain-text {
    width: 120px;
    height: 120px;
    padding: 10px 17px;
  }
}

@media (max-width: 480px) {
  .hero-area-two-contain-text {
    width: 90px;
    height: 90px;
    padding: 10px 17px;
  }
}

.hero-area-two-contain-text a {
  display: inline-block;
  font-family: Gilroy-Bold;
}

.hero-area-two-contain-text a span {
  font-size: 40px;
  color: #141414;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-contain-text a span {
    font-size: 25px;
  }
}

.hero-area-two-contain-text a h4 {
  font-size: 20px;
  font-weight: 400;
  color: #141414;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-contain-text a h4 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-area-two-contain-text a h4 {
    font-size: 16px;
  }
}

.hero-area-two-contain-text a:hover span,
.hero-area-two-contain-text a:hover h4 {
  color: #ffffff;
}

.hero-area-two-clint-review {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .hero-area-two-clint-review p {
    font-size: 14px;
  }
}

.hero-area-two-client-info .client-img .single-images {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.hero-area-two-client-info .client-img .clint-1 {
  left: 0;
  z-index: 1;
}

.hero-area-two-client-info .client-img .clint-2 {
  left: 31px;
  z-index: 2;
}

.hero-area-two-client-info .client-img .clint-3 {
  left: 62px;
  z-index: 3;
}

.hero-area-two-client-info .pluse-shape a {
  width: 62px;
  height: 62px;
  background: #ffd586;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  border: 3px solid #ffffff;
  left: 96px;
  z-index: 4;
}

.hero-area-two-client-info .pluse-shape:hover a {
  color: #141414;
}

.hero-area-two-client-info .client-text p {
  color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-area-two-client-info .client-text p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .text-marque-area {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-marque-area {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area {
    padding-bottom: 20px;
  }
}

.text-marque-area-shape {
  position: absolute;
  width: 300px;
  height: 289px;
  top: 99px;
  right: 80px;
  animation: rotated_circle 30s infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-marque-area-shape {
    width: 180px;
    height: 160px;
    top: 60px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area-shape {
    width: 150px;
    height: 135px;
    top: 34px;
  }
}

@media (max-width: 480px) {
  .text-marque-area-shape {
    width: 100px;
    height: 80px;
    top: 25px;
  }
}

.text-marque-area.style-1 .text-marque-section {
  gap: 40px;
}

.text-marque-area.style-1 .text-marque-section .text-marque-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.text-marque-area.style-1 .text-marque-section .text-marque-wrapper.first-text-marque {
  animation: Scroll 32s linear infinite;
}

.text-marque-area.style-1 .text-marque-section .text-marque-wrapper.second-text-marque {
  animation: Scroll 32s linear infinite;
  animation-direction: reverse;
}

.text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
  font-size: 150px;
  letter-spacing: 12.5px;
  white-space: nowrap;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 90px;
    margin-right: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 50px;
    margin-right: 30px;
  }
}

@media (max-width: 480px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 25px;
    margin-right: 10px;
  }
}

.text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
  color: transparent;
  font-size: 150px;
  letter-spacing: 7.5px;
  margin-top: -3.2%;
  white-space: nowrap;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
    font-size: 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
    margin-top: 1;
    font-size: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
    font-size: 90px;
    margin-right: 30px;
    margin-top: 1;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
    font-size: 50px;
    margin-right: 30px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
    font-size: 25px;
    margin-right: 10px;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .text-marque-area.style-2 {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .text-marque-area.style-2 {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-marque-area.style-2 {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-2 {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

.text-marque-area.style-2 .text-marque-section {
  gap: 40px;
}

.text-marque-area.style-2 .text-marque-section .text-marque-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

@media (max-width: 1399px) {
  .text-marque-area.style-2 .text-marque-section .text-marque-wrapper {
    margin-bottom: 0;
  }
}

.text-marque-area.style-2 .text-marque-section .text-marque-wrapper.first-text-marque {
  animation: Scroll 32s linear infinite;
}

.text-marque-area.style-2 .text-marque-section .text-marque-wrapper.second-text-marque {
  animation: Scroll 32s linear infinite;
  animation-direction: reverse;
}

.text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-one {
  font-size: 150px;
  white-space: nowrap;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 120px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 50px;
    letter-spacing: 10px;
  }
}

.text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-one span {
  font-family: Gilroy-Light;
}

.text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two {
  font-family: Gilroy-Light;
  font-size: 80px;
  letter-spacing: 40px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two {
    margin-right: 15px;
  }
}

.text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two span {
  text-align: center;
  font-family: Gilroy-Bold;
  font-size: 65px;
  letter-spacing: 46.15px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two span {
    font-size: 40px;
    letter-spacing: 10px;
  }
}

@media (max-width: 480px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two span {
    font-size: 30px;
    letter-spacing: 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two {
    font-size: 40px;
    letter-spacing: 13px;
  }
}

@media (max-width: 480px) {
  .text-marque-area.style-2 .text-marque-section .single-text-marque .text-marque-title-two {
    font-size: 30px;
    letter-spacing: 10px;
  }
}

.gallery-area-bg-shape {
  top: -22px;
  left: 20px;
  z-index: 999;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gallery-area-bg-shape {
    display: none;
  }
}

@media (max-width: 1800px) {
  .gallery-area-wrapper {
    margin-right: 0;
    margin: 0 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gallery-area-info {
    display: none;
    visibility: hidden;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area-big-img {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-area-big-img {
    margin-bottom: 26px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gallery-area-big-img {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area .shape-img {
    width: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-area .shape-img {
    width: 150px;
  }
}

.gallery-area-text h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--Primary, #ffd586);
  font-size: 80px;
  letter-spacing: 16px;
  text-transform: uppercase;
  color: transparent;
  margin-bottom: 22px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gallery-area-text h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area-text h2 {
    font-size: 28px;
    letter-spacing: 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-area-text h2 {
    font-size: 40px;
    letter-spacing: 7px;
    margin-bottom: 15px;
  }
}

.gallery-area-text h6 {
  font-size: 47px;
  letter-spacing: 20.5px;
  text-transform: uppercase;
  font-family: Gilroy-Light;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gallery-area-text h6 {
    font-size: 30px;
    letter-spacing: 12.5px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area-text h6 {
    font-size: 24px;
    letter-spacing: 10.5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-area-text h6 {
    font-size: 20px;
    letter-spacing: 7px;
  }
}

.gallery-area-image-shape .shape-1 {
  left: 18px;
  top: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gallery-area-image-shape .shape-1 {
    max-width: 52%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area-image-shape .shape-1 {
    max-width: 48%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gallery-area-image-shape .shape-1 {
    display: none;
  }
}

.gallery-area-image-shape .shape-2 {
  margin-left: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gallery-area-image-shape .shape-2 {
    max-width: 52%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area-image-shape .shape-2 {
    max-width: 48%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gallery-area-image-shape .shape-2 {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .gallery-area-image-none {
    display: none;
  }
}

.about-area-bg-shape {
  left: 50px;
  top: 24px;
  z-index: 1;
}

.about-area-bg-topographic {
  top: -110px;
  right: 0;
  z-index: 1;
}

.about-area-wrapper h2 {
  font-size: 50px;
  line-height: 70px;
  color: var(--color-yellow)
}

.about-area-wrapper p {
  font-size: 20px;
  font-weight: normal;
  line-height: 30px;
  color: #DDD;
  margin-bottom: 20px;
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area-wrapper {
    margin-left: 230px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-wrapper {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-wrapper {
    margin-left: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-wrapper {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-info {
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-info {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-info {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area-text {
    margin-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-text {
    margin-right: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-text {
    margin-right: 0;
    margin-left: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-text {
    margin-right: 0;
    margin-left: 0;
  }
}

.about-area-main-part {
  background: #483aa0;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-main-part {
    padding: 20px 0 20px 0;
  }
}

.about-area-main-part .about-card-bg-topographic {
  top: 0;
  right: 0;
  animation: zoomInOut 2s 2s infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-main-part {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-heading-part h2 {
    font-size: 38px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-heading-part h2 {
    font-size: 22px;
  }
}

.about-area-heading-part a {
  width: 82px;
  height: 82px;
  background: #ffd586;
  border-radius: 50%;
  line-height: 78px;
  text-align: center;
}

.about-area-heading-part a img {
  width: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-heading-part a {
    width: 60px;
    height: 60px;
    line-height: 58px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-heading-part a {
    width: 45px;
    height: 45px;
    line-height: 42px;
  }
}

.about-area-heading-part span {
  font-family: Gilroy-Light;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-inner-img {
    width: 30%;
  }
}

.about-area-content-wrapper p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.about-area-content-wrapper p.pra-text {
  position: relative;
  padding-left: 40.5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area-content-wrapper p.pra-text {
    font-size: 21px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-content-wrapper p.pra-text {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-content-wrapper p.pra-text {
    font-size: 13px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-content-wrapper p.pra-text {
    font-size: 14px;
    padding-left: 15px;
  }
}

@media (max-width: 500px) {
  .about-area-content-wrapper p.pra-text {
    padding: 0 0 30px 0;
    font-size: 10px;
  }
}

.about-area-content-wrapper p.pra-text::before {
  width: 5px;
  height: 125px;
  background: #ffd586;
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
}

@media (max-width: 500px) {
  .about-area-content-wrapper p.pra-text::before {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-side-img {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area-side-img img {
    max-width: 90%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-side-img img {
    max-width: 90%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-side-img img {
    max-width: 90%;
  }
}

.about-area-side-img .side-img-part {
  top: 49px;
  right: -71px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-area-side-img .side-img-part {
    top: 35px;
    right: -41px;
    max-width: 60%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-area-side-img .side-img-part {
    top: 13px;
    right: -47px;
    max-width: 70%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area-side-img .side-img-part {
    top: 8px;
    right: -32px;
    max-width: 70%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-area-side-img .side-img-part {
    top: 36px;
    right: 38px;
    max-width: 70%;
  }
}

@media (max-width: 500px) {
  .about-area-side-img .side-img-part {
    display: none;
  }
}

.portfolio-area-wrapper {
  position: relative;
}

.portfolio-area-wrapper::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area-wrapper {
    margin-bottom: 30px;
  }
}

.portfolio-area-wrapper:hover.portfolio-area-wrapper::after {
  background-color: #ffd586;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area-content h4 {
    font-size: 26px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area-btnn {
    padding-bottom: 0;
  }
}

.portfolio-area-img {
  border: 10px solid #483aa0;
  transition: all 0.5s ease-out;
}

.portfolio-area-wrapper:hover .portfolio-area-img {
  border: 10px solid #ffd586;
  transition: all 0.5s ease-out;
}

.portfolio-area-btnn a {
  color: #ffd586;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  padding: 22px 20px 20px 38px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease-out;
}

.portfolio-area-btnn a:hover {
  background: var(--color-violet);
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area .portfolio-area-awards {
    padding-top: 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area .portfolio-area-awards {
    padding-top: 5px;
  }
}

.portfolio-area .portfolio-area-awards-arrow-shape {
  width: 427px;
  height: 427px;
  top: -153px;
  left: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area .portfolio-area-awards-arrow-shape {
    left: -40px;
    top: -200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area .portfolio-area-awards-arrow-shape {
    left: 7px;
    top: -58px;
    width: 227px;
    height: 227px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area .portfolio-area-awards-arrow-shape {
    width: 250px;
    height: 250px;
    top: -69px;
    left: -31px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area-awards-wrapper {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area .portfolio-area-awards-spacing {
    margin: 0 50px 0 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area .portfolio-area-awards-spacing {
    margin: 20px 0 20px 0;
  }
}

.portfolio-area-awards-img {
  width: 100px;
  height: 100px;
  background: #ffd586;
  border-radius: 50%;
  line-height: 99px;
  text-align: center;
}

.portfolio-area-awards-img.style-2 {
  background: #b0b0b0;
}

.portfolio-area-awards-img.style-3 {
  background: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-area-awards-img {
    width: 80px;
    height: 80px;
    line-height: 79px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area-awards-img {
    width: 80px;
    height: 80px;
    line-height: 79px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area-awards-img {
    width: 70px;
    height: 70px;
    line-height: 68px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area-awards-img {
    width: 70px;
    height: 70px;
    line-height: 68px;
  }
}

@media (max-width: 1550px) {
  .portfolio-area-awards-text h3 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-area-awards-text h3 {
    font-size: 26px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area-awards-text h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area-awards-text h3 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .portfolio-area-awards-text h3 {
    font-size: 20px;
  }
}

.portfolio-area-awards-text-border {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-area-slider {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area-slider {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area-slider {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area-slider {
    padding-bottom: 30px;
  }
}

.portfolio-area-slider-wrapper {
  position: relative;
  left: 199px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .portfolio-area-slider-wrapper {
    left: 167px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .portfolio-area-slider-wrapper {
    left: 147px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-area-slider-wrapper {
    left: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area-slider-wrapper {
    left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-area-slider-wrapper {
    left: 0px;
    margin-left: 25px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .portfolio-area-slider-wrapper {
    left: 0px;
    margin-left: 20px;
  }
}

@media (max-width: 460px) {
  .portfolio-area-slider-wrapper {
    margin-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area.style-1 {
    padding-top: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wcu-area.style-1 {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wcu-area.style-1 {
    padding-top: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .wcu-area.style-1 {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area {
    padding-bottom: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wcu-area {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wcu-area {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .wcu-area {
    padding-bottom: 40px;
  }
}

@media (max-width: 1199px) {
  .wcu-area .reverse {
    flex-direction: column-reverse;
  }
}

.wcu-area-text h5 {
  color: #ffffff;
}

.wcu-area-text a {
  color: #ffd586;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wcu-area-text {
    margin-right: 200px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .wcu-area-text {
    margin-right: 0px;
  }
}

.wcu-area-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area-card-info {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .wcu-area-card-info {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area-card-info-secondary {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.wcu-area-info-card-wrapper {
  margin-bottom: 33px;
}

@media (max-width: 1199px) {
  .wcu-area-side-content {
    display: none;
  }
}

.wcu-area-circle-img {
  width: 613px;
  height: 613px;
  margin-left: 192px;
  margin-top: -200px;
  animation: rotated_circle 30s infinite;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .wcu-area-circle-img {
    width: 480px;
    height: 480px;
    margin-left: 200px;
    margin-top: -138px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .wcu-area-circle-img {
    width: 400px;
    height: 400px;
    margin-left: 214px;
    margin-top: -43px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area-circle-img {
    width: 490px;
    height: 490px;
    margin-left: -26px;
    margin-top: -62px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wcu-area-circle-img {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
  }
}

.wcu-area-side-img-content {
  position: relative;
  margin-top: -401px;
  margin-left: 401px;
}

.wcu-area-side-img-content img {
  max-width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .wcu-area-side-img-content img {
    max-width: 45%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area-side-img-content img {
    max-width: 60%;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .wcu-area-side-img-content {
    margin-top: -342px;
    margin-left: 350px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .wcu-area-side-img-content {
    margin-top: -274px;
    margin-left: 338px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wcu-area-side-img-content {
    margin-left: 122px;
    margin-top: -336px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wcu-area-side-img-content {
    margin-left: 347px;
    margin-top: -341px;
  }
}

.wcu-area-side-img-content::after {
  content: "";
  position: absolute;
  width: 376px;
  height: 376px;
  right: -38px;
  top: -223px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  z-index: 1;
  animation: zoomInOut 5s 2s infinite;
}

.wcu-area-side-img-content h3 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  color: transparent;
  font-size: 35px;
  letter-spacing: 15.75px;
  text-transform: uppercase;
  margin-left: 9px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .wcu-area-side-img-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 400px) {
  .team-area-member-info-wrapper {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
}

.team-area-member-info-1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-info-1 {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-info-1 {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
}

.team-area-member-info-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-area-member-info-2 {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-info-2 {
    border-left: none;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-info-2 {
    border-left: none;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-info-3 {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-info-3 {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.team-area-member-info-4 {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-info-4 {
    border: none;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-info-4 {
    border: none;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-info-wrappe-secondary {
    margin-bottom: 35px;
  }
}

.team-area-member-img {
  width: 200px;
  height: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-area-member-img {
    width: 130px;
    height: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-img {
    width: 130px;
    height: 130px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 400px) {
  .team-area-member-img {
    width: 110px;
    height: 110px;
  }
}

.team-area-member-img img {
  border-radius: 100%;
}

.team-area-member-img-secondary {
  width: 416px;
  height: 416px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-area-member-img-secondary {
    width: 360px;
    height: 360px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-area-member-img-secondary {
    width: 300px;
    height: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-img-secondary {
    width: 220px;
    height: 220px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-img-secondary {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    display: inline-block;
    display: flex;
    justify-content: center;
  }
}

.team-area-member-text h4 {
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area-member-text h4 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-area-member-text h4 {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .team-area-member-text h4 {
    text-align: center;
  }
}

@media (max-width: 400px) {
  .team-area-member-text p {
    text-align: center;
  }
}

.team-area-member-social-link li {
  margin-right: 10px;
  white-space: nowrap;
  display: inline-block;
}

.team-area-member-social-link li a {
  color: #fff;
  border-radius: 20px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  transition: all 0.5s ease-out;
}

.team-area-member-social-link li a:hover {
  background: var(--color-yellow);
  color: var(--color-violet);
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-area {
    padding: 80px 0 80px 0;
  }
}

.video-popup-area-img {
  width: 218px;
  height: 224px;
  margin: 0 auto;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-area-img {
    width: 118px;
    height: 124px;
  }
}

.video-popup-area-text {
  top: 50%;
  left: 49%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-popup-area-text {
    left: 48%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-area-text {
    left: 47%;
    top: 48%;
  }
}

.video-popup-area-text a {
  color: #fff;
  font-family: Gilroy-Regular;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .video-popup-area-text a {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .testimonial-area.style-1 {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.testimonial-area.style-2::before {
  content: "";
  position: absolute;
  width: 376px;
  height: 376px;
  left: 220px;
  bottom: 0;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  z-index: -1;
  animation: zoomInOut 5s 2s infinite;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area.style-2::before {
    display: none;
  }
}

.testimonial-area-img-content {
  margin-right: 100px;
  text-align: end;
}

@media screen and (min-width:786px) {
  .testimonial-area-img-content img {
    max-width: 500px;
  }
}

@media (max-width: 1399px) {
  .testimonial-area-img-content {
    margin: 0 0 0 0;
  }
}

.testimonial-area-img-content.style-2 {
  margin-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area-img-content {
    margin-left: 0;
  }
}

.testimonial-area-main-slider {
  margin-right: 20px;
  background: rgb(72, 58, 160, .3);
  border-left: 30px solid var(--color-violet);
  border-right: 30px solid var(--color-violet);
  border-radius: 50px;
}

@media (max-width: 1199px) {
  .testimonial-area-main-slider {
    margin: 0 0 0 0;
  }
}

.testimonial-area-slider-wrapper {
  display: flex;
  padding: 0 119px 78px 50px;
}

.testimonial-area-slider-wrapper h3 {
  color: #FFD586;
  font-size: 20px;
  line-height: 40px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 1705px) {
  .testimonial-area-slider-wrapper {
    padding: 105px 70px 105px 50px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .testimonial-area-slider-wrapper {
    padding: 100px 50px 100px 20px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .testimonial-area-slider-wrapper {
    padding: 60px 10px 60px 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-area-slider-wrapper {
    padding: 20px 10px 20px 19px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area-slider-wrapper {
    padding: 60px 25px 60px 25px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper {
    padding: 45px 5px 45px 5px;
    display: block;
  }
}

.testimonial-area-slider-wrapper .fast-slider {
  width: 30;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper .fast-slider {
    width: 100%;
  }
}

.testimonial-area-slider-wrapper .fast-slider .slider-image {
  margin-bottom: 50.5px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper .fast-slider .slider-image {
    margin-bottom: 20px;
    padding-top: 30px;
  }
}

.testimonial-area-slider-wrapper .fast-slider .slider-image img {
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-area-slider-wrapper .fast-slider .slider-image img {
    max-width: 65px;
    max-height: 65px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper .fast-slider .slider-image img {
    max-width: 60px;
    max-height: 60px;
  }
}

.testimonial-area-slider-wrapper {
  cursor: move;
}

.testimonial-area-slider-wrapper .second-slider {
  width: 100%;
  padding: 0 10px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper .second-slider {
    width: 100%;
    padding: 0 5px;
  }
}

@media (max-width: 1500px) {
  .testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-pra p {
    font-size: 12px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-pra p {
    font-size: 12px;
  }
}

.testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-info .slider-info-text h5 {
  color: #fff;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-info .slider-info-text h5 {
    font-size: 16px;
  }
}

.testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-info .slider-info-text span {
  color: #d3d3d3;
}

.slider-pra {
  position: relative;
}

.testimonial-area-slider-wrapper .second-slider .slider-wrapper .icon-quote::before {
  font-size: 80px;
  color: #FFD586;
  position: absolute;
  bottom: -72px;
  right: 0;
}

.slider-info img {
  width: 100px;
  margin: 20px 0;
}

.testimonial-area .slick-center img {
  border: 2px solid #fff;
  margin-right: 100px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-area .slick-center img {
    margin-right: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-area .slick-center img {
    margin-right: 65px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area .slick-center img {
    margin: -30px 0 0 0;
  }
}

.testimonial-area-main-slider-style-2 {
  margin-top: 0px;
  margin-right: -305px;
  margin-left: 22px;
}

@media (max-width: 1905px) {
  .testimonial-area-main-slider-style-2 {
    margin-right: -150px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .testimonial-area-main-slider-style-2 {
    margin-right: -152px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .testimonial-area-main-slider-style-2 {
    margin-right: -52px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-area-main-slider-style-2 {
    margin-right: -41px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-area-main-slider-style-2 {
    margin-right: -28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area-main-slider-style-2 {
    margin: 30px 0 0 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-area-main-slider-style-2 {
    margin: 20px 0 0 0;
  }
}

.brand-marque-area.brand-marque-area-primary {
  margin-bottom: -39px;
  overflow: hidden;
  position: relative;
}

.brand-marque-area .brand-marque-wrapper .single-img-marque {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430.75px;
  height: 100px;
  background: #FFF;
  margin: 0 20px;
  filter: grayscale(100%) invert();
  transition: all 0.5s ease-out;
}

.brand-marque-area .brand-marque-wrapper .single-img-marque:hover {
  cursor: crosshair;
  filter: grayscale(0);
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brand-marque-area .brand-marque-wrapper .single-img-marque {
    width: 350px;
    height: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-marque-area .brand-marque-wrapper .single-img-marque {
    width: 300px;
    height: 80px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .brand-marque-area .brand-marque-wrapper .single-img-marque {
    width: 200px;
    height: 70px;
  }
}

.services-area-card-wrapper {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .services-area-card-wrapper {
    margin-bottom: 40px;
  }
}

.services-area-card-wrapper:hover span::before {
  color: #ffffff;
}

.services-area-card-wrapper:hover p {
  visibility: visible;
  max-height: 100px;
  opacity: 1;
  transition: transform 0.5s ease-out, max-height 0.5s ease-out;
}

.services-area-card-wrapper:hover a {
  visibility: visible;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-area-card-wrapper:hover a {
    margin-top: 18px;
  }
}

.services-area-card-wrapper:hover .card-change-img-1 {
  padding-top: 0;
  height: 331px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area-card-wrapper:hover .card-change-img-1 {
    height: 272px;
  }
}

.services-area-card-content {
  width: 270px;
  background: #1a1717;
  padding: 15px 15px 23px 30px;
  position: absolute;
  top: -2px;
  right: -2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-area-card-content {
    width: 230px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area-card-content {
    width: 185px;
    padding: 5px 15px 5px 30px;
  }
}

.services-area-card-element span {
  font-size: 35px;
  margin-top: 32px;
}

.services-area-card-element span::before {
  color: #ffd586;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-area-card-element {
    margin-bottom: 19px;
  }
}

.services-area-card-element h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
  color: transparent;
}

.services-area-card-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-area-card-text h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area-card-text h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.services-area-card-text p {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  transition: transform 0.5s ease-out, max-height 0.5s ease-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area-card-text p {
    font-size: 10px;
    line-height: 22px;
  }
}

.services-area-card-btn a {
  width: 42px;
  height: 42px;
  background: #ffd586;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  visibility: hidden;
  transition: all 0.5s ease-out;
}

.services-area-card-img .card-change-img-1 {
  padding-top: 142px;
  transition: all 0.5s ease-out;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .services-area-card-img .card-change-img-1 {
    transition: all 0s ease-out;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pricing-area {
    padding-bottom: 105px;
    padding-top: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area {
    padding-bottom: 70px;
    padding-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area {
    padding-bottom: 55px;
    padding-top: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.pricing-area-bg-img {
  top: -153px;
}

@media (max-width: 991px) {
  .pricing-area-bg-img {
    top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area-card:hover .pricing-area-card-wrapper {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area-card:hover .pricing-area-card-wrapper {
    margin-top: 50px;
  }
}

.pricing-area-card:hover .pricing-area-card-icon span::before {
  color: #ffd586;
}

.pricing-area-card:hover .pricing-area-cards-btn {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  margin-top: 10px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transform: scaleY(1);
}

.pricing-area-card:hover .pricing-area-card-wrapper::before {
  opacity: 1;
  visibility: visible;
  top: -3px;
}

.pricing-area-card-wrapper {
  padding: 74px 60px 52px 60px;
  border-radius: 10px;
  border: 1px solid #292929;
  transition: all 0.3s ease 0s;
  background: #1a1717;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pricing-area-card-wrapper {
    padding: 40px 27px 40px 27px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area-card-wrapper {
    padding: 40px 17px 40px 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area-card-wrapper {
    margin-top: 30px;
    padding: 20px 60px 20px 100px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area-card-wrapper {
    margin-top: 30px;
    padding: 20px 60px 20px 80px;
  }
}

@media (max-width: 480px) {
  .pricing-area-card-wrapper {
    padding: 15px 15px 15px 15px;
  }
}

.pricing-area-card-wrapper.card-wrapper-visible::before {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  top: -3px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.pricing-area-card-wrapper.hidden-before::before {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  top: -30px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.pricing-area-card-wrapper::before {
  content: "Popular Package";
  border-radius: 54px;
  background: #ffd586;
  padding: 5px 20px;
  color: #141414;
  font-size: 14px;
  display: inline-block;
  left: 134px;
  top: -30px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  margin-top: -16px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pricing-area-card-wrapper::before {
    left: 104px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area-card-wrapper::before {
    left: 74px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area-card-wrapper::before {
    left: 278px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .pricing-area-card-wrapper::before {
    left: 180px;
  }
}

@media (max-width: 480px) {
  .pricing-area-card-wrapper::before {
    left: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area-card-icon {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .pricing-area-card-icon {
    margin-bottom: 15px;
  }
}

.pricing-area-card-icon span {
  display: inline-block;
}

.pricing-area-card-icon span::before {
  color: #ffffff;
  font-size: 50px;
  line-height: 50px;
  font-weight: 900;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area-card-text {
    padding-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .pricing-area-card-text {
    padding-bottom: 15px;
  }
}

.pricing-area-card-text h5 {
  color: #fff;
  margin-bottom: 41px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area-card-text h5 {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .pricing-area-card-text h5 {
    margin-bottom: 20px;
  }
}

.pricing-area-card-text h3 span {
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-weight: 400;
}

.pricing-area-cards-list ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-area-cards-list ul li {
    font-size: 14px;
  }
}

.pricing-area-cards-list ul li.checkmark::before {
  content: "\e910";
  font-size: 20px;
  color: #ffd586;
  font-family: "icomoon";
  margin: 0 20px 0 0;
}

.pricing-area-cards-list ul li.closemark::before {
  content: "\e90c";
  font-size: 20px;
  color: #ffd586;
  font-family: "icomoon";
  margin: 0 20px 0 0;
}

.pricing-area-cards-btn {
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: scaleY(0);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.pricing-area-cards-btn a {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 65px;
  border: 1px solid #3c3c3c;
  display: inline-block;
}

.pricing-area-cards-btn img {
  padding-left: 15px;
}

.pricing-area .visibles-card {
  display: flex;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  max-height: auto;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.pricing-area .visibles-card a {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 65px;
  border: 1px solid #3c3c3c;
  display: inline-block;
}

.pricing-area .visibles-card img {
  padding-left: 15px;
}

.about-page .wcu-area-page {
  position: relative;
}

@media (max-width: 575px) {
  .about-page .wcu-area-page {
    display: none;
  }
}

.about-page .wcu-area-page .wcu-area-page-circle-img {
  max-width: 613px;
  max-height: 613px;
  margin-left: -250px;
  margin-right: 71px;
  animation: rotated_circle 30s infinite;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .about-page .wcu-area-page .wcu-area-page-circle-img {
    margin-left: -122px;
    margin-right: 0;
    max-width: 500px;
    max-height: 500px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-page .wcu-area-page .wcu-area-page-circle-img {
    margin-left: -39px;
    margin-right: 0;
    max-width: 450px;
    max-height: 450px;
    margin-top: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-page .wcu-area-page .wcu-area-page-circle-img {
    margin-left: -29px;
    margin-right: 0;
    max-width: 370px;
    max-height: 370px;
    margin-top: 120px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-page .wcu-area-page .wcu-area-page-circle-img {
    margin-left: 0;
    margin-right: 0;
    max-width: 370px;
    max-height: 370px;
    display: block;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-page .wcu-area-page .wcu-area-page-circle-img {
    margin-left: 0;
    margin-right: 0;
    max-width: 370px;
    max-height: 370px;
    display: block;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-page .wcu-area-page .wcu-area-page-circle-img {
    margin-left: 0;
    margin-right: 0;
    max-width: 370px;
    max-height: 370px;
    display: block;
    margin: 0 auto;
  }
}

.about-page .wcu-area-page-img-content {
  margin-top: -396px;
  margin-left: -46px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .about-page .wcu-area-page-img-content {
    margin-top: -351px;
    margin-left: 31px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-page .wcu-area-page-img-content {
    margin-top: -326px;
    margin-left: 98px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-page .wcu-area-page-img-content {
    margin-top: -260px;
    margin-left: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-page .wcu-area-page-img-content {
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    margin-left: 0;
    bottom: 125px;
    left: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-page .wcu-area-page-img-content {
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    margin-left: 0;
    bottom: 117px;
    left: 280px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-page .wcu-area-page-img-content {
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    margin-left: 0;
    bottom: 117px;
    left: 200px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-page .wcu-area-page-img-content img {
    max-width: 50%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-page .wcu-area-page-img-content img {
    max-width: 60%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-page .wcu-area-page-img-content img {
    max-width: 60%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-page .wcu-area-page-img-content img {
    max-width: 60%;
  }
}

.about-page .wcu-area-page-img-content h3 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  color: transparent;
  font-size: 35px;
  letter-spacing: 15.75px;
  text-transform: uppercase;
  margin-left: 9px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-page .wcu-area-page-img-content h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-page .wcu-area-page-img-content h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-page .wcu-area-page-img-content h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .about-page .wcu-area-page-img-content h3 {
    font-size: 20px;
  }
}

.team-page .team-wcu-wrapper {
  margin: 57px 0 0 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-page .team-wcu-wrapper {
    margin: 20px 0 0 37px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page .team-wcu-wrapper {
    margin: 0 0 0 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-page .team-wcu-wrapper {
    margin: 30px 0 0 0;
  }
}

.team-page .team-wcu-title {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page .team-wcu-title {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-page .team-wcu-title {
    margin-bottom: 30px;
  }
}

.team-page .team-wcu-title h5 {
  color: #fff;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page .team-wcu-title h5 {
    font-size: 17px;
    margin-bottom: 13px;
  }
}

.team-page .team-wcu-title p {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page .team-wcu-title p {
    font-size: 13px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-page .team-wcu-info {
    gap: 55px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-page .team-wcu-info {
    gap: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page .team-wcu-info {
    gap: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-page .team-wcu-info {
    gap: 15px;
  }
}

.team-page .team-wcu-info-title span::before {
  font-size: 50px;
}

.team-page .team-wcu-info-title h5 {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-page .team-wcu-info-title h5 {
    font-size: 17px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-page .team-wcu-info-title h5 {
    font-size: 17px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-secondary {
    padding-bottom: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary {
    padding-bottom: 40px;
  }
}

.team-secondary-wrapper {
  border-radius: 20px;
  background: #1a1717;
  padding: 100px 101px 133px 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-secondary-wrapper {
    padding: 60px 96px 133px 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper {
    padding: 60px 96px 133px 60px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-wrapper {
    padding: 50px 30px 50px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-secondary-wrapper .team-secondary-wcu {
    padding-bottom: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper .team-secondary-wcu {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-wrapper .team-secondary-wcu {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-wrapper .team-secondary-wcu {
    padding-bottom: 40px;
  }
}

.team-secondary-wrapper .team-secondary-wcu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-wrapper .team-secondary-wcu-content {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper .team-secondary-wcu-content .section-title {
    margin-bottom: 15px;
  }
}

.team-secondary-wrapper .team-secondary-wcu-title {
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper .team-secondary-wcu-title {
    margin-bottom: 25px;
  }
}

.team-secondary-wrapper .team-secondary-wcu-title h5 {
  color: #ffffff;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper .team-secondary-wcu-title h5 {
    margin-bottom: 10px;
  }
}

.team-secondary-wrapper .team-secondary-wcu-title p {
  color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar {
    gap: 23px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar {
    gap: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar {
    gap: 47px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar {
    gap: 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar {
    gap: 10px;
  }
}

@media (max-width: 510px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar {
    flex-wrap: wrap;
  }
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper {
  margin-left: 12px;
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper .progress-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper .progress-container .progress-circle {
  transform: rotate(35deg);
  width: 100%;
  height: 100%;
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper .progress-container .progress-circle circle {
  fill: none;
  stroke-width: 17;
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper .progress-container .progress-circle .bg {
  stroke: #313131;
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper .progress-container .progress-text {
  font-family: Rubik;
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  color: #b0b0b0;
  font-weight: 400;
}

.team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper h5 {
  margin-top: 25px;
  color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper h5 {
    font-size: 17px;
  }
}

@media (max-width: 510px) {
  .team-secondary-wrapper .team-secondary-wcu-progress-bar .proggress-wrapper h5 {
    font-size: 17px;
  }
}

@keyframes progress-animation {
  from {
    stroke-dashoffset: 251.2;
  }

  to {
    stroke-dashoffset: 50.24;
  }
}

.contact-page-info {
  margin-top: 56px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-page-info {
    margin-top: 0;
  }
}

.contact-page h4 {
  color: #fff;
  font-family: Gilroy-Regular;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-page h4 {
    font-size: 21px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-page h4 {
    font-size: 21px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .contact-page .company-map span iframe {
    height: 250px;
  }
}

.project-page-card-part {
  background: #1a1717;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-page-card-part {
    padding: 20px 0 20px 0;
  }
}

.project-page-card-part .about-card-bg-topographic {
  top: 0;
  right: 0;
  animation: zoomInOut 2s 2s infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-page-card-part {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-page-heading-part h2 {
    font-size: 38px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-page-heading-part h2 {
    font-size: 22px;
  }
}

.project-page-heading-part a {
  width: 82px;
  height: 82px;
  background: #ffd586;
  border-radius: 50%;
  line-height: 78px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-page-heading-part a {
    width: 60px;
    height: 60px;
    line-height: 58px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-page-heading-part a {
    width: 45px;
    height: 45px;
    line-height: 42px;
  }
}

.project-page-heading-part span {
  font-family: Gilroy-Light;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-page-inner-img {
    width: 30%;
  }
}

.service-details-page .service-details-wcu-title {
  width: 416px;
  height: 383px;
  background: #ffd586;
  padding: 87px 38px 52px 42px;
  border-radius: 10px;
  margin-top: -274px;
  margin-left: 282px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-page .service-details-wcu-title {
    width: 353px;
    height: 383px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .service-details-wcu-title {
    margin-top: -151px;
    margin-left: 205px;
    width: 330px;
    height: 290px;
    padding: 47px 38px 52px 42px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .service-details-wcu-title {
    margin-top: -218px;
    margin-left: 269px;
    width: 250px;
    height: 260px;
    padding: 62px 31px 42px 27px;
  }
}

@media (max-width: 576px) {
  .service-details-page .service-details-wcu-title {
    margin-top: -65px;
    margin-left: 197px;
    width: 130px;
    height: 130px;
    padding: 10px 10px 10px 10px;
  }
}

.service-details-page .service-details-wcu-title a span {
  margin-bottom: 17px;
  display: block;
}

.service-details-page .service-details-wcu-title a span::before {
  color: #141414;
  font-size: 35px;
  width: 87px;
  height: 87px;
  background: #ffffff;
  text-align: center;
  line-height: 87px;
  border-radius: 50%;
  display: inline-block;
  transition: all 500ms ease;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .service-details-wcu-title a span::before {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 25px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .service-details-wcu-title a span::before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
  }
}

.service-details-page .service-details-wcu-title a:hover span::before {
  color: #ffd586;
}

.service-details-page .service-details-wcu-title h3 {
  color: #141414;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-page .service-details-wcu-title h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .service-details-wcu-title h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .service-details-wcu-title h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .service-details-page .service-details-wcu-title h3 {
    font-size: 16px;
  }
}

.service-details-page .service-details-wcu-title h3 span {
  font-family: Gilroy-Regular;
}

.service-details-page .service-details-wcu .wcu-area-card-info-secondary .wcu-area-info-card-wrapper {
  margin-bottom: 60px;
}

.service-details-page .our-work-step-card-wrapper {
  width: 306px;
  height: 306px;
  border-radius: 306px;
  background: #1a1717;
  box-shadow: 5px 5px 4px 0px #ffd586;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-page .our-work-step-card-wrapper {
    width: 250px;
    height: 250px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .our-work-step-card-wrapper {
    width: 220px;
    height: 220px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-page .our-work-step-card-wrapper {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .our-work-step-card-wrapper {
    margin-bottom: 30px;
    margin: 20px auto;
  }
}

.service-details-page .our-work-step-card-title span {
  font-family: Gilroy-Light;
  margin-bottom: 12px;
  display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .our-work-step-card-title span {
    margin-bottom: 8px;
  }
}

.service-details-page .our-work-step-card-title h4 {
  margin-bottom: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .our-work-step-card-title h4 {
    margin-bottom: 16px;
  }
}

.service-details-page .our-work-step-card-title p {
  font-size: 18px;
  padding: 0 39px;
  display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .our-work-step-card-title p {
    font-size: 16px;
    padding: 0 16px;
  }
}

.service-details-page .wcu-area .wuc-area-side-img {
  margin-top: -85px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .wcu-area .wuc-area-side-img {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-page .wcu-area .wuc-area-side-img {
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .service-details-page .wcu-area .wuc-area-side-img img {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-page .wuc-accordion {
    padding-bottom: 105px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .wuc-accordion {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-page .wuc-accordion {
    padding-bottom: 55px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .wuc-accordion {
    padding-bottom: 40px;
  }
}

.service-details-page .wuc-accordion .section-specing {
  padding: 53px 97px 31px 105px;
  border-radius: 20px;
  background: #1a1717;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-page .wuc-accordion .section-specing {
    padding: 50px 37px 31px 46px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-page .wuc-accordion .section-specing {
    padding: 27px 16px 21px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-page .wuc-accordion .section-specing {
    padding: 10px 10px 10px 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .wuc-accordion .section-specing {
    padding: 30px 10px 30px 10px;
  }
}

.service-details-page .wuc-accordion-bg-img {
  right: 0;
  bottom: 0;
}

.service-details-page .wuc-accordion-wrapper {
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .service-details-page .wuc-accordion-wrapper {
    margin-right: 0;
  }
}

.service-details-page .wuc-accordion-wrapper .wuc-accordion-pra p {
  font-size: 18px;
  margin-top: 30px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
  max-height: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .wuc-accordion-wrapper .wuc-accordion-pra p {
    font-size: 15px;
  }
}

.service-details-page .wuc-accordion-wrapper .wuc-accordion-pra.active p {
  visibility: visible;
  opacity: 1;
  max-height: 100%;
}

.service-details-page .wuc-accordion-title {
  position: relative;
  cursor: pointer;
}

.service-details-page .wuc-accordion-title span::before {
  font-size: 25px;
  padding: 15px;
}

.service-details-page .wuc-accordion-title span.bottom-arrow {
  display: none;
}

.service-details-page .wuc-accordion-title span.active+.bottom-arrow {
  display: inline-block;
}

.service-details-page .wuc-accordion-title span.active {
  display: none;
}

.service-details-page .wuc-accordion-title h4 {
  font-family: Gilroy-SemiBold;
  font-size: 18px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .service-details-page .wuc-accordion-title h4 {
    font-size: 16px;
  }
}

.service-details-page .wuc-accordion-title::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 992px) {
  .service-details-page .wuc-accordion-image-wrapper {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-page .project-area {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-page .project-area {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-page .project-area {
    padding-bottom: 5px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-page .project-area {
    padding-bottom: 0px;
  }
}

.project-page .projects-wrapper {
  margin-bottom: 45px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .project-page .projects-wrapper {
    margin: 0 51px;
  }
}

@media (max-width: 575px) {
  .project-page .projects-wrapper {
    margin: 0 67px;
  }
}

@media (max-width: 445px) {
  .project-page .projects-wrapper {
    margin: 0 0;
  }
}

.project-page .projects-wrapper .portfolio-area-img img {
  transform: scale(1);
  transition: all 0.5s ease-out;
}

.project-page .projects-wrapper .portfolio-area-img img:hover {
  transform: scale(1.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-page .projects-wrapper .portfolio-area-content h4 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .project-page .projects-wrapper .portfolio-area-content h4 {
    font-size: 22px;
  }
}

.blog-details-content-pra .data {
  color: #b0b0b0;
}

.blog-details-content-main-pra {
  margin: 17px 0 30px 0;
}

.blog-details-content-main-pra span {
  color: #ffffff;
  font-family: Gilroy-Bold;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 1px;
  margin-right: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-content-main-pra span {
    display: none;
  }
}

.blog-details-slider {
  position: relative;
  margin-bottom: 58px;
}

.blog-details-slider::before {
  content: "";
  width: 5px;
  height: 114px;
  background: #ffd586;
  position: absolute;
  top: -2px;
}

.blog-details-slider span::before {
  font-size: 58px;
  margin-right: 44px;
  color: #474747;
  margin-left: 54px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-slider .slider-title h4 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-slider .slider-title h4 {
    font-size: 15px;
  }
}

.blog-details-slider .slider-title p {
  color: #ffffff;
  position: relative;
  padding-left: 30px;
}

.blog-details-slider .slider-title p::before {
  content: "";
  width: 22px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-post-part {
    margin-bottom: 40px;
  }
}

.blog-details-post-img {
  display: flex;
}

@media (max-width: 1399px) {
  .blog-details-post-img {
    flex-direction: column;
  }
}

.blog-details-post-tag {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-post-tag {
    flex-direction: column;
    gap: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-post-tag {
    flex-direction: column;
    gap: 20px;
  }
}

.blog-details-btn-wrapper a {
  padding: 5px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-btn-wrapper a {
    padding: 5px 15px;
  }
}

.blog-details-author {
  padding: 46px 50px;
  background: #1a1717;
  margin-bottom: 60px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-author {
    flex-direction: column;
    gap: 20px;
    padding: 10px 10px;
  }
}

.blog-details-author-img img {
  border-radius: 50%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-clint-comment {
    margin-bottom: 30px;
  }
}

.blog-details-comment-wrapper {
  display: flex;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-details-comment-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-left: 0px;
  }
}

.blog-details-clint-img img {
  border-radius: 50%;
}

.blog-details-comment-content h4 span {
  color: var(--Secondery, #b0b0b0);
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-left: 24px;
}

.blog-details-reply-btn a {
  display: inline-block;
  color: #ffd586;
}

.blog-details-side-content .search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details-side-content .search-box input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1717;
  color: #828282;
}

.blog-details-side-content .search-box input:focus {
  outline: none;
  border-color: #ffd586;
}

.blog-details-side-content .search-box button {
  position: absolute;
  right: 0;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
}

.blog-details-side-content .search-box button i {
  font-size: 16px;
  color: #828282;
}

.blog-details-side-content .search-box button:hover i {
  color: #ffd586;
}

.blog-details .author-card {
  margin-top: 58px;
  margin-bottom: 62px;
}

.blog-details .author-card-img {
  width: 274px;
  height: 330.412px;
  margin: 0 auto;
}

.blog-details .author-card-img img {
  border-radius: 50%;
}

.blog-details-category h5 {
  color: #ffffff;
  margin-bottom: 26px;
}

.blog-details-category-list ul li {
  margin-bottom: 15px;
}

.blog-details-category-list ul li span {
  margin-left: 12px;
}

.blog-details-news h5 {
  color: #ffffff;
  margin-bottom: 26px;
}

.blog-details-news-title h6 {
  font-size: 18px;
}

.blog-details-popular-tag h5 {
  color: #ffffff;
  margin-bottom: 26px;
}

.error-page::before {
  content: "";
  position: absolute;
  width: 508px;
  height: 508px;
  left: -106px;
  bottom: -170px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  animation: zoomInOut 5s 2s infinite;
  z-index: 0;
  border-radius: 508px;
}

.error-page::after {
  content: "";
  position: absolute;
  width: 381px;
  height: 381px;
  right: 0;
  top: -162px;
  background: rgba(237, 188, 90, 0.7);
  filter: blur(200px);
  animation: zoomInOut 5s 2s infinite;
  z-index: 0;
  border-radius: 381px;
}

.error-page-wrapper {
  background: #1a1717;
  padding: 132px 86px 132px 110px;
  border-radius: 20px;
}

.error-page-btn a {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(176, 176, 176, 0.3);
  border-radius: 57px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.error-page-btn a::after {
  content: "\e914";
  font-family: icomoon;
  color: #ffd586;
  margin-left: 16px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.error-page-btn a:hover {
  background: #ffd586;
  color: #ffffff;
}

.error-page-btn a:hover::after {
  color: #ffffff;
}

.error-page-bg {
  margin-left: 36px;
}

.header-area {
  width: 100%;
  height: 153px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area {
    height: 100px;
  }
}

.header-area .fixed-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
  z-index: 999;
}

.header-area .fixed-menu.scrolled {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.header-area .fixed-menu.scrolled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  filter: blur(5px);
  z-index: -1;
  background-color: #483AA0;
}

.header-area .fixed-menu.scrolled .header-area-image {
  max-width: 150px;
}

.header-area .fixed-menu.scrolled ul li.scroll-effect {
  padding: 20px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-image {
    margin-left: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area-image {
    padding: 25px 0;
    margin-left: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area-image {
    padding: 25px 0;
    margin-left: 30px;
  }
}

.header-area-menu ul.main-menu {
  margin-left: 317px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .header-area-menu ul.main-menu {
    margin-left: 210px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-area-menu ul.main-menu {
    margin-left: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu ul.main-menu {
    margin-left: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu ul.main-menu {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .header-area-menu ul {
    display: none;
    visibility: hidden;
  }
}

.header-area-menu ul li {
  margin-left: 80px;
  line-height: normal;
  list-style: none;
  position: relative;
}

.header-area-menu ul li.scroll-effect {
  padding: 57px 0;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu ul li {
    margin-left: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu ul li {
    margin-left: 35px;
  }
}

.header-area-menu ul li:hover a {
  color: #ffd586;
}

.header-area-menu ul li:hover .sub-menu {
  visibility: visible;
  top: 100%;
  opacity: 1;
  transform: scaleY(1);
}

.header-area-menu ul li .sub-menu {
  position: absolute;
  left: -30px;
  top: 100%;
  width: 250px;
  visibility: hidden;
  transition: all 0.5s ease 0s;
  z-index: 1;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}

.header-area-menu ul li .sub-menu li {
  margin-left: 0;
  padding: 10px 20px;
  background: #333333;
  border: 1px solid #484848;
}

.header-area-menu ul li .sub-menu li a {
  color: #fff;
  font-size: 16px;
  transition: all 500ms ease;
}

.header-area-menu ul li .sub-menu li:hover a {
  color: #ffd586;
  text-decoration: underline;
}

.header-area-menu ul li a {
  color: #fff;
  font-family: Gilroy-SemiBold;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu ul li a {
    font-size: 16px;
  }
}

.header-area-menu ul li a.plus-icon::after {
  content: "+";
  font-family: "FontAwesome";
  font-size: 14px;
  margin-left: 5px;
  font-weight: 900;
}

.header-area-menu.style-2 ul.main-menu {
  margin-left: 0;
}

@media (max-width: 1700px) {
  .header-area-menu.style-2 ul li {
    margin-left: 70px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-area-menu.style-2 ul li {
    margin-left: 48px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu.style-2 ul li {
    margin-left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu.style-2 ul li {
    margin-left: 20px;
    padding: 40px 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu.style-2 ul li a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu.style-2 ul li a {
    font-size: 14px;
  }
}

.header-area-menu-icon span::before {
  font-size: 30px;
}

.header-area-touch-btn {
  margin-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-touch-btn {
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  .header-area-touch-btn {
    display: none;
  }
}

.header-area-touch-btn a {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 111px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-touch-btn a {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-touch-btn a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area-touch-btn a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area-touch-btn a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

.header-area-touch-btn a::after {
  content: "\e900";
  color: #fff;
  font-family: "icomoon";
  margin-left: 9px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.header-area-touch-btn a:hover::after {
  color: #ffd586;
}

.header-area #toggle-button {
  display: none;
  visibility: hidden;
  margin-right: 50px;
}

@media (max-width: 991px) {
  .header-area #toggle-button {
    display: block;
    visibility: visible;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area #toggle-button {
    margin-right: 30px;
    margin-top: 4px;
  }
}

.header-area #toggle-button a {
  font-size: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu-icon {
    margin-right: 120px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu-icon {
    margin-right: 62px;
  }
}

@media (max-width: 991px) {
  .header-area-menu-icon {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu-icon.style-2 {
    margin-right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu-icon.style-2 {
    margin-right: 40px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .header-area-menu-icon.style-2 {
    margin-right: 10px;
  }
}

.header-area-menu-icon a.canvas::after {
  content: "Menu";
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-left: 15px;
  position: absolute;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-area-menu-icon a.canvas::after {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area-menu-icon a.canvas::after {
    font-size: 14px;
  }
}

.header-area-menu-icon a:hover span::before {
  color: #ffd586;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.blog-area-card {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area-card {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-area-card {
    margin-bottom: 30px;
  }
}

.blog-area-card:hover p.hidden-card {
  visibility: visible;
  opacity: 1;
  max-height: 100%;
  transform: scaleY(1);
}

.blog-area-card:hover .blog-area-icon-img {
  visibility: visible;
  opacity: 1;
}

.blog-area-card-wrapper span {
  color: #b0b0b0;
  display: block;
}

.blog-area-card-wrapper h5 {
  color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-area-card-wrapper h5 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area-card-wrapper h5 {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .blog-area-card-wrapper h5 {
    font-size: 16px;
  }
}

.blog-area-card-wrapper .hidden-card {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transform: scaleY(0);
  transition: all 0.4s ease 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area-card-wrapper .hidden-card {
    font-size: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area-card-wrapper .card-image .blog-main-img {
    width: 100%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-area-card-wrapper .card-image .blog-main-img {
    width: 100%;
  }
}

.blog-area-icon-img {
  position: absolute;
  right: 20px;
  bottom: -26px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease 0s;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .blog-area-icon-img {
    right: 20px;
  }
}

@media (max-width: 420px) {
  .blog-area-icon-img {
    bottom: -20px;
  }
}

.blog-area-icon-img a {
  height: 52px;
  width: 52px;
  background: #ffd586;
  display: inline-block;
  text-align: center;
  line-height: 52px;
  border-radius: 50%;
}

@media (max-width: 420px) {
  .blog-area-icon-img a {
    height: 40px;
    width: 40px;
    line-height: 38px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-company-logo {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-company-logo {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.footer-area-company-info .line-1 {
  height: 443px;
  width: 1px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  top: 24px;
  left: 323px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-company-info .line-1 {
    left: 278px;
    height: 432px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-company-info .line-1 {
    left: 234px;
    height: 385px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-company-info .line-1 {
    display: none;
    overflow: hidden;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-company-info .line-1 {
    display: none;
    overflow: hidden;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-heading-text {
    display: none;
    overflow: hidden;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-heading-text {
    display: none;
    overflow: hidden;
  }
}

.footer-area-heading-text h4 {
  font-size: 24px;
}

.footer-area-heading-text h4 span {
  margin-bottom: 5px;
  color: var(--color-yellow);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-heading-text h2 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-heading-text h2 {
    font-size: 40px;
  }
}

.footer-area-heading-text h4 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-heading-text h4 {
    font-size: 24px;
    letter-spacing: 19.72px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-heading-text h4 {
    font-size: 19px;
    letter-spacing: 16.72px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-company-fast-email {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-company-fast-email {
    display: none;
    visibility: hidden;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-company-fast-email {
    display: none;
    visibility: hidden;
  }
}

.footer-area-company-fast-email a {
  padding: 10px 30px;
  border-radius: 83px;
  border: 1px solid rgba(224, 224, 224, 0.15);
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-company-fast-email a {
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-company-fast-email a {
    padding: 10px 20px;
    font-size: 12px;
  }
}

.footer-area hr {
  width: 1293px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 1px;
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area hr {
    width: 1115px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area hr {
    width: 935px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area hr {
    width: 700px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area hr {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-social-info {
    padding-bottom: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-social-info {
    padding: 15px 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-social-info {
    padding: 15px 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-social-info .sce-email {
    margin-left: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-social-info .sce-email {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-social-info .sce-email {
    margin-left: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-social-info .sce-email {
    margin-left: 0;
    margin-bottom: 15px;
  }
}

.footer-area-social-info .sce-email a {
  display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-social-info .sce-email a {
    font-size: 12px;
  }
}

.footer-area-social-info .social-content a {
  display: inline-block;
  font-family: Rubik;
  font-size: 14px;
  line-height: normal;
}

.footer-area-quick-menu {
  margin-left: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-quick-menu {
    margin-left: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-quick-menu {
    margin-left: 30px;
    padding-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-quick-menu {
    margin-left: 0;
    padding-top: 25px;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-quick-menu {
    margin-left: 0;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .footer-area-quick-menu {
    flex-direction: column;
  }
}

.footer-area-quick-menu-one li {
  margin-bottom: 4.5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-quick-menu-two {
    margin-left: 71px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-quick-menu-two {
    margin-left: 20px;
    margin-right: 50px;
  }
}

@media (max-width: 378px) {
  .footer-area-quick-menu-two {
    margin-left: 20px;
    margin-right: 0px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .footer-area-quick-menu-two {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 350px) {
  .footer-area-services h4 {
    margin: 15px 0 10px 0;
  }
}

.footer-area-sand-messege {
  margin: 100px 0 0 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-area-sand-messege {
    margin: 38px 0 0 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-sand-messege {
    margin: 38px 0 0 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area-sand-messege {
    margin: 42px 0 0 65px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area-sand-messege {
    display: none;
  }
}

.footer-area-sand-messege a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 146px;
  height: 146px;
  justify-content: center;
  align-items: center;
  background: #0E2148;
  text-align: center;
  border-radius: 50%;
  padding: 24px;
  padding-top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-sand-messege a {
    width: 86px;
    height: 86px;
  }
}

.footer-area-sand-messege a h4 {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.footer-area-sand-messege a span {
  font-size: 30px;
  margin-top: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area-sand-messege a h4 {
    font-size: 16px;
  }
}

.footer-area-sand-messege a span {
  color: #FFF;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.footer-area-sand-messege a:hover {
  background-color: #FFD586;
}

.footer-area-sand-messege a:hover h4 {
  color: #483AA0;
}

.footer-area-sand-messege a:hover span {
  color: #483AA0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-copy-right-info {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .footer-area .footer-copy-right-info {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.footer-area .footer-copy-right-info span {
  color: var(--White, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}

.footer-area .footer-copy-right-info span a {
  color: #FFD586;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  font-family: "Michroma", sans-serif;
}

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