@charset "UTF-8";

@font-face {
  font-family: 'Gotham HTF';
  src: url('../fonts/GothamHTF-Bold.woff2') format('woff2'),
    url('../fonts/GothamHTF-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham HTF';
  src: url('../fonts/GothamHTF-Book.woff2') format('woff2'),
    url('../fonts/GothamHTF-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham HTF';
  src: url('../fonts/GothamHTF-Medium.woff2') format('woff2'),
    url('../fonts/GothamHTF-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

  /* new-var */
  --primary: #1d4f91;
  --secondary: #ffd100;
  --gray: #f3f6f9;

  --font-primary: 'Gotham HTF', sans-serif;

  --h1: clamp(30px, 2.813vw, 34px);
  --h2: clamp(28px, 2.188vw, 42px);

  --h3: clamp(24px, 1.25vw, 28px);
  --h4: clamp(18px, 1.042vw, 22px);
  --h5: clamp(16px, 1.042vw, 20px);
  --h6: clamp(16px, 0.833vw, 18px);

  --base: clamp(17px, 1.042vw, 20px);
  --text-md: clamp(16px, 0.938vw, 18px);

  --btn-text: clamp(16px, 1.042vw, 20px);

  --brd-42: clamp(22px, 2.188vw, 42px);
  --brd-20: clamp(10px, 1.042vw, 20px);
  --brd-30: clamp(15px, 1.563vw, 30px);
  --brd-full: 999px;

  --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;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--base);
  line-height: 1.5;
  color: var(--black);
  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(--primary);
}

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

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

p {
  margin: 0 0 15px 0;
  padding: 0;
}

p:last-of-type {
  margin-bottom: 0;
}

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: #9EA4AE;
}

.form-control:-moz-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #9EA4AE;
}

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
==============================================================*/

.container {
  max-width: 1694px;
  width: 100%;
  padding: 0 16px;
}

.container-sm {
  max-width: 1430px;
}

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

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

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

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

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

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

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

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

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

.txt-primary {
  color: var(--primary);
}

.text-current {
  color: currentColor;
}

.brd-30 {
  border-radius: var(--brd-30);
}

.brd-20 {
  border-radius: var(--brd-20);
}

/* space */
.pt-240 {
  padding-top: clamp(55px, 12.5vw, 240px);
}

.pb-240 {
  padding-bottom: clamp(55px, 12.5vw, 240px);
}

.pt-200 {
  padding-top: clamp(50px, 10.417vw, 200px);
}

.pb-200 {
  padding-bottom: clamp(50px, 10.417vw, 200px);
}

.pt-180 {
  padding-top: clamp(45px, 9.375vw, 180px);
}

.pb-180 {
  padding-bottom: clamp(45px, 9.375vw, 180px);
}

.pt-170 {
  padding-top: clamp(45px, 8.854vw, 170px);
}

.pb-170 {
  padding-bottom: clamp(45px, 8.854vw, 170px);
}

.pt-148 {
  padding-top: clamp(35px, 7.708vw, 148px);
}

.pb-148 {
  padding-bottom: clamp(35px, 7.708vw, 148px);
}

.pt-140 {
  padding-top: clamp(35px, 7.292vw, 140px);
}

.pb-140 {
  padding-bottom: clamp(35px, 7.292vw, 140px);
}

.pt-130 {
  padding-top: clamp(30px, 6.771vw, 130px);
}

.pb-130 {
  padding-bottom: clamp(30px, 6.771vw, 130px);
}

.pt-120 {
  padding-top: clamp(30px, 6.25vw, 120px);
}

.pb-120 {
  padding-bottom: clamp(30px, 6.25vw, 120px);
}

.pt-115 {
  padding-top: clamp(30px, 5.208vw, 115px);
}

.pb-115 {
  padding-bottom: clamp(30px, 5.208vw, 115px);
}

.pt-100 {
  padding-top: clamp(30px, 5.99vw, 100px);
}

.pb-100 {
  padding-bottom: clamp(30px, 5.99vw, 100px);
}

.pt-90 {
  padding-top: clamp(30px, 4.688vw, 90px);
}

.pb-90 {
  padding-bottom: clamp(30px, 4.688vw, 90px);
}

.pt-80 {
  padding-top: clamp(30px, 4.167vw, 80px);
}

