@charset "UTF-8";

:root {
  /* default */
  --white: #fff;
  --black: #000;

  /* new-var */
  --primary: #0751a5;
  --secondary: #4d4d4d;
  --facebook: #3a589b;
  --linkdin: #007bb6;
  --grey: #f5f7ff;
  --dark-900: #060606;

  --font-primary: 'Poppins', sans-serif;

  --h1: clamp(32px, 2.88vw, 46px);
  --h2: clamp(28px, 2.25vw, 36px);
  --h3: clamp(22px, 1.75vw, 28px);
  --h4: clamp(20px, 1.5vw, 24px);
  --h5: clamp(18px, 1.25vw, 20px);
  --h6: clamp(16px, 1.13vw, 18px);

  --base: clamp(16px, 1vw, 16px);
  --text-md: clamp(17px, 1.13vw, 18px);
  --text-xs: 14px;

  --transition: all 0.3s ease-in-out;

}

/* CSS Document */

/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none;
  /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--base);
  line-height: 1.666;
  color: var(--grey-900);
  font-weight: 400;
  background: var(--base);
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-color: var(--white) var(--primary);
  scrollbar-width: thin;
}

body.pause {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--primary);
}

a {
  outline: none;
  text-decoration: none;
  color: var(--black);
}

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

.btn:focus {
  color: var(--black);
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: var(--grey-900);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

p+p {
  padding-top: 15px;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-dropdown input {
  -webkit-appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--secondary);
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: var(--secondary);
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

.row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
}

/*==============================================================
	Custom Style
==============================================================*/

.section {
  position: relative;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}

.h1 {
  font-size: var(--h1);
  line-height: 1.173;
}

.h2 {
  font-size: var(--h2);
  line-height: 1.277;
}

.h3 {
  font-size: var(--h3);
  line-height: 1.357;
}

.h4 {
  font-size: var(--h4);
  line-height: 1.416;
}

.h5 {
  font-size: var(--h5);
  line-height: 1.5;
}

.h6 {
  font-size: var(--h6);
  line-height: 1.55;
}

.text-base {
  font-size: var(--base);
  line-height: 1.625;
}

.text-md {
  font-size: var(--text-md);
  line-height: 1.555;
}

.text-xs {
  font-size: var(--text-xs);
  line-height: 1.714;
}

/* space */
.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.px-60 {
  padding-left: clamp(10px, 3.125vw, 60px);
  padding-right: clamp(10px, 3.125vw, 60px);
}

.row-gap-30 {
  row-gap: 30px;
}

/* space */

:is(.img-cover, .img-contain) {
  position: relative;
  padding-bottom: 100%;
}

:is(.img-cover, .img-contain) :is(img, video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain :is(img, video, iframe) {
  object-fit: contain;
}

.bullet>ul li {
  padding-left: 25px;
  position: relative;
}

.bullet>ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  left: 5px;
  top: 10px;
  background: var(--primary);
}

.bullet>ol {
  counter-reset: item 0;
}

.bullet>ol li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.bullet>ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item 1;
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  color: var(--primary);
}

.bullet>ol li ol {
  margin-top: 12px;
}

.bullet>ol li ol li {
  padding-left: 0;
}

.bullet>ol li ol li:before {
  position: relative;
  display: inline;
}

.bullet>ol li ol ol {
  padding-left: 20px;
}

/*==============================================================
	Button Style
==============================================================*/
.btn {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  background: var(--primary);
  border-radius: 3px;
  padding: 17px 21px;
  transition: var(--transition);
  box-shadow: none;
  outline: none;
  text-transform: capitalize;
  border: 2px solid transparent;
}

.btn.btn-md {
  font-size: 18px;
  padding: 14px 26px;
  text-transform: initial;
}

.btn:is(:hover, :focus, :active, ) {
  color: var(--white);
  background: var(--secondary);
}

.btn.white {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}

.btn.white:is(:hover, :focus, :active) {
  color: var(--white);
  background: transparent;
}

.btn.white-outline {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.btn.white-outline:is(:hover, :focus, :active) {
  color: var(--primary);
  background: var(--white);
}

.btn.btn-blue {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.btn.btn-blue:is(:hover, :focus, :active) {
  color: var(--primary);
  background: var(--white);
}

.btn.btn-blue-gradient {
  background: linear-gradient(264deg, rgba(8, 79, 160, 1) 0%, rgba(12, 117, 236, 1) 100%);
  border-radius: 0;
  border: 0;
}

.btn-link {
  display: inline-flex;
  font-size: clamp(16px, 1.13vw, 18px);
  line-height: 1;
  font-weight: 500;
  color: var(--primary);
  padding: 7px 0;
  position: relative;
  text-decoration: none;
}

.btn-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
}

/* .btn-link:hover::after {
  width: 100%;
} */

.btn-link.btn-white {
  color: var(--white);
}

/*==============================================================
	Common Css 
==============================================================*/

/* === header === */
.header-wrap {
  position: relative;
  z-index: 999;
}

header {
  position: relative;
  z-index: 1;
}

.footer-top {
  padding: 17px 0;
  background: var(--primary);
}

header .footer-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
}

header .contact-info {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

header .contact-info li {
  position: relative;
  display: inline-flex;
}

header .contact-info li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 1px;
  background: var(--white);
  opacity: 0.1;
}

header .contact-info li a {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: var(--white);
  transition: var(--transition);
}

header .social-call {
  display: inline-flex;
  column-gap: 44px;
  position: relative;
}

header .social-call ul {
  display: inline-flex;
  align-items: center;
  column-gap: 14px;
  position: relative;
}

header .social-call ul li {
  display: inline-flex;
}

header .social-call ul li a {
  display: inline-flex;
  color: var(--white);
}

header .social-call .head-call {
  font-size: var(--base);
  line-height: 1;
  color: var(--white);
}

header .logo {
  display: inline-flex;
}

