*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

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

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

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  outline: none;
  transition: 0.3s all;
}

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

.main-wrapper {
  flex: 1 0 auto;
  position: relative;
  overflow: hidden;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-weight: normal;
  position: relative;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar-track {
  background-color: #e9e9e9;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #45008D;
}

form .input-wrapper {
  margin-bottom: 10px;
}
form label {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #45008D;
}
form label span {
  color: red;
}
form textarea {
  min-height: 210px;
  max-height: 210px;
}
@media (max-width: 1199px) {
  form textarea {
    min-height: 170px;
    max-height: 170px;
  }
}
@media (max-width: 991px) {
  form textarea {
    min-height: 120px;
    max-height: 120px;
  }
}
@media (max-width: 767px) {
  form textarea {
    min-height: 100px;
    max-height: 100px;
  }
}
form .app-input {
  padding: 12px;
  color: #000;
  background: #fff;
  border-radius: 0;
  border: 1px solid #979797;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  width: 100%;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-appearance: none;
  position: relative;
  transition: 0.3s all;
  font-weight: 400;
}
@media (max-width: 767px) {
  form .app-input {
    padding: 10px;
  }
}
form .app-input:focus {
  outline: none;
  border: 0;
  box-shadow: none;
  border: 1px solid #45008D;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.po-rl {
  position: relative;
}

.lh-0 {
  line-height: 0;
}

.main-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .main-title-wrapper {
    justify-content: center;
  }
}
.main-title-wrapper .space {
  width: 88px;
}

.view-more {
  font-size: 12px;
  font-weight: 500;
  color: #27B500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: 0.3s all;
}
.view-more svg {
  margin-left: 3px;
}
.view-more svg path {
  transition: 0.3s all;
}
.view-more:hover {
  color: #45008D;
}
.view-more:hover svg path {
  fill: #45008D;
}

.main-title {
  text-align: center;
  margin-bottom: 20px;
}
.main-title h2 {
  font-size: 18px;
  line-height: 1.5;
  color: #45008D;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  .main-title h2 {
    font-size: 16px;
  }
}
.main-title h2:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 3px;
  background-color: #45008D;
}

.app-button {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s all;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .app-button {
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .app-button {
    padding: 10px 20px;
  }
}
.app-button:hover {
  background: #45008D;
}

.remember {
  position: relative;
  padding-left: 30px;
}
.remember label {
  cursor: pointer;
  font-size: 16px;
  color: #333333;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .remember label {
    font-size: 14px;
  }
}
.remember a {
  color: #27B500;
}
.remember .checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 22px;
  width: 22px;
  border-radius: 0;
  background-color: transparent;
  border: none;
  border: 1px solid #292929;
}
.remember .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 1px;
  width: 6px;
  height: 14px;
  border: solid #292929;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.remember input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.remember input:checked ~ .checkmark {
  border: 1px solid #292929;
}
.remember input:checked ~ .checkmark:after {
  display: block;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}