.pb-80 {
  padding-bottom: clamp(30px, 4.167vw, 80px);
}

.pt-70 {
  padding-top: clamp(30px, 4.688vw, 70px);
}

.pb-70 {
  padding-bottom: clamp(30px, 4.688vw, 70px);
}

.pt-60 {
  padding-top: clamp(30px, 3.125vw, 60px);
}

.pb-60 {
  padding-bottom: clamp(30px, 3.125vw, 60px);
}

.pt-54 {
  padding-top: clamp(25px, 2.708vw, 54px);
}

.pb-54 {
  padding-bottom: clamp(30px, 2.708vw, 54px);
}

.pt-45 {
  padding-top: clamp(25px, 2.708vw, 45px);
}

.pb-45 {
  padding-bottom: clamp(30px, 2.708vw, 45px);
}

.pt-30 {
  padding-top: clamp(20px, 1.563vw, 30px);
}

.pb-30 {
  padding-bottom: clamp(25px, 1.563vw, 30px);
}

.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;
}

.max-w-1020 {
  max-width: 1020px;
}

.max-w-858 {
  max-width: 858px;
}

.max-w-992 {
  max-width: 992px;
}

.max-w-986 {
  max-width: 986px;
}

.max-w-751 {
  max-width: 751px;
}

.max-w-790 {
  max-width: 790px;
}

.section:is(.line-top, .line-bottom) {
  position: relative;
}

.section:is(.line-top, .line-bottom)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  max-width: 1440px;
  margin: auto;
  opacity: 0.1;
}

.section.line-bottom::after {
  top: auto;
  bottom: 0;
}


/* space */

.title-wrap .sub-title {
  font-weight: 800;
  line-height: 1.08;
  color: var(--black);
  opacity: 0.3;
  text-transform: uppercase;
  padding-bottom: clamp(15px, 1.563vw, 30px);
}

.title-wrap.title-white .h2,
.title-wrap.title-white .sub-text p,
.title-wrap.title-white .sub-title {
  color: var(--white);
  opacity: 1;
}

.title-wrap h2 {
  column-gap: 20px;
}

.title-wrap h2 .icon {
  transform: rotate(90deg);
}

.title-wrap .title-icon-box {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  text-transform: capitalize;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 18px;
  line-height: 1;
  column-gap: 4px;
  border-radius: 100px 100px 100px 0px;
}

.title-wrap .title-icon-box img {
  width: 16px;
  height: auto;
}


/* .title-wrap .sub-text {
  padding-top: clamp(25px, 2.396vw, 46px);
} */

.img-cover {
  position: relative;
  padding-bottom: 100%;
}

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

.bullet ul li {
  padding-left: 25px;
  position: relative;
  color: var(--white);
}

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

.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
==============================================================*/
:is(.btn, .btn-link) {
  font-size: var(--btn-text);
  line-height: 1;
  font-weight: 400;
  display: inline-flex;
  column-gap: 10px;
  align-items: center;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  justify-content: center;
}

:is(.btn, .btn-link) .icon {
  position: relative;
  top: 1px;
  width: clamp(10px, 0.625vw, 12px);
  height: auto;
}

.btn {
  text-transform: capitalize;
  padding: clamp(20px, 1.302vw, 25px) clamp(32px, 2.083vw, 40px);
  border-radius: var(--brd-full);
  box-shadow: none;
  outline: none;
  border: 1px solid transparent;
}

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

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

.btn-link {
  padding: 8px;
}

.btn-link span {
  display: inline-flex;
  position: relative;
}

.btn-link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease-in-out;
}

.btn-link:is(:hover, :focus, :active) span::after {
  width: 0;
}

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

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

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

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

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

.header-wrap header {
  background: var(--white);
}

.header-wrap header .head-top {
  background: var(--primary);
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 0;
  text-align: center;
}

header .menu li a {
  display: block;
  font-size: 16.48px;
  line-height: 32.96px;
  transition: var(--transition);
  color: var(--black);
}

header .menu li:is(.current-menu-item, .current-menu-parent) a {
  font-weight: 500;
}

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

.menu-arrow>.icon {
  width: 12px;
  height: auto;
  transform: rotate(90deg);
  transition: var(--transition);
}

header .logo {
  flex-shrink: 0;
  width: 200px;
  background: var(--white);
  border-radius: var(--brd-42);
  padding: 7px 10px;
  position: relative;
  margin-bottom: -54px;
}