header .logo a {
  display: inline-flex;
  transition: var(--transition);
}

header .logo a img {
  width: 100%;
}

header .footer-bottom {
  padding: 16px 0;
}

header .footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-menu .menu>ul>li>a {
  /* font-size: 22px; */
  line-height: 1;
  font-weight: 400;
  color: var(--dark-900);
  position: relative;
}

header .header-menu .menu li:is(.urrent-page-ancestor, .current-menu-item, .current-menu-parent, .current-menu-ancestor, .current-page-parent, .current_page_parent, .current_page_ancestor)> :is(a, .menu-arrow) {
  font-weight: 600;
  color: var(--primary);
}

header .header-menu .menu li:hover>a::after,
header .header-menu .menu li:is(.urrent-page-ancestor, .current-menu-item, .current-menu-parent, .current-menu-ancestor, .current-page-parent, .current_page_parent, .current_page_ancestor)>a::after {
  width: 100%;
}

header .header-menu .menu li:hover> :is(a, .menu-arrow) {
  color: var(--primary);
}

@media(min-width:1025px) {
  .menu-toggle {
    display: none;
  }

  header .logo a {
    max-width: clamp(140px, 10.56vw, 169px);
  }

  header .header-menu .menu>ul {
    display: inline-flex;
    align-items: center;
    column-gap: clamp(20px, 3.88vw, 62px);
  }

  header .header-menu .menu>ul>li {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    position: relative;
    padding: 20px 0;
  }

  header .header-menu .menu>ul>li>a {
    font-size: clamp(18px, 1.38vw, 22px);
  }

  header .header-menu .menu>ul>li>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--primary);
    padding: 10px;
    border-radius: 6px;
    transition: var(--transition);
    transform: scaleY(0);
    transform-origin: center top;
    overflow: auto;
  }

  header .header-menu .menu>ul>li:hover>.sub-menu {
    transform: scale(1);
  }

  header .header-menu .menu>ul>li>.sub-menu li {
    padding: 5px 0;
  }

  header .header-menu .menu>ul>li>.sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  header .header-menu .menu>ul>li>.sub-menu a {
    display: block;
    font-size: 16px;
    line-height: 1;
    padding: 8px 0;
    color: var(--white);
  }

  header .header-menu .menu>ul>li:hover>.sub-menu a,
  header .header-menu .menu>ul>li>.sub-menu a:hover {
    color: var(--white);
  }

  header .header-menu .menu>ul>li>a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
  }

  header .overlay {
    display: none;
  }
}

@media(max-width:1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle button {
    display: inline-flex;
    background: transparent;
    border: 0;
    color: var(--secondary);
  }

  header .logo a {
    max-width: 100px;
  }

  header .footer-bottom {
    padding: 12px 0;
  }

  header .header-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--white);
    width: 320px;
    padding: 70px 15px 20px;
    z-index: 2;
    transition: var(--transition);
  }

  header .header-menu:not(.menu-open) {
    right: -320px;
  }

  header .header-menu .menu-toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 15px 10px;
    justify-content: flex-end;
  }

  header .header-menu .menu-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  header .header-menu .menu li {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  header .header-menu .menu li>a {
    display: block;
    font-size: 16px;
    line-height: 1;
    padding: 17px 0;
  }

  header .header-menu .menu .sub-menu {
    padding: 0 8px;
    display: none;
  }

  header .header-menu .menu-arrow .icon {
    transition: var(--transition);
  }

  header .header-menu .menu-arrow.active .icon {
    transform: rotate(180deg);
  }

  header .overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0.7;
    z-index: 1;
    transition: var(--transition);
  }

  header .overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
  }
}

/* === header === */

/* === footer === */
.footer-wrap {
  overflow: hidden;
  padding: clamp(40px, 6.81vw, 109px) 0 0;
  background: var(--white);
}

.block-about {
  color: var(--secondary);
}

.footer-wrap .logo {
  display: inline-flex;
  padding-bottom: 28px;
}

.footer-wrap .logo a {
  display: inline-flex;
  width: clamp(100px, 10.25vw, 164px);
  transition: var(--transition);
}

.footer-wrap .logo a img {
  width: 100%;
}

.footer-wrap .block-about {
  margin: 0 auto;
}

.footer-wrap .block-about p {
  max-width: 820px;
}

.footer-title {
  letter-spacing: -0.025em;
  color: var(--primary);
  padding-bottom: clamp(20px, 1.75vw, 28px);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin: 0 -12px;
}

.footer-menu li {
  width: 100%;
  padding: 0 12px;
}

.footer-menu li a {
  display: inline-flex;
  align-items: flex-start;
  column-gap: 16px;
  color: var(--secondary);
  word-break: break-all;
}

.footer-menu li a .icon-box {
  width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--primary);
}

.footer-menu li a .icon {
  flex-shrink: 0;
}

footer .follow-us {
  padding: 24px 0 30px;
  display: flex;
  align-items: center;
  column-gap: 12px;
  justify-content: center;
}

footer .follow-us h3 {
  padding-bottom: 0;
}

footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
}

footer .footer-social li {
  display: inline-flex;
}

footer .footer-social li a {
  color: var(--white);
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  border-radius: 100%;
}

footer .footer-social li a.facebook {
  background: var(--facebook);
}

footer .footer-social li a.linkedin {
  background: var(--linkdin);
}

footer .copyright {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  row-gap: 10px;
  color: var(--secondary);
  padding: 14px 0 26px;
  border-top: 1px solid #dcdbe1;
}

footer .copyright p {
  margin: 0;
  letter-spacing: 0.025em;
  padding: 0;
}

footer .copyright strong {
  font-weight: 500;
}

footer .copyright a {
  color: currentColor;
  transition: var(--transition);
}

footer .copyright a:hover {
  color: var(--primary);
}

/* === footer === */
/* === banner === */
.hero-banner {
  overflow: hidden;
  position: relative;
  padding: 152px 0 177px;
  background: no-repeat center / cover;
}

