@charset "UTF-8";
@import url('fonts.css');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

/* Font Awesome icons için font-family koruması */
.fa,
.fas,
.far,
.fal,
.fab,
.fad,
.fa-solid,
.fa-regular,
.fa-light,
.fa-brands,
.fa-duotone,
[class*="fa-"] {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 6 Solid', 'FontAwesome' !important;
}

html {
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
figure {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

a,
p,
i,
h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

a {
  color: #D21F26;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  outline: 0px;
  box-shadow: none;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

textarea,
select,
input {
  border: 0;
  outline: none;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

::-moz-selection {
  color: #001d21;
  background: #d90a2c;
}

::selection {
  color: #001d21;
  background: #d90a2c;
}

.scroll-lock {
  overflow: hidden;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.backface-hidden {
  backface-visibility: hidden;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

body {
  width: 100%;
  max-width: 100%;
  background: #fff;
}

.header--sticky.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  background: #111;
  z-index: 10002 !important;
  animation: mymove 0.4s linear;
  box-shadow: 2px 0 70px hsla(0, 0%, 13%, 0.15);
}

.word-line {
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  section {
    z-index: inherit;
  }

  .section-title {
    margin-bottom: 60px;
  }
}

.section-title .subtitle {
  display: inline-block;
}

.title {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 60px;
}

@media (max-width: 768px) {
  .title {
    font-size: 18px;
    line-height: 25px;
  }
}

.subtitle {
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}

.subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #d90a2c;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.button {
  padding: 0 20px;
  display: inline-block;
  border-radius: 5px;
  border: 2px solid transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: .8em;
  line-height: 40px;
  position: relative;
  transition: .2s ease all;
}


.button:hover {
  background-color: transparent;
  border-color: #d90a2c;
}


.primary-link-btn {
  background-color: #d90a2c;
  color: white;
}

.primary-link-btn:hover {
  background: #ff4545 !important;
  color: white !important;
  border-color: #ff4545 !important;
}

.primary-link-btn:hover path {
  fill: #fff !important;
}

.outline-link-btn {
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 1;
  opacity: 0 !important;
  transform: translateY(100%);
}

.progress-wrap.active-progress {
  opacity: 1 !important;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 46px;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  text-align: center;
  display: block;
  z-index: 1;
  transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap::before {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  opacity: 0;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg {
  border-radius: 50%;
  background: #fff;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke-width: 14px;
  box-sizing: border-box;
  transition: all linear 200ms;
  -webkit-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  -ms-transition: all linear 200ms;
  -o-transition: all linear 200ms;
}

.upcoming-events {
  padding: 154px 0px 159px;
  background-image: url("./../images/home-1/up-coming-events-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .upcoming-events {
    padding: 100px 0px;
  }
}

@media (max-width: 576px) {
  .upcoming-events {
    padding: 80px 0px;
  }
}

.upcoming-events .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.upcoming-events .content {
  max-width: 588px;
}

@media (max-width: 768px) {
  .upcoming-events .content {
    margin: 0 auto;
  }
}

.upcoming-events .content .subtitle {
  margin-bottom: 30px;
}

.upcoming-events .content .title {
  margin-bottom: 33px;
}

.upcoming-events .content ul {
  margin-bottom: 57px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 57px;
}

@media (max-width: 576px) {
  .upcoming-events .content ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.upcoming-events .content ul li {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 576px) {
  .upcoming-events .content ul li {
    font-size: 14px;
  }
}

.upcoming-events .content ul li span {
  display: inline-block;
}

.upcoming-events a {
  border: 2px solid transparent;
}

@media (max-width: 768px) {
  .upcoming-events a {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .upcoming-events a {
    font-size: 14px;
  }
}

.upcoming-events a img {
  float: right;
}

@media (max-width: 768px) {
  .upcoming-events a img {
    float: none;
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .upcoming-events a img {
    max-width: 100px;
  }
}

.upcoming-events a.popup-video {
  float: right;
  width: 185px;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #001d21;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  word-spacing: 0.3em;
  text-decoration: none;
  background-color: #d90a2c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 15px;
  position: relative;
}

@media (max-width: 768px) {
  .upcoming-events a.popup-video {
    width: 120px;
    height: 120px;
    float: unset;
    margin: 30px auto 0;
    padding: 7px;
  }
}

.upcoming-events a.popup-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color: #001d21;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .upcoming-events a.popup-video .play-btn {
    font-size: 14px;
  }
}

.upcoming-events a.popup-video .link__svg {
  width: 100%;
  height: auto;
  transform-box: fill-box;
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.05em;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upcoming-events a.popup-video .link__svg .link__text {
  animation: rotateReverse normal infinite 20s linear;
  transform-origin: 50% 50%;
}

.why-choose-us {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 80px 0;
  }
}

.why-choose-us .section-title {
  text-align: left;
}

@media (max-width: 1400px) {
  .why-choose-us .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .why-choose-us .section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-choose-us .section-title .subtitle {
    margin-bottom: 10px;
  }
}

.why-choose-us .section-title .title {
  margin-bottom: 30px;
}

@media (max-width: 1400px) {
  .why-choose-us .section-title .title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .why-choose-us .section-title .title {
    font-size: 18px;
    line-height: 25px;
  }
}

.why-choose-us .section-title p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 40px;
  max-width: 484px;
}

@media (max-width: 768px) {
  .why-choose-us .section-title p {
    margin: 0 auto 20px;
  }
}

.why-choose-us .choose-grid {
  max-width: 416px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 768px) {
  .why-choose-us .choose-grid {
    margin: 0 auto;
    align-items: flex-start;
  }
}

.why-choose-us .choose-grid .choose-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.why-choose-us .choose-grid .choose-grid-item .img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  flex-basis: 90px;
}

@media (max-width: 768px) {
  .why-choose-us .choose-grid .choose-grid-item .img {
    width: 60px;
    height: 60px;
  }
}

.why-choose-us .choose-grid .choose-grid-item .img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .why-choose-us .choose-grid .choose-grid-item .content {
    margin-bottom: 30px;
  }
}

.why-choose-us .choose-grid .choose-grid-item .content h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 7px;
}

@media (max-width: 768px) {
  .why-choose-us .choose-grid .choose-grid-item .content h2 {
    font-size: 18px;
  }
}

.why-choose-us .choose-grid .choose-grid-item .content p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
}

@media (max-width: 768px) {
  .why-choose-us .choose-grid .choose-grid-item .content p {
    font-size: 14px;
  }
}

.why-choose-us img {
  width: 100%;
  height: 100%;
}

.industry-expert {
  padding: 176px 0 140px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .industry-expert {
    padding: 80px 0;
  }
}

.industry-expert .section-title .title {
  margin-bottom: 70px;
}

.industry-expert .grid-item {
  border: 1px solid rgba(209, 209, 209, 0.062745098);
  margin-bottom: 30px;
  padding: 20px;
  width: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .industry-expert .grid-item {
    padding: 0px 0px 20px;
    margin: 0px auto 20px;
  }

  .industry-expert .grid-item .col-12 {
    padding: 0 0px;
  }
}

.industry-expert .grid-item img {
  width: 100%;
  height: 100%;
}

.industry-expert .grid-item h1 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .industry-expert .grid-item h1 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .industry-expert .grid-item h1 {
    padding: 0 15px;
  }
}

.industry-expert .grid-item p {
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .industry-expert .grid-item p {
    padding: 0 15px;
  }
}

.industry-expert .grid-item h2 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.industry-expert .grid-item h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3rem;
  width: 35px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1882352941);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media (max-width: 768px) {
  .industry-expert .grid-item h2 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .industry-expert .grid-item h2 {
    padding: 0 15px;
  }
}

.industry-expert .grid-item .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 576px) {
  .industry-expert .grid-item .social-link {
    padding: 0 15px;
  }
}

.industry-expert .grid-item .social-link li a {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.062745098);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.industry-expert .grid-item .social-link li a i {
  color: #001d21;
}

.trusted-client-area {
  overflow: hidden;
  background-color: #0e1916;
}

.trusted-client-area .img img {
  width: 100%;
  height: 100%;
}

.trusted-client-area .img.right-curve img {
  -webkit-clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .trusted-client-area .img.right-curve img {
    -webkit-clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
  }
}