.header-wrap header .head-bottom {
  padding: 10px 0;
}

.header-wrap header .head-bottom .container {
  display: flex;
}

.header-wrap header .header-menu .menu>ul>li {
  display: flex;
  align-items: center;
  column-gap: 3px;
  position: relative;
}

.header-wrap {
  height: 180px;
}

.header-wrap.sticky header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@media(min-width:1201px) {

  .menu-toggle {
    display: none;
  }

  .header-wrap header .header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: clamp(20px, 3.646vw, 70px);
  }

  .header-wrap header .header-menu .menu>ul {
    display: flex;
    align-items: center;
    column-gap: clamp(15px, 1.354vw, 26px);
  }

  .header-wrap header .header-menu .menu>ul .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--white);
    padding: 15px 10px;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }

  .header-wrap header .header-menu .menu>ul>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  .mobile-overlay {
    display: none !important;
  }
}

@media(max-width:1280px) {
  header .logo {
    width: 150px;
  }

  .header-wrap {
    height: 134px;
  }
}

@media(max-width:1200px) {
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: 0.8;
    transition: var(--transition);
  }

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

  header .header-menu .menu-toggle {
    padding: 10px;
    width: 100%;
    justify-content: flex-end;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  header .header-menu .btn-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
  }

  header .header-menu .btn-wrap .btn {
    width: 100%;
    justify-content: center;
  }

  header .header-menu .menu-toggle button {
    display: inline-flex;
  }

  header .header-menu .menu-toggle button .icon {
    width: 16px;
    height: auto;
  }

  header .header-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--white);
    padding: 40px 10px 80px;
    z-index: 1;
    height: 100dvh;
    transition: var(--transition);
  }

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

  header .logo {
    width: 80px;
    margin: 0;
    padding: 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-toggle button {
    color: var(--primary);
    border: 0;
    background: transparent;
  }

  header .header-menu .menu {
    height: 100%;
    overflow: auto;
  }

  header .header-menu .menu ul {
    display: flex;
    flex-direction: column;
  }

  .header-wrap header .header-menu .menu>ul>li {
    flex-direction: column;
    align-items: flex-start;
  }

  header .menu li {
    position: relative;
  }

  header .menu li a {
    font-size: 16px;
    line-height: 1;
    padding: 14px 10px;
    width: 100%;
  }

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

  header .menu>ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .menu-arrow.active>.icon {
    transform: rotate(-90deg);
  }

  header .header-menu .menu ul.sub-menu {
    display: none;
  }

  header .header-menu .menu ul {
    width: 100%;
  }

  header .header-menu .menu>ul>li>ul>li {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media(max-width:767px) {
  header .head-top {
    font-size: 14px;
  }

  .header-wrap {
    height: 127px;
  }
}

/* ===== banner ===== */
.banner {
  position: relative;
}

.banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner .banner-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(29, 79, 145, 0) 0%, rgba(29, 79, 145, 0.7) 100%);
}

.banner .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .banner-info {
  position: relative;
}

.banner .banner-info .sub-title {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: clamp(18px, 1.854vw, 38px);
  color: var(--primary);
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
}

.banner .banner-info .banner-title {
  color: var(--white);
  text-transform: uppercase;
  padding: 15px 0 0;
}

.banner .banner-info .btn-wrap {
  padding-top: clamp(28px, 2.188vw, 42px);
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 32px;
  align-items: center;
  row-gap: 20px;
}

.banner.hero-banner {
  padding: clamp(120px, 12.292vw, 236px) 0 clamp(100px, 13.021vw, 250px);
}

.banner.hero-banner .banner-info .sub-text {
  max-width: 427px;
  color: var(--white);
}

.banner.hero-banner .banner-info .btn {
  min-width: 220px;
}



/* ===== banner ===== */

/* ===== home-service ===== */

.icon-box {
  flex-shrink: 0;
  width: clamp(100px, 7.031vw, 135px);
  height: clamp(100px, 7.031vw, 135px);
  border-radius: var(--brd-42);
  background: var(--secondary);
  display: grid;
  place-items: center;
}

.icon-box img {
  width: clamp(42px, 2.604vw, 52px);
  height: auto;
}