.hero-banner .shape {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.hero-banner .shape img {
  width: 100%;
  display: inline-flex;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0.6;
}

.hero-banner .banner-info {
  position: relative;
  max-width: 854px;
  color: var(--white);
  z-index: 1;
}

.hero-banner .banner-title {
  font-weight: 500;
  padding-bottom: 20px;
}

.hero-banner .sub-title {
  display: inline-flex;
  padding: 12px 20px;
  color: var(--primary);
  background: var(--white);
  font-size: clamp(18px, 1.88vw, 30px);
  line-height: 1;
}

.hero-banner .sub-text {
  padding-top: 14px;
}

.hero-banner .btn-wrap {
  padding-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-banner .btn-link-wrap {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-banner .goto-section {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  color: var(--white);
  z-index: 2;
  background: transparent;
  border: 0;
  width: clamp(60px, 5.31vw, 102px);
  height: clamp(60px, 5.31vw, 102px);
  margin: 0 auto;
}

.hero-banner .goto-section .icon {
  width: clamp(60px, 5.31vw, 102px);
  height: auto;
}

.inner-banner {
  text-align: center;
  position: relative;
  padding: clamp(40px, 9.167vw, 176px) 0;
  background: no-repeat center / cover;
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 81, 165, 0.9999999999999999) 0%, rgba(6, 79, 161, 0.9999999999999999) 16%, rgba(0, 59, 128, 0.20788021192107928) 99%, rgba(0, 59, 128, 0.2) 100%);
}

.inner-banner .container {
  position: relative;
  z-index: 1;
}

.inner-banner h1 {
  text-transform: capitalize;
  color: var(--white);
}

.inner-banner nav {
  margin: 0;
  padding-top: clamp(10px, 1.563vw, 30px);
}

.inner-banner nav ol {
  margin: 0;
  justify-content: center;
  color: var(--white);
}

.inner-banner nav ol li.active,
.inner-banner nav ol li {
  color: var(--white);
}

.inner-banner nav ol li a {
  color: currentColor;
}

.inner-banner nav ol .breadcrumb-item+.breadcrumb-item::before {
  color: currentColor;
}

/* === banner === */

/* === home page === */
.home-service {
  overflow: hidden;
  padding-bottom: 100px;
}

.content-image {
  padding: 3vw 0;
  position: relative;
}

.content-image>.shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  text-align: left;
}

.content-image>.shape img {
  height: 100%;
  width: auto;
}

.content-image .content-box {
  font-weight: 500;
  color: var(--secondary);
  padding-left: 100px;
}

.content-image .content-box h2 {
  font-size: var(--h2);
  line-height: 1.27;
  color: var(--primary);
  padding-bottom: 16px;
}

.content-image .content-box p+p {
  padding-top: 23px;
}

.content-image .content-box ul {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.content-image .content-box ul:not(:first-child) {
  padding-top: 5px;
}

.content-image .content-box ul:not(:last-child) {
  padding-bottom: 16px;
}

.content-image .content-box ul li {
  padding-left: 25px;
  background: url('../images/icons/check-bullet.svg') no-repeat top left / 22px;
}

.content-image .content-box ul li::before {
  display: none;
}

.content-image .content-box ul.blue-tick {
  row-gap: 7px;
}

.content-image .content-box ul.blue-tick:first-child {
  padding-top: 17px;
}

.content-image .content-box ul.blue-tick li {
  font-size: 20px;
  padding-left: 50px;
  background: url('../images/icons/round-check-bullet 1.svg') no-repeat top left / 30px;
}

.content-image .content-box .btn-wrap {
  padding-top: 25px;
}

.content-image .image-box {
  position: relative;
  z-index: 1;
  padding: 98px 0 98px 98px;
}

.content-image .image-box .image {
  border-radius: 20px;
  transform: skewY(-2deg);
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  object-fit: cover;
}

.content-image .image-box .image img {
  width: 100%;
}

.content-image .image-box .shape {
  position: absolute;
  left: 2%;
  bottom: 1.5%;
  width: 268px;
  height: auto;
  z-index: -1;
}

.content-image .content-box .info {
  font-size: 24px;
  line-height: 1.666;
  font-weight: 500;
  color: var(--black);
}

.content-image .content-box .icon-list>ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0 -10px;
  row-gap: 20px;
}

.content-image .content-box .icon-list>ul>li {
  padding: 0 10px;
  width: 25%;
  background: transparent;
}

.content-image .content-box .icon-list>ul>li .icon-box .icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 100%;
  padding: 8px;
  margin: 0 auto;
}

.content-image .content-box .icon-list>ul>li .icon-box h3 {
  font-size: var(--base);
  color: var(--secondary);
  font-weight: 500;
  padding-top: 12px;
  text-align: center;
}

.content-image.reverse .row {
  flex-direction: row-reverse;
}

.content-image.reverse>.shape {
  text-align: right;
  left: initial;
  right: 0;
}

.content-image.reverse .image-box {
  padding: 98px 98px 98px 0;
}

.content-image.reverse .image-box .image {
  transform: skewY(2deg);
}

.content-image.reverse .content-box {
  padding: 0 100px 0 0;
}

.content-image.reverse .image-box .shape {
  left: auto;
  right: 2%;
  bottom: -1.5%;
}

.home-have-project {
  padding: clamp(40px, 7.25vw, 116px) 0 clamp(35px, 5.63vw, 90px);
  position: relative;
  background: no-repeat center left / cover;
}

.home-have-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.67;
}