@media (max-width: 576px) {
  .trusted-client-area .img.right-curve img {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

.trusted-client-area .img.left-curve img {
  -webkit-clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
  .trusted-client-area .img.left-curve img {
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@media (max-width: 576px) {
  .trusted-client-area .img.left-curve img {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.trusted-client-area .content {
  max-width: 580px;
}

@media (max-width: 992px) {
  .trusted-client-area .content {
    padding-left: 20px;
    margin: 20px 0;
  }
}

.trusted-client-area .content h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 37px;
}

@media (max-width: 1400px) {
  .trusted-client-area .content h1 {
    font-size: 28px;
    line-height: 35px;
  }
}

@media (max-width: 576px) {
  .trusted-client-area .content h1 {
    font-size: 18px;
    line-height: 25px;
  }
}

.trusted-client-area .content p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 576px) {
  .trusted-client-area .content p {
    font-size: 14px;
  }
}

.trusted-client-area .counting-part {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 106px;
}

@media (max-width: 1400px) {
  .trusted-client-area .counting-part {
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .trusted-client-area .counting-part {
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  .trusted-client-area .counting-part {
    flex-wrap: wrap;
  }
}

.trusted-client-area .counting-part .counting-part-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic {
  position: relative;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic svg {
  width: 110px;
  height: 110px;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic svg circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 314.16, 314.16;
  stroke-width: 1;
  fill: transparent;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic svg circle.fill {
  stroke: #fff;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic svg circle.progress {
  transition: stroke-dashoffset 0.35s;
  stroke-dashoffset: 214.16;
  stroke-dashoffset: 0;
  animation: circle-animation 1.5s forwards;
  -webkit-animation: circle-animation 1.5s forwards;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic .orb_value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: bold;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic .orb_value {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic .orb_value i {
  font-size: 20px;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic .orb_value span {
  color: #001d21;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
}

@media (max-width: 1400px) {
  .trusted-client-area .counting-part .counting-part-item .orb_graphic .orb_value span {
    font-size: 22px;
  }
}

.trusted-client-area .counting-part .counting-part-item .title h4 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
}

@media (max-width: 1400px) {
  .trusted-client-area .counting-part .counting-part-item .title h4 {
    font-size: 18px;
  }
}

.trusted-client-area .counting-part .counting-part-item .title p {
  color: #001d21;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

@media (max-width: 1400px) {
  .trusted-client-area .counting-part .counting-part-item .title p {
    font-size: 16px;
  }
}

.our-clients {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .our-clients {
    padding: 80px 0;
  }
}

.our-clients .section-title {
  margin-bottom: 70px;
}

.our-clients .client-slider {
  padding-bottom: 60px;
}

.our-clients .client-slider .slider-item {
  padding: 0 15px;
}

.our-clients .client-slider .slider-item .slider-item-style {
  padding: 51px 61px;
  width: 100%;
}

@media (max-width: 1400px) {
  .our-clients .client-slider .slider-item .slider-item-style {
    padding: 10px 16px;
  }
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .our-clients .client-slider .slider-item .slider-item-style .client-title-rating {
    gap: 30px;
    flex-direction: column;
  }
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title .img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title .content h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 13px;
}

@media (max-width: 576px) {
  .our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title .content h2 {
    font-size: 18px;
  }
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title .content p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 34px;
}

@media (max-width: 576px) {
  .our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title .content p {
    font-size: 14px;
    line-height: 20px;
  }
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-rating ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-rating ul li i {
  color: #ffb700;
}

.our-clients .client-slider .slider-item .slider-item-style .client-comment h4 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .our-clients .client-slider .slider-item .slider-item-style .client-comment h4 {
    font-size: 16px;
  }
}

.our-clients .client-slider .slider-item .slider-item-style .client-comment p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  position: relative;
}

@media (max-width: 576px) {
  .our-clients .client-slider .slider-item .slider-item-style .client-comment p {
    font-size: 14px;
  }
}

.our-clients .client-slider .slider-item .slider-item-style .client-comment p img {
  position: absolute;
  top: 0;
  right: 0;
}

.our-clients .client-slider .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
  bottom: 0;
}

.our-clients .client-slider .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.our-clients .client-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  overflow: hidden;
  background-color: #001d21;
}

.our-clients .client-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.latest-news {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

@media (max-width: 576px) {
  .latest-news {
    padding: 80px 0;
  }
}

.latest-news .animated-circle {
  z-index: -1;
}

.latest-news .animated-circle.right {
  top: 56%;
  right: -9%;
}

@media (max-width: 768px) {
  .latest-news .animated-circle.right {
    top: 10%;
  }
}

.latest-news .animated-circle.left {
  bottom: 9%;
  left: -10%;
}

.latest-news-grid-item {
  margin-bottom: 20px;
}

.latest-news-grid-item .img {
  max-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media (max-width: 768px) {
  .latest-news-grid-item .img {
    max-height: 100%;
    margin-top: 20px;
    object-position: center;
  }
}

.latest-news-grid-item .img img {
  width: 100%;
  height: 100%;
}

.latest-news-grid-item .content .date {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: .7em;
  line-height: 1;
  font-style: normal;
  width: fit-content;
  background: #555;
  color: white;
  padding: 3px 7px;
  border-radius: 5px;
}

@media (max-width: 576px) {
  .latest-news-grid-item .content .date {
    font-size: 10px;
    line-height: 13px;
  }
}

.latest-news-grid-item .content h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 22px;
  margin-bottom: 27px;
  position: relative;
}

.latest-news-grid-item .content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(95, 95, 95, 0.67);
}

.latest-news-grid-item .content h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #d90a2c;
  transition: opacity 0.3s ease, width 0.3s ease;
  -webkit-transition: opacity 0.3s ease, width 0.3s ease;
  -moz-transition: opacity 0.3s ease, width 0.3s ease;
  -ms-transition: opacity 0.3s ease, width 0.3s ease;
  -o-transition: opacity 0.3s ease, width 0.3s ease;
}

@media (max-width: 576px) {
  .latest-news-grid-item .content h1 {
    font-size: 18px;
    line-height: 25px;
  }
}

.latest-news-grid-item .content a {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.latest-news-grid-item:hover .content h1:before {
  width: 100%;
}

.latest-news-grid-item:hover .content a svg circle {
  fill-opacity: 1;
  transition: all linear 0.4s;
  -webkit-transition: all linear 0.4s;
  -moz-transition: all linear 0.4s;
  -ms-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
}

.simple-package {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .simple-package {
    padding: 80px 0;
  }
}

.simple-package .animated-circle {
  z-index: -1;
}

.simple-package .animated-circle.right {
  bottom: 0;
  right: -13%;
}

.simple-package .animated-circle.left {
  top: 33%;
  left: -8%;
}

.simple-package .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.simple-package .section-title .subtitle {
  display: inline-block;
}

.simple-package .grid-package-item {
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .simple-package .grid-package-item {
    margin-bottom: 20px;
  }
}

.simple-package .grid-package-item .img {
  width: 100%;
  max-height: 232px;
}

@media (max-width: 768px) {
  .simple-package .grid-package-item .img {
    max-height: 100%;
  }
}

.simple-package .grid-package-item .img img {
  width: 100%;
}

.simple-package .grid-package-item .content {
  background-color: #0e1916;
}

.simple-package .grid-package-item .content ul {
  padding: 50px 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1200px) {
  .simple-package .grid-package-item .content ul {
    padding: 30px 30px;
  }
}

.simple-package .grid-package-item .content ul li {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
}

@media (max-width: 576px) {
  .simple-package .grid-package-item .content ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

.simple-package .grid-package-item .content .price-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 33px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.simple-package .grid-package-item .content .price-link p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 84px;
}

@media (max-width: 576px) {
  .simple-package .grid-package-item .content .price-link p {
    font-size: 16px;
    line-height: 60px;
  }
}

.simple-package .grid-package-item .content .price-link a {
  color: #001d21;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 84px;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .simple-package .grid-package-item .content .price-link a {
    font-size: 14px;
    line-height: 60px;
  }
}

.simple-package .grid-package-item:hover .price-link {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.latest-project {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .latest-project {
    padding: 80px 0;
  }
}

.latest-project .animated-circle {
  z-index: -1;
}

.latest-project .animated-circle.right {
  top: -20%;
  right: -13%;
}

.latest-project .animated-circle.left {
  bottom: 4%;
  left: -13%;
}

.latest-project .subtitle {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .latest-project .subtitle {
    margin-bottom: 20px;
  }
}

.latest-project .title {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .latest-project .title {
    margin-bottom: 60px;
  }
}

.latest-project .more-project {
  text-align: center;
  height: 189px;
  display: flex;
  align-items: end;
  justify-content: center;
}

@media (max-width: 576px) {
  .latest-project .more-project {
    height: 80px;
  }
}

.latest-project .more-project a {
  color: #001d21;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: .8em;
  line-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgb(217, 10, 44);
  border-radius: 50px;
  padding-right: 15px;
}

.latest-project .more-project a svg {
  width: 2.5em;
  height: 2.5em;
}

.latest-project .more-project a:hover {
  background: rgb(217, 10, 44);
}

@media (max-width: 576px) {
  .latest-project .more-project a {
    font-size: 14px;
  }
}

.project-completed {
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .project-completed .banner-img {
    height: 400px;
  }
}

.project-completed .banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-completed .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-completed .content .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.project-completed .content .play-btn a {
  width: 280px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  color: #1d2229;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 280px;
}

@media (max-width: 1400px) {
  .project-completed .content .play-btn a {
    width: 180px;
    line-height: 180px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .project-completed .content .play-btn a {
    width: 80px;
    height: 80px;
    line-height: 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
}

.project-completed .content .project-count {
  position: absolute;
  bottom: 0%;
  right: 0;
  width: 263px;
  height: 229px;
  padding: 65px 35px;
}

@media (max-width: 768px) {
  .project-completed .content .project-count {
    padding: 0;
    width: 163px;
    height: 129px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.project-completed .content .project-count h3 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
}

@media (max-width: 768px) {
  .project-completed .content .project-count h3 {
    font-size: 16px;
  }
}

.project-completed .content .project-count h3 span {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 45px;
  line-height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 1400px) {
  .project-completed .content .project-count h3 span {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .project-completed .content .project-count h3 span {
    font-size: 18px;
  }
}

.solution-today {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .solution-today {
    padding: 80px 0;
  }
}

.solution-today .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}

@media (max-width: 1400px) {
  .solution-today .section-title {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .solution-today .section-title {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}

.solution-today .section-title h1 {
  max-width: 559px;
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 66px;
}

@media (max-width: 1400px) {
  .solution-today .section-title h1 {
    font-size: 50px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .solution-today .section-title h1 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .solution-today .section-title h1 {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}

.solution-today .section-title p {
  max-width: 387px;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  text-align: left;
}

@media (max-width: 768px) {
  .solution-today .section-title p {
    font-size: 14px;
    text-align: center;
  }
}

.solution-today .ready-for-future {
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 500px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .solution-today .ready-for-future {
    height: 300px;
  }
}

.solution-today .ready-for-future .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.1882352941), rgba(17, 17, 17, 0.5019607843));
}

.solution-today .ready-for-future .img {
  width: 100%;
  height: 100%;
}

.solution-today .ready-for-future .img img {
  width: 100%;
  height: 100%;
}

.solution-today .ready-for-future .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  padding: 48px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}

@media (max-width: 576px) {
  .solution-today .ready-for-future .content {
    padding: 20px;
  }
}

.solution-today .ready-for-future .content h2 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .solution-today .ready-for-future .content h2 {
    font-size: 12px;
  }
}

.solution-today .ready-for-future .content h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  max-width: 376px;
}

@media (max-width: 1400px) {
  .solution-today .ready-for-future .content h1 {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .solution-today .ready-for-future .content h1 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (max-width: 576px) {
  .solution-today .ready-for-future .content h1 {
    font-size: 18px;
    line-height: 28px;
  }
}

.solution-today .ready-for-future .content a {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  padding: 0 24px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

@media (max-width: 768px) {
  .solution-today .ready-for-future .content a {
    font-size: 14px;
    line-height: 30px;
    padding: 0px 12px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .solution-today .grid-blog {
    margin-top: 20px;
  }
}

.solution-today .grid-blog .blog-item {
  border: 1px solid rgba(255, 255, 255, 0.062745098);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin-bottom: 28px;
  max-height: 236px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 68px;
}

@media (max-width: 768px) {
  .solution-today .grid-blog .blog-item {
    padding: 10px 16px;
    align-items: flex-start;
  }
}

.solution-today .grid-blog .blog-item p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  max-width: 209px;
}

.solution-today .grid-blog .blog-item a {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-today .grid-blog .blog-item a span {
  max-width: 177px;
  display: inline-block;
}

@media (max-width: 1400px) {
  .solution-today .grid-blog .blog-item a {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .solution-today .grid-blog .blog-item a {
    width: 100%;
    justify-content: space-between;
    font-size: 20px;
  }
}

.solution-today .meet-our-expert {
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  height: 500px;
}

@media (max-width: 768px) {
  .solution-today .meet-our-expert {
    height: 400px;
  }
}

.solution-today .meet-our-expert .img {
  width: 100%;
  height: 100%;
}

.solution-today .meet-our-expert .img img {
  width: 100%;
  height: 100%;
}

.solution-today .meet-our-expert .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}

.solution-today .meet-our-expert .content p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 12px;
}

.solution-today .meet-our-expert .content a {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 35px;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
}

.solution-today .meet-our-expert .content a span {
  max-width: 199px;
  display: inline-block;
}

@media (max-width: 768px) {
  .solution-today .meet-our-expert .content a {
    font-size: 24px;
  }
}

.question-ans {
  padding: 120px 0 47px;
  position: relative;
  background-image: url("./../images/home-1/faq-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 576px) {
  .question-ans {
    padding: 80px 0 0px;
  }
}

.question-ans .accordion .accordion-item {
  background-color: transparent;
  border: 0;
  border-radius: 15px;
}

.question-ans .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #fff;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  padding: 0;
  padding-bottom: 12px;
}

@media (max-width: 576px) {
  .question-ans .accordion .accordion-item .accordion-button {
    font-size: 16px;
    line-height: 25px;
  }
}

.question-ans .accordion .accordion-item .accordion-button:not(.collapsed) {
  border-bottom: 1px solid rgba(217, 10, 44, 0.2);
}

.question-ans .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.question-ans .accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.875 6.84766L3.09375 11.6289C2.74219 11.9805 2.21484 11.9805 1.89844 11.6289L1.08984 10.8555C0.773438 10.5039 0.773438 9.97656 1.08984 9.66016L4.5 6.28516L1.08984 2.875C0.773438 2.55859 0.773438 2.03125 1.08984 1.67969L1.89844 0.871094C2.21484 0.554688 2.74219 0.554688 3.09375 0.871094L7.875 5.65234C8.19141 6.00391 8.19141 6.53125 7.875 6.84766Z' fill='%23D90A2C'/%3E%3C/svg%3E%0A");
}

.question-ans .accordion .accordion-item .accordion-body {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  padding: 24px 0;
}

@media (max-width: 576px) {
  .question-ans .accordion .accordion-item .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }
}

.fact {
  padding: 100px;
  background-image: url("./../images/home-3/fact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fact {
    padding: 80px 20px;
  }
}

.fact .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

.fact .fact-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .fact .fact-wrapper {
    flex-direction: column;
  }
}

.fact .fact-wrapper .section-title {
  max-width: 448px;
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .section-title {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fact .fact-wrapper .section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}

.fact .fact-wrapper .section-title p {
  margin-bottom: 30px;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .section-title p {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .fact .fact-wrapper .section-title p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .fact .fact-wrapper .section-title p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.fact .fact-wrapper .section-title h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 55px;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .section-title h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 1200px) {
  .fact .fact-wrapper .section-title h1 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .fact .fact-wrapper .section-title h1 {
    font-size: 18px;
    line-height: 20px;
  }
}

.fact .fact-wrapper .fact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 90px;
  margin-left: 99px;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .fact-item {
    margin-left: 70px;
  }
}

@media (max-width: 1200px) {
  .fact .fact-wrapper .fact-item {
    gap: 50px;
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .fact .fact-wrapper .fact-item {
    justify-content: space-between;
    margin-left: 0px;
  }
}

@media (max-width: 576px) {
  .fact .fact-wrapper .fact-item {
    flex-direction: column;
    gap: 20px;
  }
}

.fact .fact-wrapper .fact-item .fact-items {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1254901961);
  padding-left: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .fact-item .fact-items {
    padding-left: 35px;
    gap: 25px;
  }
}

@media (max-width: 1200px) {
  .fact .fact-wrapper .fact-item .fact-items {
    padding-left: 20px;
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .fact .fact-wrapper .fact-item .fact-items {
    border: 0;
    justify-content: center;
    padding-left: 0px;
  }
}

@media (max-width: 576px) {
  .fact .fact-wrapper .fact-item .fact-items {
    flex-direction: row;
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .fact .fact-wrapper .fact-item .fact-items .icon svg {
    width: 40px;
  }
}

.fact .fact-wrapper .fact-item .fact-items p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .fact-item .fact-items p {
    font-size: 16px;
  }
}

.fact .fact-wrapper .fact-item .fact-items p span {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 65px;
  line-height: 75px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 1400px) {
  .fact .fact-wrapper .fact-item .fact-items p span {
    font-size: 38px;
  }
}

.our-team-area {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .our-team-area {
    padding: 80px 0;
  }
}

.our-team-area .section-title {
  max-width: 523px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 70px;
}

.our-team-area .card-member {
  overflow: hidden;
}

@media (max-width: 992px) {
  .our-team-area .card-member {
    margin-bottom: 20px;
  }
}

.our-team-area .card-member .card-img {
  position: relative;
}

.our-team-area .card-member .card-img img {
  width: 100%;
  height: 100%;
}

.our-team-area .card-member .card-img .social-link {
  position: absolute;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all linear 0.5s;
  -webkit-transition: all linear 0.5s;
  -moz-transition: all linear 0.5s;
  -ms-transition: all linear 0.5s;
  -o-transition: all linear 0.5s;
}

.our-team-area .card-member .card-img .social-link li {
  width: 100%;
  height: 100%;
}

.our-team-area .card-member .card-img .social-link li a {
  padding: 19px 22px;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.our-team-area .card-member .card-img .social-link li a:hover {
  background-color: #0e1916;
}

.our-team-area .card-member .card-img .social-link li a i {
  color: #001d21;
}

.our-team-area .card-member .card-content {
  padding: 27px 41px;
  background-color: #0e1916;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

@media (max-width: 1200px) {
  .our-team-area .card-member .card-content {
    padding: 20px 16px;
  }
}

.our-team-area .card-member .card-content h1 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 6px;
}

.our-team-area .card-member .card-content p {
  margin-bottom: 15px;
}

.our-team-area .card-member .card-content a {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.our-team-area .card-member:hover .card-content p {
  color: #001d21;
}

.our-team-area .card-member:hover .social-link {
  right: 0;
}

@media (max-width: 768px) {
  .animated-circle {
    display: none;
  }
}

.animated-circle.right {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: absolute;
  animation: circle 5s linear infinite;
  -webkit-animation: circle 5s linear infinite;
  background: linear-gradient(to bottom, rgba(217, 10, 44, 0.1), #d90a2c);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.animated-circle.right::after {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-color: #fff;
}

.animated-circle.left {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  animation: circle 5s linear infinite;
  -webkit-animation: circle 5s linear infinite;
  background: linear-gradient(to bottom, rgba(217, 10, 44, 0.1), #d90a2c);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.animated-circle.left::after {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-color: #fff;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #001d21;
}

.loader-wrapper .loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 1001;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.loader-wrapper .loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 4px solid transparent;
  border-radius: 100%;
  animation: spin 1.5s linear infinite;
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: #fff;
  width: 50%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.overlay-anim {
  position: relative;
  visibility: visible;
  animation-delay: 600ms;
  animation-name: fadeInUp;
}

.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}

.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  transition: all 400ms linear;
}

.zoom-effect img {
  transition: all 400ms ease;
}

.zoom-effect:hover img {
  transform: scale(1.1);
}

.card-box:hover .img a::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
  -webkit-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
}

.card-box .img {
  position: relative;
  overflow: hidden;
}

.card-box .img a {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.card-box .img a::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
  -webkit-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
}


.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.animated-letter {
  /* font-family: 'PublicaSansRound', sans-serif; */
  font-family: 'PublicaSansRound', sans-serif;
  font-size: 600px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, #d90a2c, #e13b56, #e86c80, #ec8596, #e86c80, #e13b56, #d90a2c);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 100% 300%;
  position: absolute;
  animation: gradient-flow 15s ease-in-out infinite;
  z-index: -1;
}


.animated-letter.left {
  left: 0 !important;
}


.animated-letter.right {
  right: 20px !important;
  top: -200px;
  rotate: 350deg;
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 100%;
  }

  12% {
    background-position: 0% 75%;
  }

  24% {
    background-position: 0% 50%;
  }

  36% {
    background-position: 0% 25%;
  }

  48% {
    background-position: 0% 0%;
  }

  60% {
    background-position: 0% 25%;
  }

  72% {
    background-position: 0% 50%;
  }

  84% {
    background-position: 0% 75%;
  }

  100% {
    background-position: 0% 100%;
  }
}

@keyframes mymove {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes circle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes circle-animation {
  0% {
    stroke-dashoffset: 314.16;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    z-index: 2;
  }

}

.banner {
  background-color: #d90a2c;
  position: relative;
}

.banner .banner-img {
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2 !important;
}

.banner .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.bottom-overlay {
  position: absolute;
  content: "";
  bottom: 0;
  background: #fff;
  width: 100%;
  height: 80px;
  z-index: 1 !important;
}

.top-overlay {
  position: absolute;
  content: "";
  top: 0;
  background: #d90a2c;
  width: 100%;
  height: 80px;
  z-index: 1 !important;
}

.banner .banner-img .overlay .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
}

.banner .banner-img .overlay .button:hover svg path {
  fill: #d90a2c;
}

.banner .banner-img .section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  top: 0;
  left: 0;
}

.banner .banner-img .section .hscroll-line {
  height: 100%;
  width: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.banner .banner-img .section .hscroll-line::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  height: 10%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), #fff);
  animation: move 3s infinite;
  -webkit-animation: move 3s infinite;
}

.banner .banner-img .section .hscroll-line:nth-child(1)::after {
  animation-delay: 0s;
}

.banner .banner-img .section .hscroll-line:nth-child(2)::after {
  animation-delay: 1s;
}

.banner .banner-img .section .hscroll-line:nth-child(3)::after {
  animation-delay: 1.5s;
}

.banner .banner-img .section .hscroll-line:nth-child(4)::after {
  animation-delay: 2s;
}

@keyframes move {
  from {
    top: -10%;
  }

  to {
    top: 100%;
  }
}


.application-process__title {
  text-align: center;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  color: #d90a2c;
}

.application-process__nav__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 20px auto;
  background: linear-gradient(120deg, #d90a2c, #001d21);
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.step a {
  text-decoration: none;
  padding: 10px 20px;
  color: #d21fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.step.active a,
.step a:hover {
  color: #d90a2c;
  background-color: #d21fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.application-process__content-container {
  background: #001d21;
  border-radius: 10px;
  padding: 30px;
  color: #001d21;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.application-process__content h3 {
  color: #d90a2c;
  margin-bottom: 15px;
}

.application-process__content {
  display: none;
  font-size: 1rem;
  color: #001d21;
}

.application-process__content.active {
  display: block;
}

.content-image,
.inline-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin: 20px 0;
}

.inline-image {
  float: right;
  max-width: 250px;
  margin-left: 15px;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s forwards;
}

.rotate-in {
  opacity: 0;
  transform: rotate(-10deg);
  animation: rotateIn 1s forwards;
}

.highlight {
  color: #eee;
  font-weight: 200;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

.about {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .about {
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .about {
    padding-top: 80px;
  }
}

.about .animated-circle {
  top: 27%;
  left: -13%;
}

.about h1 {
  margin-bottom: 54px;
}

@media (max-width: 768px) {
  .about h1 {
    margin-bottom: 40px;
  }
}

.about p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .9em;
  line-height: 22px;
  max-width: 448px;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .about p {
    font-size: 14px;
  }
}

.about .company {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 459px;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .about .company {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about .company div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.about .company div img {
  width: 100%;
  height: 100%;
  min-width: 50px;
}

.about .company div p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 22px;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .about .company div p {
    font-size: 14px;
  }
}

.about .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
}

.about .button:hover svg path {
  fill: #d90a2c;
}

@media (max-width: 768px) {
  .about .button {
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .about .button {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}

.about .img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

@media (max-width: 768px) {
  .about .img {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .about .img::-webkit-scrollbar {
    height: 8px;
  }

  .about .img::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .about .img::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .about .img .img-1,
  .about .img .img-2 {
    flex: 0 0 auto;
    height: auto;
    width: 320px;
  }

  .business-partner .section-title .subtitle {
    color: #001d21 !important;
    font-size: 1.8em;
    line-height: 1.5;
  }

  .offcanvas .navbar-nav .nav-item .nav-link {
    color: #fff !important;
  }
}

.about .video-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.about .video-area .video-play-btn {
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d90a2c;
}

.about .video-area .video-play-btn .play-btn {
  color: #001d21;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 148px;
  height: 148px;
  position: relative;
}

.about .video-area .video-play-btn .play-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 148px;
  height: 148px;
  background: #ba1f24;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.about .video-area .video-play-btn .play-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 148px;
  height: 148px;
  background: #fa183d;
  border-radius: 50%;
  transition: all 200ms;
}

@media (max-width: 576px) {
  .about .video-area svg {
    max-width: 80px;
  }
}

.marquee-section {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 392px;
}

.marquee-section .section-inner {
  white-space: nowrap;
  transform: rotate(-4deg) scale(1.1);
  -webkit-transform: rotate(-4deg) scale(1.1);
  -moz-transform: rotate(-4deg) scale(1.1);
  -ms-transform: rotate(-4deg) scale(1.1);
  -o-transform: rotate(-4deg) scale(1.1);
}

.marquee-section .section-inner .top-inner {
  padding: 1em 0;
  background-color: #111;
}

.marquee-section .section-inner .top-inner .marquee {
  padding: 0;
  margin: 0;
  will-change: transform;
  animation: marquee 65s linear infinite;
  align-items: center;
  display: flex;
  padding: 5px 0;
}

.marquee-section .section-inner .top-inner .marquee:hover {
  animation-play-state: paused;
}

.marquee-section .section-inner .top-inner .marquee li {
  list-style: none;
  flex: 1 0 5%;
  position: relative;
  text-align: center;
  margin: 0 10px;
}

.marquee-section .section-inner .top-inner .marquee li span {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 65px;
  text-transform: uppercase;
}

.marquee-section .section-inner .top-inner .marquee li span sub {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 65px;
}

.marquee-section .section-inner .bottom-inner {
  padding: 1em 0;
  display: inline-block;
  background-color: #d90a2c;
}

.marquee-section .section-inner .bottom-inner .marquee {
  padding: 0;
  margin: 0;
  will-change: transform;
  animation: marquee-2 85s linear infinite;
  align-items: center;
  display: flex;
  padding: 5px 0;
}

.marquee-section .section-inner .bottom-inner .marquee:hover {
  animation-play-state: paused;
}

.marquee-section .section-inner .bottom-inner .marquee li {
  list-style: none;
  flex: 1 0 5%;
  position: relative;
  text-align: center;
  margin: 0 10px;
}

.marquee-section .section-inner .bottom-inner .marquee li span {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 65px;
  text-transform: uppercase;
}

.marquee-section .section-inner .bottom-inner .marquee li span sub {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 65px;
}

.business-partner {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .business-partner {
    padding: 50px 0;
  }
}

.business-partner .animated-circle.right {
  top: 0%;
  right: -13%;
}

.business-partner .animated-circle.left {
  bottom: -5%;
  left: -13%;
}

.business-partner .section-title {
  margin-bottom: 0px;
}

.business-partner .section-title h1 {
  max-width: 633px;
  margin: 0 auto 70px;
}

@media (max-width: 768px) {
  .business-partner .section-title h1 {
    margin-bottom: 0;
  }
}

.business-partner .grid-card {
  background-color: #eee;
  padding: 50px 50px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

@media (max-width: 1200px) {
  .business-partner .grid-card {
    padding: 30px 20px;
  }
}

.business-partner .grid-card .animatedLine {
  position: absolute;
  top: -180px;
  right: 10%;
  display: flex;
  gap: 16px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.business-partner .grid-card .animatedLine .animatedLine-1 {
  width: 40px;
  height: 156px;
  background-color: #d90a2c;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.business-partner .grid-card .animatedLine .animatedLine-2 {
  width: 40px;
  height: 100px;
  background-color: #d90a2c;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.business-partner .grid-card .img {
  width: 90px;
  height: 90px;
  border: 1px solid #d90a2c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #26302d;
  margin-bottom: 40px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.business-partner .grid-card h3 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .business-partner .grid-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.business-partner .grid-card p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .business-partner .grid-card p {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .business-partner .grid-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.business-partner .grid-card ul {
  margin-bottom: 26px;
}

.business-partner .grid-card ul li {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .business-partner .grid-card ul li {
    font-size: 14px;
    margin-bottom: 7px;
  }
}

@media (max-width: 1200px) {
  .business-partner .grid-card ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}

.business-partner .grid-card a {
  color: #d90a2c;
}

@media (max-width: 1200px) {
  .business-partner .grid-card a {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}

.business-partner .grid-card:hover .animatedLine {
  top: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.business-partner .grid-card:hover .img {
  background-color: #d90a2c;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.business-partner .grid-card:hover a {
  background-color: #d90a2c;
  color: #001d21;
}

.business-partner .img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.business-partner .img .business-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all linear 0.4s;
  -webkit-transition: all linear 0.4s;
  -moz-transition: all linear 0.4s;
  -ms-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
}

.business-partner .img:hover .business-img {
  transform: scale(1.1);
  transition: all linear 0.4s;
  -webkit-transition: all linear 0.4s;
  -moz-transition: all linear 0.4s;
  -ms-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
}

.business-partner .website-builder {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  background-image: url("./../images/home-1/cta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .business-partner .website-builder {
    padding: 40px;
  }
}

@media (max-width: 1200px) {
  .business-partner .website-builder {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .business-partner .website-builder {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .business-partner .website-builder {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.business-partner .website-builder .content {
  max-width: 333px;
}

.business-partner .website-builder .content p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .business-partner .website-builder .content p {
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .business-partner .website-builder .content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.business-partner .website-builder .content h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
}

@media (max-width: 1200px) {
  .business-partner .website-builder .content h1 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .business-partner .website-builder .content h1 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .business-partner .website-builder .action {
    width: 100%;
  }
}

.business-partner .website-builder .action a {
  border-color: #001d21;
}

@media (max-width: 768px) {
  .business-partner .website-builder .action a {
    padding-bottom: 20px;
  }
}

@media (max-width: 1200px) {
  .business-partner .website-builder .action a {
    padding: 0 25px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .business-partner .website-builder .action a {
    font-size: 14px;
    padding: 0 35px;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
  }
}

.business-partner .website-builder .action a::before,
.business-partner .website-builder .action a::after {
  border-color: #001d21;
}

.business-partner .website-builder .action a:hover {
  border-color: transparent;
  color: #001d21;
}

.business-partner .website-builder .ripling-animation {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.business-partner .website-builder .ripling-animation:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 148px;
  height: 148px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.business-partner .website-builder .ripling-animation:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 148px;
  height: 148px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 200ms;
}

.upcoming-events .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
}

.upcoming-events .button:hover svg path {
  fill: #d90a2c;
}

.latest-project .row {
  --bs-gutter-x: 75px;
}

.latest-project .row .grid-project .grid-project-item {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .latest-project .row .grid-project .grid-project-item {
    margin-left: 0;
  }
}

.latest-project .row .grid-project .grid-project-item .img {
  overflow: hidden;
}

.latest-project .row .grid-project .grid-project-item .img img {
  width: 100%;
}

.latest-project .row .grid-project .grid-project-item .content {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}

.latest-project .row .grid-project .grid-project-item .content h4 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: .8em;
  line-height: 1.1;
}

@media (max-width: 576px) {
  .latest-project .row .grid-project .grid-project-item .content h4 {
    font-size: 14px;
  }
}

.latest-project .row .grid-project .grid-project-item .content h3 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: .8em;
  line-height: 1;
}

@media (max-width: 576px) {
  .latest-project .row .grid-project .grid-project-item .content h3 {
    font-size: 16px;
  }
}

.latest-project .row .grid-project .grid-project-item .content .arrows a {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #d90a2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.latest-project .row .grid-project .grid-project-item .content .arrows a svg {
  width: .7em;
  height: .7em;
}

@media (max-width: 576px) {
  .latest-project .row .grid-project .grid-project-item .content .arrows a {
    width: 15px;
    height: 15px;
  }
}

.latest-project .row .grid-project .grid-project-item:hover .arrows a {
  background-color: #d90a2c;
}

.question-ans {
  padding: 120px 0 47px;
  position: relative;
  background-color: #f8f5f0;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.question-ans .title,
.question-ans .accordion .accordion-item .accordion-button,
.question-ans .accordion .accordion-item .accordion-body,
.question-ans p {
  color: #1a1a1a !important;
}

/* Oswald font for question-ans section */
.question-ans,
.question-ans .title,
.question-ans .subtitle,
.question-ans .section-title,
.question-ans .section-title h1,
.question-ans .section-title h2,
.question-ans p,
.question-ans .accordion .accordion-item .accordion-button,
.question-ans .accordion .accordion-item .accordion-body,
.question-ans .accordion .accordion-item .accordion-body p {
  font-family: 'Oswald', sans-serif !important;
}

@media (max-width: 576px) {
  .question-ans {
    padding: 80px 0 0px;
  }
}

.question-ans .title {
  color: white;
}

.question-ans .section-title {
  margin-bottom: 60px;
}

.question-ans .accordion .accordion-item {
  background-color: transparent;
  border: 0;
  padding: 15px 30px;
  margin-bottom: 10px;
}

.question-ans .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #fff;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  padding: 0;
  padding-bottom: 12px;
}

@media (max-width: 576px) {
  .question-ans .accordion .accordion-item .accordion-button {
    font-size: 16px;
    line-height: 25px;
  }
}

.question-ans .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #d90a2c;
  border-bottom: 1px solid rgba(217, 10, 44, 0.2);
}

.question-ans .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.question-ans .accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.875 6.84766L3.09375 11.6289C2.74219 11.9805 2.21484 11.9805 1.89844 11.6289L1.08984 10.8555C0.773438 10.5039 0.773438 9.97656 1.08984 9.66016L4.5 6.28516L1.08984 2.875C0.773438 2.55859 0.773438 2.03125 1.08984 1.67969L1.89844 0.871094C2.21484 0.554688 2.74219 0.554688 3.09375 0.871094L7.875 5.65234C8.19141 6.00391 8.19141 6.53125 7.875 6.84766Z' fill='%23D90A2C'/%3E%3C/svg%3E%0A");
}

.question-ans .accordion .accordion-item .accordion-body {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  padding: 24px 0;
}

@media (max-width: 576px) {
  .question-ans .accordion .accordion-item .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }
}

.simple-package .grid-package-item .content .price-link {
  border: 1px solid rgba(217, 10, 44, 0.45);
}

.simple-package .grid-package-item:hover .price-link {
  background-color: #d90a2c;
}

.subscribe {
  background-color: #0e1916;
  position: relative;
  padding: 169px 0;
}

@media (max-width: 576px) {
  .subscribe {
    padding: 80px 0;
  }
}

.subscribe .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./../images/home-1/pattern.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe .content {
  max-width: 592px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.subscribe .content .title {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 49px;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .subscribe .content .title {
    font-size: 18px;
    line-height: 25px;
  }
}

.subscribe .content form {
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .subscribe .content form {
    width: 100%;
    gap: 10px;
  }
}

.subscribe .content form input {
  color: #ccdeff;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  background-color: #5b5b61;
  padding: 14px 26px;
  outline: none;
  border: 0;
  box-shadow: none;
}

.subscribe .content form input::-moz-placeholder {
  color: #ccdeff;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.subscribe .content form input::placeholder {
  color: #ccdeff;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 576px) {
  .subscribe .content form input {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}

.subscribe .content form .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
}

.subscribe .content form .button:hover svg path {
  fill: #d90a2c;
}

.latest-news .latest-news-grid-item:hover .content h1 {
  border-color: #d90a2c;
}

.latest-news .latest-news-grid-item:hover .content a svg circle {
  fill: #d90a2c;
}

.loader:after {
  border-top-color: #d90a2c;
  border-right-color: #d90a2c;
  border-bottom-color: #d90a2c;
}

.topbar {
  background-color: #d90a2c;
}

@media (max-width: 992px) {
  .topbar .col-12 div {
    flex-wrap: wrap;
  }
}

.topbar .col-12 div a {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .7em;
  line-height: 30px;
  text-decoration: underline;
  order: 1;
}

@media (max-width: 992px) {
  .topbar .col-12 div a {
    flex: 0 0 auto;
    order: 2;
  }
}

@media (max-width: 576px) {
  .topbar .col-12 div a {
    flex: 1 1 100%;
    text-align: center;
    order: 2;
  }
}

.topbar .col-12 div p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  order: 2;
}

@media (max-width: 992px) {
  .topbar .col-12 div p {
    text-align: center;
    flex: 0 0 100%;
    order: 1;
  }
}

@media (max-width: 576px) {
  .topbar .col-12 div p {
    text-align: center;
    flex: 0 0 100%;
  }
}

.topbar .col-12 div div {
  order: 3;
}

@media (max-width: 768px) {
  .topbar .col-12 div div {
    flex: 0 0 auto;
    justify-content: flex-end;
    order: 2;
  }
}

@media (max-width: 576px) {
  .topbar .col-12 div div {
    flex: 1 1 50%;
    justify-content: center;
    order: 3;
  }
}

.topbar .col-12 div div .dropdown {
  flex: 0 0 auto;
}

.topbar .col-12 div div .dropdown .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0 15px;
}

.topbar .col-12 div div .dropdown .btn::after {
  border: 0;
  display: inline-block;
  padding: 0.5em;
  font: normal normal normal .5em FontAwesome;
  content: "\f078";
}

.topbar .col-12 div div .dropdown .btn .flag-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #fff;
}

.topbar .col-12 div div .dropdown .btn span {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .7em;
  line-height: 20px;
}

.topbar .col-12 div div .dropdown .dropdown-menu {
  background-color: #001d21;
  padding: 0;
}

.topbar .col-12 div div .dropdown .dropdown-menu li .dropdown-item {
  text-decoration: none;
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .7em;
  line-height: 20px;
  box-sizing: border-box;
}

.topbar .col-12 div div .dropdown .dropdown-menu li .dropdown-item.active {
  color: #fff;
  background-color: #d90a2c;
}

.topbar .col-12 div div .dropdown .dropdown-menu li .dropdown-item:hover {
  color: #fff;
  background-color: #d90a2c;
}

.topbar .col-12 div div .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .topbar .col-12 div div .social-icon {
    gap: 11px;
  }
}

.navbar {
  z-index: 999;
  padding: 0;
  padding-top: 30px;
  /* background: #1d1d1b; */
}

.navbar .navbar-brand {
  padding: 0;
}

@media (max-width: 768px) {
  .navbar .navbar-brand img {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .navbar .navbar-toggler {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 18px;
  }

  .navbar .navbar-toggler .toggle-btn {
    border: 1px solid #d90a2c;
    box-shadow: none;
    outline: 0px;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
  }
}

.navbar .navbar-nav {
  align-items: center;
  gap: 30px;
}

@media (max-width: 1200px) {
  .navbar .navbar-nav {
    gap: 20px;
  }
}

.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
}

.navbar .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  height: 30px;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: .8em;
  line-height: 21px;
  padding: 5px 10px;
  border-radius: 10px;
  transition: 0.2s;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  background: #d90a2c;
}

@media (max-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  left: 0;
  background-color: #111;
  overflow: hidden;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  display: block;
  text-align: left;
  padding: 6px 10px;
}

.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a:hover,
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a.active {
  background-color: #d90a2c;
}

.navbar .navbar-nav .nav-item.dropdown .nav-link {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.navbar .navbar-nav .nav-item.dropdown .nav-link::after {
  border: 0;
  display: inline-block;
  padding: 0.5rem;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f078";
}

.navbar .button:hover svg path {
  fill: #d90a2c;
}

@media (max-width: 1200px) {
  .navbar .button {
    font-size: 16px;
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .navbar .button {
    width: 100%;
    text-align: center;
  }
}

.navbar.header--sticky {
  padding: 20px 0;
}

.offcanvas {
  background-color: #001d21;
  z-index: 99999 !important;
}

.offcanvas .navbar-brand {
  padding: 0;
}

@media (max-width: 768px) {
  .offcanvas .navbar-brand img {
    max-width: 60%;
  }
}

.offcanvas .offcanvas-close {
  color: #d90a2c;
}

.offcanvas .navbar-nav {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

.offcanvas .navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
}

.offcanvas .navbar-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  padding: 0;
}

@media (max-width: 1200px) {
  .offcanvas .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

.offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  left: 0;
  background-color: #d90a2c;
}

.offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu a {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  display: block;
  text-align: left;
  padding: 0 10px;
}

.offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu a:hover,
.offcanvas .navbar-nav .nav-item.dropdown .dropdown-menu a.active {
  background-color: #d90a2c;
}

.offcanvas .navbar-nav .nav-item.dropdown .nav-link {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.offcanvas .navbar-nav .nav-item.dropdown .nav-link::after {
  border: 0;
  display: inline-block;
  padding: 0.5rem;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f078";
}

@media (max-width: 1200px) {
  .offcanvas .button {
    font-size: 16px;
    padding: 0 16px;
  }
}

@media (max-width: 992px) {
  .offcanvas .button {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .offcanvas .button {
    width: 100%;
    text-align: center;
  }
}

.banner-section {
  max-width: 911px;
  text-align: center;
  margin: 0 auto;
  padding: 70px 0 260px 0;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .banner-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .banner-section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.banner-section .subject {
  background: #fff;
  max-width: 306px;
  margin: 0 auto;
  padding: 14px 0;
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .banner-section .subject {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.banner-section .heading {
  color: #fff;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 4.2em;
  line-height: 72px;
  margin-bottom: 47px;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .banner-section .heading {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 576px) {
  .banner-section .heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.banner-section .description {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .8em;
  line-height: 22px;
  max-width: 517px;
  margin: 0 auto 50px;
}

.banner-section .description a {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 1em;
  line-height: 35px;
}

.banner-section .description i {
  font-size: .8em;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .banner-section .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .banner-section .button {
    font-size: 14px;
  }
}

.search-modal .modal-title {
  color: #1d2229;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
}

.search-modal .form-control {
  box-shadow: none;
  border-color: #d90a2c;
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
}

.search-modal .btn {
  background-color: #d90a2c;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
}

.button::before,
.button::after {
  border-color: #d90a2c;
}

.button:hover {
  background-color: transparent;
  color: #d90a2c;
}

.footer {
  padding-top: 152px;
  background-color: #001d21;
  position: relative;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 80px;
  }
}

.footer .logo {
  height: 70px;
}

.footer .left-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}

.footer .left-img img {
  width: 100%;
  height: 100%;
}

.footer .right-img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}

.footer .right-img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .footer .logo img {
    max-width: 60%;
  }
}

.footer p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  margin: 25px 0 36px;
}

@media (max-width: 768px) {
  .footer p {
    font-size: 14px;
  }
}

.footer .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.footer .social-link a {
  width: 42px;
  height: 42px;
  background-color: #001d21;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.footer .social-link a i {
  color: #d90a2c;
}

.footer .social-link a:hover {
  background-color: #d90a2c;
}

.footer .social-link a:hover i {
  color: #001d21;
}

.footer .footer-title {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .footer .footer-title {
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
  }
}

.footer .footer-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 115px;
}

.footer .footer-link li {
  margin-bottom: 10px;
}

.footer .footer-link li a {
  color: #fff;
  height: 30px;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: .8em;
  line-height: 21px;
  padding: 5px 10px;
  border-radius: 10px;
  transition: .2s;
}

.footer .footer-link li a:hover {
  background: #d90a2c;
}

@media (max-width: 768px) {
  .footer .footer-link {
    flex-direction: column;
  }

  .footer .footer-link li a {
    font-size: 14px;
    line-height: 20px;
  }
}

.footer .footer-link li a:hover svg path {
  fill: #d90a2c;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer .footer-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1400px) {
  .footer .footer-gallery .gallery-item {
    flex: 0 0 30%;
  }
}

@media (max-width: 1200px) {
  .footer .footer-gallery .gallery-item {
    flex: 0 0 30%;
  }
}

@media (max-width: 768px) {
  .footer .footer-gallery .gallery-item {
    flex: 0 0 30%;
  }
}

.footer .tiny-footer {
  position: relative;
  margin-top: 98px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.0823529412);
  z-index: 111;
}

@media (max-width: 768px) {
  .footer .tiny-footer {
    margin-top: 50px;
  }
}

.footer .tiny-footer p {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .7em;
  line-height: 26px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer .tiny-footer p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer .tiny-footer ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer .tiny-footer ul {
    justify-content: center;
  }
}

.footer .tiny-footer ul li a {
  color: #fff;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: .7em;
  line-height: 26px;
}

.progress-wrap::after {
  color: #d90a2c;
}

.progress-wrap svg.progress-circle path {
  stroke: #d90a2c;
}

.loader:after {
  border-top-color: #d90a2c;
  border-right-color: #d90a2c;
  border-bottom-color: #d90a2c;
}

.why-choose-us .section-title .subtitle {
  color: #d90a2c;
}

.why-choose-us .section-title .subtitle::after {
  background-color: #d90a2c;
}

.why-choose-us .image-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-end;
}

.why-choose-us .image-wrap .image {
  max-width: 527px;
  max-height: 566px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.why-choose-us .image-wrap .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.why-choose-us .image-wrap .image .animatedLine {
  position: absolute;
  top: -180px;
  left: 10%;
  display: flex;
  gap: 16px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.why-choose-us .image-wrap .image .animatedLine .animatedLine-1 {
  width: 40px;
  height: 156px;
  background-color: #001d21;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.why-choose-us .image-wrap .image .animatedLine .animatedLine-2 {
  width: 40px;
  height: 100px;
  background-color: #001d21;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.why-choose-us .image-wrap .image:hover .animatedLine {
  top: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.why-choose-us .image-wrap .image:hover .img {
  background-color: #d90a2c;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.why-choose-us .image-wrap .image:hover a {
  background-color: #d90a2c;
  color: #001d21;
}

.why-choose-us .image-wrap .image-line {
  display: flex;
  align-items: flex-end;
  height: 100%;
  gap: 16px;
}

@media (max-width: 576px) {
  .why-choose-us .image-wrap .image-line {
    display: none;
  }
}

.why-choose-us .image-wrap .image-line .line {
  height: 256px;
  width: 28px;
  background: #d90a2c;
  border-radius: 15px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.why-choose-us .image-wrap .image-line .line-2 {
  margin-bottom: 80px;
}

.why-choose-us .image-wrap .image-line:hover .line {
  transform: scaleY(0.8);
}

.upcoming-events .content .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
  background-color: transparent;
}

.upcoming-events .content .button:hover svg path {
  fill: #d90a2c;
}

.industry-expert {
  padding: 176px 0 140px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .industry-expert {
    padding: 80px 0;
  }
}

.industry-expert .section-title {
  margin-bottom: 0;
}

.industry-expert .section-title .subtitle {
  color: #d90a2c;
}

.industry-expert .section-title .subtitle::after {
  background-color: #d90a2c;
}

.industry-expert .section-title .title {
  margin-bottom: 70px;
}

.industry-expert .grid-item {
  border: 1px solid rgba(209, 209, 209, 0.062745098);
  margin-bottom: 30px;
  padding: 20px;
  width: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media (max-width: 576px) {
  .industry-expert .grid-item {
    padding: 0px 0px 20px;
    margin: 0px auto 20px;
  }

  .industry-expert .grid-item .col-12 {
    padding: 0 0px;
  }
}

.industry-expert .grid-item img {
  width: 100%;
  height: 100%;
}

.industry-expert .grid-item h1 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .industry-expert .grid-item h1 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .industry-expert .grid-item h1 {
    padding: 0 15px;
  }
}

.industry-expert .grid-item p {
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .industry-expert .grid-item p {
    padding: 0 15px;
  }
}

.industry-expert .grid-item h2 {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.industry-expert .grid-item h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3rem;
  width: 35px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1882352941);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media (max-width: 768px) {
  .industry-expert .grid-item h2 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .industry-expert .grid-item h2 {
    padding: 0 15px;
  }
}

.industry-expert .grid-item .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 576px) {
  .industry-expert .grid-item .social-link {
    padding: 0 15px;
  }
}

.industry-expert .grid-item .social-link li a {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.062745098);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.industry-expert .grid-item .social-link li a i {
  color: #001d21;
}

.industry-expert .grid-item .social-link li a:hover {
  background-color: #d90a2c;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic svg circle.progress {
  stroke: #d90a2c;
}

.trusted-client-area .counting-part .counting-part-item .orb_graphic .orb_value i {
  color: #d90a2c;
}

.our-clients .section-title .subtitle {
  color: #d90a2c;
}

.our-clients .section-title .subtitle::after {
  background-color: #d90a2c;
}

.our-clients .client-slider .slider-item .slider-item-style {
  border: 1px dashed #d90a2c;
}

.our-clients .client-slider .slider-item .slider-item-style .client-title-rating .client-title .img img {
  border: 1px solid #d90a2c;
}

.our-clients .client-slider .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #d90a2c;
  background-color: #d90a2c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.our-clients .client-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #001d21;
}

.our-clients .client-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: #d90a2c;
}



.service-details {
  padding: 40px 0;
  position: relative;
}

@media (max-width: 992px) {
  .service-details {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .service-details {
    padding: 40px 0;
  }
}

.service-details .animated-circle.right {
  top: -3%;
  right: -10%;
  z-index: -1;
}

.service-details .animated-circle.left {
  top: 16%;
  left: -9%;
  z-index: -1;
}

.service-details .animated-circle-1.right {
  top: 27%;
  right: -13%;
}

.service-details .animated-circle-1.left {
  top: 38%;
  left: -13%;
  z-index: -1;
}

.service-details .animated-circle-2.right {
  bottom: 30%;
  right: -13%;
}

.service-details .animated-circle-2.left {
  bottom: 11%;
  left: -13%;
  z-index: -1;
}

.service-details .left-bar .comment {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .left-bar .comment {
    padding: 12px 16px;
  }
}

.service-details .left-bar .comment .icon {
  margin-bottom: 15px;
}

.service-details .left-bar .comment .description {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .service-details .left-bar .comment .description {
    font-size: 14px;
  }
}

.service-details .left-bar .comment .title {
  color: #d90a2c;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  padding-left: 54px;
  position: relative;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .left-bar .comment .title {
    font-size: 16px;
  }
}

.service-details .left-bar .comment .title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .left-bar .top-content {
  margin-bottom: 40px;
}

.service-details .left-bar .top-content .img {
  position: relative;
}

.service-details .left-bar .top-content .img img {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.service-details .left-bar .top-content .img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content .img .play-btn {
    max-width: 80px;
  }
}

.service-details .left-bar .top-content .banner-slider-blog {
  position: relative;
}

.service-details .left-bar .top-content .banner-slider-blog .prev {
  position: absolute;
  top: 50%;
  left: 1%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.service-details .left-bar .top-content .banner-slider-blog .prev:hover {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .left-bar .top-content .banner-slider-blog .prev:hover svg .hover-effect {
  fill: #39acff;
}

.service-details .left-bar .top-content .banner-slider-blog .prev:hover svg path {
  fill: #fff;
}

.service-details .left-bar .top-content .banner-slider-blog .next {
  position: absolute;
  top: 50%;
  right: 1%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.service-details .left-bar .top-content .banner-slider-blog .next:hover {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .left-bar .top-content .banner-slider-blog .next:hover svg .hover-effect {
  fill: #39acff;
}

.service-details .left-bar .top-content .banner-slider-blog .next:hover svg path {
  fill: #fff;
}

.service-details .left-bar .top-content .publish-by-date {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content .publish-by-date {
    font-size: 14px;
  }
}

.service-details .left-bar .top-content .publish-by-date div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.service-details .left-bar .top-content h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content h2 {
    font-size: 18px;
    line-height: 25px;
  }
}

.service-details .left-bar .top-content p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 47px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content .button {
    font-size: 14px;
    line-height: 40px;
    padding: 0 30px;
  }
}

.service-details .left-bar .middle-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .service-details .left-bar .middle-content {
    flex-direction: column;
  }
}

.service-details .left-bar .middle-content img {
  width: 100%;
  height: 100%;
  max-width: 328px;
}

.service-details .left-bar .middle-content .content h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 26px;
}

.service-details .left-bar .middle-content .content ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}

.service-details .left-bar .middle-content .content ul li {
  color: #001d21;
  font-family: 'HeadingNow';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .service-details .left-bar .middle-content .content ul li {
    font-size: 14px;
  }
}

.service-details .left-bar .middle-content .content ul li svg {
  margin-right: 10px;
}

.service-details .left-bar .middle-content .content ul li:hover {
  color: #d90a2c;
}

.service-details .left-bar .middle-content .content ul li:hover svg path {
  fill: #d90a2c;
}

.service-details .left-bar .service-3 {
  overflow: hidden;
}

.service-details .left-bar .service-3 .img-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .service-details .left-bar .service-3 .img-flex {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.service-details .left-bar .service-3 .img-flex img {
  flex: 1 1 auto;
}

.service-details .left-bar .service-3 h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .service-3 h2 {
    font-size: 18px;
  }
}

.service-details .left-bar .service-3 p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .service-details .left-bar .service-3 p {
    font-size: 14px;
  }
}

.service-details .left-bar .publisher-info {
  border-top: 1px solid rgba(204, 255, 0, 0.062745098);
  border-bottom: 1px solid rgba(204, 255, 0, 0.062745098);
  padding: 34px 0;
}

.service-details .left-bar .publisher-info img {
  width: 100%;
  height: 100%;
}

.service-details .left-bar .publisher-info h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 37px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .publisher-info h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.service-details .left-bar .publisher-info p {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .service-details .left-bar .publisher-info p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.service-details .left-bar .publisher-info .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.service-details .left-bar .publisher-info .social-link a {
  width: 50px;
  height: 50px;
  background-color: #141414;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.service-details .left-bar .publisher-info .social-link a i {
  color: #d90a2c;
}

.service-details .left-bar .publisher-info .social-link a:hover {
  background-color: #d90a2c;
}

.service-details .left-bar .publisher-info .social-link a:hover i {
  color: #001d21;
}

.service-details .left-bar .next-prev-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(204, 255, 0, 0.062745098);
  padding: 40px 0;
}

.service-details .left-bar .next-prev-btn .next,
.service-details .left-bar .next-prev-btn .prev {
  flex: 1 1 100%;
  cursor: pointer;
}

.service-details .left-bar .next-prev-btn .publisher-info {
  padding: 37px 27px;
  border-top: 0;
  border-bottom: 0;
  background-color: #141414;
}

@media (max-width: 768px) {
  .service-details .left-bar .next-prev-btn .publisher-info {
    padding: 10px 10px;
  }
}

.service-details .left-bar .next-prev-btn .publisher-info .row {
  align-items: center;
}

.service-details .left-bar .next-prev-btn .publisher-info .row img {
  width: 120px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media (max-width: 768px) {
  .service-details .left-bar .next-prev-btn .publisher-info .row img {
    display: none;
  }
}

.service-details .left-bar .next-prev-btn .publisher-info .row h2 {
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service-details .left-bar .next-prev-btn .publisher-info .row h2 {
    margin-bottom: 0;
    text-align: center;
  }
}

.service-details .left-bar .next-prev-btn .publisher-info .row p {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .left-bar .next-prev-btn .publisher-info .row p {
    display: none;
  }
}

.service-details .left-bar .next-prev-btn .next .publisher-info {
  text-align: right;
}

.service-details .left-bar .next-prev-btn .next .publisher-info .row {
  flex-direction: row-reverse;
}

.service-details .left-bar .user-comment .comment-title {
  margin-top: 43px;
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 38px;
  padding-bottom: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .service-details .left-bar .user-comment .comment-title {
    font-size: 18px;
  }
}

.service-details .left-bar .user-comment .comment-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item {
  border-bottom: 1px solid rgba(204, 255, 0, 0.0823529412);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 31px;
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item:last-child {
  border-bottom: 0px solid rgba(204, 255, 0, 0.0823529412);
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item .user-comment-replay {
  padding-left: 40px;
}

@media (max-width: 768px) {
  .service-details .left-bar .user-comment .commenting-show-area .user-comment-item .user-comment-replay {
    padding-left: 20px;
  }
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item img {
  width: 120px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

@media (max-width: 768px) {
  .service-details .left-bar .user-comment .commenting-show-area .user-comment-item img {
    width: 80px;
  }
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item .btn {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #d90a2c;
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 40px;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .service-details .left-bar .user-comment .commenting-show-area .user-comment-item .btn {
    font-size: 14px;
  }
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item .btn:hover {
  background-color: #d90a2c;
  color: #111;
}

.service-details .left-bar .user-comment .commenting-show-area .user-comment-item p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .user-comment .commenting-show-area .user-comment-item p {
    font-size: 14px;
  }
}

.service-details .left-bar .user-comment .comment-box form input,
.service-details .left-bar .user-comment .comment-box form textarea {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1882352941);
  padding: 15px 17px;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  outline: none;
  box-shadow: none;
}

@media (max-width: 768px) {

  .service-details .left-bar .user-comment .comment-box form input,
  .service-details .left-bar .user-comment .comment-box form textarea {
    font-size: 14px;
  }
}

.service-details .left-bar .user-comment .comment-box form input::-moz-placeholder,
.service-details .left-bar .user-comment .comment-box form textarea::-moz-placeholder {
  color: #b1b1b1;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

.service-details .left-bar .user-comment .comment-box form input::placeholder,
.service-details .left-bar .user-comment .comment-box form textarea::placeholder {
  color: #b1b1b1;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 768px) {

  .service-details .left-bar .user-comment .comment-box form input::-moz-placeholder,
  .service-details .left-bar .user-comment .comment-box form textarea::-moz-placeholder {
    font-size: 14px;
  }

  .service-details .left-bar .user-comment .comment-box form input::placeholder,
  .service-details .left-bar .user-comment .comment-box form textarea::placeholder {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .service-details .left-bar .user-comment .comment-box form .button {
    font-size: 14px;
    line-height: 40px;
    padding: 0 30px;
  }
}

.service-details .left-bar .user-comment .comment-box form .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
  background-color: transparent;
}

.service-details .left-bar .user-comment .comment-box form .button:hover svg path {
  fill: #d90a2c;
}

.service-details .right-bar form {
  background-color: #141414;
  padding: 22px 29px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar form {
    padding: 12px 16px;
  }
}

.service-details .right-bar form input {
  border: 1px solid #d90a2c;
  width: 100%;
  color: #001d21;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  background: transparent;
  padding: 13px 19px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media (max-width: 768px) {
  .service-details .right-bar form input {
    padding: 10px 16px;
  }
}

.service-details .right-bar form input::-moz-placeholder {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.service-details .right-bar form input::placeholder {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.service-details .right-bar form button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  padding: 15px 20px;
  background-color: #d90a2c;
  border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -ms-border-radius: 0px 4px 4px 0px;
  -o-border-radius: 0px 4px 4px 0px;
}

@media (max-width: 768px) {
  .service-details .right-bar form button {
    padding: 11px 16px;
  }
}

.service-details .right-bar .main-service {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .main-service {
    padding: 12px 16px;
  }
}

.service-details .right-bar .main-service h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .main-service h2 {
    font-size: 18px;
  }
}

.service-details .right-bar .main-service h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .main-service ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 31px;
}

.service-details .right-bar .main-service ul li {
  width: 100%;
}

.service-details .right-bar .main-service ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .right-bar .main-service ul li a:hover {
  border-bottom: 1px solid #d90a2c;
  color: #d90a2c;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
}

.service-details .right-bar .main-service ul li a:hover svg path {
  fill: #d90a2c;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .right-bar .banner-adv {
  margin-bottom: 25px;
}

.service-details .right-bar .banner-adv img {
  width: 100%;
  height: 100%;
}

.service-details .right-bar .popular-post {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post {
    padding: 12px 16px;
  }
}

.service-details .right-bar .popular-post h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.service-details .right-bar .popular-post h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .popular-post .popular-post-part {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .img {
  max-width: 110px;
  max-height: 110px;
  min-width: 110px;
  min-height: 110px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .img img {
  min-width: 110px;
  min-height: 110px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post .popular-post-part .popular-post-item .img img {
    min-width: 80px;
    min-height: 80px;
  }
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .content .date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 16px;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .content .date span {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post .popular-post-part .popular-post-item .content .date span {
    font-size: 14px;
  }
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .content p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post .popular-post-part .popular-post-item .content p {
    font-size: 14px;
  }
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item:hover {
  cursor: pointer;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item:hover .img img {
  transform: translateY(-3px) scale(1.09);
  -webkit-transform: translateY(-3px) scale(1.09);
  -moz-transform: translateY(-3px) scale(1.09);
  -ms-transform: translateY(-3px) scale(1.09);
  -o-transform: translateY(-3px) scale(1.09);
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item:hover .content p {
  color: #d90a2c;
}

.service-details .right-bar .popular-tags {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags {
    padding: 12px 16px;
  }
}

.service-details .right-bar .popular-tags h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags h2 {
    font-size: 18px;
  }
}

.service-details .right-bar .popular-tags h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .popular-tags ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 9px;
}

.service-details .right-bar .popular-tags ul li {
  flex: 0 0 auto;
}

.service-details .right-bar .popular-tags ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.062745098);
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 45px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 0 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags ul li a {
    padding: 0 10px;
    font-size: 14px;
  }
}

.service-details .right-bar .popular-tags ul li a:hover {
  border-color: #d90a2c;
  color: #001d21;
  background-color: #d90a2c;
  transform: translateY(-3px) scale(1.09);
  -webkit-transform: translateY(-3px) scale(1.09);
  -moz-transform: translateY(-3px) scale(1.09);
  -ms-transform: translateY(-3px) scale(1.09);
  -o-transform: translateY(-3px) scale(1.09);
}



.latest-news .latest-news-grid-item:hover .content h1 {
  border-color: #d90a2c;
}

.latest-news .latest-news-grid-item:hover .content a svg circle {
  fill: #d90a2c;
}



.service-details {
  margin: 0 0;
  overflow: hidden;
}

@media (max-width: 992px) {
  .service-details {
    margin: 80px 0;
  }
}

@media (max-width: 768px) {
  .service-details {
    margin: 40px 0;
  }
}

.service-details .animated-circle.right {
  top: -10%;
  right: -17%;
  z-index: -1;
}

.service-details .animated-circle.left {
  top: 16%;
  left: -9%;
  z-index: -1;
}

@media (max-width: 768px) {
  .service-details .animated-circle-1 {
    display: none;
  }
}

.service-details .animated-circle-1.right {
  top: 34%;
  right: -13%;
}

.service-details .animated-circle-1.left {
  top: 52%;
  left: -13%;
  z-index: -1;
}

@media (max-width: 768px) {
  .service-details .animated-circle-2 {
    display: none;
  }
}

.service-details .animated-circle-2.right {
  bottom: -12%;
  right: -13%;
}

.service-details .left-bar .comment {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .left-bar .comment {
    padding: 12px 16px;
  }
}

.service-details .left-bar .comment .icon {
  margin-bottom: 15px;
}

.service-details .left-bar .comment .description {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .service-details .left-bar .comment .description {
    font-size: 14px;
  }
}

.service-details .left-bar .comment .title {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  padding-left: 54px;
  position: relative;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .left-bar .comment .title {
    font-size: 16px;
  }
}

.service-details .left-bar .comment .title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .left-bar .button:hover {
  border-color: #d90a2c;
  color: #d90a2c;
  background-color: transparent;
}

.service-details .left-bar .button:hover svg path {
  fill: #d90a2c;
}

.service-details .left-bar .top-content {
  margin-bottom: 40px;
}

.service-details .left-bar .top-content .img {
  position: relative;
}

.service-details .left-bar .top-content .img img {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.service-details .left-bar .top-content .img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content .img .play-btn {
    max-width: 80px;
  }
}

.service-details .left-bar .top-content .banner-slider-blog {
  position: relative;
}

.service-details .left-bar .top-content .banner-slider-blog .swiper-button-prev,
.service-details .left-bar .top-content .banner-slider-blog .swiper-button-next {
  width: auto;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.service-details .left-bar .top-content .banner-slider-blog .swiper-button-prev:hover,
.service-details .left-bar .top-content .banner-slider-blog .swiper-button-next:hover {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .left-bar .top-content .banner-slider-blog .swiper-button-prev:hover svg .hover-effect,
.service-details .left-bar .top-content .banner-slider-blog .swiper-button-next:hover svg .hover-effect {
  fill: #39acff;
}

.service-details .left-bar .top-content .banner-slider-blog .swiper-button-prev:hover svg path,
.service-details .left-bar .top-content .banner-slider-blog .swiper-button-next:hover svg path {
  fill: #fff;
}

.service-details .left-bar .top-content .banner-slider-blog .swiper-button-prev::after,
.service-details .left-bar .top-content .banner-slider-blog .swiper-button-next::after {
  display: none;
}

.service-details .left-bar .top-content .banner-slider-blog .next {
  position: absolute;
  top: 50%;
  right: 1%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.service-details .left-bar .top-content .banner-slider-blog .next:hover {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .left-bar .top-content .banner-slider-blog .next:hover svg .hover-effect {
  fill: #39acff;
}

.service-details .left-bar .top-content .banner-slider-blog .next:hover svg path {
  fill: #fff;
}

.service-details .left-bar .top-content .publish-by-date {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content .publish-by-date {
    font-size: 14px;
  }
}

.service-details .left-bar .top-content h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content h2 {
    font-size: 18px;
    line-height: 25px;
  }
}

.service-details .left-bar .top-content p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 47px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content .button {
    font-size: 14px;
    line-height: 40px;
    padding: 0 30px;
  }
}

.service-details .left-bar nav .pagination {
  gap: 20px;
}

.service-details .left-bar nav .pagination .page-link {
  background-color: transparent;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #d90a2c;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 768px) {
  .service-details .left-bar nav .pagination .page-link {
    font-size: 14px;
  }
}

.service-details .left-bar nav .pagination .page-link.active {
  background-color: #d90a2c;
  border-color: #d90a2c;
}

.service-details .left-bar nav .pagination .page-link:hover {
  background-color: #d90a2c;
  border-color: #d90a2c;
}

.service-details .right-bar form {
  background-color: #141414;
  padding: 22px 29px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar form {
    padding: 12px 16px;
  }
}

.service-details .right-bar form input {
  border: 1px solid #d90a2c;
  width: 100%;
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  background: transparent;
  padding: 13px 19px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media (max-width: 768px) {
  .service-details .right-bar form input {
    padding: 10px 16px;
  }
}

.service-details .right-bar form input::-moz-placeholder {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.service-details .right-bar form input::placeholder {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.service-details .right-bar form button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 15px 20px;
  background-color: #d90a2c;
  border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -ms-border-radius: 0px 4px 4px 0px;
  -o-border-radius: 0px 4px 4px 0px;
}

@media (max-width: 768px) {
  .service-details .right-bar form button {
    padding: 11px 16px;
  }
}

.service-details .right-bar .main-service {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .main-service {
    padding: 12px 16px;
  }
}

.service-details .right-bar .main-service h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .main-service h2 {
    font-size: 18px;
  }
}

.service-details .right-bar .main-service h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .main-service ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 31px;
}

.service-details .right-bar .main-service ul li {
  width: 100%;
}

.service-details .right-bar .main-service ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .right-bar .main-service ul li a:hover {
  border-bottom: 1px solid #d90a2c;
  color: #d90a2c;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
}

.service-details .right-bar .main-service ul li a:hover svg path {
  fill: #d90a2c;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .right-bar .banner-adv {
  margin-bottom: 25px;
}

.service-details .right-bar .banner-adv img {
  width: 100%;
  height: 100%;
}

.service-details .right-bar .popular-post {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post {
    padding: 12px 16px;
  }
}

.service-details .right-bar .popular-post h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.service-details .right-bar .popular-post h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .popular-post .popular-post-part {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .img {
  max-width: 110px;
  max-height: 110px;
  min-width: 110px;
  min-height: 110px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .img img {
  min-width: 110px;
  min-height: 110px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post .popular-post-part .popular-post-item .img img {
    min-width: 80px;
    min-height: 80px;
  }
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .content .date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 16px;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .content .date span {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post .popular-post-part .popular-post-item .content .date span {
    font-size: 14px;
  }
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item .content p {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-post .popular-post-part .popular-post-item .content p {
    font-size: 14px;
  }
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item:hover {
  cursor: pointer;
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item:hover .img img {
  transform: translateY(-3px) scale(1.09);
  -webkit-transform: translateY(-3px) scale(1.09);
  -moz-transform: translateY(-3px) scale(1.09);
  -ms-transform: translateY(-3px) scale(1.09);
  -o-transform: translateY(-3px) scale(1.09);
}

.service-details .right-bar .popular-post .popular-post-part .popular-post-item:hover .content p {
  color: #d90a2c;
}

.service-details .right-bar .popular-tags {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags {
    padding: 12px 16px;
  }
}

.service-details .right-bar .popular-tags h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags h2 {
    font-size: 18px;
  }
}

.service-details .right-bar .popular-tags h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .popular-tags ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 9px;
}

.service-details .right-bar .popular-tags ul li {
  flex: 0 0 auto;
}

.service-details .right-bar .popular-tags ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.062745098);
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 45px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 0 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags ul li a {
    padding: 0 10px;
    font-size: 14px;
  }
}

.service-details .right-bar .popular-tags ul li a:hover {
  border-color: #d90a2c;
  color: #001d21;
  background-color: #d90a2c;
  transform: translateY(-3px) scale(1.09);
  -webkit-transform: translateY(-3px) scale(1.09);
  -moz-transform: translateY(-3px) scale(1.09);
  -ms-transform: translateY(-3px) scale(1.09);
  -o-transform: translateY(-3px) scale(1.09);
}

.faq {
  padding: 120px 0 47px;
  position: relative;
}

@media (max-width: 992px) {
  .faq {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
}

.faq .animated-circle.right {
  top: 0%;
  right: -13%;
}

.faq .animated-circle.left {
  bottom: 12%;
  left: -13%;
}

.faq .title {
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  margin-bottom: 43px;
}

@media (max-width: 768px) {
  .faq .title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.faq .heading {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 54px;
}

@media (max-width: 768px) {
  .faq .heading {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.faq .description {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  max-width: 448px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .faq .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .faq .button {
    font-size: 14px;
    line-height: 40px;
    padding: 0 30px;
    margin-bottom: 20px;
  }
}

.faq .accordion .accordion-item {
  background-color: transparent;
  border: 0;
}

.faq .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  padding: 0;
  padding-bottom: 24px;
  margin-bottom: 31px;
}

@media (max-width: 768px) {
  .faq .accordion .accordion-item .accordion-button {
    font-size: 18px;
    padding-bottom: 14px;
    margin-bottom: 21px;
  }
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
  border-bottom: 1px solid rgba(217, 10, 44, 0.2);
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.faq .accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.875 6.84766L3.09375 11.6289C2.74219 11.9805 2.21484 11.9805 1.89844 11.6289L1.08984 10.8555C0.773438 10.5039 0.773438 9.97656 1.08984 9.66016L4.5 6.28516L1.08984 2.875C0.773438 2.55859 0.773438 2.03125 1.08984 1.67969L1.89844 0.871094C2.21484 0.554688 2.74219 0.554688 3.09375 0.871094L7.875 5.65234C8.19141 6.00391 8.19141 6.53125 7.875 6.84766Z' fill='%23D90A2C'/%3E%3C/svg%3E%0A");
}

.faq .accordion .accordion-item .accordion-body {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  padding: 0;
  padding-bottom: 24px;
}

@media (max-width: 768px) {
  .faq .accordion .accordion-item .accordion-body {
    font-size: 14px;
  }
}

.build-website {
  background-image: url("./../images/home-2/build-website-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 90%, 0% 100%);
  clip-path: polygon(0 8%, 100% 0%, 100% 90%, 0% 100%);
  position: relative;
  padding: 184px 0;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 576px) {
  .build-website {
    padding: 80px 0;
    -webkit-clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
    clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
  }
}

.build-website .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001d21;
  opacity: 65%;
}

.build-website h1 {
  max-width: 610px;
  margin: 0 auto;
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 65px;
  line-height: 81px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .build-website h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 576px) {
  .build-website h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

.build-website a {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 55px;
  background-color: #d90a2c;
  display: inline-block;
  padding: 0 36px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 147px;
}

@media (max-width: 768px) {
  .build-website a {
    font-size: 14px;
  }
}

.build-website .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(217, 217, 217, 0.1254901961);
  padding-top: 55px;
}

@media (max-width: 576px) {
  .build-website .client-logo {
    padding-top: 30px;
  }
}



.simple-package .grid-package-item .content .price-link {
  border: 1px solid rgba(217, 10, 44, 0.45);
}

.simple-package .grid-package-item:hover .price-link {
  background-color: #d90a2c;
}



.project-details {
  margin: 140px 0;
  position: relative;
}

@media (max-width: 992px) {
  .project-details {
    margin: 80px 0;
  }
}

@media (max-width: 768px) {
  .project-details {
    margin: 40px 0;
  }
}

.project-details .animated-circle.right {
  top: 0%;
  right: -13%;
}

.project-details .animated-circle.left {
  bottom: 12%;
  left: -13%;
}

.project-details .img {
  width: 100%;
  margin-bottom: 27px;
}

.project-details .img img {
  width: 100%;
}

.project-details h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 56px;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .project-details h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.project-details p {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 54px;
}

@media (max-width: 768px) {
  .project-details p {
    font-size: 14px;
  }
}

.project-details .project-details-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 57px;
}

@media (max-width: 768px) {
  .project-details .project-details-info {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.project-details .project-details-info p {
  color: #d90a2c;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .project-details .project-details-info p {
    font-size: 18px;
    line-height: 20px;
  }
}

.project-details .project-details-info p span {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  padding-left: 18px;
}

@media (max-width: 768px) {
  .project-details .project-details-info p span {
    font-size: 14px;
  }
}

.project-details .middle-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .project-details .middle-content {
    flex-wrap: wrap;
  }
}

.project-details .middle-content img {
  width: 100%;
  height: 100%;
  max-width: 328px;
}

.project-details .middle-content .content h1 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .project-details .middle-content .content h1 {
    font-size: 18px;
  }
}

.project-details .middle-content .content ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}

.project-details .middle-content .content ul li {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 768px) {
  .project-details .middle-content .content ul li {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .project-details .share-article {
    gap: 20px;
  }
}

.project-details .share-article p {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .project-details .share-article p {
    font-size: 16px;
  }
}

.project-details .share-article .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.project-details .share-article .social-link a {
  width: 42px;
  height: 42px;
  border: 1px solid #fff;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.project-details .share-article .social-link a i {
  color: #001d21;
}

.project-details .share-article .social-link a:hover {
  background-color: #d90a2c;
  border-color: #d90a2c;
}

.project-details .share-article .social-link a:hover i {
  color: #111;
}

.project-details hr {
  border-color: rgba(204, 255, 0, 0.1490196078);
}

.project-details .project-category {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {
  .project-details .project-category {
    justify-content: flex-start;
  }
}

.project-details .project-category li {
  border: 1px solid #fff;
  padding: 10px 25px;
  color: #001d21;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

@media (max-width: 768px) {
  .project-details .project-category li {
    padding: 8px 12px;
  }
}

.project-details .project-category li:hover {
  background-color: #d90a2c;
  border-color: #d90a2c;
  color: #111;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.project-details .pagination-arrow p {
  color: #001d21;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .project-details .pagination-arrow p span {
    display: none;
  }
}



.latest-project {
  padding: 140px 0;
  position: relative;
}

@media (max-width: 992px) {
  .latest-project {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .latest-project {
    padding: 40px 0;
  }
}

.latest-project .animated-circle.right {
  top: 0%;
  right: -13%;
}

.latest-project .animated-circle.left {
  bottom: 12%;
  left: -13%;
}

.latest-project .section-title {
  max-width: 538px;
  margin: 0 auto;
  text-align: center;
}

.latest-project .section-title .subtitle {
  margin-bottom: 24px;
  color: #d90a2c;
}

.latest-project .section-title .subtitle::after {
  background-color: #d90a2c;
}

.latest-project .section-title .title {
  margin-bottom: 70px;
}

.latest-project .grid-project {
  -moz-column-count: 3;
  column-count: 3;
  -moz-column-gap: 1em;
  column-gap: 1em;
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .latest-project .grid-project {
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .latest-project .grid-project {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.latest-project .grid-project .grid-project-item {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 16px;
  width: 100%;
}

.latest-project .grid-project .grid-project-item .img {
  width: 100%;
  height: 100%;
}

.latest-project .grid-project .grid-project-item .img img {
  width: 100%;
  height: 100%;
}

.latest-project .grid-project .grid-project-item .content {
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 178px;
  background-color: rgba(217, 10, 44, 0.5019607843);
  border-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 38px 36px 47px 19px;
  transition: all ease 0.9s;
  -webkit-transition: all ease 0.9s;
  -moz-transition: all ease 0.9s;
  -ms-transition: all ease 0.9s;
  -o-transition: all ease 0.9s;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .latest-project .grid-project .grid-project-item .content {
    padding: 20px 16px;
  }
}

@media (max-width: 576px) {
  .latest-project .grid-project .grid-project-item .content {
    bottom: 15px;
  }
}

.latest-project .grid-project .grid-project-item .content h4 {
  transform: scale(0.1);
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  color: #001d21;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 48px;
  transition: all ease 0.9s;
  -webkit-transition: all ease 0.9s;
  -moz-transition: all ease 0.9s;
  -ms-transition: all ease 0.9s;
  -o-transition: all ease 0.9s;
}

@media (max-width: 1200px) {
  .latest-project .grid-project .grid-project-item .content h4 {
    font-size: 12px;
    line-height: 30px;
  }
}

.latest-project .grid-project .grid-project-item .content h3 {
  transform: scale(0.1);
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  transition: all ease 0.9s;
  -webkit-transition: all ease 0.9s;
  -moz-transition: all ease 0.9s;
  -ms-transition: all ease 0.9s;
  -o-transition: all ease 0.9s;
}

@media (max-width: 1200px) {
  .latest-project .grid-project .grid-project-item .content h3 {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .latest-project .grid-project .grid-project-item .content h3 {
    font-size: 16px;
    line-height: 20px;
  }
}

.latest-project .grid-project .grid-project-item:hover .content {
  opacity: 1;
  width: 87%;
  transition: all ease 0.9s;
  -webkit-transition: all ease 0.9s;
  -moz-transition: all ease 0.9s;
  -ms-transition: all ease 0.9s;
  -o-transition: all ease 0.9s;
}

.latest-project .grid-project .grid-project-item:hover h4 {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: all ease 0.9s;
  -webkit-transition: all ease 0.9s;
  -moz-transition: all ease 0.9s;
  -ms-transition: all ease 0.9s;
  -o-transition: all ease 0.9s;
}

.latest-project .grid-project .grid-project-item:hover h3 {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: all ease 0.9s;
  -webkit-transition: all ease 0.9s;
  -moz-transition: all ease 0.9s;
  -ms-transition: all ease 0.9s;
  -o-transition: all ease 0.9s;
}



.service-details {
  padding: 40px 0;
  position: relative;
}

@media (max-width: 992px) {
  .service-details {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .service-details {
    padding: 40px 0;
  }
}

.service-details .animated-circle {
  z-index: -1;
}

.service-details .animated-circle.right {
  bottom: 0%;
  right: -9%;
}

.service-details .animated-circle.left {
  top: 28%;
  left: -14%;
}

@media (max-width: 768px) {
  .service-details .left-bar {
    margin-top: 20px;
  }
}

.service-details .left-bar .top-content img {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.service-details .left-bar .top-content h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content h2 {
    font-size: 18px;
  }
}

.service-details .left-bar .top-content p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 47px;
}

@media (max-width: 768px) {
  .service-details .left-bar .top-content p {
    font-size: 14px;
  }
}

.service-details .left-bar .middle-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .service-details .left-bar .middle-content {
    flex-wrap: wrap;
  }
}

.service-details .left-bar .middle-content img {
  width: 100%;
  height: 100%;
  max-width: 330px;
  min-height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-details .left-bar .middle-content .content h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .service-details .left-bar .middle-content .content h2 {
    font-size: 18px;
  }
}

.service-details .left-bar .middle-content .content ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}

.service-details .left-bar .middle-content .content ul li {
  color: #001d21;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

@media (max-width: 768px) {
  .service-details .left-bar .middle-content .content ul li {
    font-size: 14px;
  }
}

.service-details .left-bar .service-3 {
  overflow: hidden;
}

.service-details .left-bar .service-3 .img-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .service-details .left-bar .service-3 .img-flex {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.service-details .left-bar .service-3 .img-flex img {
  flex: 1 1 auto;
}

.service-details .left-bar .service-3 h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-details .left-bar .service-3 h2 {
    font-size: 18px;
  }
}

.service-details .left-bar .service-3 p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 768px) {
  .service-details .left-bar .service-3 p {
    font-size: 14px;
  }
}

.service-details .right-bar form {
  background-color: #141414;
  padding: 22px 29px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar form {
    padding: 12px 16px;
  }
}

.service-details .right-bar form input {
  border: 1px solid #d90a2c;
  width: 100%;
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  background: transparent;
  padding: 13px 19px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media (max-width: 768px) {
  .service-details .right-bar form input {
    padding: 10px 16px;
  }
}

.service-details .right-bar form input::-moz-placeholder {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.service-details .right-bar form input::placeholder {
  color: #d90a2c;
  font-family: "Old Standard TT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

.service-details .right-bar form button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 15px 20px;
  background-color: #d90a2c;
  border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  -ms-border-radius: 0px 4px 4px 0px;
  -o-border-radius: 0px 4px 4px 0px;
}

@media (max-width: 768px) {
  .service-details .right-bar form button {
    padding: 11px 16px;
  }
}

.service-details .right-bar .main-service {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .main-service {
    padding: 12px 16px;
  }
}

.service-details .right-bar .main-service h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .main-service h2 {
    font-size: 18px;
  }
}

.service-details .right-bar .main-service h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .main-service ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 31px;
}

.service-details .right-bar .main-service ul li {
  width: 100%;
}

.service-details .right-bar .main-service ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .right-bar .main-service ul li a:hover {
  border-bottom: 1px solid #d90a2c;
  color: #d90a2c;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
}

.service-details .right-bar .main-service ul li a:hover svg path {
  fill: #d90a2c;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.service-details .right-bar .banner-adv {
  margin-bottom: 25px;
}

.service-details .right-bar .banner-adv img {
  width: 100%;
  height: 100%;
}

.service-details .right-bar .popular-tags {
  padding: 40px 31px;
  background-color: #141414;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags {
    padding: 12px 16px;
  }
}

.service-details .right-bar .popular-tags h2 {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags h2 {
    font-size: 18px;
  }
}

.service-details .right-bar .popular-tags h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #d90a2c;
}

.service-details .right-bar .popular-tags ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 9px;
}

.service-details .right-bar .popular-tags ul li {
  flex: 0 0 auto;
}

.service-details .right-bar .popular-tags ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 10, 44, 0.3019607843);
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 45px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 0 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

@media (max-width: 768px) {
  .service-details .right-bar .popular-tags ul li a {
    padding: 0 10px;
    font-size: 14px;
  }
}

.service-details .right-bar .popular-tags ul li a:hover {
  border-color: #d90a2c;
  color: #001d21;
  background-color: #d90a2c;
  transform: translateY(-3px) scale(1.09);
  -webkit-transform: translateY(-3px) scale(1.09);
  -moz-transform: translateY(-3px) scale(1.09);
  -ms-transform: translateY(-3px) scale(1.09);
  -o-transform: translateY(-3px) scale(1.09);
}

.nulled {
  max-height: 200px !important;
  padding: 120px 0 !important;
}

.banner-section.nulled h1 {
  margin-bottom: 0 !important;
}

.about-us {
  padding: 140px 0;
  position: relative;
}

@media (max-width: 992px) {
  .about-us {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 40px 0;
  }
}

.about-us .animated-circle.left {
  bottom: 12%;
  left: -13%;
}

.about-us .content {
  max-width: 589px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 72px;
}

@media (max-width: 768px) {
  .about-us .content {
    margin-bottom: 30px;
  }
}

.about-us .content .subtitle {
  color: #d90a2c;
}

.about-us .content .subtitle::after {
  background-color: #d90a2c;
}

.about-us .choose-up-grid-item {
  border: 1px solid rgba(169, 169, 169, 0.1882352941);
  padding: 60px 30px;
  margin-bottom: 50px;
}

@media (max-width: 576px) {
  .about-us .choose-up-grid-item {
    padding: 20px 15px;
    margin-bottom: 20px;
    margin-top: 0px !important;
  }
}

.about-us .choose-up-grid-item h2 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 52px;
  padding-bottom: 25px;
  position: relative;
}

@media (max-width: 576px) {
  .about-us .choose-up-grid-item h2 {
    font-size: 18px;
  }
}

.about-us .choose-up-grid-item h2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  background-image: url("./../images/shape.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 57px;
  height: 2px;
}

.about-us .choose-up-grid-item p {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.062745098);
  margin-bottom: 19px;
}

@media (max-width: 576px) {
  .about-us .choose-up-grid-item p {
    font-size: 14px;
  }
}

.about-us .choose-up-grid-item .img-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-us .choose-up-grid-item .img-link a {
  background-color: #010212;
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  display: inline-block;
  padding: 8px 29px;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 576px) {
  .about-us .choose-up-grid-item .img-link a {
    font-size: 14px;
  }
}

.about-us .choose-up-grid-item:hover a {
  background-color: #d90a2c;
}

.project-completed .content .play-btn {
  position: relative;
}

.project-completed .content .play-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.project-completed .content .play-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 50%;
  transition: all 200ms;
}

.project-completed .content .play-btn a {
  border: 1px solid #d90a2c;
}

.project-completed .content .project-count {
  background-color: #d90a2c;
}

.solution-today .animated-circle.left {
  bottom: 12%;
  left: -13%;
}

.solution-today .ready-for-future a {
  background-color: #d90a2c;
  border: 1px solid transparent;
}

.solution-today .ready-for-future a:hover {
  background-color: transparent;
  border: 1px solid #d90a2c;
  color: #001d21;
}



.team-member-info {
  margin: 140px 0;
  position: relative;
}

@media (max-width: 992px) {
  .team-member-info {
    margin: 80px 0;
  }
}

@media (max-width: 768px) {
  .team-member-info {
    margin: 40px 0;
  }
}

.team-member-info .animated-circle.right {
  top: 0%;
  right: -13%;
}

.team-member-info .animated-circle.left {
  bottom: 24%;
  left: -13%;
}

.team-member-info img {
  width: 100%;
  height: 100%;
}

.team-member-info .team-bio {
  color: #001d21;
}

.team-member-info .team-bio h4 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 26px;
  margin-bottom: 31px;
}

@media (max-width: 768px) {
  .team-member-info .team-bio h4 {
    margin-top: 30px;
    font-size: 20px;
  }
}

.team-member-info .team-bio .table {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 43px;
}

.team-member-info .team-bio .table div {
  border-bottom: 1px solid rgba(217, 217, 217, 0.1019607843);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-bottom: 15px;
}

.team-member-info .team-bio .table div p {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .team-member-info .team-bio .table div p {
    font-size: 14px;
  }
}

.team-member-info .team-bio .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.team-member-info .team-bio .social-link li a {
  border: 1px solid #d90a2c;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #d90a2c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.team-member-info .team-bio .social-link li a:hover {
  background-color: #d90a2c;
  color: #111;
}

.team-member-info .summary {
  margin-top: 33px;
  margin-bottom: 56px;
}

.team-member-info .summary h5 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .team-member-info .summary h5 {
    font-size: 20px;
  }
}

.team-member-info .summary p {
  color: #001d21;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 768px) {
  .team-member-info .summary p {
    font-size: 14px;
  }
}

.team-member-info .professional-details hr {
  border-color: rgba(204, 255, 0, 0.4196078431);
  padding-top: 81px;
}

@media (max-width: 768px) {
  .team-member-info .professional-details hr {
    padding-top: 40px;
  }
}

.team-member-info .professional-details h4 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .team-member-info .professional-details h4 {
    font-size: 18px;
  }
}

.team-member-info .professional-details .progress-bar {
  margin-bottom: 40px;
}

.team-member-info .professional-details .progress-bar .progress-title-holder {
  padding-bottom: 7px;
  position: relative;
  margin: 5px 0;
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}

@media (max-width: 768px) {
  .team-member-info .professional-details .progress-bar .progress-title-holder {
    font-size: 14px;
  }
}

.team-member-info .professional-details .progress-bar .progress-title-holder .progress-number-wrapper .progress-number-mark {
  margin-bottom: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.team-member-info .professional-details .progress-bar .progress-content-outter {
  height: 3px;
}

.team-member-info .professional-details .progress-bar .progress-content-outter .progress-content {
  height: 3px;
  background-color: #d90a2c;
  width: 0%;
  /* Initial value */
}

.team-member-info .professional-details .experience div {
  margin-bottom: 40px;
}

.team-member-info .professional-details .experience div p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-member-info .professional-details .experience div p span {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.team-member-info .professional-details .experience div p span:first-child {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .team-member-info .professional-details .experience div p span:first-child {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .team-member-info .professional-details .experience div p span {
    font-size: 12px;
  }
}

.team-member-info .professional-details .experience div span {
  color: #001d21;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  display: inline-block;
}

@media (max-width: 768px) {
  .team-member-info .professional-details .experience div span {
    font-size: 14px;
  }
}

.team-member-info .career-details hr {
  border-color: rgba(204, 255, 0, 0.4196078431);
  padding-top: 81px;
}

.team-member-info .career-details h4 {
  color: #001d21;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  .team-member-info .career-details h4 {
    font-size: 18px;
  }
}

.team-member-info .career-details .experience div {
  margin-bottom: 40px;
}

.team-member-info .career-details .experience div hr {
  padding-top: 0;
}

.team-member-info .career-details .experience div p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-member-info .career-details .experience div p span {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.team-member-info .career-details .experience div p span:first-child {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .team-member-info .career-details .experience div p span:first-child {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .team-member-info .career-details .experience div p span {
    font-size: 12px;
  }
}

.team-member-info .career-details .experience div p span sup {
  color: #001d21;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

@media (max-width: 768px) {
  .team-member-info .career-details .experience div p span sup {
    font-size: 12px;
  }
}

.team-member-info .career-details .experience div span {
  color: #001d21;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  display: inline-block;
}

@media (max-width: 768px) {
  .team-member-info .career-details .experience div span {
    font-size: 14px;
  }
}



.industry-expert .animated-circle {
  z-index: -1;
}

.industry-expert .animated-circle.right {
  top: 0%;
  right: -9%;
}

.industry-expert .animated-circle.left {
  bottom: -35%;
  left: -16%;
  z-index: -1;
}

.industry-expert .section-title .subtitle {
  color: #d90a2c;
}

.industry-expert .section-title .subtitle::after {
  background-color: #d90a2c;
}

.industry-expert .section-title .title {
  margin-bottom: 70px;
}

.industry-expert .grid-item p {
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.industry-expert .grid-item .social-link li a:hover {
  background-color: #d90a2c;
}

.fact .section-title p {
  color: #d90a2c;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
}

.our-team-area .animated-circle {
  z-index: -1;
}

.our-team-area .animated-circle.left {
  bottom: -39%;
  left: -14%;
  z-index: -1;
}

.our-team-area .section-title .subtitle {
  color: #d90a2c;
}

.our-team-area .section-title .subtitle::after {
  background-color: #d90a2c;
}

.our-team-area .card-member .card-img .social-link {
  background-color: #d90a2c;
}

.our-team-area .card-member .card-content p {
  color: #d90a2c;
  font-family: 'PublicaSansRound', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

.our-team-area .card-member:hover .card-content {
  background-color: #d90a2c;
}


.banner-right {
  position: relative !important;
}

.banner-content {
  position: absolute !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: start !important;
  justify-content: space-between !important;
  font-family: 'HeadingNow' !important;
  padding: 40px 20px !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 100% !important;
}

.content-title {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: start !important;
}

.content-title h2 {
  font-size: 5.2em !important;
  font-weight: 600 !important;
  line-height: .8 !important;
}

.content-title h3 {
  font-size: 2.8em !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  color: white !important;
  margin-top: 20px !important;
}

.content-text-group {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: start !important;
  gap: 30px !important;
}

.content-text p {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  font-size: 2.2em !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  margin-bottom: 0 !important;
}

.content-text span {
  font-size: 1.1em !important;
  color: white !important;
  font-weight: 400 !important;
}

@media (max-width: 992px) {
  .content-title h2 {
    font-size: 4em !important;
  }

  .content-title h3 {
    font-size: 2.2em !important;
  }

  .content-text p {
    font-size: 1.8em !important;
  }

  .content-text span {
    font-size: 1em !important;
  }

  .banner-content {
    padding: 30px 15px !important;
  }
}

@media (max-width: 768px) {
  .content-title h2 {
    font-size: 3em !important;
  }

  .content-title h3 {
    font-size: 1.8em !important;
  }

  .content-text p {
    font-size: 1.6em !important;
  }

  .content-text span {
    font-size: 0.9em !important;
  }

  .banner-content {
    padding: 20px 10px !important;
  }
}

@media (max-width: 576px) {
  .content-title h2 {
    font-size: 2.4em !important;
  }

  .content-title h3 {
    font-size: 1.6em !important;
  }

  .content-text p {
    font-size: 1.4em !important;
  }

  .content-text span {
    font-size: 0.8em !important;
  }

  .banner-content {
    padding: 15px 10px !important;
  }
}

.plyr--full-ui {
  --plyr-color-main: #d90a2c !important;
  background-color: #001d21 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.plyr--full-ui .plyr__control.plyr__control--overlaid {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background-color: rgba(217, 10, 44, 0.9) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 2rem !important;
  width: 60px !important;
  height: 60px !important;
  transition: background-color 0.3s ease !important;
}

.plyr--full-ui .plyr__control.plyr__control--overlaid:hover {
  background-color: #ff0000 !important;
}

.plyr--full-ui .plyr__controls {
  background-color: rgba(0, 29, 33, 0.85) !important;
  padding: 10px !important;
  border-top: 1px solid #d90a2c !important;
}

.plyr--full-ui .plyr__progress__container {
  color: #d90a2c !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"] {
  color: #d90a2c !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"]::-webkit-slider-thumb {
  background-color: #d90a2c !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"]::-moz-range-thumb {
  background-color: #d90a2c !important;
}

.plyr--full-ui .plyr__time {
  color: #ffffff !important;
  font-weight: bold !important;
}

.plyr--full-ui .plyr__volume input[type="range"] {
  color: #d90a2c !important;
}

.plyr--full-ui .plyr__volume input[type="range"]::-webkit-slider-thumb {
  background-color: #d90a2c !important;
}

.plyr--full-ui .plyr__volume input[type="range"]::-moz-range-thumb {
  background-color: #d90a2c !important;
}

.plyr--full-ui .plyr__control[data-plyr="fullscreen"] {
  background-color: rgba(217, 10, 44, 0.8) !important;
  color: #ffffff !important;
  border-radius: 5px !important;
  transition: background-color 0.3s ease !important;
}

.plyr--full-ui .plyr__control[data-plyr="fullscreen"]:hover {
  background-color: #ff0000 !important;
}

.plyr--full-ui .plyr__menu__container {
  background-color: #001d21 !important;
  border: 1px solid #d90a2c !important;
}

.plyr--full-ui .plyr__menu__container li [role="menuitemradio"]:checked,
.plyr--full-ui .plyr__menu__container li [role="menuitemradio"]:hover {
  background-color: rgba(217, 10, 44, 0.8) !important;
  color: #ffffff !important;
}

.plyr--full-ui .plyr__menu__container .plyr__menu__title {
  color: #d90a2c !important;
  font-weight: bold !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"]::-webkit-slider-runnable-track {
  background: #555555 !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"]::-moz-range-track {
  background: #555555 !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"]::-webkit-slider-thumb {
  background: #d90a2c !important;
}

.plyr--full-ui .plyr__progress__container input[type="range"]::-moz-range-thumb {
  background: #d90a2c !important;
}

.plyr--full-ui .plyr__control:hover,
.plyr--full-ui .plyr__control:focus {
  background-color: rgba(217, 10, 44, 0.8) !important;
  color: #ffffff !important;
}

.app-link {
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 7h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c1.65 0 3 1.35 3 3s-1.35 3-3 3h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c2.76 0 5-2.24 5-5s-2.24-5-5-5m-9 5c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1m2 3H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h3c.55 0 1-.45 1-1s-.45-1-1-1H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h3c.55 0 1-.45 1-1s-.45-1-1-1'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.toast {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background-color: rgba(0, 29, 33, 0.9) !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: 5px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  animation: toast-in 0.3s forwards !important;
}

.toast.fade-out {
  animation: toast-out 0.3s forwards !important;
}

@keyframes toast-in {
  from {
    opacity: 0 !important;
    transform: translateY(20px) !important;
  }

  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@keyframes toast-out {
  from {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  to {
    opacity: 0 !important;
    transform: translateY(20px) !important;
  }
}

.about .company {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

.about .company-item {
  flex: 1 1 calc(50% - 20px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
}

.about .icon img {
  width: 50px !important;
}

.about .text p {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .about .company-item {
    flex: 1 1 100% !important;
  }
}

.render-template {
  padding: 100px 50px;
}

.custom-container {
  width: 100%;
  padding: 20px;
  border-radius: 25px;
  background: linear-gradient(calc(360deg * var(--random-angle, 1)),
      #FAE3E4 0%,
      #FBE6E7 5%,
      #FCEAEB 10%,
      #FDEEEF 15%,
      #FDF1F2 20%,
      #FEF5F6 25%,
      #FEF8F9 30%,
      #FFFAFB 35%,
      #FFFCFC 40%,
      #FFFFFF 45%,
      #FFFCFC 50%,
      #FFFAFB 55%,
      #FEF8F9 60%,
      #FEF5F6 65%,
      #FDF1F2 70%,
      #FDEEEF 75%,
      #FCEAEB 80%,
      #FBE6E7 85%,
      #FAE3E4 90%);
  background-size: 200% 200%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.custom-header h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #3A4A5B;
}

.custom-header .highlight {
  color: #D21F26;
}

.custom-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  border: 2px solid #DEE2E6;
  border-radius: 25px;
  padding: 10px;
  background-color: #fff;
}

.search-field {
  position: relative;
  flex: 1;
  height: 46px;
  border-radius: 25px !important;
}

.search-field:first-child {
  flex: 3;
  min-width: 290px;
  padding-left: 20px;
  border: solid 1px #e8e8e8;
  border-radius: 25px;
}

.search-field .nice-select {
  height: 46px;
  color: #3A4A5B;
  min-width: 150px;
  border-radius: 25px !important;
}

.search-field .nice-select .list {
  width: 100%;
  border-radius: 25px;
}

.search-field input,
.search-field select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  clear: both;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 46px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  color: #3A4A5B;
}

.search-field input::placeholder {
  color: #3A4A5B;
}

.search-field i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #D21F26;
}

#search-btn {
  padding: 12px 24px;
  background-color: #D21F26;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  flex: 1;
  transition: background-color 0.3s ease;
}

#search-btn:hover {
  background-color: #FF4545;
}

@media (max-width: 768px) {
  .custom-search-bar {
    flex-direction: column;
    gap: 10px;
  }

  #search-btn {
    width: 100%;
  }

  .search-field {
    width: 100%;
  }

  .search-field .nice-select {
    width: 100% !important;
    min-width: 100% !important;
  }
}