.home-service .service-wrap {
  padding: clamp(35px, 3.958vw, 76px) 0 clamp(35px, 3.333vw, 64px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 239, 245, 1) 100%);
  border-radius: var(--brd-42);
}

.home-service .service-wrap ul {
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  row-gap: 30px;
}

.home-service .service-wrap ul li {
  padding: 0 15px;
  width: 33.3333%;
  text-align: center;
}

.home-service .service-wrap ul li .icon-box {
  margin: 0 auto;
}

.home-service .service-wrap ul li h3 {
  padding-top: clamp(15px, 1.563vw, 30px);
  font-size: var(--btn-text);
  font-weight: 400;
  color: var(--primary);
}

/* ===== home-service ===== */

/* ===== img-content-wrap ===== */
.img-content-wrap .img-content .btn.btn-secondary:is(:hover, :focus, :active) {
  color: var(--primary);
  background: var(--white);
}

.img-content-wrap .img-content {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  border-radius: var(--brd-42);
  background: var(--primary);
  overflow: hidden;
}

.img-content-wrap .img-content .content-box {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: clamp(30px, 4.167vw, 80px) 25px clamp(30px, 4.167vw, 80px) clamp(25px, 4.688vw, 90px);
  position: relative;
  z-index: 1;
}

.img-content-wrap .img-content .content-box h2 {
  color: var(--secondary);
  text-transform: uppercase;
  padding-bottom: 18px;
}

.img-content-wrap .img-content .content-box p {
  color: var(--white);
}

.img-content-wrap .img-content .content-box p a {
  color: currentColor;
  transition: var(--transition);
}

.img-content-wrap .img-content .content-box p a:hover {
  color: var(--secondary);
}

.img-content-wrap .img-content .content-box p:not(:last-of-type) {
  margin-bottom: clamp(15px, 1.563vw, 30px);
}

.img-content-wrap .img-content .content-box .btn-wrap {
  padding-top: clamp(30px, 3.125vw, 60px);
}

.img-content-wrap .img-content .img-box {
  width: 50%;
  position: relative;
}

.img-content-wrap .img-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-content-wrap .img-content.reverse .content-box .inner {
  max-width: 507px;
}

.img-content-wrap .img-content .content-box ul {
  padding-bottom: 30px;
}

.img-content-wrap .img-content .img-box.content-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--brd-42);
}

.img-content-wrap .img-content .img-box.content-logo img {
  width: 100%;
  max-width: 626px;
}

.img-content-wrap .content-box .report-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 18px;
  row-gap: 30px;
  list-style: none;
}

.img-content-wrap .content-box .report-list ul li {
  width: 50%;
  padding: 0 18px;
}

.img-content-wrap .content-box .report-list ul li h3 {
  color: var(--secondary);
}

.img-content-wrap .content-box .report-list li::before {
  display: none;
}

/* ===== img-content-wrap ===== */

/* ===== home-service ===== */
.service-box {
  display: block;
  height: clamp(350px, 22.917vw, 440px);
  position: relative;
  overflow: hidden;
  border-radius: var(--brd-42);
}

.service-box .service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-box .service-img img {
  transition: var(--transition);
}

.service-box:hover .service-img img {
  transform: scale(1.08);
}

.service-box .service-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(29, 79, 145, 1) 0%, rgba(29, 79, 145, 0) 100%);
}

.service-box .service-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 2.344vw, 45px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-box .service-info h3 {
  font-size: var(--base);
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 4px;
}

.service-box .service-info p {
  line-height: 1.66;
  color: var(--white);
  font-size: var(--text-md);
}

.service-box .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-service .service-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -24px;
  row-gap: 42px;
}

.home-service .service-list li {
  width: 33.333%;
  padding: 0 24px;
}

/* ===== home-service ===== */
/* ===== home-program ===== */
.program-box {
  height: 100%;
  padding: 0 clamp(25px, 3.438vw, 66px) clamp(20px, 2.188vw, 42px);
  border-radius: var(--brd-42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 239, 245, 1) 100%);
}

.program-box h3 {
  padding: clamp(15px, 1.667vw, 32px) 0 clamp(15px, 1.042vw, 20px);
  font-size: var(--btn-text);
  font-weight: 400;
  color: var(--primary);
  column-gap: 10px;
}

.program-box.courage-img {
  padding: 0;
  display: flex;
  align-items: center;
  max-width: 1055px;
  margin: 0 auto;
}