.home-have-project .content-box {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.home-have-project .content-box h2 {
  color: var(--white);
  max-width: 600px;
  text-align: center;
}

.home-have-project .content-box .text-box {
  max-width: 840px;
  padding-top: 20px;
}

.home-have-project .content-box .text-box h3 {
  font-weight: 500;
  padding-top: 30px;
  letter-spacing: -0.022em;
}

.home-have-project .content-box .btn-wrap {
  padding-top: 20px;
}

.home-project-gallery {
  padding: clamp(40px, 5.5vw, 88px) 0;
}

.home-project-gallery .container {
  max-width: 1008px;
}

.home-project-gallery .title-wrap {
  padding-bottom: clamp(30px, 3.5vw, 56px);
}

.home-project-gallery .title-wrap h2 {
  color: var(--primary);
}

.home-project-gallery .column-wrap {
  display: flex;
  column-gap: 8px;
  border-radius: 28px;
  border: 6px solid var(--white);
  /* overflow: hidden; */
  position: relative;
}

.home-project-gallery .column-wrap::after,
.home-project-gallery .column-wrap::before {
  content: "";
  position: absolute;
  width: 254px;
  height: 254px;
  border-radius: 20px;
  background: var(--primary);
  z-index: -1;
  transform: skew(-2deg, 0deg);
}

.home-project-gallery .column-wrap::after {
  left: -15px;
  bottom: -15px;
}

.home-project-gallery .column-wrap::before {
  right: -15px;
  top: -15px;
}

.home-project-gallery .column-wrap>div {
  width: 50%;
  position: relative;
}

.home-project-gallery .column-wrap>div:first-child .img-cover {
  border-radius: 20px 0px 0px 20px;
}

.home-project-gallery .column-wrap>div:last-child .img-cover {
  border-radius: 0px 20px 20px 0;
}

.home-project-gallery .img-cover {
  width: 100%;
  overflow: hidden;
  padding-bottom: 81.331%;
}

.home-project-gallery .column-wrap>div>span {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  margin: 0 auto;
  color: var(--white);
  background: var(--primary);
  width: 172px;
  text-align: center;
  padding: 11px 5px;
  border-radius: 100px;
  z-index: 1;
  font-style: italic;
}

.home-project-gallery .btn-wrap {
  padding-top: clamp(20px, 2.25vw, 36px);
}

.our-team .title-wrap {
  padding-bottom: clamp(20px, 3.13vw, 50px);
}

.team-box {
  padding: clamp(20px, 3.38vw, 54px);
  background: var(--white);
  border-radius: clamp(20px, 6.25vw, 100px) 0px;
  box-shadow: 0 0 10px rgba(34, 31, 31, 0.09);
}

.team-box .team-img {
  width: 137px;
  height: 145px;
  border-radius: clamp(10px, 1.88vw, 30px) 0px;
  padding-bottom: 0;
  overflow: hidden;
}

.team-box .info {
  padding: 32px 0 0;
}

.team-box .info .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  padding-bottom: 10px;
}

.team-box .info .name span {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.our-team {
  padding: clamp(35px, 6.25vw, 100px) 0;
  position: relative;
}

.our-team .shape {
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
}

.our-team .shape img {
  width: clamp(550px, 37.6vw, 722px);
}

.our-team .title-wrap {
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.our-team .container {
  position: relative;
  z-index: 1;
}

.our-team .title-wrap h2 {
  color: var(--primary);
}

.our-team .team-pagination {
  position: initial;
  display: flex;
  justify-content: flex-end;
  column-gap: 5px;
  padding: clamp(32px, 3.65vw, 70px) 85px 0 0;
  align-items: center;
}

.our-team .team-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--white);
  opacity: 0.44;
  transition: var(--transition);
}

.our-team .team-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  height: 20px;
}

.our-team .team-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -33px;
  row-gap: 60px;
}

.our-team .team-list ul li {
  width: 33.333%;
  padding: 0 33px;
}

.core-value-wrap {
  padding: clamp(35px, 6.25vw, 100px) 0;
}

.core-value-wrap .core-value-box {
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1030px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding: clamp(30px, 2.81vw, 45px) 20px;
}

.core-value-wrap .core-value-box::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border-radius: 20px;
  background: #dbdbdb;
  z-index: -1;
}

.core-value-wrap .core-value-box h2 {
  padding-bottom: 17px;
}

.core-value-wrap .core-value-box p {
  font-style: italic;
  max-width: 596px;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: clamp(18px, 1.63vw, 26px);
}

.core-value-wrap .title-wrap h2 {
  color: var(--primary);
}

.core-value-wrap .value-list ul li .core-box {
  padding: 20px;
  background: var(--white);
  text-align: center;
}

.core-value-wrap .value-list ul li .core-box .icon-box {
  width: 80px;
  height: 80px;
  display: inline-flex;
  margin: 0 auto;
  color: var(--primary);
}

.core-value-wrap .value-list ul li .core-box .icon-box svg {
  fill: currentColor;
}

.core-value-wrap .value-list ul li .core-box h3 {
  color: var(--primary);
}

.trusted-vendor-wrap {
  padding: clamp(35px, 5vw, 80px) 0;
  color: var(--white);
  text-align: center;
  background: no-repeat center / cover;
}

.trusted-vendor-wrap .trusted-vendor h2 {
  padding-bottom: clamp(15px, 1.88vw, 30px);
}

.step-box {
  height: 100%;
  position: relative;
  font-size: 14px;
  line-height: 1.428;
  padding: 54px 34px;
  box-shadow: 0 0 20px #dbdcfd;
  text-align: center;
}

.step-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/step-bg.jpg') no-repeat center / cover;
  transition: var(--transition);
  opacity: 0;
}

.step-box .icon-box {
  position: relative;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  place-items: center;
  padding: 4px 0;
  z-index: 1;
  margin: 0 auto;
}

.step-box .icon-box img {
  width: auto;
  height: auto;
}

.step-box svg {
  fill: var(--primary);
  transition: var(--transition);
}

.step-box:hover svg {
  fill: var(--white);
}

.step-box h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--primary);
  padding: 26px 0 4px;
  position: relative;
  z-index: 1;
}

.step-box p {
  position: relative;
  z-index: 1;
}