header .sub-header {
  border-bottom: 1px solid #d8d8d8;
  padding: 18px 0;
}
@media (max-width: 1399px) {
  header .sub-header {
    padding: 15px 0;
  }
}
@media (max-width: 1199px) {
  header .sub-header {
    padding: 12px 0;
  }
}
@media (max-width: 991px) {
  header .sub-header {
    padding: 10px 0;
  }
}
header .sub-header .sub-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .sub-header .sub-header-inner .left {
  display: flex;
  align-items: center;
  gap: 34px;
  max-width: 33.33%;
  width: 100%;
}
@media (max-width: 991px) {
  header .sub-header .sub-header-inner .left {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left {
    gap: 8px;
    min-width: 50%;
  }
}
header .sub-header .sub-header-inner .left .menu {
  text-align: center;
  cursor: pointer;
}
header .sub-header .sub-header-inner .left .menu .toggler-icon {
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left .menu .toggler-icon {
    margin-bottom: 0;
  }
}
header .sub-header .sub-header-inner .left .menu .toggler-icon span {
  width: 31px;
  height: 4px;
  margin: 0 auto;
  margin-bottom: 4px;
  background: #45008D;
  display: block;
}
@media (max-width: 991px) {
  header .sub-header .sub-header-inner .left .menu .toggler-icon span {
    width: 20px;
    height: 3px;
    margin-bottom: 3px;
  }
}
header .sub-header .sub-header-inner .left .menu .toggler-icon span:last-child {
  margin-bottom: 0;
}
header .sub-header .sub-header-inner .left .menu h6 {
  font-size: 18px;
  font-weight: 500;
  color: #45008D;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left .menu h6 {
    display: none;
  }
}
header .sub-header .sub-header-inner .left .header-breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left .header-breadcrumb ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
header .sub-header .sub-header-inner .left .header-breadcrumb ul li {
  margin-right: 3px;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left .header-breadcrumb ul li {
    margin-right: 3px;
  }
}
header .sub-header .sub-header-inner .left .header-breadcrumb ul li:last-child {
  margin-right: 0;
}
header .sub-header .sub-header-inner .left .header-breadcrumb ul li a {
  font-size: 16px;
  line-height: 1;
  color: #27B500;
  text-transform: uppercase;
  display: inline-block;
}
@media (max-width: 991px) {
  header .sub-header .sub-header-inner .left .header-breadcrumb ul li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left .header-breadcrumb ul li a {
    font-size: 12px;
    display: block;
  }
}
@media (max-width: 575px) {
  header .sub-header .sub-header-inner .left .header-breadcrumb ul li a {
    font-size: 10px;
  }
}
header .sub-header .sub-header-inner .left .header-breadcrumb ul li a.active {
  color: #45008D;
}
header .sub-header .sub-header-inner .left .header-breadcrumb ul li a .divider {
  margin-top: 7px;
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .left .header-breadcrumb ul li a .divider {
    width: 13px;
  }
}
header .sub-header .sub-header-inner .logo {
  max-width: 33.33%;
  width: 100%;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .logo {
    max-width: 50%;
  }
}
header .sub-header .sub-header-inner .logo a {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .logo a {
    justify-content: end;
  }
}
@media (max-width: 1399px) {
  header .sub-header .sub-header-inner .logo a img {
    max-width: 200px;
  }
}
@media (max-width: 1199px) {
  header .sub-header .sub-header-inner .logo a img {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .logo a img {
    max-width: 115px;
  }
}
header .sub-header .sub-header-inner .consultation {
  min-width: 150px;
  max-width: 33.33%;
  width: 100%;
  justify-content: end;
}
header .sub-header .sub-header-inner .consultation a {
  font-size: 16px;
  font-weight: 500;
  color: #45008D;
  transition: 0.3s all;
  display: flex;
}
header .sub-header .sub-header-inner .consultation a:hover {
  color: #27B500;
}
header .sub-header .sub-header-inner .toggle-menu {
  position: fixed;
  left: -700px;
  top: 0;
  background-color: #fff;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  overflow: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 99;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
}
header .sub-header .sub-header-inner .toggle-menu.open {
  opacity: 1;
  visibility: visible;
  left: 0;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header {
  padding: 19px 35px;
  position: relative;
  border-bottom: 1px solid #d8d8d8;
}
@media (max-width: 1399px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header {
    padding: 16px 30px;
  }
}
@media (max-width: 1199px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header {
    padding: 10px 18px;
  }
}
@media (max-width: 1399px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header .logo-icon {
    max-width: 45px;
  }
}
@media (max-width: 991px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header .logo-icon {
    max-width: 35px;
  }
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header .logo-icon {
    max-width: 30px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header .close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  cursor: pointer;
}
@media (max-width: 991px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header .close {
    max-width: 15px;
  }
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-header .close {
    left: 18px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body {
  padding: 40px 32px;
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body {
    padding: 20px 16px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side,
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .right-side {
  width: 50%;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .nav-pills .nav-link {
  padding: 0;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1;
  color: #45008D;
  text-transform: uppercase;
  transition: 0.3s all;
  text-align: start;
  position: relative;
  padding-bottom: 7px;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .nav-pills .nav-link {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .nav-pills .nav-link {
    font-size: 12px;
    margin-bottom: 7px;
    padding-bottom: 5px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .nav-pills .nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #27B500;
  transition: 0.3s all;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .nav-pills .nav-link.active {
  color: #27B500;
  background: transparent;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .nav-pills .nav-link.active:before {
  width: 100%;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list {
    margin-bottom: 15px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list li {
  margin-bottom: 12px;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list li:last-child {
  margin-bottom: 0;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list li a {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #45008D;
  transition: 0.3s all;
  text-transform: uppercase;
  display: flex;
}
@media (max-width: 575px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list li a {
    font-size: 10px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .nav-list li a:hover {
  color: #27B500;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .social-media {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .left-side-bottom .social-media a {
  display: flex;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .tab-content .tab-pane ul li {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .tab-content .tab-pane ul li {
    margin-bottom: 15px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .tab-content .tab-pane ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #27B500;
  text-transform: capitalize;
  white-space: normal;
}
@media (max-width: 575px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .tab-content .tab-pane ul li a {
    font-size: 14px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .menu-insights .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #9b9b9b;
}
@media (max-width: 575px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .menu-insights .title {
    font-size: 14px;
  }
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .menu-insights .menu-insights-card {
  margin-bottom: 8px;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .menu-insights .menu-insights-card img {
  width: 100%;
  max-height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 7px;
}
header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .menu-insights .menu-insights-card h6 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #626262;
}
@media (max-width: 575px) {
  header .sub-header .sub-header-inner .toggle-menu .toggle-menu-body .menu-insights .menu-insights-card h6 {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .home-page .sub-header .sub-header-inner .left {
    gap: 8px;
    min-width: 33.33%;
  }
}
@media (max-width: 767px) {
  .home-page .sub-header .sub-header-inner .logo {
    gap: 8px;
    min-width: 33.33%;
  }
}
@media (max-width: 767px) {
  .home-page .sub-header .sub-header-inner .logo a {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .home-page .sub-header .sub-header-inner .consultation {
    gap: 8px;
    min-width: 33.33%;
  }
}

.main-header {
  padding: 22px 0;
}
@media (max-width: 1399px) {
  .main-header {
    padding: 18px 0;
  }
}
@media (max-width: 1199px) {
  .main-header {
    padding: 15px 0;
  }
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  .main-header {
    padding: 20px 0;
  }
}
.main-header .main-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
}
@media (max-width: 1399px) {
  .main-header .main-header-nav {
    gap: 100px;
  }
}
@media (max-width: 1199px) {
  .main-header .main-header-nav {
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .main-header .main-header-nav {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .main-header .main-header-nav {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
.main-header .main-header-nav .main-header-item .nav-list {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #45008D;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .main-header .main-header-nav .main-header-item .nav-list {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .main-header .main-header-nav .main-header-item .nav-list {
    font-size: 14px;
  }
}
.main-header .main-header-nav .main-header-item .nav-list .icon {
  margin-right: 7px;
}
.main-header .main-header-nav .main-header-item .nav-list .arrow {
  margin-left: 7px;
  transition: 0.3s all;
}
.main-header .main-header-nav .main-header-item .nav-list[aria-expanded=true] .arrow {
  transform: rotate(180deg);
}
.main-header .main-header-nav .main-header-item .dropdown-menu {
  padding: 20px 12px;
  border-radius: 0;
  border: 0;
}
@media (max-width: 767px) {
  .main-header .main-header-nav .main-header-item .dropdown-menu {
    border: 1px solid #45008D;
    padding: 10px;
  }
}
.main-header .main-header-nav .main-header-item .dropdown-menu li .dropdown-item {
  border-bottom: 1px solid #45008D;
  padding: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #27B500;
  transition: 0.3s all;
  text-transform: capitalize;
}
.main-header .main-header-nav .main-header-item .dropdown-menu li .dropdown-item:hover, .main-header .main-header-nav .main-header-item .dropdown-menu li .dropdown-item:active {
  color: #45008D;
  background: transparent;
}
.main-header .main-header-nav .main-header-item .dropdown-menu li .dropdown-item img {
  margin-right: 7px;
}
.main-header .main-header-nav .main-header-item .dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

footer {
  border-top: 1px solid #D8D8D8;
  padding: 24px 0;
}
@media (max-width: 991px) {
  footer {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 14px 0;
  }
}
footer .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .footer-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}
footer .footer-wrapper .social-media {
  display: flex;
  align-items: center;
  gap: 28px;
}
footer .footer-wrapper .social-media a {
  display: flex;
}
footer .footer-wrapper .links {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  footer .footer-wrapper .links {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  footer .footer-wrapper .links {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  footer .footer-wrapper .links {
    gap: 8px;
  }
}
footer .footer-wrapper .links a {
  color: #45008D;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  footer .footer-wrapper .links a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  footer .footer-wrapper .links a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  footer .footer-wrapper .links a {
    font-size: 12px;
  }
}
footer .footer-wrapper .links a:hover {
  color: #27B500;
}
footer .footer-wrapper .copyright p {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #45008D;
}
@media (max-width: 767px) {
  footer .footer-wrapper .copyright p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  footer .footer-wrapper .copyright p {
    font-size: 12px;
  }
}
footer .footer-wrapper .copyright p a {
  color: #45008D;
}
footer .footer-wrapper .copyright p a:hover {
  color: #27B500;
}

.header-section {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .header-section {
    flex-direction: column-reverse;
  }
}

.banner {
  position: relative;
}
.banner .heroBG .swiper-wrapper .swiper-slide {
  line-height: 0;
}
.banner .heroBG .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 590px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .heroThumb-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.banner .heroThumb-container .heroThumb {
  margin-bottom: 34px;
  width: 100%;
  max-width: 1080px;
  margin-left: 0;
}
@media (max-width: 991px) {
  .banner .heroThumb-container .heroThumb {
    padding-bottom: 40px;
  }
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide {
  padding-left: 17px;
  border-left: 1px solid #fff;
  align-self: flex-end;
  cursor: pointer;
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide * {
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide {
    text-align: center;
    padding-left: 0;
    border: 0;
  }
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide .tag {
  background: #fff;
  margin-bottom: 12px;
  padding: 7px;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide h1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide h1 {
    font-size: 16px;
  }
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide .app-button {
  padding: 13px 36px;
  font-size: 14px;
  text-transform: capitalize;
  display: none;
}
@media (max-width: 1199px) {
  .banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide .app-button {
    padding: 10px 25px;
  }
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  padding-left: 0;
  border: 0;
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .tag {
  padding: 10px;
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
@media (max-width: 1199px) {
  .banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active h1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active h1 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active h1 {
    font-size: 20px;
  }
}
.banner .heroThumb-container .heroThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .app-button {
  display: inline-block;
}
.banner .heroThumb-container .heroThumb .swiper-pagination {
  bottom: 0;
}
.banner .heroThumb-container .heroThumb .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
  background: #27B500;
}
.banner .heroThumb-container .heroThumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.inner-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 110px);
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1399px) {
  .inner-banner {
    height: calc(100vh - 92px);
  }
}
@media (max-width: 1199px) {
  .inner-banner {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 991px) {
  .inner-banner {
    height: calc(100vh - 76px);
  }
}
@media (max-width: 991px) {
  .inner-banner {
    height: calc(100vh - 56px);
  }
}
.inner-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.97%, rgba(0, 0, 0, 0.9) 96.61%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.inner-banner .banner-content {
  text-align: center;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 80px;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .inner-banner .banner-content {
    margin-bottom: 70px;
  }
}
.inner-banner .banner-content h4 , .inner-banner .banner-content h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .inner-banner .banner-content h4, .inner-banner .banner-content h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .inner-banner .banner-content h4, .inner-banner .banner-content h1 {
    font-size: 22px;
  }
}
.inner-banner .banner-content p {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 991px) {
  .inner-banner .banner-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .inner-banner .banner-content p {
    font-size: 16px;
  }
}

.services .container {
  padding-top: 20px;
  border-top: 25px solid #F5F5F5;
  border-bottom: 25px solid #F5F5F5;
}
@media (max-width: 575px) {
  .services .container .service-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .services .container .service-card a {
    display: flex;
    align-items: center;
  }
}
.services .container .service-card .icon {
  text-align: center;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 177px;
  transition: 0.3s all;
}
@media (max-width: 1199px) {
  .services .container .service-card .icon {
    height: 150px;
  }
}
@media (max-width: 991px) {
  .services .container .service-card .icon {
    height: 120px;
  }
}
@media (max-width: 575px) {
  .services .container .service-card .icon {
    min-width: 190px;
    height: 135px;
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .services .container .service-card .icon {
    min-width: 170px;
  }
}
.services .container .service-card .icon img {
  transition: 0.3s all;
}
@media (max-width: 1399px) {
  .services .container .service-card .icon img {
    max-width: 90px;
  }
}
@media (max-width: 1199px) {
  .services .container .service-card .icon img {
    max-width: 75px;
  }
}
@media (max-width: 991px) {
  .services .container .service-card .icon img {
    max-width: 60px;
  }
}
@media (max-width: 575px) {
  .services .container .service-card .icon img {
    max-width: 75px;
  }
}
.services .container .service-card .title {
  padding: 15px 10px;
  text-align: center;
}
@media (max-width: 991px) {
  .services .container .service-card .title {
    padding: 10px 5px;
  }
}
@media (max-width: 575px) {
  .services .container .service-card .title {
    text-align: start;
  }
}
.services .container .service-card .title h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: #45008D;
  transition: 0.3s all;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .services .container .service-card .title h2 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .services .container .service-card .title h2 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .services .container .service-card .title h2 {
    font-size: 16px;
  }
}
.services .container .service-card .title p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #626262;
  text-transform: capitalize;
  margin-top: 8px;
}
.services .container .service-card .title p span {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #27B500;
}
.services .container .service-card:hover .icon {
  background: #27B500;
}
.services .container .service-card:hover .icon img {
  filter: brightness(0) invert(1);
}
.services .container .service-card:hover .title h2 {
  color: #27B500;
}

.projects {
  padding-top: 10px;
  padding-bottom: 35px;
}
@media (max-width: 991px) {
  .projects {
    padding-bottom: 25px;
  }
}

.project-card a {
  position: relative;
}
.project-card a:hover .image-wrapper img {
  transform: scale(1.1);
}
.project-card a .tag {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
  padding: 3px 12px;
  color: #fff;
  background: #27B500;
  position: absolute;
  left: 10px;
  top: -8px;
  z-index: 1;
  display: inline-block;
}
.project-card a .image-wrapper {
  padding: 12px 0;
  border: 1px solid #070e00;
  height: 360px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .project-card a .image-wrapper {
    height: 290px;
  }
}
.project-card a .image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.project-card a .title {
  padding: 10px;
  text-align: center;
}
.project-card a .title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #45008D;
  transition: 0.3s all;
  max-width: 235px;
  margin: 0 auto;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .project-card a .title h3 {
    font-size: 16px;
  }
}
.project-card a:hover .title h3 {
  color: #27B500;
}

.testimonials {
  background: #F5F5F5;
  padding: 30px 0;
}
.testimonials .swiper-container {
  position: relative;
}
.testimonials .swiper-container .swiper {
  max-width: 1100px;
}
.testimonials .swiper-container .swiper .swiper-wrapper {
  align-items: center;
}
@media (max-width: 1399px) {
  .testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .testimonial-card {
    padding: 0 40px;
  }
}
.testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .comment {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .comment {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .user .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .user .icon img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .user .content h5 {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonials .swiper-container .swiper .swiper-wrapper .swiper-slide .user .content h6 {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
}

.clients {
  padding: 45px 0;
}
@media (max-width: 991px) {
  .clients {
    padding: 30px 0;
  }
}
.clients .swiper-container {
  position: relative;
}
.clients .swiper-container .swiper {
  max-width: 1000px;
}
.clients .swiper-container .swiper .swiper-wrapper {
  align-items: center;
}
.clients .swiper-container .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #b9b9b9;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 34px;
}
@media (max-width: 991px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 24px;
  }
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.get-in-touch {
  background: #23380b;
  padding: 68px 0;
  text-align: center;
}
.get-in-touch .title h2 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.get-in-touch .title h2:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background-color: #fff;
}
.get-in-touch .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
  color: #fff;
  max-width: 270px;
}
.get-in-touch .title .app-button {
  line-height: 1;
}

.insights .container {
  border-top: 25px solid #F5F5F5;
  padding-top: 20px;
  padding-bottom: 30px;
}
.insights .container .insights-card {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .insights .container .insights-card {
    margin-bottom: 10px;
  }
}
.insights .container .insights-card a {
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .insights .container .insights-card a {
    gap: 12px;
  }
}
.insights .container .insights-card a .image-wrapper {
  display: flex;
}
.insights .container .insights-card a .image-wrapper img {
  width: 350px;
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  .insights .container .insights-card a .image-wrapper img {
    width: 300px;
    height: 205px;
  }
}
@media (max-width: 575px) {
  .insights .container .insights-card a .image-wrapper img {
    width: 175px;
    height: 125px;
  }
}
.insights .container .insights-card a .content .tag {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 10px;
  padding: 2px 7px;
  text-transform: uppercase;
  background: #27B500;
  color: #fff;
  display: inline-block;
}
.insights .container .insights-card a .content h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 217px;
  color: #626262;
}
@media (max-width: 991px) {
  .insights .container .insights-card a .content h4 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .insights .container .insights-card a .content h4 {
    font-size: 14px;
  }
}
.insights .container .insights-card a .content .break {
  display: flex;
  width: 38px;
  height: 4px;
  background: #45008D;
}

.service-wrapper .services {
  padding: 50px 0 30px 0;
}
@media (max-width: 767px) {
  .service-wrapper .services {
    padding: 30px 0;
  }
}
.service-wrapper .services .container {
  padding-top: 0;
  border: 0;
}

.why-dablanco {
  padding: 45px 0 30px 0;
}
@media (max-width: 767px) {
  .why-dablanco {
    padding: 30px 0 15px 0;
  }
}
.why-dablanco .main-title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .why-dablanco .main-title {
    margin-bottom: 20px;
  }
}
.why-dablanco .why-dablanco-card {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .why-dablanco .why-dablanco-card {
    padding: 0 30px;
  }
}
.why-dablanco .why-dablanco-card img {
  margin-bottom: 10px;
}
.why-dablanco .why-dablanco-card h3 {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 10px;
  color: #45008D;
  text-transform: capitalize;
}
.why-dablanco .why-dablanco-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #626262;
  text-transform: capitalize;
}

.service-content-wrapper {
  padding: 45px 0;
}
@media (max-width: 767px) {
  .service-content-wrapper {
    padding: 30px 0;
  }
}
.service-content-wrapper .service-content-wrapper-inner {
  padding: 0 40px;
}
@media (max-width: 1399px) {
  .service-content-wrapper .service-content-wrapper-inner {
    padding: 0;
  }
}
.service-content-wrapper .service-content-wrapper-inner .image {
  line-height: 0;
}
.service-content-wrapper .service-content-wrapper-inner .content {
  margin-top: 32px;
}
@media (max-width: 1199px) {
  .service-content-wrapper .service-content-wrapper-inner .content {
    margin-top: 15px;
  }
}
.service-content-wrapper .service-content-wrapper-inner .content h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: capitalize;
  color: #45008D;
}
@media (max-width: 1399px) {
  .service-content-wrapper .service-content-wrapper-inner .content h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .service-content-wrapper .service-content-wrapper-inner .content h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .service-content-wrapper .service-content-wrapper-inner .content h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .service-content-wrapper .service-content-wrapper-inner .content h2 {
    font-size: 28px;
  }
}
.service-content-wrapper .service-content-wrapper-inner .content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #626262;
}
@media (max-width: 1199px) {
  .service-content-wrapper .service-content-wrapper-inner .content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-content-wrapper .service-content-wrapper-inner .content p {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.website-services {
  padding-bottom: 45px;
}
@media (max-width: 767px) {
  .website-services {
    padding-bottom: 30px;
  }
}
.website-services .accordion .accordion-item {
  border: 0;
}
.website-services .accordion .accordion-item .accordion-header .accordion-button {
  background: #45008D;
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  padding: 5px 20px;
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
@media (max-width: 767px) {
  .website-services .accordion .accordion-item .accordion-header .accordion-button {
    padding: 3px 15px;
    font-size: 18px;
  }
}
.website-services .accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.website-services .accordion .accordion-item .accordion-header .accordion-button span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .website-services .accordion .accordion-item .accordion-header .accordion-button span {
    width: 20px;
    height: 20px;
  }
}
.website-services .accordion .accordion-item .accordion-header .accordion-button span:after, .website-services .accordion .accordion-item .accordion-header .accordion-button span:before {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: 0.3s all;
}
.website-services .accordion .accordion-item .accordion-header .accordion-button span:after {
  width: 100%;
  height: 4px;
}
.website-services .accordion .accordion-item .accordion-header .accordion-button span::before {
  width: 4px;
  height: 0;
}
.website-services .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=false] span:before {
  height: 100%;
}
.website-services .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
@media (max-width: 767px) {
  .website-services .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 5px 15px;
  }
}
.website-services .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 34px 20px;
}
@media (max-width: 1199px) {
  .website-services .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 20px 15px;
  }
}
.website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li {
  margin-bottom: 28px;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 1199px) {
  .website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li {
    margin-bottom: 10px;
  }
}
.website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li:last-child {
  margin-bottom: 0;
}
.website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li:before {
  content: "";
  width: 9.7px;
  height: 9.7px;
  background: #45008D;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 6px;
  transform: rotate(45deg);
}
.website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  color: #45008D;
}
@media (max-width: 767px) {
  .website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li h6 {
    font-size: 16px;
  }
}
.website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
  color: #626262;
}
@media (max-width: 767px) {
  .website-services .accordion .accordion-item .accordion-collapse .accordion-body ul li p {
    font-size: 16px;
  }
}

.all-project {
  padding: 45px 0;
}
@media (max-width: 767px) {
  .all-project {
    padding: 30px 0;
  }
}
.all-project .nav-pills {
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .all-project .nav-pills {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .all-project .nav-pills {
    gap: 4px;
  }
}
.all-project .nav-pills .nav-item .nav-link {
  background: transparent;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
  color: #45008D;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  width: 100px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .all-project .nav-pills .nav-item .nav-link {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .all-project .nav-pills .nav-item .nav-link {
    width: 66px;
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .all-project .nav-pills .nav-item .nav-link {
    font-size: 10px;
    width: 55px;
  }
}
.all-project .nav-pills .nav-item .nav-link svg {
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .all-project .nav-pills .nav-item .nav-link svg {
    max-width: 30px;
  }
}
.all-project .nav-pills .nav-item .nav-link svg path {
  transition: 0.3s all;
}
.all-project .nav-pills .nav-item .nav-link.active {
  color: #27B500;
}
.all-project .nav-pills .nav-item .nav-link.active svg path {
  fill: #27B500;
}

.about-project {
  background: #F5F5F5;
  padding: 35px 0;
}
@media (max-width: 767px) {
  .about-project {
    padding: 30px 0;
  }
}

.similar-project {
  padding: 45px 0 55px 0;
  background: #F5F5F5;
}
@media (max-width: 767px) {
  .similar-project {
    padding: 30px 0;
  }
}
.similar-project .swiper {
  padding-bottom: 20px;
}
.similar-project .swiper .swiper-wrapper .swiper-slide {
  padding-top: 8px;
}
.similar-project .swiper .swiper-pagination {
  bottom: 0;
}
.similar-project .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2px;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.4);
}
.similar-project .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}

.project-gallery {
  padding: 45px 0;
}
@media (max-width: 767px) {
  .project-gallery {
    padding: 30px 0;
  }
}
.project-gallery .container {
  padding: 0 35px;
}
.project-gallery .project-gallery-card {
  height: 335px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .project-gallery .project-gallery-card {
    height: 280px;
  }
}
.project-gallery .project-gallery-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-project {
  background: #F5F5F5;
}
.about-project .main-title h2:before {
  width: 70px;
}
.about-project .project-table {
  padding: 0 52px;
  border-left: 1px solid #45008D;
}
@media (max-width: 767px) {
  .about-project .project-table {
    padding: 0 0 0 30px;
  }
}
@media (max-width: 575px) {
  .about-project .project-table {
    padding: 0 0 0 20px;
  }
}
.about-project .project-table ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .about-project .project-table ul li {
    font-size: 14px;
  }
}
.about-project .project-details {
  padding-left: 52px;
}
@media (max-width: 767px) {
  .about-project .project-details {
    padding-left: 30px;
  }
}
@media (max-width: 575px) {
  .about-project .project-details {
    padding-left: 20px;
  }
}
.about-project .project-details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .about-project .project-details p {
    font-size: 14px;
  }
}

.facts {
  padding: 62px 0 78px 0;
  background: #F5F5F5;
}
@media (max-width: 1199px) {
  .facts {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .facts {
    padding: 30px 0;
  }
}
.facts .main-title {
  margin-bottom: 0;
}
.facts .main-title h2:before {
  width: 100px;
}
.facts .main-title p {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  color: #626262;
  max-width: 930px;
  margin: 0 auto;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .facts .main-title p {
    font-size: 16px;
  }
}

.project-content-wrapper {
  padding: 45px 0;
}
@media (max-width: 767px) {
  .project-content-wrapper {
    padding: 30px 0;
  }
}
.project-content-wrapper .first .content-wrapper {
  max-width: 545px;
}
@media (max-width: 991px) {
  .project-content-wrapper .first .content-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .project-content-wrapper .second {
    flex-direction: column-reverse;
  }
}
.project-content-wrapper .second .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 1199px) {
  .project-content-wrapper .second .content-wrapper {
    padding: 0;
  }
}
.project-content-wrapper .image-wrapper {
  line-height: 0;
}
.project-content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-content-wrapper .content-wrapper {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .project-content-wrapper .content-wrapper {
    margin-top: 0;
  }
}
.project-content-wrapper .content-wrapper h6 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #45008D;
}
@media (max-width: 1199px) {
  .project-content-wrapper .content-wrapper h6 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .project-content-wrapper .content-wrapper h6 {
    font-size: 20px;
  }
}
.project-content-wrapper .content-wrapper p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 12px;
  color: #626262;
}
@media (max-width: 1199px) {
  .project-content-wrapper .content-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .project-content-wrapper .content-wrapper p {
    font-size: 15px;
  }
}

.project-details-pagination {
  padding: 36px 0;
  border-top: 1px solid rgba(151, 151, 151, 0.5019607843);
}
@media (max-width: 1199px) {
  .project-details-pagination {
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  .project-details-pagination {
    padding: 20px 0;
  }
}
.project-details-pagination .project-details-pagination-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-details-pagination .project-details-pagination-inner h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #45008D;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .project-details-pagination .project-details-pagination-inner h2 {
    font-size: 18px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .project-details-pagination .project-details-pagination-inner h2 {
    font-size: 16px;
  }
}
.project-details-pagination .project-details-pagination-inner p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #45008D;
}
@media (max-width: 991px) {
  .project-details-pagination .project-details-pagination-inner p {
    display: none;
  }
}
.project-details-pagination .project-details-pagination-inner .next {
  text-align: end;
}
.project-details-pagination .project-details-pagination-inner .next h2 {
  justify-content: end;
}
.project-details-pagination .project-details-pagination-inner .next h2 img {
  transform: rotate(180deg);
  margin-left: 12px;
}
.project-details-pagination .project-details-pagination-inner .prev h2 img {
  margin-right: 12px;
}

.product-wrapper {
  padding: 35px 0 120px 0;
  background: #F5F5F5;
}
@media (max-width: 991px) {
  .product-wrapper {
    padding: 35px 0;
  }
}
@media (max-width: 767px) {
  .product-wrapper {
    padding: 30px 0;
  }
}

.product-card {
  background: #fff;
  height: 100%;
}
.product-card .image {
  height: 375px;
}
@media (max-width: 1199px) {
  .product-card .image {
    height: 275px;
  }
}
.product-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card .content {
  padding: 20px 24px;
}
@media (max-width: 1199px) {
  .product-card .content {
    padding: 15px;
  }
}
.product-card .content h2 {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  color: #45008D;
  margin-bottom: 12px;
}
.product-card .content p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #626262;
}

.about-product {
  padding: 25px 0;
}
.about-product .image {
  line-height: 0;
}
.about-product .content h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #45008D;
}
@media (max-width: 1199px) {
  .about-product .content h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
.about-product .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #626262;
}
@media (max-width: 1199px) {
  .about-product .content p {
    margin-bottom: 8px;
  }
}
.about-product .content .app-button {
  background: #27B500;
  margin-top: 8px;
  font-size: 14px;
  padding: 10px 24px;
}
@media (max-width: 767px) {
  .about-product .content .app-button {
    padding: 8px 20px;
  }
}
.about-product .content .app-button:hover {
  background: #45008D;
}

.features-benefits {
  padding-top: 25px;
}
@media (max-width: 767px) {
  .features-benefits {
    padding-top: 10px;
  }
}
.features-benefits .nav-pills .nav-link {
  padding: 16px 10px 16px 45px;
  text-align: start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #45008D;
  position: relative;
  border-radius: 0;
  background: transparent;
  margin-bottom: 28px;
}
@media (max-width: 1199px) {
  .features-benefits .nav-pills .nav-link {
    padding: 16px 10px 16px 35px;
  }
}
@media (max-width: 991px) {
  .features-benefits .nav-pills .nav-link {
    margin-bottom: 0;
  }
}
.features-benefits .nav-pills .nav-link:before {
  content: "";
  position: absolute;
  top: 23px;
  left: 12px;
  height: 2px;
  width: 24px;
  background: #45008D;
}
@media (max-width: 1199px) {
  .features-benefits .nav-pills .nav-link:before {
    width: 15px;
  }
}
.features-benefits .nav-pills .nav-link.active {
  color: #fff;
  background: #27B500;
}
.features-benefits .nav-pills .nav-link.active:before {
  background: #fff;
}
.features-benefits .tab-content {
  background: #F5F5F5;
  padding: 38px 90px 38px 58px;
  height: 100%;
}
@media (max-width: 991px) {
  .features-benefits .tab-content {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .features-benefits .tab-content {
    padding: 15px;
  }
}
.features-benefits .tab-content .tab-pane p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-left: 26px;
  color: #626262;
  position: relative;
}
@media (max-width: 991px) {
  .features-benefits .tab-content .tab-pane p {
    margin-bottom: 10px;
  }
}
.features-benefits .tab-content .tab-pane p:before {
  content: "";
  width: 9.7px;
  height: 9.7px;
  background: #45008d;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.features-benefits .tab-content .tab-pane .app-button {
  background: #27B500;
  margin-top: 8px;
  font-size: 14px;
  padding: 10px 24px;
  margin-left: 26px;
}
@media (max-width: 767px) {
  .features-benefits .tab-content .tab-pane .app-button {
    padding: 8px 20px;
  }
}
.features-benefits .tab-content .tab-pane .app-button:hover {
  background: #45008D;
}
.features-benefits .features-accordion .accordion-item {
  border: 0;
}
.features-benefits .features-accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #45008D;
  background: #fff;
  position: relative;
}
@media (max-width: 480px) {
  .features-benefits .features-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
  }
}
.features-benefits .features-accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
  color: #fff;
  background: #27B500;
}
.features-benefits .features-accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true]::before {
  background: #fff;
}
.features-benefits .features-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.features-benefits .features-accordion .accordion-item .accordion-header .accordion-button::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 24px;
  background: #45008D;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.features-benefits .features-accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.features-benefits .features-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 10px 0;
  position: relative;
}
.features-benefits .features-accordion .accordion-item .accordion-collapse .accordion-body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #626262;
  padding-left: 25px;
}
.features-benefits .features-accordion .accordion-item .accordion-collapse .accordion-body p:before {
  content: "";
  width: 9.7px;
  height: 9.7px;
  background: #45008D;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}

.faq {
  padding: 25px 0;
}
.faq .accordion .accordion-item {
  border: 0;
  border-top: 1px solid #45008D;
  border-bottom: 1px solid #45008D;
  margin-bottom: 27px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item {
    margin-bottom: 12px;
  }
}
.faq .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq .accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 26px 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #45008D;
}
@media (max-width: 991px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 15px 12px;
  }
}
@media (max-width: 575px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 10px;
  }
}
.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../images/accord-arrow.svg);
  background-position: center;
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button::after {
    background-size: 16px;
  }
}
.faq .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 5px 24px 56px;
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0 12px 12px 12px;
  }
}
@media (max-width: 575px) {
  .faq .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0 10px 10px 10px;
  }
}
.faq .accordion .accordion-item .accordion-collapse .accordion-body p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #626262;
}
@media (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .faq .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 14px;
  }
}