.program-box.courage-img .img-cover {
  width: 279px;
  height: 310px;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--brd-20);
}

.program-box.courage-img .program-info {
  padding: 20px 64px 20px 35px;
}

.program-box.courage-img .program-info h3 {
  font-weight: 500;
  padding: 0 0 10px;
}

.home-program .program-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -9px;
  row-gap: 18px;
}

.home-program .title-wrap {
  padding-bottom: clamp(25px, 3.438vw, 66px);
}

.home-program .title-wrap .sub-text {
  max-width: 970px;
  margin: 0 auto;
}

.home-program .program-list li {
  width: 100%;
  padding: 0 9px;
}

.home-program .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  column-gap: 30px;
}

/* ===== home-program ===== */
/* ===== home-testimonial ===== */
.testimonial-box {
  padding: 3px;
  background: var(--white);
  border-radius: var(--brd-42);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 209, 0, 1) 100%);
}

.testimonial-box .inner {
  border-radius: var(--brd-42);
  background: var(--white);
  padding: 40px 35px 35px;
}

.testimonial-box .inner .img-box {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: var(--brd-full);
}

.testimonial-box .inner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-box .inner p {
  line-height: 1.388;
  font-size: var(--text-md);
  padding-top: 7px;
}

.home-testimonial .testimonial-content-box {
  padding-left: 15px;
  padding-right: 15px;
  border-radius: var(--brd-42);
  background: linear-gradient(90deg, rgba(255, 209, 0, 0.8995973389355743) 0%, rgba(255, 209, 0, 0) 100%);
  box-shadow: -16px 0px 30px rgba(0, 0, 0, 0.05);
}

.home-testimonial .slider-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== home-testimonial ===== */

/* ===== footer ===== */
.footer-wrap .footer-top,
.program-text {
  padding: clamp(35px, 5.208vw, 100px) 0;
  background: var(--gray);
}

.footer-wrap .footer-top .container {
  text-align: center;
  max-width: 1120px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--primary);
}


.footer-wrap .footer-bottom {
  padding: clamp(30px, 2.604vw, 50px) 0 0;
  background: var(--primary);
}

.footer-wrap .footer-bottom .logo {
  display: inline-block;
  margin: 0 auto;
}

footer .footer-menu {
  padding: 25px 0 35px;
}

footer .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 26px;
}

footer .footer-menu ul li a {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

footer .footer-menu ul li a:hover {
  color: var(--secondary);
}

footer .copyrights {
  font-size: 12px;
  line-height: 1.3;
  color: var(--white);
  border-top: 1px solid var(--white);
  padding: 15px 0;
    margin-top: 60px;
}

footer .copyrights .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer .copyrights p{
    display: inline-block;
}
footer .copyrights p:last-child{
    margin-left: 15px;
}
footer .copyrights p a{
   color: var(--secondary); 
}
footer .copyrights p a:hover{
   color: var(--white); 
}

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

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

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

footer ul.social li a:hover {
  color: var(--secondary);
}

.newsletter .input-box {
  display: flex;
}

.newsletter .input-box input[type="email"] {
  font-size: 16px;
  line-height: 1;
  padding: 14px 15px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--primary);
}

.newsletter .input-box button[type="submit"] {
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  padding: 13px 14px;
  border: 1px solid var(--secondary);
  background: var(--secondary);
  transition: var(--transition);
}

.newsletter .input-box button[type="submit"]:hover {
  color: var(--secondary);
  background: transparent;
}

/* ===== footer ===== */

/* ===== page who we are  ===== */

.team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-box .team-img {
  width: 100%;
  overflow: hidden;
  border-radius: var(--brd-42);
}

.team-box .team-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(29, 79, 145, 0.5) 100%);
}


.team-box .team-img img {
  transition: var(--transition);
}

.team-box:hover .team-img img {
  transform: scale(1.08);
}



.team-box :is(h3, span, a) {
  text-align: center;
  display: inline-block;
  font-size: var(--base);
  font-weight: 500;
  line-height: 1.25;
  color: var(--primary);
}

.team-box h3 {
  padding-top: clamp(15px, 1.146vw, 22px);
  text-transform: uppercase;
}

.team-box a {
  color: var(--secondary);
  transition: var(--transition);
}

.team-box a:hover {
  color: var(--primary);
}