.step-box:hover::after {
  opacity: 1;
}

.step-box:hover :is(h3, p) {
  color: var(--white);
}

.how-it-works {
  padding: clamp(35px, 6.25vw, 100px) 0;
}

.how-it-works .title-wrap h2 {
  color: var(--primary);
}

.faq-wrap {
  padding: clamp(35px, 6.25vw, 100px) 0;
}

.faq-wrap .title-wrap h2 {
  color: var(--primary);
}

.faq-wrap .sub-text {
  font-size: var(--h6);
  line-height: 1.666;
  font-weight: 500;
  max-width: 890px;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.accordion .accordion-item {
  background: transparent;
  border: 0;
  background: var(--grey);
}

.accordion .accordion-header {
  display: flex;
}

.accordion .accordion-header button {
  position: relative;
  display: flex;
  background: transparent;
  border: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--secondary);
  padding: 17px 60px 17px 50px;
  width: 100%;
  text-align: left;
}

.accordion .accordion-header button span {
  position: absolute;
  top: 16px;
  right: 30px;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: var(--primary);
}

.accordion .accordion-header button span::after,
.accordion .accordion-header button span::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  height: 2px;
  width: 15px;
  background: var(--white);
  transition: var(--transition);
}

.accordion .accordion-header button.collapsed span::after {
  transform: rotate(90deg);
}

.accordion .accordion-body {
  padding: 17px 50px 40px;
}

.home-contact-wrap {
  overflow: hidden;
  background: var(--grey);
  padding: 0 0 clamp(40px, 7.19vw, 115px);
}

.home-contact-wrap .shape {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.home-contact-wrap .shape img {
  width: 100%;
  margin-top: -1px;
}

.home-contact-wrap .container {
  padding-top: clamp(20px, 6.25vw, 100px);
}

.home-contact-wrap .title-wrap h2 {
  font-size: clamp(24px, 2vw, 32px);
  color: var(--primary);
}

.home-contact-wrap .title-wrap .sub-text {
  max-width: 500px;
  padding-top: 18px;
}

.home-contact-wrap .title-wrap .sub-text p+p {
  padding-top: 20px;
}

.home-contact-wrap .form-wrap {
  max-width: 571px;
  margin-left: auto;
}

.home-contact-wrap .form-wrap .form-row {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}

.home-contact-wrap .form-wrap .form-row .form-control {
  font-size: 18px;
  line-height: 1.5;
  border-radius: 0;
  background: var(--white);
  height: 60px;
  padding: 10px 33px;
  border: 0;
  outline: none;
  box-shadow: 0;
}

.home-contact-wrap .form-wrap .form-row .form-control:focus {
  outline: none;
  box-shadow: none;
}

.blog-box {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 5px 0 35px rgba(0, 0, 0, 0.3);
}

.blog-box .blog-img {
  display: flex;
  padding-bottom: 62.39%;
}

.blog-box .blog-info {
  padding: 20px 30px;
}

.blog-box .blog-info .date {
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary);
  padding-bottom: 12px;
}

.blog-box .blog-info h3 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--secondary);
}

.blog-box .blog-info h3 a {
  display: block;
  color: currentColor;
  transition: var(--transition);
}

.blog-box:hover .blog-info h3 a {
  color: var(--primary);
}

.home-latest-blog-wrap {
  padding: 0 0 clamp(50px, 11.25vw, 180px);
}

.home-latest-blog-wrap .title-wrap h2 {
  font-size: clamp(24px, 2vw, 32px);
  color: var(--primary);
}

.home-latest-blog-wrap .title-wrap .sub-text {
  max-width: 1000px;
  padding-top: 18px;
}

.home-testimonials-wrap {
  padding: clamp(50px, 23.75vw, 380px) 0;
  position: relative;
}

.home-testimonials-wrap .shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 53.125%;
}

.testimonial-box {
  margin-top: 35px;
  margin-bottom: 35px;
  padding: 32px 44px 35px 40px;
  background: var(--white);
  box-shadow: 5px 0 35px rgb(228, 231, 255);
}

.testimonial-box p {
  line-height: 1.375;
  color: var(--secondary);
}

.testimonial-box span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  display: block;
  color: var(--primary);
  margin-top: 17px;
  padding-left: 50px;
  position: relative;
  font-style: italic;
}

.testimonial-box span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: currentColor;
}

.home-testimonials-wrap .shape img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center right;
}

.home-testimonials-wrap .container {
  position: relative;
  z-index: 1;
}

.home-testimonials-wrap .title-wrap {
  color: var(--white);
}

.home-testimonials-wrap .title-wrap .sub-title {
  padding-bottom: 13px;
}

.home-testimonials-wrap .title-wrap h2 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.18;
}

.home-testimonials-wrap .title-wrap .sub-text {
  padding-top: 15px;
}

/* === home page === */

.back-to-top button {
  width: 68px;
  height: 68px;
  padding: 0;
  display: grid;
  place-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9;
  transition: var(--transition);
  background: var(--primary);
  border-radius: 100px;
}

.back-to-top button:not(.show) {
  opacity: 0;
  visibility: hidden;
}


.blog-wrap {
  padding: clamp(40px, 5.781vw, 111px) 0;
}

.pagination-wrap {
  padding-top: 38px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 8px;
  justify-content: flex-end;
}

.pagination li {
  display: inline-flex;
}

.pagination li :is(a, button, span) {
  font-size: 20px;
  line-height: 1;
  border: 0;
  background: transparent;
  min-width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 81, 165, 0.2);
  border-radius: 3px;
  color: var(--primary);
  transition: var(--transition);
  padding: 0 8px;
}

.pagination li :is(a, button, span):is(.current, :hover) {
  color: var(--white);
  background: var(--primary);
}

.contact-wrap {
  padding: clamp(40px, 5.781vw, 111px) 0;
}

.contact-wrap .title-wrap h2 {
  color: var(--primary);
}