.contact-form {
  padding: 40px 0 28px 0;
}
@media (max-width: 575px) {
  .contact-form {
    padding: 25px 0;
  }
}
.contact-form .app-button {
  background: #27B500;
  width: 100%;
  max-width: 170px;
  margin-top: 30px;
}
.contact-form .app-button:hover {
  background: #45008D;
}

.news {
  padding: 30px 0;
}

.news-card a {
  position: relative;
}
.news-card a:hover .image-wrapper img {
  transform: scale(1.1);
}
.news-card a .tag {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
  padding: 3px 12px;
  color: #fff;
  background: #27B500;
  position: absolute;
  left: 10px;
  top: -8px;
  z-index: 1;
}
.news-card a .image-wrapper {
  padding: 12px 0;
  border: 1px solid #070e00;
  height: 360px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .news-card a .image-wrapper {
    height: 290px;
  }
}
.news-card a .image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.news-card a .title {
  padding: 10px;
}
.news-card a .title h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #27B500;
}
@media (max-width: 991px) {
  .news-card a .title h4 {
    font-size: 16px;
  }
}
.news-card a .title h4 span {
  font-weight: 400;
  font-style: italic;
  display: inline-block;
}
.news-card a .title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #45008D;
  transition: 0.3s all;
  max-width: 360px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .news-card a .title h3 {
    font-size: 16px;
  }
}