.report-box img {
  width: 100%;
  border-radius: var(--brd-20);
}

.report-box h3 {
  text-align: center;
  display: inline-block;
  font-size: var(--base);
  font-weight: 500;
  line-height: 1.25;
  color: var(--primary);
  padding-top: clamp(15px, 1.146vw, 22px);
}

.team-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  row-gap: clamp(30px, 4.792vw, 92px);
}

.team-list ul li {
  width: 100%;
  padding: 0 20px;
}

.report-list ul {
  margin: 0 -15px;
  row-gap: 30px;
}

.report-list ul li {
  width: 100%;
  padding: 0 15px;
}

.report-list.column-3 {
  max-width: 1084px;
  margin: 0 auto;
}

.annual-report-note {
  display: inline-flex;
  margin: 0 auto;
  background: #e6e6e6;

  text-align: center;
  display: inline-block;
  font-size: var(--base);
  font-weight: 500;
  line-height: 1.25;
  color: var(--black);
  font-style: italic;
  padding: 22px 30px;
  border-radius: 10px;

}

/* ===== page who we are  ===== */


.advisory-board {
  background: var(--primary);
  padding: 60px 225px 48px 225px;
  border-radius: 30px;
  color: var(--white);
  margin-bottom: 130px;
}

.advisory-board h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

.advisory-board ul li {
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0;
}

/* ===== student-program  ===== */
.student-program-wrap .student-program {
  position: relative;
  background: no-repeat center / cover;
  border-radius: var(--brd-42);
  overflow: hidden;
  z-index: 1;
  padding: clamp(30px, 5.208vw, 100px) clamp(20px, 4.427vw, 80px);
  row-gap: 20px;
}

.student-program-wrap .student-program::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.87;
  background: linear-gradient(90deg, rgba(255, 209, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: -1;
}

.student-program-wrap .student-program .left-col,
.student-program-wrap .student-program .right-col {
  width: 100%;
}

.student-program-wrap .student-program .content-box {
  height: 100%;
  max-width: 612px;
  display: flex;
  flex-direction: column;
}

.student-program-wrap .student-program .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 12px;
}

.student-program-wrap .student-program .list li {
  width: 100%;
  padding: 0 15px;
  font-size: var(--base);
  line-height: 1.25;
  color: var(--primary);
}

.student-program-wrap .student-program .title-box {
  font-size: var(--base);
  line-height: 1.25;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  padding: clamp(15px, 1.094vw, 21px) clamp(20px, 2.188vw, 42px);
}

.student-program-wrap .student-program .program-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.student-program-wrap .student-program .program-list li {
  display: flex;
  align-items: center;
  column-gap: clamp(18px, 1.615vw, 31px);
}

.student-program-wrap .student-program .program-list li .icon {
  width: clamp(80px, 5.104vw, 98px);
  height: clamp(80px, 5.104vw, 98px);
  display: grid;
  place-items: center;
  border-radius: var(--brd-full);
  background: var(--white);
  flex-shrink: 0;
}

.student-program-wrap .student-program .program-list li {
  font-weight: 500;
  color: var(--primary);
}

.student-program-wrap .student-program .have-idea {
  gap: 20px;
  justify-content: space-between;
}

.student-program-wrap .student-program .have-idea h4 {
  font-size: var(--base);
  line-height: 1.25;
  font-weight: 500;
  color: var(--primary);
}

.student-program-wrap .student-program .btn {
  padding: clamp(20px, 1.302vw, 25px) 20px;
}

/* ===== student-program  ===== */
/* ===== faq-wrap  ===== */
.faq-wrap .faq {
  max-width: 1054px;
  margin: 0 auto;
}

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

.faq .accordion .accordion-item {
  border-radius: 0;
  border: 0;
}

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

.faq .accordion .accordion-item .accordion-header button {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  font-size: var(--text-md);
  color: var(--primary);
  padding: clamp(20px, 1.406vw, 27px) clamp(25px, 2.344vw, 45px);
  background: var(--secondary);
  background: linear-gradient(90deg, rgba(255, 209, 0, 0.8995973389355743) 0%, rgba(255, 209, 0, 0) 100%);
  border-radius: var(--brd-20);
}

.faq .accordion .accordion-item .accordion-header button span {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
}

.faq .accordion .accordion-item .accordion-header button span .icon {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: var(--transition);
}