.contact-wrap .title-wrap .sub-text {
  padding-top: 15px;
  font-size: var(--h6);
  font-weight: 500;
  color: var(--secondary);
}

.contact-wrap .form-group .form-control {
  font-size: var(--h6);
  line-height: 1.3;
  font-weight: 500;
  color: var(--secondary);
  height: 60px;
  border-radius: 0;
  background: var(--grey);
  border: 1px solid rgba(7, 81, 165, 0.1);
  padding: 10px;
  outline: none;
  box-shadow: none;
}

.contact-wrap .form-group .form-control:focus {
  box-shadow: none;
  outline: none;
}

.contact-wrap .form-group textarea.form-control {
  height: 181px;
}
.contact-wrap .form-group select.form-control {
  background: var(--grey) url("data:image/svg+xml,%3Csvg width='449' height='257' viewBox='0 0 449 257' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M201.475 246.675C213.975 259.175 234.275 259.175 246.775 246.675L438.775 54.675C451.275 42.175 451.275 21.875 438.775 9.37505C426.275 -3.12495 405.975 -3.12495 393.475 9.37505L224.075 178.775L54.675 9.47505C42.175 -3.02495 21.875 -3.02495 9.375 9.47505C-3.125 21.9751 -3.125 42.275 9.375 54.775L201.375 246.775L201.475 246.675Z' fill='%234D4D4D'/%3E%3C/svg%3E%0A") no-repeat center right 20px / 18px;
}

.contact-wrap .map {
  padding-top: clamp(40px, 5.781vw, 111px);
}

.contact-wrap .map .img-cover {
  padding-bottom: clamp(280px, 24.27vw, 466px);
}

.contact-sidebar {
  height: 100%;
  background: var(--primary);
  padding: clamp(20px, 2.08vw, 40px);
}

.contact-sidebar h3 {
  color: var(--white);
  padding-bottom: clamp(25px, 2.19vw, 42px);
}

.contact-sidebar .contact-info {
  display: flex;
  flex-direction: column;
  row-gap: clamp(25px, 2.19vw, 42px);
}

.contact-sidebar .contact-info li {
  display: flex;
}

.contact-sidebar .contact-info li .icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-sidebar .contact-info li .icon-box .icon {
  width: 100%;
  height: auto;
}

.contact-sidebar .contact-info li .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--white);
  word-break: break-all;
}

.contact-sidebar .contact-info li .info a {
  color: #e4e4e4;
  word-break: break-all;
}

.contact-sidebar .follow {
  padding: 32px 20px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  column-gap: 16px;
}

.contact-sidebar .follow .social {
  display: flex;
  align-items: center;
  column-gap: 20px;
  color: var(--white);
}

.contact-sidebar .follow .social li a {
  color: var(--white);
  transition: var(--transition);
}

.contact-sidebar .follow .social li a:hover {
  color: var(--white);
}

.blog-single {
  padding: clamp(40px, 5.781vw, 111px) 0;
}

.blog-single .blog-img {
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: clamp(280px, 21.51vw, 413px);
}

.blog-single .blog-meta {
  padding: clamp(18px, 1.15vw, 22px) 0 22px;
  border-bottom: 1px solid rgba(119, 121, 121, 0.3);
}

.blog-single .blog-meta h2 {
  font-size: clamp(24px, 2.08vw, 40px);
  line-height: 1.35;
  color: var(--secondary);
}

.blog-single .blog-meta ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: clamp(20px, 1.35vw, 26px);
}

.blog-single .blog-meta ul li {
  display: inline-flex;
}

.blog-single .blog-meta ul li:not(:last-child)::after {
  content: " - ";
  margin: 0 5px;
}

.blog-single .blog-meta ul li {
  font-size: var(--h6);
  line-height: 1;
  color: #363636;
}

.blog-single .blog-meta ul li a {
  display: inline-block;
  color: var(--primary);
  transition: var(--transition);
}

.blog-single .common-content-box {
  padding-top: clamp(20px, 1.3vw, 25px);
}

.blog-single .accordion .accordion-header button {
  padding: 17px 60px 17px 21px;
}

.blog-single .accordion .accordion-header button span {
  right: 21px;
}

.blog-single .accordion .accordion-body {
  padding: 17px 21px 40px;
}

/* common-content-box */

.common-content-box :is(p, li) {
  font-size: 16px;
  line-height: 1.625;
  margin: 0 0 24px;
  color: var(--secondary);
}

.common-content-box img {
  width: 100%;
  margin: 30px 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

.common-content-box :is(p, img, h1, h2, h3, h4, h5, h6, ol, ul):first-child {
  padding-top: 0;
  margin-top: 0;
}

.common-content-box :is(p, img, h1, h2, h3, h4, h5, h6, ol, ul):last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.common-content-box :is(p, h1, h2, h3, h4, h5, h6, ol, ul)+img {
  margin-top: 10px;
}

.common-content-box img+ :is(h1, h2, h3, h4, h5, h6, ol, ul) {
  margin-top: 0;
}

.common-content-box h3 {
  font-size: clamp(22px, 1.77vw, 34px);
  padding-bottom: clamp(20px, 1.04vw, 20px);
}

.common-content-box h4 {
  font-size: clamp(20px, 1.46vw, 28px);
  padding-left: 15px;
  padding-bottom: clamp(10px, 0.68vw, 13px);
}

.common-content-box ul {
  display: flex;
  flex-direction: column;
}

.common-content-box>ul li {
  font-size: var(--h6);
  line-height: 1.625;
  padding-left: 44px;
  position: relative;
  margin-bottom: 16px;
}

.common-content-box>ul li::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../images/bullet-icon.png) no-repeat center/contain;
}

.common-content-box>ul li strong {
  display: block;
  padding-bottom: 8px;
}

/* common-content-box */

.sidebar {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2.08vw, 40px);
}