.news-details-wrapper .banner-content {
  max-width: 790px;
}
.news-details-wrapper .banner-content p {
  text-transform: uppercase;
}
.news-details-wrapper .project-details-pagination {
  border-color: #45008D;
}

.news-details {
  padding: 45px 0 30px 0;
}
@media (max-width: 991px) {
  .news-details {
    padding: 30px 0;
  }
}
.news-details p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 12px !important;
  color: #626262;
  max-width: 740px;
  margin: 0 auto;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .news-details p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .news-details p {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.news-details p:last-child {
  margin-bottom: 0;
}
.news-details p.small {
  font-size: 14px;
}
.news-details img {
  margin: 12px 0;
}
@media (max-width: 767px) {
  .news-details img {
    margin: 5px 0;
  }
}

.news-info {
  padding: 48px 0 24px 0;
}
@media (max-width: 991px) {
  .news-info {
    padding: 24px 0 24px 0;
  }
}
.news-info .title h2 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #45008D;
}
@media (max-width: 1399px) {
  .news-info .title h2 {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  .news-info .title h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .news-info .title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .news-info .title h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.news-info .title p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #626262;
}
@media (max-width: 991px) {
  .news-info .title p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .news-info .title p {
    font-size: 16px;
  }
}

.high-level-support {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .high-level-support {
    padding-bottom: 24px;
  }
}
.high-level-support .content h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #45008D;
}
.high-level-support .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #626262;
  max-width: 1240px;
}