.faq .accordion .accordion-item .accordion-header button:not(.collapsed) span .icon {
  transform: rotate(-90deg);
}

.faq .accordion .accordion-item .accordion-body {
  padding: clamp(25px, 2.708vw, 52px) clamp(15px, 2.604vw, 50px) clamp(15px, 1.042vw, 20px);
  font-size: var(--text-md);
  line-height: 1.38;
  color: var(--primary);
}

/* ===== faq-wrap  ===== */

/* ===== blog-wrap  ===== */
.blog-box {
  width: 100%;
  display: flex;
  align-items: center;
}

.blog-box .img-cover {
  display: flex;
  width: 310px;
  height: 310px;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--brd-20);
}

.blog-box .blog-info {
  width: 100%;
  padding-left: 36px;
}

.blog-box .blog-info .content {
  max-width: 412px;
  width: 100%;
}

.blog-box .blog-info .content p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-box .blog-info .content h3 {
  font-size: var(--h5);
  font-weight: 500;
  color: var(--primary);
  font-weight: 400;
  padding-bottom: clamp(15px, 1.146vw, 22px);
}

.blog-box .blog-info .content {
  color: var(--black);
  line-height: 1.388;
}

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

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

.blog-box .blog-info .content .btn-wrap {
  padding-top: clamp(15px, 1.823vw, 35px);
}

.blog-box .blog-info .content .btn-wrap .btn-link {
  padding-left: 0;
  padding-right: 0;
  bottom: 0;
}

.blog-wrap ul.blog-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: clamp(40px, 4.688vw, 90px);
}

.blog-wrap ul.blog-list li {
  width: 50%;
}

/* ===== blog-wrap  ===== */

/* ===== our programs  ===== */
.program-box.joy-programs-img {
  padding: 0 clamp(20px, 2.292vw, 44px) clamp(20px, 2.083vw, 40px);
}

.program-box.joy-programs-img .img-cover {
  height: 260px;
  padding: 0;
  overflow: hidden;
  border-radius: clamp(15px, 1.563vw, 30px);
}

.program-box.joy-programs-img .btn-wrap {
  padding-top: 20px;
}

.program-box.joy-programs-img .program-info {
  padding: 27px 0 0;
}

.program-box.joy-programs-img h3 {
  padding: 0 0 10px;
}

.program-box.joy-programs-img ul li {
  color: var(--black);
}

.program-box.joy-programs-img ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.program-box.joy-programs-img ul li::before {
  background: var(--primary);
}

.joy-cart-box {
  border-radius: var(--brd-30);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 239, 245, 1) 100%);
}

.joy-cart-box .img-cover {
  width: 41.57%;
  flex-shrink: 0;
  padding-bottom: 0;
  border-radius: clamp(15px, 1.563vw, 30px);
  overflow: hidden;
}

.joy-cart-box .img-cover img {
  position: initial;
}

.joy-cart-box .program-info {
  padding: clamp(30px, 2.604vw, 50px) 0 clamp(30px, 2.604vw, 50px) clamp(30px, 2.604vw, 50px);
}

.joy-cart-wrap .program-info h3 {
  column-gap: 10px;
}


.our-client .client-logo ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
  row-gap: 30px;
}

.our-client .client-logo ul li {
  flex: 1 1 25%;
  padding: 0 15px;
  text-align: center;
}

.our-client .client-logo ul li a {
  display: inline-flex;
  margin: auto;
  position: relative;
  /* padding-bottom: 100%; */
  height: 65px;
  width: auto;
}

.our-client .client-logo ul li a img {
  /* position: absolute;
  top: 0; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== our programs  ===== */

/* ===== resources-for-families  ===== */
.story-box .img-cover {
  padding-bottom: 71.341%;
}

.story-box h3 {
  color: var(--black);
}

.article-box .img-cover {
  display: block;
  padding-bottom: 74%;
}

.article-box h3 {
  font-weight: 500;
  color: var(--primary);
  line-height: 1.45;
  padding-top: clamp(15px, 1.563vw, 30px);
}

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


.helpful-resources .inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 239, 245, 1) 100%);
}

.helpful-resources .inner .program-box {
  background: none;
}

.helpful-resources .program-box.courage-img {
  max-width: 675px;
}

.articles-wrap .articles-list {
  max-width: 1090px;
  margin: 0 auto;
}