.sidebar .side-item {
  padding: 44px 24px;
  border-radius: 15px;
  background: var(--grey);
  border: 1px solid rgba(7, 81, 165, 0.2);
}

.sidebar .side-item .side-search .input-box {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.sidebar .side-item .side-search .input-box .form-control {
  color: #363636;
  font-size: 16px;
  line-height: 400;
  height: 56px;
  padding: 0 18px;
  background: var(--white);
  border-radius: 5px;
  border: 1px solid rgba(8, 81, 165, 0.2);
  box-shadow: none;
  outline: none;
}

.sidebar .side-item .side-search .input-box .form-control::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(54, 54, 54, 0.4);
}

.sidebar .side-item .side-search .input-box .form-control:-moz-placeholder {
  opacity: 1;
  color: rgba(54, 54, 54, 0.4);
}

.sidebar .side-item .side-search .input-box .form-control::-moz-placeholder {
  opacity: 1;
  color: rgba(54, 54, 54, 0.4);
}

.sidebar .side-item .side-search .input-box .form-control:-ms-input-placeholder {
  opacity: 1;
  color: rgba(54, 54, 54, 0.4);
}

.sidebar .side-item>div>h3 {
  padding-bottom: 10px;
  color: var(--secondary);
  text-transform: uppercase;
}

.sidebar .side-item .side-category ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.sidebar .side-item .side-category ul li {
  display: flex;
}

.sidebar .side-item .side-category ul li:not(:last-child) {
  border-bottom: 1px solid rgba(77, 77, 77, 0.07);
}

.sidebar .side-item .side-category ul li a {
  display: inline-block;
  font-size: var(--h6);
  line-height: 1.3;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
  padding: 7px 0;
}

.sidebar .side-item .side-category ul li a:hover {
  color: var(--primary);
}

.sidebar .recent-box {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.sidebar .recent-box .img-cover {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  padding-bottom: 200px;
}

.sidebar .recent-box .recent-info .meta {
  display: flex;
  flex-wrap: wrap;
}

.sidebar .recent-box .recent-info .meta li {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #a1a1a1;
}

.sidebar .recent-box .recent-info .meta li:not(:last-child)::after {
  content: "|";
  margin: 0 9px;
}

.sidebar .recent-box .recent-info .meta li a {
  display: inline-flex;
  color: currentColor;
  transition: var(--transition);
}

.sidebar .recent-box .recent-info .meta li a:hover {
  color: var(--primary);
}

.sidebar .recent-box .recent-info h3 {
  font-weight: 500;
  font-size: var(--h5);
  line-height: 1.428;
  color: var(--secondary);
  padding-top: 10px;
}

.sidebar .recent-box .recent-info h3 a {
  display: inline-block;
  color: currentColor;
  transition: var(--transition);
}

.sidebar .recent-box .recent-info h3 a:hover {
  color: var(--primary);
}

.sidebar .side-item .recent-post>ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.sidebar .side-item .recent-post>ul>li {
  display: flex;
}

.sidebar .side-item .recent-post>ul>li {
  display: flex;
}

.sidebar .side-item.have-project {
  background: var(--primary);
  border-color: var(--primary);
}

.sidebar .side-item.have-project h3 {
  color: var(--white);
}

.sidebar .side-item.have-project p {
  color: var(--white);
}

.blog-single.service .icon-list {
  padding: 30px;
  border-radius: 15px;
  background: var(--grey);
  border: 1px solid rgba(7, 81, 165, 0.2);
}

.blog-single.service .icon-list>ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0 -10px;
  row-gap: 20px;
}

.blog-single.service .icon-list>ul>li {
  padding: 0 10px;
  width: 25%;
  background: transparent;
}

.blog-single.service .icon-list>ul>li::after {
  display: none;
}

.blog-single.service .icon-list>ul>li .icon-box .icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  border-radius: 100%;
  padding: 8px;
  margin: 0 auto;
}

.blog-single.service .icon-list>ul>li .icon-box .icon img {
  margin: 0;
}

.blog-single.service .icon-list>ul>li .icon-box h3 {
  font-size: var(--base);
  color: var(--secondary);
  font-weight: 500;
  padding-top: 12px;
  text-align: center;
}

.blog-single.service .common-content-box img {
  width: initial;
  float: left;
  margin-right: 20px;
}

.blog-single.service .common-content-box h5 {
  color: var(--primary);
}

.blog-single.service .common-content-box h5 {
  color: var(--primary);
}

.blog-single.service .common-content-box h5:not(:last-child) {
  padding-bottom: 15px;
}

.blog-single.service .common-content-box h5:not(:first-child) {
  margin-top: 30px;
}

.blog-single.service .common-content-box :is(ol, ul):not(:first-child) {
  margin-top: 20px;
}

.blog-single.service .common-content-box :is(ol, ul):not(:last-child) {
  margin-bottom: 20px;
}

.blog-single.service .common-content-box :is(ol, ul)+ :is(ol, ul) {
  margin-top: 20px;
}

.blog-single.service .common-content-box>ul li {
  padding-left: 38px;
  margin-bottom: 12px;
}

.blog-single.service .common-content-box>ul li:last-child {
  margin-bottom: 0;
}

.blog-single.service .common-content-box>ul li::after {
  width: 24px;
  height: 24px;
}

.blog-single.service .common-content-box p {
  margin: 0;
}

.blog-single.service .common-content-box a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-single.service .common-content-box :is(p, h1, h2, h3, h4, h5, h6)+.icon-list {
  margin-top: 20px;
}

.gallery-card {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-card h3 {
  font-size: clamp(20px, 1.15vw, 22px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--white);
  background: rgba(7, 81, 165, 0.9);
  text-align: center;
  padding: 17px 10px;
  transition: var(--transition);
}

.gallery-card:hover h3 {
  opacity: 0;
}

.gallery-card::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(7, 81, 165, 0.9);
  transition: var(--transition);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 62px;
  line-height: 1;
  font-weight: 300;
}