.our-story {
  padding: 24px;
  background: #F5F5F5;
}
.our-story h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
  color: #45008D;
}
@media (max-width: 1399px) {
  .our-story h2 {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  .our-story h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .our-story h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .our-story h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.our-story p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #626262;
}
@media (max-width: 767px) {
  .our-story p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.our-story p:last-child {
  margin-bottom: 0;
}

.support {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .support {
    padding-top: 25px;
  }
}
.support .main-title {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .support .main-title {
    margin-bottom: 15px;
  }
}
.support h4 {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
  color: #45008D;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .support h4 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 0;
  }
}
.support .accordion .accordion-item {
  border: 0;
}
.support .accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 12px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #45008D;
}
@media (max-width: 767px) {
  .support .accordion .accordion-item .accordion-header .accordion-button {
    padding: 8px;
    padding-left: 0;
  }
}
.support .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.support .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../images/accord-arrow.svg);
  background-position: center;
}
@media (max-width: 767px) {
  .support .accordion .accordion-item .accordion-header .accordion-button::after {
    background-size: 16px;
  }
}
.support .accordion .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .support .accordion .accordion-item .accordion-collapse .accordion-body {
    padding-left: 0;
  }
}
.support .accordion .accordion-item .accordion-collapse .accordion-body p {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: #626262;
}