.articles-wrap .articles-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  row-gap: 30px;
}

.articles-wrap .articles-list ul li {
  width: 100%;
  padding: 0 10px;
}

.articles-wrap .inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 239, 245, 1) 100%);
}

/* ===== resources-for-families  ===== */

/* ===== how to give  ===== */
.make-gift-wrap .make-gift-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 42px;
}

.make-gift-wrap .make-gift-list ul li {
  padding: 0 15px;
  width: 50%;
  display: flex;
  align-items: center;
  column-gap: clamp(15px, 1.458vw, 28px);
}

.make-gift-wrap .make-gift-list ul li h3 {
  max-width: 250px;
  font-size: var(--btn-text);
  font-weight: 400;
  color: var(--primary);
}

.partner-with {
  background: linear-gradient(180deg, rgba(232, 237, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.partner-with .service-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -27px;
  row-gap: 54px;
  justify-content: center;
}

.partner-with .service-list li {
  width: 33.3333%;
  padding: 0 27px;
}

.shop-cause-wrap .partner-list {
  margin: 0 auto;
}

.shop-cause-wrap .partner-list ul {
  justify-content: center;
  margin: 0 -15px;
  row-gap: 30px;
}

.shop-cause-wrap .partner-list ul li {
  flex: 0 0 calc(200px + 7vw);
  padding: 0 15px;
}

.shop-cause-wrap .partner-list ul li a {
  display: block;
  padding-bottom: 80px;
}

.shop-cause-wrap .partner-list ul li a img {
  object-fit: contain;
}

/* ===== how to give  ===== */

/* ===== ways to support dragonfly  ===== */
.most-needed-wrap .most-needed {
  display: flex;
  overflow: hidden;
  border-radius: var(--brd-30);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 239, 245, 1) 100%);
}

.most-needed-wrap .most-needed .img-cover {
  width: 33.694%;
  flex-shrink: 0;
  padding: initial;
}

.most-needed-wrap .most-needed .most-info {
  width: 100%;
  padding: clamp(25px, 4.167vw, 80px) 0 clamp(25px, 4.167vw, 80px) clamp(25px, 3.125vw, 6.25vw);
}

.most-needed-wrap .most-needed .most-info h3 {
  font-weight: 500;
  padding-bottom: clamp(20px, 1.927vw, 37px);
}

.most-needed-wrap .most-needed .most-info ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 30px;
}

.most-needed-wrap .most-needed .most-info ul li {
  font-size: 16px;
  line-height: 1.8125;
  color: var(--black);
}

.most-needed-wrap .most-needed .most-info ul li:before {
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.most-needed-wrap .most-needed .most-info p strong {
  display: block;
}

.most-needed-wrap .most-needed .most-info .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: clamp(20px, 1.823vw, 35px);
}

.most-needed-wrap .most-needed .most-info .btn-wrap+p {
  padding-top: clamp(20px, 1.823vw, 35px);
}

.most-needed-wrap .most-needed.reverse .sponsor-img {
  width: 100%;
  flex-shrink: 0;
  padding: 32px;
}

.most-needed-wrap .most-needed.reverse .sponsor-img ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  row-gap: 24px;
}

.most-needed-wrap .most-needed.reverse .sponsor-img ul li {
  width: 50%;
  padding: 0 12px;
}

.most-needed-wrap .most-needed.reverse .sponsor-img ul li .img-cover {
  width: 100%;
  padding-bottom: 100%;
}

/* ===== ways to support dragonfly  ===== */
.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);
}

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

/*==New-css============*/
.bg-white {
  background: var(--white);
}

.program-text {
  padding: clamp(35px, 5.208vw, 60px) 0;
  background: var(--gray);
}

.program-text p {
  line-height: 1.25;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
}

.footer-contact {
  color: var(--white);
  text-align: left;
}

.footer-contact p {
  color: var(--white);
  text-align: left;
}

.footer-contact ul li a {
  color: var(--white);
}

.footer-contact h4 {
  margin-top: 15px;
  color: var(--white);
}

.chapters{
    background-color: transparent;
    
}
.chapters .btn-wrap{
    margin-bottom: 30px;
}

.chapter-info{
    background: #f0f0f0;
    padding: 30px;
    border-radius: 20px;
    margin: 50px 0 30px 0;
}