.gallery-card:not(:hover)::after {
  opacity: 0;
}


.gallery-wrap {
  padding: clamp(40px, 5.781vw, 111px) 0;
}

.gallery-wrap .filter-buttons {
  max-width: 540px;
  padding-bottom: clamp(30px, 3.65vw, 70px);
}

.gallery-wrap .filter-buttons ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 10px;
}

.gallery-wrap .filter-buttons ul li {
  display: inline-flex;
}

.gallery-wrap .filter-buttons ul li button:is(:hover, .active) {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.gallery-wrap .filter-buttons ul li button:not(:hover, .active) {
  border-color: rgba(7, 81, 165, 0.2);
  background: var(--grey);
  color: var(--primary);
}


:is(.core-value-wrap, .about-content-wrap, .join-team-wrap, .team-wrap) {
  padding: clamp(40px, 5.21vw, 100px) 0;
}

:is(.core-value-wrap, .about-content-wrap, .join-team-wrap) .common-content-box :is(h1, h2, h3, h4, h5, h6) {
  color: var(--primary);
  padding-left: 0;
}

:is(.core-value-wrap, .about-content-wrap, .join-team-wrap) .common-content-box {
  font-weight: 500;
}

:is(.core-value-wrap, .about-content-wrap, .join-team-wrap) .common-content-box a:not(.btn) {
  color: var(--primary);
}

:is(.core-value-wrap, .about-content-wrap, .join-team-wrap) .common-content-box .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}

.join-team-wrap .common-content-box :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
  margin-top: clamp(25px, 2.08vw, 40px);
}

.core-value-wrap .core-value-list {
  padding: var(--h1) 0;
}

.core-value-wrap .core-value-list ul {
  display: flex;
  flex-direction: column;
  row-gap: var(--h1);
}

.core-value-wrap .core-value-list ul li:nth-child(even) .row {
  flex-direction: row-reverse;
}

.how-to-apply {
  padding: clamp(40px, 5.5vw, 88px) 0;
}

.how-to-apply .title-wrap h2 {
  color: var(--primary);
}

.how-to-apply .sub-text {
  max-width: 900px;
  margin: 0 auto;
}

.how-to-apply .btn-wrap {
  justify-content: center;
  column-gap: 30px;
  row-gap: 10px;
  padding-top: 30px;
}


.team-wrap .team-box.stl-1 .team-img {
  width: 270px;
  height: auto;
  min-height: 320px;
}

.team-wrap .team-box.stl-1 .info .name {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d6d7d7;
}

.team-wrap .team-box.stl-1 .info .name span {
  color: var(--primary);
}



/* === 404 === */
.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: var(--primary);
  background: var(--white);
}

.flex-container .text-center {
  text-align: center;
}

.flex-container .text-center h1,
.flex-container .text-center h3 {
  margin: 10px;
  cursor: default;
}

.flex-container .text-center h1 .fade-in,
.flex-container .text-center h3 .fade-in {
  animation: fadeIn 2s ease infinite;
}

.flex-container .text-center h1 {
  font-size: 8em;
  transition: font-size 200ms ease-in-out;
  border-bottom: 1px dashed white;
}

.flex-container .text-center h1 span#digit1 {
  animation-delay: 200ms;
}

.flex-container .text-center h1 span#digit2 {
  animation-delay: 300ms;
}

.flex-container .text-center h1 span#digit3 {
  animation-delay: 400ms;
}

.flex-container .text-center .btn {
  margin: 20px 0;
}

.flex-container .text-center .btn-404:hover {
  background-color: var(--primary);
  color: var(--secondary);
  cursor: pointer;
  border-color: var(--primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* === 404 === */

/* === location === */
.location-wrap {
  text-align: center;
  padding: clamp(40px, 5.73vw, 110px) 0 clamp(40px, 3.65vw, 70px);
}

.location-wrap .location-name-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin: 0 auto;
  color: var(--primary);
  padding-bottom: clamp(25px, 2.08vw, 40px);
}

.location-wrap .location-name-icon .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
}

.location-wrap .location-img {
  min-height: 300px;
  overflow: hidden;
  padding-bottom: 51.197%;
  border-radius: clamp(20px, 2.08vw, 40px);
}

.location-wrap .content-box {
  width: calc(100% - 60px);
  max-width: 830px;
  margin: 0 auto;
  border-radius: 15px;
  text-align: center;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.636;
  font-weight: 600;
  color: var(--secondary);
  padding: 22px 65px 65px;
  background: var(--white);
  margin-top: -84px;
  z-index: 1;
  position: relative;
  padding-bottom: 22px;
  border: 2px solid #0751a5;
}

/* === location === */

/* === getting-started === */
.getting-started {
  padding: 0 0 clamp(40px, 5.73vw, 110px);
}

.getting-started .content-box {
  color: var(--secondary);
  font-size: var(--base);
  line-height: 1.625;
  font-weight: 500;
}

.getting-started .content-box a {
  color: var(--primary);
  text-decoration: underline;
}

.getting-started .content-box :is(h1, h2, h3, h4, h5, h6) {
  color: var(--primary);
  padding: 25px 0 10px;
}

.getting-started .content-box :is(h1, h2, h3, h4, h5, h6):first-child {
  padding-top: 0;
}

.getting-started .content-box :is(h1, h2, h3, h4, h5, h6):last-child {
  padding-bottom: 0;
}

.getting-started .content-box :is(h1, h2, h3, h4, h5, h6):last-child {
  padding-bottom: 0;
}

.getting-started .content-box ul.blue-tick {
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  row-gap: 1px;
}

.getting-started .content-box ul.blue-tick li {
  font-weight: 600;
  font-size: 18px;
  padding-left: 50px;
  background: url(../images/bullet-icon.png) no-repeat top left / 30px;
}

.getting-started .content-box ul.blue-tick li:not(:last-child) {
  padding-bottom: 10px;
}

/* === getting-started === */


