@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('responsive.css');

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
}

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

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

ol,
ul {
  list-style: none;
}

image,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a{ text-decoration:none; }


.swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}


/***************************************
* Typography
***************************************/
body {
  color: #3f4853;
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif;
}

:root {
    --bg-dark-blue: #20207c;
    --bg-secondary: #e0a008;
}



h1,
.d-h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {

  h1,
  .d-h1 {
    font-size: 3.75rem;

  }
}



h3,
.d-h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {

  h3,
  .d-h3 {
    font-size: 18px;
  }
}

h4,
.d-h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (min-width: 768px) {

  h4,
  .d-h4 {
    font-size: 18px;
  }
}

h5,
.d-h5 {
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {

  h5,
  .d-h5 {
    font-size: 1.25rem;
  }
}

h6,
.d-h6 {
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {

  h6,
  .d-h6 {
    font-size: 1rem;
  }
}

/* Other HTML Tags */
p {
  font-size: inherit;
}

a {
  color: #223035;
  text-decoration: none;
}

a,
button {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  border: none;
  background-color: transparent;
}

.btn-01 {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    border: none;
    border-radius: 100px;
    line-height: 32px;
    letter-spacing: 0.2px;
   background-color: var(--bg-secondary);
    padding: 7px 30px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.btn-01::before {
    position: absolute;
    content: '';
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    border-radius: 100px;
    background-color: rgba(191, 165, 19, .5);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
}

.btn-01::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 200px;
    -khtml-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    border-radius: 200px;
    background: inherit;
    inset: 0;
    z-index: -1;
}

.btn-01:hover::before {
    width: 100%!important;
    height: 100%!important;
}


blockquote {
  -webkit-box-shadow: 0 22px 50px 11px rgba(0, 53, 102, 0.06);
  box-shadow: 0 22px 50px 11px rgba(0, 53, 102, 0.06);
  border-left: 4px solid #4729a3;
  border-radius: 12px;
  background-color: #fff;
  padding: 25px;
  font-size: 1.25rem;
}

blockquote p {
  line-height: 26px;
  font-size: 17px;
  font-weight: 500;
}

.tc-body {
  color: #5c6672;
}

.text-rich h1,
.text-rich h2,
.text-rich h3,
.text-rich h4,
.text-rich h5,
.text-rich h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich p {
  margin-bottom: 1rem;
}

.text-rich ul,
.text-rich ol {
  padding-top: 0rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.text-rich ul.content-list-1,
.text-rich ol.content-list-1 {
  padding-left: 0;
}

.text-rich ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: disc;
}

.text-rich ol {
  list-style: decimal;
}

.text-rich blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  border: 2px solid #003566;
  border-radius: 12px;
  padding: 20px 20px 35px 20px;
  color: #003566;
}

.text-rich blockquote::after {
  position: absolute;
  right: 44px;
  bottom: 18px;
  z-index: -1;
  background-image: url("../images/icons/icon-orange-gradient-quote.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  content: "";
}

@media (min-width: 576px) {
  .text-rich blockquote::after {
    padding: 36px 36px 45px 36px;
    width: 97px;
    height: 97px;
  }
}

.text-rich blockquote p {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1.25rem;
  font-family: "Raleway", sans-serif;
}

@media (min-width: 768px) {
  .text-rich blockquote p {
    font-size: 1.5rem;
  }
}

.text-rich blockquote cite {
  position: relative;
  padding-left: 36px;
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: capitalize;
}

.text-rich blockquote cite::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #003566;
  width: 26px;
  height: 1px;
  content: "";
}

.text-rich img {
  display: inline-block;
}

/***************************************
* Page Structure
***************************************/
.page-wrapper {
  overflow-x: clip;
}

.main-wrapper {
  overflow-x: clip;
}

/* Structure - Container */
.container-full {
  margin-inline: auto;
  width: 100%;
}

/* Structure - Padding Section(section padding Top and Bottom) */
.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-space {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-space-bottom {
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .section-space-bottom {
    padding-bottom: 120px;
  }
}

@media (min-width: 1400px) {
  .section-space-bottom-huge {
    padding-bottom: 210px;
  }
}

@media (min-width: 1400px) {
  .section-space-bottom-xhuge {
    padding-bottom: 294px;
  }
}

.section-space-top {
  padding-top: 60px;
}

@media (min-width: 768px) {
  .section-space-top {
    padding-top: 80px;
  }
}

@media (min-width: 992px) {
  .section-space-top {
    padding-top: 100px;
  }
}

@media (min-width: 1200px) {
  .section-space-top {
    padding-top: 120px;
  }
}

@media (min-width: 1400px) {
  .section-space-top-huge {
    padding-top: 210px;
  }
}

.section-bg-primary {
  background-color: #fff2ec;
}

.section-bg-secondary {
  background-color: #f0f6f3;
}

.section-bg-light-green {
  background-color: #f0f6f3;
}

.space-x-128 {
  padding-inline: 20px;
}

@media (min-width: 576px) {
  .space-x-128 {
    padding-inline: 30px;
  }
}

@media (min-width: 768px) {
  .space-x-128 {
    padding-inline: 40px;
  }
}

@media (min-width: 992px) {
  .space-x-128 {
    padding-inline: 80px;
  }
}

@media (min-width: 1400px) {
  .space-x-128 {
    padding-inline: 100px;
  }
}

@media (min-width: 1800px) {
  .space-x-128 {
    padding-inline: 128px;
  }
}

/***************************************
* Spacing
***************************************/
.mt-90 {
  margin-top: 90px;
}

/***************************************
* Utilities
***************************************/
/* Useful utility systems - Utility classes we like to use in most of our projects to build faster. */
.size-44 {
  width: 44px;
  height: 44px;
}

.w-full {
  width: 100%;
}

.rounded-full {
  border-radius: 50%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hidden {
  display: none;
}

.gradient-bg {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
}

.background-dark {
  background-color: #003566;
}

.social-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 1.125rem;
}

.social-menu.is-text-link-white a {
  color: rgba(255, 255, 255, 0.7);
}

.social-menu.is-text-link-white a:hover {
  color: #fff;
}

.social-menu.is-text-link-orange a {
  color: #fff;
}

.social-menu.is-text-link-orange a:hover {
  color: #ff7d44;
}

.social-link-round-gradient {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  border: 1px solid rgba(0, 53, 102, 0.35);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: #003566;
  font-size: 1.25rem;
}

.social-link-round-gradient::after {
  position: absolute;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  content: "";
}

.social-link-round-gradient:hover {
  border-color: rgba(255, 125, 68, 0.35);
  color: #fff;
}

.social-link-round-gradient:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 85px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 50%;
}

.page-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  border: 1px solid #003566;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  overflow: hidden;
  color: #003566;
  font-weight: 600;
  font-size: 1.25rem;
}

.page-link::after {
  position: absolute;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  content: "";
}

.page-link:hover {
  color: #fff;
}

.page-link:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.box-shadow-theme {
  -webkit-box-shadow: 11px 15px 80px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 80px 48px rgba(10, 6, 68, 0.05);
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  -webkit-box-shadow: 11px 15px 80px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 80px 48px rgba(10, 6, 68, 0.05);
  border: none;
  border-radius: 50%;
  background-color: #4729a3;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1.25rem;
}

.scroll-to-top:hover {
  background-color: #ff7d44;
}

.container-1560 {
  margin-inline: auto;
}

@media (min-width: 576px) {
  .container-1560 {
    padding-left: 40px;
    max-width: 1400px;
  }
}

@media (min-width: 1400px) {
  .container-1560 {
    padding-left: 80px;
    max-width: 1400px;
  }
}

@media (min-width: 1800px) {
  .container-1560 {
    padding-left: 0;
    max-width: 1560px;
  }
}

/***************************************
* Elements
***************************************/
h2.headingArea {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 6px;
  gap: 10px;
  padding: 0;
  color: #4729a3;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

h2.headingArea svg {
  stroke: #162f6a;
}


.section-tag.is-white-transparent {
  background-color: rgba(255, 255, 255, 0.17);
  color: #fff;
}

.section-tag.is-white {
  background-color: #fff;
}

.section-title.is-text-dark {
  color: #190b41;
}

.section-title.is-text-light {
  color: #fff;
}

.section-title.is-text strong {
  font-weight: 900;
}

.section-text {
  margin-top: 20px;
  font-size: 1.125rem;
}

.content-list {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  padding-left: 0px;
  color: #013566;
  font-weight: 500;
  font-size: 1.125rem;
}

.content-list.is-column-2 {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 992px) {
  .content-list.is-column-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.content-list-1 li {
  position: relative;
  padding-left: 40px;
  list-style: none;
}

.content-list-1 li::before {
  position: absolute;
  top: 0;
  left: 15px;
  content: "\f102";
  color: #ff7d44;
  font-family: "flaticon_trazan";
}

.content-list-2 li {
  position: relative;
  color: #5c6672;
  font-weight: 400;
  font-size: 1rem;
  list-style-type: disc;
}

.content-list-2 li strong {
  color: #003566;
}

.content-list-2 li::marker {
  color: #ff7d44;
}

.form-component {
  margin-bottom: 0rem;
}

.form-form {
  display: block;
}

.form-field-wrapper,
.form-input,
.is-select-input,
.is-text-area {
  width: 100%;
}

.form-field-wrapper {
  display: block;
}

.form-label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-input,
.is-select-input,
.is-text-area {
  margin-bottom: 0.75rem;
  outline: none;
  border: none;
  border-radius: 12px;
  background: #fff2ec;
  padding: 13px 20px;
  min-height: 3rem;
  color: #000;
  font-size: inherit;
}

.is-text-area {
  min-height: 250px;
}

.search-button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  width: 40px;
  height: 100%;
  color: #003566;
}

select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/icons/icon-blue-chevron-down.svg");
  background-size: 9px 5px;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 20px);
  background-position-y: 50%;
}

#preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  inset: 0;
  background: #190b41;
  /* Gray background */
}

.preloader-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-weight: 600;
  font-size: 4rem;
}

.letter {
  display: inline-block;
  color: #fff;
}

.main {
  display: none;
  padding: 2rem;
  text-align: center;
}

/***************
+ Components:
****************/
/***************************************
* - Components / Button
***************************************/
.button-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 58px;
  padding: 5px 5px 5px 30px;
  overflow: hidden;
  font-weight: 900;
}

.btn::before {
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translate(calc(-100% - 2px));
  transform: translate(calc(-100% - 2px));
  z-index: -1;
  -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  content: "";
}

.btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: #003566;
  font-size: 1.125rem;
}

.btn .btn-icon span:nth-child(1) {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn .btn-icon span:nth-child(2) {
  position: absolute;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn .btn-icon-sm {
  width: 36px;
  height: 36px;
}

.btn:hover::before {
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.btn:hover .btn-icon span:nth-child(1) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
}

.btn:hover .btn-icon span:nth-child(2) {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}
.fs-18{ font-size:18px !important; }
.btn-primary {
  background: #4729a3;
}

.btn-primary:hover {
  background: #190b41;
}

.btn-primary:hover::before {
  background: #190b41;
}

.btn-white {
  background: #fff;
  color: #003566;
}

.btn-white .btn-icon {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  color: #fff;
}

.btn-white:hover {
  background: #003566;
  color: #fff;
}

.btn-white:hover::before {
  background: #003566;
}

.btn-secondary {
  background: #4729a3;
}

.btn-secondary:hover {
  background: rgb(255, 229, 202);
}

.btn-secondary:hover::before {
  background: #003566;
}

.btn-secondary-alt {
  background: #4729a3;
  color: #fff;
}

.btn-secondary-alt:hover {
  background: #4729a3;
  color: #003566;
}

.btn-secondary-alt:hover::before {
  background: #fff2ec;
}

.btn-secondary-alt:hover .btn-icon {
  background-color: #4729a3;
  color: #fff;
}

.btn-secondary-outline {
  border: 1px solid #4729a3;
  background: transparent;
  color: #4729a3;
}

.btn-secondary-outline .btn-icon {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  color: #fff;
}

.btn-secondary-outline:hover {
  background: rgb(255, 229, 202);
  color: #fff;
}

.btn-secondary-outline:hover::before {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
}

.btn-secondary-outline:hover .btn-icon {
  background: #fff;
  color: #003566;
}

.btn-details {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #ff7d44;
  font-weight: 600;
}

.btn-details .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  font-size: 1.125rem;
}

.btn-details .btn-icon span {
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-details .btn-icon span:nth-child(1) {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.btn-details .btn-icon span:nth-child(2) {
  position: absolute;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

.btn-details:hover {
  color: #ff7d44;
}

.btn-details:hover .btn-icon span:nth-child(1) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
}

.btn-details:hover .btn-icon span:nth-child(2) {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}


#preloader {
  z-index: 99999;
}

/***************************************
* - Components / Navber
***************************************/
.menuSection ul.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* gap: 0 0px; */
  font-weight: 600;
}

.menuSection ul.header-nav-list li .header-nav-link {
  position: relative;
  overflow: hidden;
  color: #fff;
  line-height: 3;
  padding:0 17px;
  font-size: 15px;
  display: block;
  text-decoration: none;
}
.menuSection ul.header-nav-list li:hover .header-nav-link,
.menuSection ul.header-nav-list li .header-nav-link.active{  background-color: var(--bg-secondary); color:#fff; } 

.header-nav-link.active:after,
.header-nav-item:hover .header-nav-link::after {
  right: auto;
  left: 0;
  width: 100%;
}

.header-nav .has-submenu {
  position: relative;
  padding-right: 0px;
}

/* .header-nav .has-submenu::after {
  position: absolute;
  top: 50%;
  right: -5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f078";
  color: #003566;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "Font Awesome 6 Pro"; 
}*/
.header-nav .has-submenu.is-white::after {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.header-nav .has-submenu:hover .dropdown-menu-list {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}

.dropdown-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  row-gap: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  padding: 0;
  min-width: 250px;
}
.dropdown-menu-list li{ border-bottom:1px solid #c5c5c5; }
.dropdown-menu-item:not(:last-child) {}

.dropdown-menu-link {
  position: relative;
  color: #000;
  display: block;
  padding: 8px 15px;
  font-weight: 500;
}

.dropdown-menu-link:hover {
  color: #003566;
  background: #d2dfff;
}

.dropdown-menu-link:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}


.header-wrapper {
  position: relative;
}

.header-wrapper:has(.sticky-menu) {
  position: static;
}

.header-top-style-1 {
  background-color: #fff;
  padding-block: 5px 5px;
  border-bottom: 1px solid #c4c4c4;
}

.header-3 {
  margin: 0 80px;
  position: relative;
  z-index: 9999;
}

.header-top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1350px) {
  .header-top-area {
    gap: 14px;
  }

  .header-top-center {
    gap: 7px;
    padding-inline: 12px;
  }

  nav .header-nav-link {
    font-size: 14px;
  }

  nav .btn {
    gap: 10px;
    padding: 5px 5px 5px 20px;
  }

  .header-bottom-style-1 .header-bottom-right {
    gap: 30px;
  }

  .header-user-event::before {
    left: -13px;
  }

  nav .dropdown-menu-link {
    font-size: 12px;
    line-height: 11px;
  }

  .industrial-link {
    font-size: 15px;
  }

  h2.section-title {
    font-size: 2.2rem;
  }

  .service-wrapper-6 .service-box-6 .icon-items h3 a {
    font-size: 26px;
  }

}

.section-header .header-top-area .header-top-right ul li {
  padding: 0 3px;
}
.section-header .header-top-area .header-top-right ul li .SearchBtn i{ font-size:22px; color: #20104e;}
.section-header .header-top-area .header-top-right ul li.dropdown {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.section-header .header-top-area .header-top-right ul li.line-Area{ border-left: 1px solid #000;}
.section-header .header-top-area .header-top-right ul li svg {
  fill: #20104e;
}


.header-top-center {
  display: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

@media (min-width: 1200px) {
  .header-top-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px 25px;
  color: #fff;
}

.header-info-list .headerImagesArea img{ height:73px; }
.header-info-list .header-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.header-info-list .header-info-item .searchAreaPanel .form-control {
  padding: 12px 15px;
  width: 310px;
  border: 1px solid #d7d7d7;
  border-bottom: 2px solid #4f3796;
  border-radius: 0px !important;
}

.header-info-list .header-info-item .searchAreaPanel .SearchBtn {
  border: 0;
  margin: 0 !important;
  padding: 0;
  position: absolute;
  right: 4px;
  top: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: #fff;
  color: #000;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
}




@media (min-width: 1800px) {
  .header-info-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.header-info-item:nth-child(3) {
  display: none;
}

@media (min-width: 1800px) {
  .header-info-item:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-info-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header-info-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.09);
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.header-info-title {
  display: block;
  font-size: 0.875rem;
}

.header-info-link {
  position: relative;
  color: #fff;
  font-weight: 600;
}

.header-info-link.is-link-to-text::after {
  display: none;
  padding: 0;
}

.header-info-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-color: currentColor;
  width: 0%;
  height: 2px;
  content: "";
}

.header-info-link:hover::after {
  width: 100%;
}

.localization {

  border: none;
  background: transparent;
  background-image: url("../images/icons/icon-white-chevron-down.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  padding-inline: 25px;
  color: #fff;
}
.section-header .header-top-left a.logo{}
/*.section-header .header-top-left a.logo img {
  height: 100px;
}*/

.section-header .header-top-left a.logo h4{ color:#263c9f; font-weight:700; font-size:26px; line-height:28px; }
.section-header .header-top-left a.logo h4 span{ display:block; }



@media (min-width: 1400px) {

  .localization {
    display: inline-block;
  }

}



.localization option {
  color: #000;
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.header-bottom-style-1 {
  width: 100%;
}

.header-bottom-style-1 .header-bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-radius: 50px;
  background-color: #fff;
  padding: 0px 10px;

}

.menuSection {
  background-color: var(--bg-dark-blue);
  position: relative;
  z-index: 99;
}

/*.menuSection .header-bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;

}*/

.menuSection.sticky-menu {
  position: fixed;
  top: 0;
  bottom: auto;
   background-color: var(--bg-dark-blue);
  left: 0;
  z-index: 999;
  width: 100%;

}

.menuSection.sticky-menu ul.header-nav-list li .header-nav-link{ color:#fff; }
.menuSection.sticky-menu ul.header-nav-list li:hover .header-nav-link, .menuSection.sticky-menu ul.header-nav-list li .header-nav-link.active {
      background-color: var(--bg-secondary);
    color: #fff;
}

/*mobile menu*/

.category-menu ul {
  padding: 0;
  list-style: none;
}

.category-menu ul li {
  position: relative;
}

.category-menu ul li a {
  display: block;
  position: relative;
  padding: 10px;
  color: rgba(0, 53, 102, 0.85);
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
}

.category-menu ul li a:has(~ .subcategory)::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f078";
  color: #003566;
  font-weight: 600;
  font-size: 1rem;
  line-height: 2.5;
  font-family: "Font Awesome 6 Pro";
}

.subcategory {
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
  max-height: 0;
  overflow: hidden;
}

.subcategory.active {
  max-height: 1000px;
  /* Adjust this value as needed */
}

.subcategory li {
  margin-inline: 10px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.subcategory li:last-child {
  border-bottom: none;
}

.subcategory a {
  display: block;
  text-decoration: none;
}

/*./mobile menu*/



.header-bottom-style-1 .header-bottom-left {
  display: none;
  padding-right: 15px;
}


@media (min-width: 576px) {
  .header-bottom-style-1 .header-bottom-left {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .header-bottom-style-1 .header-bottom-left {
    display: none;
  }
}

@media (min-width: 1800px) {
  .header-bottom-style-1 .header-bottom-left {
    display: inline-block;
  }
}

.header-bottom-style-1 .header-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

@media (min-width: 576px) {
  .header-bottom-style-1 .header-bottom-right {
    width: auto;
  }
}

@media (min-width: 992px) {
  .header-bottom-style-1 .header-bottom-right {
    width: 100%;
  }
}

.header-bottom-style-1 .header-bottom-right {
  gap: 30px;
}

.header-user-event::before {
  left: -10px;
}


.header-bottom-style-1 .btn {

  gap: 10px;

}



}

@media (min-width: 768px) {
  .header-user-event {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: auto;
  }
}

.header-user-event .get-touch-info-list {
  display: none;
}

@media (min-width: 1800px) {
  .header-user-event .get-touch-info-list {
    display: block;
  }
}

.header-user-event-button {
  position: relative;
  color: #013566;
  font-size: 1.5rem;
}

.header-user-event-button-cart {
  display: none;
}

.header-user-event-button .product-number {
  display: block;
  position: absolute;
  top: 22.5px;
  left: 12.5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  border-radius: 50%;
  background-color: #ff7d44;
  min-width: 22px;
  height: 22px;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 22px;
}

.header-user-event-button-search {
  border: 1px solid #013566;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.header-user-event a {
  display: none;
}

@media (min-width: 992px) {
  .header-user-event a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*banner*/


.bannerSection.sliderArea-01 {
  position: relative;
   width:100%;
}

.bannerSection.sliderArea-01 .bx-wrapper {
  border: 0;
  margin: 0;
  padding: 0;
}

.bannerSection.sliderArea-01 .bxslider {
  width: 100%;
  border: 0;
}

.bannerSection.sliderArea-01 .bannerSlider img{ width:100%; }

.sliderArea-01 .bx-controls .bx-controls-direction a {
  background: transparent;
  border: 1px solid #597db1;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-indent: 0;
  font-size: 0;
  z-index: 99;
}

.sliderArea-01 .bx-controls .bx-controls-direction a:hover {
  background: #e46400;
  border-color: #e46400;
}

.sliderArea-01 .bx-controls .bx-controls-direction a:after {
  position: absolute;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 0%;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  font-family: 'Font Awesome 6 Pro';
}

.sliderArea-01 .bx-controls .bx-controls-direction a.bx-prev:after {
  content: '\f053';
}

.sliderArea-01 .bx-controls .bx-controls-direction a.bx-next:after {
  content: '\f054';
}



.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-stop {

  background: url('../images/controls.png') -86px -44px no-repeat;

}

.sliderArea-01 .bx-wrapper .bx-controls-auto {
  bottom: 19px !important;
  right: 10px !important;
  background: #162f6a;
  height: 25px;
  width: 25px !important;
  padding-top: 7px;
  border-radius: 5px;
  padding-left: 5px;
  line-height: 20px;
  /* display: none; */
}

.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: none;
}

.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-controls-auto-item:last-child {
  display: block;
}

.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-start {
  background: url(../images/controls.png) -86px -11px no-repeat;
}

.sliderArea-01 .bwrappex-r .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: block;
}

.sliderArea-01 .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  display: flex;
  position: absolute;
  background: #d2dfff;
  margin: 0;
  padding: 6px 5px;
  border-radius: 10px;
  bottom: 18px;
  width: auto;
  right: 44px;
}

.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a {
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #9b7cfa;
}

.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a:hover,
.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a.active,
.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #29136c;
}

.announcementsSection {
  background: #dbdbff;
  position: relative;
}

.announcementsSection h4 {
    color: #fff;
    padding: 8px;
    font-weight: 800;
    background: #263c9f;
}

.announcementsSection h4 svg {
  margin-left: 5px;
}

.announcementsSection .client-slider-style-1 {
  position: relative;
  z-index: 1;
  margin-top: 0px;
  -webkit-box-shadow: none;
  color: #000;
  box-shadow: none;
  border-left: 0 solid #4729a3;
  border-radius: 0;
  background-color: transparent;
  padding: 7px 00px;
  text-align: center;
}



.announcementsSection marquee a {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-right: 100px;
}


.announcementsSection a.btnPs {
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #000;
    border-radius: 50px;
    position: absolute;
    font-size: 18px;
    right: 0px;
    top: 6px;
}

.d-none-1 {
  display: none;
}


/***************************************
* - Layout / Footer
***************************************/
.footer {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat repeat-y;
 background-color: var(--bg-dark-blue);
  height: 100%;

  color: #fff;
}

.section-footer .footer .footer-center {}

.footer-top-space {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-top-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .footer-top-space {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .footer-top-space {
    padding-top: 180px;
    padding-bottom: 120px;
  }
}

.footer .footer-bottom {
  /*  background: #190b41;*/
  padding: 0px 0 10px 0;

}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;*/
  flex-wrap: wrap;

}

.footer-nav a {
  display: inline-block;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.footer-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  width: 0%;
  height: 1px;
  content: "";
}

.footer-nav a:hover {
  color: #fff;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-widget .footer-title {
  position: relative;
  margin-bottom: 30px;
  color: #fff;
}

.footer-widget .footer-title::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  background-color: #fff;
  width: 100px;
  height: 2px;
  content: "";
}

.footer-widget .footer-title.rtLine::after {
  position: absolute;
  bottom: -15px;
  left: auto;
  right: 0;
  background-color: #fff;
  width: 100px;
  height: 2px;
  content: "";
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li i {
  margin-right: 5px;
  font-size: 12px;
}

.footer-widget-about p {
  margin-block: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.footer-widget-about .social-menu {
  gap: 20px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
  width: 75px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(99, 171, 69, 0.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: #fff;
  font-size: 16px;
  z-index: 99;
  position: relative;
  margin-top: 25px;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}

.footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}

.footer-widget .footer-content {
  max-width: 300px;
}

.footer-widget .online {
  font-size: 24px;
  color: #FF7D44;
  margin-top: 30px;
  font-family: "DM Sans";
}

.footer-widget .call-text {
  margin-top: 15px;
}

.footer-widget .call-text a {
  color: #fff;
  font-family: "DM Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

.footer-widget .contact-list-4 li {
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  color: #fff;
}

.footer-widget .contact-list-4 li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget .contact-list-4 li span {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-info-area-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 50px;
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1199px) {
  .contact-info-area-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.contact-info-area-2 .contact-info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.contact-info-area-2 .contact-info-items .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  border: 1.8px solid rgba(255, 255, 255, 0.13);
  text-align: center;
  color: #fff;
}

.contact-info-area-2 .contact-info-items .content p {
  color: #FF7D44;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

.contact-info-area-2 .contact-info-items .content h6 {
  font-weight: 600;
  color: #fff;
  font-family: "DM Sans";
}

.contact-info-area-2 .contact-info-items .content h6 a {
  color: #fff;
}

.footer-info-block {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-top: none;
  border-bottom: none;
}

@media (min-width: 768px) {
  .footer-info-block {
    border: 1px solid rgba(255, 255, 255, 0.11);
  }
}

.footer-info-list {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  margin-inline: auto;
  max-width: 1450px;
}

@media (min-width: 768px) {
  .footer-info-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .footer-info-list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-info-list::after {
  position: absolute;
  top: -8px;
  left: 0;
  background-color: #ff7d44;
  width: 100%;
  height: 8px;
  content: "";
}

.footer-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-inline: 1px solid rgba(255, 255, 255, 0.11);
  padding: 30px;
}

.footer-info-item:nth-child(1),
.footer-info-item:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

@media (min-width: 1200px) {

  .footer-info-item:nth-child(1),
  .footer-info-item:nth-child(2) {
    border-bottom: none;
  }
}

@media (min-width: 1200px) {
  .footer-info-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 1400px) {
  .footer-info-item {
    padding: 40px 60px;
  }
}

@media (min-width: 1800px) {
  .footer-info-item {
    padding: 57px 50px;
  }
}

.footer-info-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background-color: #ff7d44;
  width: 60px;
  height: 60px;
}

.footer-info-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.footer-info-title {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-info-link {
  color: rgba(255, 255, 255, 0.85);
}

.footer-info-link:hover {
  color: #ff7d44;
}

.footer-info-link.is-text:hover {
  color: currentColor;
}

.newsletter-form-4 {
  border-radius: 12px;
  background: #0D2455;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}

@media screen and (max-width: 1199px) {
  .newsletter-form-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.newsletter-form-4 h3 {
  font-size: 30px;
  color: #fff;
  font-family: "DM Sans";
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

.newsletter-form-4 .form-clt {
  max-width: 750px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 1199px) {
  .newsletter-form-4 .form-clt {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.newsletter-form-4 .form-clt input {
  border-radius: 4px;
  background: #FFF;
  width: 100%;
  border: none;
  outline: none;
  line-height: 1;
  padding: 21px 30px;
  max-width: 510px;
}

.footer-bottom-wrapper-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
}

@media screen and (max-width: 1199px) {
  .footer-bottom-wrapper-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.footer-bottom-wrapper-4 p {
  color: #fff;
}

.footer-bottom-wrapper-4 .social-menu a {
  background: #0D2455;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  color: #fff !important;
}

.footer-bottom-wrapper-4 .social-menu a:hover {
  background-color: #FF7D44;
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@media screen and (max-width: 991px) {
  .bottom-footer-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

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

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

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

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

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

@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes rotated2 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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

@keyframes rotated2 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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

@-webkit-keyframes wave {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.img-custom-anim-left {
  -webkit-animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@-webkit-keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  -webkit-animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@-webkit-keyframes img-anim-right {
  0% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-right {
  0% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  -webkit-animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  -webkit-animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes img-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-bottom {
  -webkit-animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.service-section-3 {
  position: relative;
  z-index: 9;
}

.service-section-3 .arrow-shape {
  position: absolute;
  left: 18%;
  top: 148px;
  z-index: -1;
}

/***************************************
* - Layout / Sidebar
***************************************/
.sidebar-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar-item {
  border: 1px solid rgba(0, 53, 102, 0.15);
  border-radius: 12px;
  padding: 30px 35px;
}

.sidebar-title {
  margin-bottom: 20px;
  line-height: 1;
}

.sidebar-search-input {
  border: none;
  border-radius: 4px;
  background-color: rgba(0, 53, 102, 0.06);
  padding: 7.5px 15px;
  width: 100%;
  color: #003566;
}

.sidebar-search-input::-webkit-input-placeholder {
  color: #636d6c;
}

.sidebar-search-input::-moz-placeholder {
  color: #636d6c;
}

.sidebar-search-input:-ms-input-placeholder {
  color: #636d6c;
}

.sidebar-search-input::-ms-input-placeholder {
  color: #636d6c;
}

.sidebar-search-input::placeholder {
  color: #636d6c;
}

.sidebar-search-input:focus {
  outline: none;
  border: none;
}

.blog-category-item {
  border-bottom: 1px solid rgba(0, 53, 102, 0.15);
  padding-block: 15px;
}

.blog-category-item:first-of-type {
  padding-top: 0;
}

.blog-category-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-category-link {
  color: #636d6c;
  font-weight: 400;
}

.blog-category-link:hover {
  color: #ff7d44;
}

.blog-recent-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-recent-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 15px;
}

@media (min-width: 576px) {
  .blog-recent-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.blog-recent-thumbnail {
  width: 86px;
  height: 90px;
}

.blog-recent-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.blog-recent-date {
  display: block;
  color: #ff7d44;
}

.blog-recent-link {
  color: #003566;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-recent-link:hover {
  color: #ff7d44;
}

.blog-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-tag-link {
  display: inline-block;
  border-radius: 4px;
  background-color: rgba(0, 53, 102, 0.06);
  padding: 5px 18px;
  color: #636d6c;
}

.blog-tag-link:hover {
  background-color: #ff7d44;
  color: #fff;
}

.service-category-item {
  border-bottom: 1px solid rgba(0, 53, 102, 0.15);
  padding-block: 15px;
}

.service-category-item:first-of-type {
  padding-top: 0;
}

.service-category-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.service-category-link {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  padding-left: 24px;
  color: #003566;
  font-weight: 600;
}

.service-category-link::before,
.service-category-link::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "\f178";
  color: #ff7d44;
  font-family: "Font Awesome 6 Pro";
}

.service-category-link::before {
  left: 0;
}

.service-category-link::after {
  right: -24px;
  opacity: 0;
}

.service-category-link:hover {
  border-color: #ff7d44;
  padding-left: 0;
  color: #ff7d44;
}

.service-category-link:hover::before {
  left: -24;
  opacity: 0;
}

.service-category-link:hover::after {
  right: -24px;
  opacity: 1;
}

.sidebar-banner {
  position: relative;
  border-radius: 12px;
}

.sidebar-banner .inner-content {
  position: absolute;
  bottom: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  background-color: rgba(0, 53, 102, 0.12);
  padding: 25px 40px;
  width: calc(100% - 32px);
  color: #fff;
  text-align: center;
}

.service-banner-info-block {
  margin-top: 20px;
  border-radius: 12px;
  background-color: #003566;
  padding: 20px;
}






.client-slider-style-1 {
  position: relative;
  z-index: 1;
  margin-top: -40px;
  -webkit-box-shadow: 0 22px 50px 11px rgba(0, 53, 102, 0.06);
  box-shadow: 0 22px 50px 11px rgba(0, 53, 102, 0.06);
  border-left: 5px solid #4729a3;
  border-radius: 12px;
  background-color: #fff;
  padding: 20px 20px;
  text-align: center;
}

.client-slider-style-1 svg {
  fill: #4729a3;
}

@media (min-width: 576px) {
  .client-slider-style-1 {
    padding: 20px 40px;
  }
}

@media (min-width: 1200px) {
  .client-slider-style-1 {
    padding: 15px 10px;
    text-align: left;
  }
}

.hero-3 {
  padding: 200px 0 150px;
  position: relative;
  z-index: 9;
  background-attachment: fixed;
}

@media screen and (max-width: 991px) {
  .hero-3 {
    padding: 130px 0;
  }
}

.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #fff;
  width: 6.5%;
}

@media screen and (max-width: 1899px) {
  .hero-3::before {
    display: none;
  }
}

.hero-3 .hero-list-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  left: 2%;
  top: 0;
  bottom: 0;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: 99;
}

@media screen and (max-width: 1899px) {
  .hero-3 .hero-list-contact {
    display: none;
  }
}

.hero-3 .hero-list-contact li {
  color: #003566;
  font-family: "DM Sans";
  font-size: 18px;
  font-weight: 700;
}

.hero-3 .hero-list-contact li a {
  font-weight: 500;
  color: #003566;
}

.hero-3 .hero-content-3 .hero-items-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 1199px) {
  .hero-3 .hero-content-3 .hero-items-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero-3 .hero-content-3 .hero-items-box .video-link:not(:last-child) {
  border-right: 1px solid #fff;
  padding-right: 30px;
}

.hero-3 .hero-content-3 .hero-items-box .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-3 .hero-content-3 .hero-items-box .client-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hero-3 .hero-content-3 form {
  margin-top: 50px;
}

.hero-3 .hero-content-3 form .input-item {
  max-width: 710px;
  position: relative;
}

.hero-3 .hero-content-3 form .input-item .select-item1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 410px;
  position: absolute;
  top: 0;
  right: 0;
}

.hero-3 .hero-content-3 form .input-item input {
  border-radius: 12px;
  background: #FFF;
  border: none;
  outline: none;
  width: 100%;
  height: 72px;
  padding-left: 30px;
}

.hero-3 .hero-content-3 form .input-item select {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: none;
  border-radius: 0;
  background-color: none;
  padding-right: 70px !important;
  padding-left: 15px !important;
  padding: 0;
  width: 100%;
  min-height: 72px;
  color: #5c6672;
  border-left: 1px solid rgba(0, 53, 102, 0.13);
}

@media screen and (max-width: 575px) {
  .hero-3 .hero-content-3 form .input-item select {
    padding-right: 30px !important;
  }
}

.hero-3 .hero-content-3 form .input-item .shipment-button {
  border-radius: 0px 12px 12px 0px;
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  height: 72px;
  color: #fff;
  padding: 0 45px;
  min-width: 215px;
}

@media screen and (max-width: 575px) {
  .hero-3 .hero-content-3 form .input-item .shipment-button {
    padding: 0 10px;
    min-width: 170px;
  }
}

.hero-4 {
  padding: 80px 0 0;
}

@media screen and (max-width: 1399px) {
  .hero-4 {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 991px) {
  .hero-4 {
    padding-bottom: 0;
  }
}

.hero-4 .hero-content .section-tag {
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  padding: 7px 20px;
  color: #ff7d44;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
}

.hero-4 .hero-content h1 {
  color: #003566 !important;
  font-weight: 800;
  letter-spacing: -1.44px;
}

.hero-4 .hero-content .section-text {
  color: #5C6672;
}

.hero-4 .hero-content .hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 95px;
}

@media screen and (max-width: 1199px) {
  .hero-4 .hero-content .hero-button {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
  }
}

.hero-4 .hero-content .hero-button .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-4 .hero-content .hero-button .client-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #49515B;
}

.hero-4 .hero-image {
  position: relative;
  margin-bottom: -7px;
}

@media screen and (max-width: 1399px) {
  .hero-4 .hero-image {
    margin-bottom: 0;
  }

  .hero-4 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-4 .hero-image .delivery-tag {
  position: absolute;
  right: -77px;
  top: 100px;
}

@media screen and (max-width: 1199px) {
  .hero-4 .hero-image .delivery-tag {
    display: none;
  }
}

.hero-5 {
  padding: 120px 0 0;
}

.hero-5 .hero-content-3 {
  margin-left: -100px;
}

@media screen and (max-width: 1599px) {
  .hero-5 .hero-content-3 {
    margin-left: 0;
  }
}

.hero-5 .hero-content-3 h2 {
  font-weight: 800;
  font-family: Raleway;
}

.hero-5 .hero-content-3 p {
  font-size: 18px;
  font-family: "DM Sans";
  font-weight: 500;
  color: #fff;
  max-width: 540px;
}

.hero-5 .hero-content-3 .hero-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1199px) {
  .hero-5 .hero-content-3 .hero-button {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero-5 .hero-content-3 .hero-button .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.hero-5 .hero-content-3 .hero-button .icon-items .icon {
  width: 55px;
  height: 55px;
  line-height: 72px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF7D44;
  color: #fff;
  font-size: 22px;
}

.hero-5 .hero-content-3 .hero-button .icon-items span {
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans";
  color: #fff;
}

.hero-5 .hero-content-3 .hero-button .icon-items h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans";
}

.hero-5 .hero-content-3 .hero-button .icon-items h4 a {
  color: #fff;
}

.hero-5 .hero-image {
  margin-left: -50px;
}

@media screen and (max-width: 1399px) {
  .hero-5 .hero-image {
    margin-left: 0;
  }

  .hero-5 .hero-image img {
    width: 100%;
  }
}

/***************************************
 - Sections / Get in touch
***************************************/
.get-touch-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.get-touch-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 20px;
}

.get-touch-info-list li .icon {
  color: #ff7d44;
  font-size: 2.5rem;
}

.get-touch-info-list li .icon.is-gradient {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
}

.get-touch-info-list li .icon-rounded-full {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ff7d44;
  width: 52px;
  height: 52px;
  color: #fff;
}

.get-touch-info-list li .icon-rounded-full.is-gradient {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
}

.get-touch-info-list li .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.get-touch-info-list li .content span {
  display: block;
}

.get-touch-info-list li .content a,
.get-touch-info-list li .content address {
  display: block;
  color: #013566;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.get-touch-form-block {
  border-radius: 12px;
  background-color: #fff;
  padding: 20px;
}

@media (min-width: 768px) {
  .get-touch-form-block {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .get-touch-form-block {
    padding: 45px;
  }
}

.get-touch-form-block form {
  margin-top: 28px;
}

.get-touch-form-block input:not([type=checkbox]),
.get-touch-form-block textarea,
.get-touch-form-block select,
.get-touch-form-block .form-input-1 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid rgba(0, 53, 102, 0.06);
  border-radius: 50px;
  background-color: rgba(0, 53, 102, 0.06);
  padding: 9px 25px;
  width: 100%;
  min-height: 48px;
  color: #5c6672;
}

.get-touch-form-block input:not([type=checkbox]):focus-visible,
.get-touch-form-block textarea:focus-visible,
.get-touch-form-block select:focus-visible,
.get-touch-form-block .form-input-1:focus-visible {
  border-color: #ff7d44;
}

.get-touch-form-block .form-input-1.is-bg-white {
  background-color: #fff;
}

.get-touch-form-block textarea {
  border-radius: 12px;
  min-height: 162px;
}

.get-touch-form-block .form-check-input {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #003566;
  border-radius: 2px;
}

.get-touch-form-block .form-check-input:focus-visible {
  outline: none;
}

.get-touch-form-block .form-check-input:checked {
  border-color: #ff7d44;
  background-color: #ff7d44;
}

.get-touch-form-block.is-bg-primary {
  background-color: #fff2ec;
}

.get-touch-form-block.is-bg-primary textarea,
.get-touch-form-block.is-bg-primary select,
.get-touch-form-block.is-bg-primary input,
.get-touch-form-block.is-bg-primary .form-input-1 {
  background-color: #fff;
}

.form-input-1 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid rgba(0, 53, 102, 0.06);
  border-radius: 50px;
  background-color: rgba(0, 53, 102, 0.06);
  padding: 9px 25px;
  width: 100%;
  min-height: 48px;
  color: #5c6672;
}

.form-input-1:focus-visible {
  border-color: #ff7d44;
}

.form-input-1.is-bg-white {
  background-color: #fff;
}

.form-input-1.is-bg-white option {
  color: #333;
}

.range-track {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  width: 100%;
  height: 6px;
}

.range-between {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 5px;
  background: orange;
  height: 6px;
}

.slider-container {
  position: relative;
}

.slider {
  width: 100%;
  height: 6px;
  pointer-events: none;
}

.slider input[type=range] {
  pointer-events: all;
  -webkit-appearance: none;
  position: absolute;
  margin: 0;
  background: none;
  width: 100%;
  height: 6px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
  background: #ff7d44;
  width: 16px;
  height: 16px;
}

.range-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

/***************************************
 - Sections / Work Process
***************************************/
.work-process-item-block .image-block {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .work-process-item-block .image-block {
    margin-top: 80px;
    margin-bottom: 44px;
  }
}

.work-process-item-block .image-block>img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.work-process-item-block .image-block .icon-block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: -39px;
  left: 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  width: 78px;
  height: 78px;
}

.work-process-item-block .image-block .shape-block {
  position: absolute;
  top: -50%;
  left: calc(100% - 80px);
  z-index: -1;
}

.work-process-item-block .image-block .dot-block {
  position: absolute;
  top: 50%;
  left: calc(100% - 18px);
}

.work-process-item-block .content h4 {
  margin-bottom: 15px;
}

.work-process-list {
  margin-top: 0;
  min-height: auto;
}

@media (min-width: 1200px) {
  .work-process-list {
    margin-top: -210px;
    min-height: 800px;
  }
}

.work-process-item {
  margin-top: 78px;
}

@media (min-width: 1200px) {
  .work-process-item:nth-child(1) {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .work-process-item:nth-child(2) {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .work-process-item:nth-child(3) {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

.work-process-item .shape-block,
.work-process-item .dot-block {
  display: none;
}

@media (min-width: 1200px) {

  .work-process-item .shape-block,
  .work-process-item .dot-block {
    display: inline-block;
  }
}

.work-process-item:last-child .shape-block {
  display: none;
}

.working-process-box-items-3 {
  margin-top: 30px;
}

.working-process-box-items-3 .working-process-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.working-process-box-items-3 .working-process-icon-box .icon {
  border-radius: 12px;
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  width: 122px;
  height: 120px;
  line-height: 170px;
  text-align: center;
}

.working-process-box-items-3 .working-process-icon-box h4 {
  font-size: 24px;
  font-weight: 700;
  font-family: Raleway;
}

.working-process-box-items-3 h3 {
  margin-bottom: 10px;
  font-family: Raleway;
  font-size: 24px;
}

.working-process-box-items-3 p {
  font-size: 15px;
  font-weight: 500;
  line-height: 175%;
}

.feature-faq-wrapper .feature-faq-content .section-content-block p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
}

.feature-faq-wrapper .accordion-item {
  border: none !important;
  background: transparent;
}

.feature-faq-wrapper .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  color: #003566;
  font-family: Raleway;
  border-radius: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  padding: 20px 0 0;
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 1px solid rgba(0, 53, 102, 0.12);
  padding-bottom: 20px;
}

.feature-faq-wrapper .accordion-item .accordion-header .accordion-button span {
  margin-right: 20px;
  color: #D83B20;
}

.feature-faq-wrapper .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  background: transparent;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  color: #003566;
  font-size: 16px;
}

.feature-faq-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-weight: 500;
  color: #D83B20;
}

.feature-faq-wrapper .accordion-item .accordion-header .accordion-button.collapsed {
  background: transparent;
  padding: 18px 0;
  color: #003566;
}

.feature-faq-wrapper .accordion-item .accordion-collapse .accordion-body {
  padding-top: 15px;
  color: #5C6672;
  background: transparent;
  padding-bottom: 0;
  font-weight: 500;
  border: none;
  margin-top: 0;
}

.feature-section-4 {
  margin-bottom: -120px;
  position: relative;
  z-index: 9;
}

.feature-section-4 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.working-process-section-3 {
  position: relative;
  z-index: 9;
}

.working-process-section-3 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.working-process-section-3 .shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.new-company-wrapper .company-content .progress-wrap .pro-items {
  width: 100%;
}

.new-company-wrapper .company-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .pro-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .pro-head .title {
  color: #003566;
  font-family: "DM Sans";
  font-weight: 600;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: #003566;
  font-family: "DM Sans";
  font-weight: 600;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .progress {
  background: rgba(255, 125, 68, 0.28);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6px;
  width: 100%;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .progress-value {
  -webkit-animation: load 3s normal forwards;
  animation: load 3s normal forwards;
  border-radius: 0;
  background: #FF7D44;
  height: 6px;
  width: 0;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .style-two {
  -webkit-animation: load2 3s normal forwards;
  animation: load2 3s normal forwards;
}

.new-company-wrapper .company-content .progress-wrap .pro-items .style-three {
  -webkit-animation: load3 3s normal forwards;
  animation: load3 3s normal forwards;
}

@-webkit-keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@-webkit-keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@-webkit-keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.new-company-wrapper .company-content .fun-fact-value {
  min-width: 200px;
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.new-company-wrapper .company-content .fun-fact-value .start-number {
  font-size: 72px;
  font-family: "DM Sans";
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.new-company-wrapper .new-company-right-conetent p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.new-company-wrapper .new-company-right-conetent .box-text {
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 0px 22px 50px 11px rgba(1, 53, 102, 0.06);
  box-shadow: 0px 22px 50px 11px rgba(1, 53, 102, 0.06);
  border-left: 4px solid #FF7D44;
  display: inline-block;
  padding: 20px 30px;
  margin-top: 40px;
}

.new-company-section {
  background-color: #f0f6f3;
}

.video-section-3 {
  position: relative;
  z-index: 9;
}

.video-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f0f6f3;
  z-index: -1;
  height: 50%;
}

/***************************************
 - Sections / Portfolio
***************************************/
.portfolio-container {
  position: relative;
  width: 100%;
  height: 1100px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .portfolio-container {
    height: 1000px;
  }
}

@media (min-width: 768px) {
  .portfolio-container {
    height: 755px;
  }
}

.portfolio-container .image-container {
  width: 100%;
  height: 100vh;
  /* Adjust as needed */
  overflow: hidden;
}

.portfolio-container .image-container::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 53, 102, 0.5);
  content: "";
}

.portfolio-container .background-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.portfolio-container .portfolio-list {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  z-index: 2;
  height: 100%;
}

@media (min-width: 768px) {
  .portfolio-container .portfolio-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio-container .portfolio-list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.portfolio-container .portfolio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  padding: 0 24px 24px;
  height: 100%;
  color: white;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .portfolio-container .portfolio-item {
    padding: 0 30px 30px;
  }
}

@media (min-width: 1400px) {
  .portfolio-container .portfolio-item {
    padding: 0 40px 40px;
  }
}

@media (min-width: 1800px) {
  .portfolio-container .portfolio-item {
    padding: 0 70px 70px;
  }
}

.portfolio-container .portfolio-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.portfolio-container .portfolio-item:hover {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 53, 102, 0.06);
}

.portfolio-container .portfolio-item:hover .portfolio-text {
  margin-bottom: 30px;
  height: 60px;
}

.portfolio-container .portfolio-item:hover .portfolio-link {
  background-color: #ff7d44;
}

.portfolio-container .portfolio-tag {
  display: inline-block;
  border-radius: 6px;
  background-color: #ff7d44;
  padding: 5px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}

.portfolio-container .portfolio-title {
  margin-block: 20px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
}

@media (min-width: 1800px) {
  .portfolio-container .portfolio-title {
    font-size: 1.75rem;
  }
}

.portfolio-container .portfolio-text {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 0;
  overflow: hidden;
}

.portfolio-container .portfolio-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.13);
  width: 52px;
  height: 52px;
  color: #fff;
}

.project-list-style-1 {
  row-gap: 112px;
}

.project-item-style-1 {
  position: relative;
}

.project-item .project-img-link {
  display: block;
  border-radius: 12px;
  max-height: 320px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .project-item .project-img-link {
    max-height: 100%;
  }
}

.project-item .project-img-link img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-item .project-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
  border-radius: 12px;
  background-color: #003566;
  padding: 30px;
  width: calc(100% - 20px);
}

@media (min-width: 768px) {
  .project-item .project-content {
    width: calc(100% - 30px);
  }
}

@media (min-width: 992px) {
  .project-item .project-content {
    width: calc(100% - 80px);
  }
}

.project-item .project-text-block {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.project-item .project-category {
  display: block;
  margin-bottom: 3px;
  color: #ff7d44;
  font-weight: 600;
  font-size: 0.875rem;
}

.project-item .project-text-link {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
}

.project-item .project-icon-link {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  width: 42px;
  height: 42px;
  color: #fff;
}

@media (min-width: 768px) {
  .project-item .project-icon-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.project-item:hover .project-img-link img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.project-item:hover .project-text-link {
  color: #ffddcd;
}

.pagination-project {
  margin-top: 145px;
}

.project-slider-1 {
  margin-inline: 0;
}

@media (min-width: 1200px) {
  .project-slider-1 {
    margin-inline: -200px;
  }
}

@media (min-width: 1400px) {
  .project-slider-1 {
    margin-inline: -260px;
  }
}

.project-slider-1 .swiper-wrapper {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.project-slider-1 .project-img-link-small {
  height: 475px;
}

.bg-element-1 {
  position: absolute;
  top: -340px;
  right: 0;
  z-index: -1;
}

.bg-element-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.project-image-box-3 .project-image {
  height: 530px;
  overflow: hidden;
  border-radius: 12px;
}

.project-image-box-3 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-image-box-3 .project-content {
  margin-top: 20px;
}

.project-image-box-3 .project-content .post-cord {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.project-image-box-3 .project-content .post-cord li a {
  color: #FF7D44;
  border-radius: 6px;
  border: 1px solid #FF7D44;
  padding: 12px 19px;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
}

.project-image-box-3 .project-content .post-cord li a:hover {
  background-color: #FF7D44;
  color: #fff;
}

.project-image-box-3 .project-content h3 {
  font-size: 28px;
  font-weight: 900;
  font-family: "DM Sans";
  margin-top: 20px;
}

.project-image-box-3 .project-content h3 a:hover {
  color: #FF7D44;
}

.project-image-box-3:hover .project-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.project-wrapper-3 {
  margin-right: -24%;
}

@media screen and (max-width: 767px) {
  .project-wrapper-3 {
    margin-right: 0;
  }
}

.project-box-items-4 {
  margin-top: 30px;
}

.project-box-items-4 .project-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-box-items-4 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 12px;
  background: rgba(255, 125, 68, 0.88);
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 9;
}

.project-box-items-4 .project-image .arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 99;
}

.project-box-items-4 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-box-items-4:hover .project-image::before {
  opacity: 1;
  visibility: visible;
}

.project-box-items-4:hover .project-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.project-box-items-4:hover .project-image .arrow-icon {
  opacity: 1;
  visibility: visible;
}

.project-box-items-4 .project-content {
  border-radius: 0px 0px 12px 12px;
  background: #FFF;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  padding: 30px 25px;
  margin-top: -10px;
  border-top: 4px solid #FF7D44;
}

.project-box-items-4 .project-content p {
  font-size: 13px;
  font-weight: 600;
  color: #FF7D44;
  letter-spacing: 6.37px;
}

.project-box-items-4 .project-content h3 {
  font-size: 22px;
  font-weight: 900;
  font-family: "DM Sans";
  margin-top: 5px;
}

.project-box-items-4 .project-content h3 a:hover {
  color: #FF7D44;
}

.project-section-5 {
  background: #FFF3ED;
}

.project-box-items-5 {
  margin-top: 30px;
}

.project-box-items-5 .project-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.project-box-items-5 .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-box-items-5 .project-image .post-tag {
  border-radius: 6px;
  background: #FF7D44;
  padding: 11px 17px;
  color: #FFF;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  position: absolute;
  top: 25px;
  left: 25px;
  line-height: 1;
}

.project-box-items-5 .project-content {
  border-radius: 0px 0px 12px 12px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #FFF;
  -webkit-box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 36px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -10px;
}

@media screen and (max-width: 1199px) {
  .project-box-items-5 .project-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-box-items-5 .project-content .text-content h3 {
  font-size: 28px;
  font-weight: 900;
  font-family: "DM Sans";
  margin-bottom: 10px;
}

.project-box-items-5 .project-content .text-content h3 a:hover {
  color: #FF7D44;
}

.project-box-items-5 .project-content .text-content p {
  font-size: 16px;
  font-weight: 500;
}

.project-box-items-5 .project-content .project-icon-link {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  width: 53px;
  height: 53px;
  line-height: 53px;
  color: #fff;
}

.project-box-items-5 .project-content .project-icon-link i {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-box-items-5:hover .project-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.company-section-5 {
  background-attachment: fixed;
}

.choose-us-wrapper-44 {
  position: relative;
  z-index: 9;
}

.choose-us-wrapper-44 .choose-us-image {
  max-width: 598px;
  position: relative;
  z-index: 9;
}

.choose-us-wrapper-44 .choose-us-image img {
  width: 100%;
  height: 100%;
}

.choose-us-wrapper-44 .choouse-us-content {
  margin-left: 20px;
  margin-top: 70px;
}

@media screen and (max-width: 1399px) {
  .choose-us-wrapper-44 .choouse-us-content {
    margin-left: 0;
    margin-top: 0;
  }
}

.choose-us-wrapper-44 .choouse-us-content .choose-us-text {
  margin-top: 30px;
  font-weight: 500;
  max-width: 560px;
}

.choose-us-wrapper-44 .choouse-us-content .box-items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 450px;
}

@media screen and (max-width: 1199px) {
  .choose-us-wrapper-44 .choouse-us-content .box-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.choose-us-wrapper-44 .choouse-us-content .box-items h4 {
  font-size: 20px;
  max-width: 210px;
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box {
  padding: 40px 30px;
  border-radius: 12px;
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box .fun-fact-value {
  color: #fff;
  font-size: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box .fun-fact-value .start-number {
  font-size: 66px;
  color: #fff;
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box h4 {
  color: #fff;
  font-size: 20px;
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box ul {
  border-top: 1px dashed #fff;
  padding-top: 30px;
  margin-top: 30px;
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box ul li {
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.choose-us-wrapper-44 .choouse-us-content .box-items .counter-box ul li:not(:last-child) {
  margin-bottom: 10px;
}

.choose-us-section-55 {
  position: relative;
  z-index: 9;
}

@media screen and (max-width: 1399px) {
  .choose-us-section-55 {
    padding: 100px 0;
  }
}

.choose-us-section-55 .left-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1399px) {
  .choose-us-section-55 .left-image {
    display: none;
  }
}

.choose-us-section-55::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #F0F6F3;
  height: 94%;
}

@media screen and (max-width: 1399px) {
  .choose-us-section-55::before {
    height: 100%;
  }
}

.video-section-5 {
  padding: 280px 0;
  text-align: center;
}

.video-section-5 .video {
  position: relative;
}

.video-section-5 .video .video-btn {
  width: 116px;
  height: 116px;
  line-height: 116px;
  text-align: center;
  border-radius: 100px;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 24px;
}

.video-section-5 .video .circle-image {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}

.video-section-5 .video .circle-image img {
  -webkit-animation: cir36 10s linear infinite;
  animation: cir36 10s linear infinite;
}

.video-section-5 .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/***************************************
 - Sections / Pricing
***************************************/
.pricing-toggle-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  margin-block: 30px 50px;
}

.pricing-toggle-title {
  color: #003566;
  font-weight: 700;
}

.toggle-block {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 2px solid #ff7d44;
  border-radius: 50px;
  width: 70px;
  height: 30px;
}

.toggle-block input:checked~.toggle-btn {
  -webkit-transform: translate(37.5px, -50%);
  transform: translate(37.5px, -50%);
}

.toggle-btn {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-inline: 5px;
  border-radius: 50%;
  background-color: #ff7d44;
  width: 20px;
  height: 20px;
}

.pricing-item-block {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(0, 53, 102, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(0, 53, 102, 0.03);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 30px 20px;
}

.pricing-item-block.style-2 {
  background-color: #FFF;
  border-radius: 12px;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  border: none;
}

.pricing-item-block.style-2 .pricing-header h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans";
  padding-bottom: 20px;
}

.pricing-item-block.style-2 .pricing-header p {
  font-size: 14px;
  font-weight: 400;
}

.pricing-item-block.style-2 .pricing-value {
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "DM Sans";
}

.pricing-item-block.style-2 .pricing-value span {
  color: #5C6672;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.pricing-item-block.style-2 .content-list {
  border-top: 1px solid rgba(33, 37, 39, 0.2117647059);
  padding-top: 30px;
  margin-top: 30px;
}

.pricing-item-block.active {
  position: relative;
}

.pricing-item-block.active .pricing-header h4 {
  color: #fff;
}

.pricing-item-block.active .pricing-header p {
  color: #fff;
}

.pricing-item-block.active .pricing-value {
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: initial;
}

.pricing-item-block.active .pricing-value span {
  color: #fff;
  -webkit-text-fill-color: initial;
}

.pricing-item-block.active .content-list {
  border-top: 1px solid #fff;
}

.pricing-item-block.active .content-list li {
  color: #fff;
}

.pricing-item-block.active .content-list li::before {
  color: #fff;
}

.pricing-item-block.active .btn-secondary {
  background: #fff !important;
  color: #003566;
}

.pricing-item-block.active .btn-secondary .btn-icon {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  color: #fff;
}

.pricing-item-block.active .btn-secondary:hover {
  color: #fff;
}

.pricing-item-block.active-2 {
  border: 1px solid rgba(2, 8, 66, 0);
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
}

.pricing-item-block.active-2 .section-tag {
  padding: 0;
  color: #fff;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3.52px;
}

.pricing-item-block.active-2 .pricing-value {
  color: #fff;
}

.pricing-item-block.active-2 .pricing-value span {
  color: #fff;
}

.pricing-item-block.active-2 .month {
  color: #fff;
}

.pricing-item-block.active-2 .month span {
  color: #fff;
}

.pricing-item-block.active-2 p {
  color: #fff;
}

.pricing-item-block.active-2 .btn-secondary-outline {
  background-color: #fff;
}

.pricing-item-block.active-2 .content-list-1 li {
  color: #fff;
}

.pricing-item-block.active-2 .content-list-1 li::before {
  color: #fff;
}

.pricing-item-block.style-3 {
  background-color: #fff;
}

.pricing-item-block.style-3 .section-tag {
  padding: 0;
  color: #003566;
  font-family: "DM Sans";
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3.52px;
}

@media (min-width: 768px) {
  .pricing-item-block {
    padding: 50px 40px;
  }
}

@media (min-width: 992px) {
  .pricing-item-block {
    padding: 58px 50px;
  }
}

.pricing-item-block:hover {
  border-color: #003566;
}

.pricing-item-block .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-block: 30px;
}

@media (min-width: 768px) {
  .pricing-item-block .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pricing-value {
  margin-bottom: 10px;
  color: #003566;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
}

@media (min-width: 768px) {
  .pricing-value {
    font-size: 3.75rem;
    letter-spacing: -2px;
  }
}

.pricing-value span {
  color: #5c6672;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0px;
}

/***************************************
 - Sections / Testimonial
***************************************/
.testimonial-area-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .testimonial-area-1 {
    gap: 60px;
  }
}

@media (min-width: 992px) {
  .testimonial-area-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 80px;
  }
}

@media (min-width: 1200px) {
  .testimonial-area-1 {
    gap: 100px;
  }
}

.testimonial-area-1 .testimonial-image-block {
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}

@media (min-width: 992px) {
  .testimonial-area-1 .testimonial-image-block {
    display: block;
    max-width: 40%;
  }
}

@media (min-width: 1200px) {
  .testimonial-area-1 .testimonial-image-block {
    max-width: 33.33%;
  }
}

.testimonial-area-1 .testimonial-slider-block {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
}

@media (min-width: 992px) {
  .testimonial-area-1 .testimonial-slider-block {
    max-width: 52%;
  }
}

@media (min-width: 1200px) {
  .testimonial-area-1 .testimonial-slider-block {
    max-width: 60%;
  }
}

@media (min-width: 1800px) {
  .testimonial-area-1 .testimonial-slider-block {
    max-width: 66.66%;
  }
}

.review-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: #ff7d44;
  font-size: 20px;
}

.testimonial-quote {
  margin-block: 24px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: none;
  padding: 0;
  padding-left: 0;
  color: #003566;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1.3;
}

@media (min-width: 576px) {
  .testimonial-quote {
    margin-block: 20px;
  }
}

@media (min-width: 992px) {
  .testimonial-quote {
    margin-block: 16px 26px;
    font-size: 2rem;
    line-height: 1.4;
  }
}

@media (min-width: 1200px) {
  .testimonial-quote {
    margin-block: 16px 36px;
    font-size: 2.25rem;
    line-height: 1.5;
  }
}

.testimonial-slider-button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #003566;
  font-size: 1.5rem;
}

.testimonial-slider-button:hover {
  color: #ff7d44;
}

.testimonial-bg {
  position: relative;
  z-index: 1;
  background-image: url("../images/dotted-map.svg");
  background-position: top left;
  background-size: auto;
  background-repeat: repeat-x;
  background-color: #efecfa;
}

.testimonial-slider-item-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  border-left: 4px solid #ff7d44;
  border-radius: 12px;
  background-color: #fff;
  padding: 20px 40px 30px 30px;
}

@media (min-width: 992px) {
  .testimonial-slider-item-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 30px 60px 40px 40px;
  }
}

.testimonial-wrapper-3 {
  padding: 55px 55px;
  padding-bottom: 5px;
}

@media screen and (max-width: 1199px) {
  .testimonial-wrapper-3 {
    padding: 40px;
  }
}

.testimonial-wrapper-3 .testimonial-image {
  text-align: center;
  margin-bottom: -12px;
}

@media screen and (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-image {
    display: none;
  }
}

.testimonial-wrapper-3 .testimonial-all-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 575px) {
  .testimonial-wrapper-3 .testimonial-all-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.testimonial-wrapper-3 .testimonial-all-content .icon-shape {
  width: 100px;
  height: 100px;
  line-height: 145px;
  background-color: #FF7D44;
  text-align: center;
  border-radius: 50%;
}

.testimonial-wrapper-3 .testimonial-right {
  max-width: 535px;
  margin-left: 120px;
}

@media screen and (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-right {
    margin-left: 0;
  }
}

.testimonial-wrapper-3 .testimonial-right .star {
  margin-top: 20px;
  color: #FF7D44;
}

.testimonial-wrapper-3 .testimonial-right p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}

.testimonial-wrapper-3 .testimonial-right .client-info-area .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
}

.testimonial-wrapper-3 .testimonial-right .client-info-area .client-info .client-content h3 {
  font-size: 20px;
  font-weight: 700;
}

.testimonial-wrapper-3 .testimonial-right .client-info-area .client-info .client-content p {
  font-size: 16px;
  font-weight: 500;
}

.testimonial-wrapper-3 {
  padding: 55px 55px;
  padding-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .testimonial-wrapper-3 {
    padding-bottom: 55px;
    padding: 30px;
  }
}

.testimonial-wrapper-3 .testimonial-image {
  text-align: center;
}

.testimonial-wrapper-3 .testimonial-all-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.testimonial-wrapper-3 .testimonial-all-content .icon-shape {
  width: 100px;
  height: 100px;
  line-height: 145px;
  background-color: #FF7D44;
  text-align: center;
  border-radius: 50%;
}

.testimonial-wrapper-3 .testimonial-all-content .testimonial-content {
  -ms-flex-preferred-size: 67%;
  flex-basis: 67%;
}

.testimonial-wrapper-3 .testimonial-all-content .testimonial-content .star {
  margin-top: 20px;
  color: #FF7D44;
}

.testimonial-wrapper-3 .testimonial-all-content .testimonial-content p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}

.testimonial-wrapper-3 .testimonial-all-content .testimonial-content .client-info-area .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
}

.testimonial-wrapper-3 .testimonial-all-content .testimonial-content .client-info-area .client-info .client-content h3 {
  font-size: 20px;
  font-weight: 700;
}

.testimonial-wrapper-3 .testimonial-all-content .testimonial-content .client-info-area .client-info .client-content p {
  font-size: 16px;
  font-weight: 500;
}

.testimonial-wrapper-3 .slider-button {
  margin-top: -50px;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 991px) {
  .testimonial-wrapper-3 .slider-button {
    margin-top: 0;
  }
}

.testimonial-wrapper-4 {
  margin-top: 30px;
}

.testimonial-wrapper-4 .testimonial-left {
  max-width: 580px;
}

@media screen and (max-width: 1199px) {
  .testimonial-wrapper-4 .testimonial-left .testimonial-image img {
    width: 100%;
  }
}

.testimonial-wrapper-4 .testimonial-left .justify-content-between {
  margin-top: 40px;
}

@media screen and (max-width: 1199px) {
  .testimonial-wrapper-4 .testimonial-left .justify-content-between {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.testimonial-wrapper-4 .testimonial-content-4 .star {
  color: #FF7D44;
  margin-bottom: 15px;
}

.testimonial-wrapper-4 .testimonial-content-4 p {
  font-size: 18px;
  font-weight: 600;
  color: #003566;
  font-family: "DM Sans";
  font-size: 28px;
  line-height: 150%;
}

.testimonial-wrapper-4 .testimonial-content-4 .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.testimonial-wrapper-4 .testimonial-content-4 .info-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-box-item-5 {
  padding: 40px 30px;
  position: relative;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  margin-top: 30px;
}

.testimonial-box-item-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.testimonial-box-item-5 .test-content .testi-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.testimonial-box-item-5 .test-content .testi-top .quate-icon {
  border-radius: 12px;
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  padding: 21px;
  text-align: center;
  line-height: 10px;
}

.testimonial-box-item-5 .test-content .testi-top .star {
  color: #FF7D44;
  margin-bottom: 20px;
}

.testimonial-box-item-5 .test-content p {
  font-size: 20px;
  font-weight: 600;
  font-family: "DM Sans";
  color: #4F5663;
}

.testimonial-box-item-5 .test-content .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.testimonial-box-item-5 .test-content .client-info .text h5 {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-box-item-5.style-about .test-content .star {
  color: #FF7D44;
}

.bottom-footer {
  background-color: #0A3D6C;
  padding: 14px 0;
}

.bottom-footer .bottom-footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bottom-footer .bottom-footer-wrapper p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.project-section-4 .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
  border-bottom: 1px solid rgba(0, 53, 102, 0.12);
  gap: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
  .project-section-4 .nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
  }
}

.project-section-4 .nav .nav-item:not(:last-child) {
  border-right: 1px solid rgba(0, 53, 102, 0.12);
  padding-right: 15px;
}

@media screen and (max-width: 1199px) {
  .project-section-4 .nav .nav-item:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }
}

.project-section-4 .nav .nav-item .nav-link {
  color: #5B696D;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.project-section-4 .nav .nav-item .nav-link.active {
  color: #FF7D44;
}

/***************************************
 - Sections / Support
***************************************/
.support-area {
  z-index: 1;
  overflow: hidden;
}

.support-area .bg-element {
  position: absolute;
}

.support-area .bg-element:nth-child(1) {
  display: none;
  right: 234px;
  bottom: 0;
  z-index: -1;
}

@media (min-width: 1800px) {
  .support-area .bg-element:nth-child(1) {
    display: inline-block;
  }
}

.support-area .bg-element:nth-child(2) {
  display: none;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (min-width: 1800px) {
  .support-area .bg-element:nth-child(2) {
    display: inline-block;
  }
}

.support-area .bg-element:nth-child(3) {
  bottom: 0;
  left: 0;
  z-index: -2;
}

.support-area .bg-element:nth-child(4) {
  right: 0;
  bottom: 0;
  z-index: -2;
}

.support-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.support-info .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  width: 58px;
  height: 58px;
  color: #003566;
}

.support-info .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  text-align: left;
}

.support-info .content span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
}

.support-info .content a {
  color: #fff;
  font-size: 1.375rem;
}

/***************************************
 - Sections / FAQ
***************************************/
.maincontent .accordion .accordion-item {
  margin-bottom: 15px;
}

.maincontent .accordion .accordion-item {
  border: 1px solid #dee2e6;
}

.maincontent .accordion .accordion-item h2 button {
  font-weight: 700;
}

.maincontent .accordion .accordion-item h2 button.accordion-button:not(.collapsed) {
  background-color: #e7e1f8;
}


.maincontent table.table {
  width: 100%;
  border-left: 1px solid #a7a7a7;
  border-top: 1px solid #a7a7a7;
}

.maincontent table.table thead tr th,
.maincontent table.table tbody tr th,
.maincontent table.table tbody tr td {
  border-right: 1px solid #a7a7a7;
  border-bottom: 1px solid #a7a7a7;
  font-size: 15px;
}

.maincontent table.table thead tr th,
.maincontent table.table tbody tr th {
  background: #e6defe;
}

.maincontent table.table tbody tr td a.btnPdf {
  background: #e6defe;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
}

.maincontent table.table tbody tr td a.btnPdf i {
  margin: 0;
  padding: 0;
  color: #ad0000;
  margin-right: 5px;
}

.maincontent .searchAreaBox {
  margin-bottom: 20px;
}

.maincontent .searchAreaBox label {
  display: block;
  font-weight: 500;
  color: #000;
}

.maincontent .searchAreaBox .form-control {
  width: 100%;
  border: 1px solid #929292;
  border-radius: 0;
}

.maincontent .searchAreaBox .form-select {
  width: 100%;
  border: 1px solid #929292;
  border-radius: 0;
}

.maincontent .searchAreaBox .btn {
  background: #29136c;
  color: #fff;
  border-radius: 0;
  text-align: center;
  padding: 7px 10px;
  display: inline-block;
}

/***************************************
 - Sections / Blog
***************************************/
.blog-bg-img-block {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.blog-single-item-1 {
  margin-top: 55px;
  border-radius: 12px;
  background-color: #fff;
  padding: 25px 25px 45px 25px;
}

.blog-single-item-1 .img-block {
  border-radius: 12px;
  overflow: hidden;
}

.blog-single-item-1 .post-meta-data {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 32px;
  margin-block: 10px 15px;
}

.blog-single-item-1 .post-meta-data a {
  position: relative;
  color: #ff7d44;
  font-weight: 500;
}

.blog-single-item-1 .post-meta-data a::after {
  position: absolute;
  top: 50%;
  right: calc(0% - 16px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(73, 81, 91, 0.37);
  width: 6px;
  height: 6px;
  content: "";
}

.blog-single-item-1 .blog-title-link {
  display: block;
  margin-bottom: 15px;
  color: #003566;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
}

.blog-single-item-1 .blog-title-link:hover {
  color: #ff7d44;
}

.blog-single-item-1 .blog-summary {
  margin-bottom: 30px;
}

.blog-list-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 50px;
}

.blog-single-item-2 .blog-image-block {
  position: relative;
}

.blog-single-item-2 .blog-image-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.blog-single-item-2 .blog-image-link img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-single-item-2 .blog-date-block {
  position: absolute;
  right: 40px;
  bottom: -40px;
  border-radius: 12px;
  background-color: #ff7d44;
  padding: 15px 28px;
  color: #fff;
}

.blog-single-item-2 .blog-text-date {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}

.blog-single-item-2 .blog-category {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #ff7d44;
  font-weight: 400;
}

.blog-single-item-2 .blog-link {
  display: block;
  margin-bottom: 10px;
  color: #003566;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.3;
  letter-spacing: -1px;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .blog-single-item-2 .blog-link {
    font-size: 1.875rem;
  }
}

@media (min-width: 992px) {
  .blog-single-item-2 .blog-link {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .blog-single-item-2 .blog-link {
    font-size: 2.25rem;
  }
}

.blog-single-item-2 .blog-summery {
  margin-bottom: 20px;
}

.blog-single-item-2:hover .blog-image-link img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-content-style-2 .blog-date-block {
  display: inline-block;
  border-radius: 12px;
  background-color: #ff7d44;
  padding: 15px 28px;
  color: #fff;
  text-transform: uppercase;
}

.blog-content-style-2 .blog-text-date {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}

.blog-content-style-2 .blog-category {
  display: inline-block;
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #ff7d44;
  font-weight: 400;
}

@media (min-width: 768px) {
  .blog-content-style-2 .blog-category {
    margin-top: 46px;
  }
}

@media (min-width: 992px) {
  .blog-content-style-2 .blog-category {
    margin-top: 60px;
  }
}

.blog-content-style-2 .blog-link {
  display: block;
  margin-bottom: 30px;
  color: #003566;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.3;
  letter-spacing: -1px;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .blog-content-style-2 .blog-link {
    font-size: 1.875rem;
  }
}

@media (min-width: 992px) {
  .blog-content-style-2 .blog-link {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .blog-content-style-2 .blog-link {
    font-size: 2.25rem;
  }
}

.blog-img-link {
  display: block;
  border-radius: 12px;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .blog-img-link {
    height: 360px;
  }
}

@media (min-width: 992px) {
  .blog-img-link {
    height: 434px;
  }
}

.blog-list-3 {
  position: relative;
}

.blog-list-3::before {
  position: absolute;
  top: -25px;
  left: 0;
  background-color: rgba(0, 53, 102, 0.12);
  width: 100%;
  height: 1px;
  content: "";
}

.blog-list-3>.row {
  position: relative;
}

.blog-list-3>.row::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 53, 102, 0.12);
  width: 100%;
  height: 1px;
  content: "";
}

.blog-list-3>.row:first-of-type::before {
  display: none;
}

.news-box-items-3 .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.news-box-items-3 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.news-box-items-3 .news-image .post-box {
  border-radius: 4px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10.6000003815px);
  backdrop-filter: blur(10.6000003815px);
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: -ms-grid;
  display: grid;
  width: 63px;
  height: 63px;
  text-align: center;
}

.news-box-items-3 .news-image .post-box .date {
  font-size: 22px;
  font-weight: 600;
  font-family: "DM Sans";
  color: #FFF;
  display: block;
}

.news-box-items-3 .news-image .post-box .mont {
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #FFF;
  line-height: 1;
  margin-top: -15px;
  display: inline-block;
}

.news-box-items-3 .news-content {
  margin-top: -10px;
}

.news-box-items-3 .news-content .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #003566;
  padding: 14px 22px;
}

@media screen and (max-width: 1199px) {
  .news-box-items-3 .news-content .post-date {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-box-items-3 .news-content .post-date li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.news-box-items-3 .news-content h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.news-box-items-3 .news-content h3 a:hover {
  color: #FF7D44;
}

.news-box-items-3 .news-content p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
}

.news-box-items-3:hover .news-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.news-section-4 {
  position: relative;
}

.news-section-4 .news-shape-left {
  position: absolute;
  top: 0px;
  left: 0;
}

.news-section-4 .news-shape-right {
  position: absolute;
  top: 0;
  right: 0;
}

.news-card-items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .news-card-items {
    display: block;
  }
}

.news-card-items .news-image {
  overflow: hidden;
  border-radius: 12px;
}

.news-card-items .news-image img {
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .news-card-items .news-image img {
    width: 100%;
  }
}

.news-card-items .news-content .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.news-card-items .news-content .post-date li i {
  color: #FF7D44;
  margin-right: 5px;
}

.news-card-items .news-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.news-card-items .news-content h4 a:hover {
  color: #FF7D44;
}

.news-card-items:hover .news-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.news-card-items-5 {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.news-card-items-5 .news-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.news-card-items-5 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.news-card-items-5 .news-image .post-date {
  width: 85px;
  height: 85px;
  text-align: center;
  border-radius: 4px;
  background-color: #fff;
  position: absolute;
  top: 15px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news-card-items-5 .news-image .post-date h2 {
  font-size: 32px;
  line-height: 1;
  font-family: "DM Sans";
  padding-top: 12px;
}

.news-card-items-5 .news-image .post-date h2 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 182%;
}

.news-card-items-5 .news-image .news-content {
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;
  text-align: center;
}

.news-card-items-5 .news-image .news-content .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news-card-items-5 .news-image .news-content .news-meta li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.news-card-items-5 .news-image .news-content .news-meta li i {
  color: #fff;
  margin-right: 5px;
}

.news-card-items-5 .news-image .news-content .news-meta li:not(:last-child)::after {
  position: absolute;
  top: 13px;
  right: -16px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background-color: #fff;
}

.news-card-items-5 .news-image .news-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.news-card-items-5 .news-image .news-content h3 a {
  color: #fff;
  display: inline;
  padding-bottom: 0;
  -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(98%, currentColor));
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
}

.news-card-items-5 .news-image .news-content h3 a:hover {
  color: #FF7D44;
  background-size: 100% 2px;
}

.news-card-items-5 .news-image .news-content .link-btn {
  color: #FF7D44;
}

.news-card-items-5 .news-image:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/***************************************
 - Sections / Location
***************************************/
.location-area {


  position: relative;

  z-index: 2;
  margin-block: 0 60px;
  -webkit-box-shadow: 0 22px 50px 11px rgba(0, 53, 102, 0.06);
  box-shadow: 0 22px 50px 11px rgba(0, 53, 102, 0.06);
  border-left: 4px solid #ff7d44;
  border-radius: 12px;
  background-color: #fff;
  padding: 30px 30px;
}

@media (min-width: 992px) {
  .location-area {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 44px 45px;
  }
}

@media (min-width: 1200px) {
  .location-area {
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 44px 55px;
  }
}

@media (min-width: 1400px) {
  .location-area {
    gap: 60px;
    margin-top: -88px;
    margin-bottom: 0;
    padding: 44px 65px;
  }
}

.location-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 22px;
}

@media (min-width: 576px) {
  .location-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.location-item .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  background-color: #fff2ec;
  width: 86px;
  height: 86px;
}

.location-item .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.location-item .content address {
  color: #003566;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}

/***************************************
 - Sections / Team
***************************************/
.team-member-item-style-1 {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 22px 50px 11px rgba(1, 53, 102, 0.0588235294);
  box-shadow: 0px 22px 50px 11px rgba(1, 53, 102, 0.0588235294);
  border: 1px solid transparent;
  border-radius: 12px;
  background-color: #fff;
  padding: 15px 15px 40px 15px;
}

.team-member-item-style-1:hover {
  border-color: rgba(255, 125, 68, 0.35);
}

.team-member-item:hover .team-member-image-block img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.team-member-image-block {
  display: block;
  border-radius: 12px;
  height: 243px;
  overflow: hidden;
}

.team-member-image-block img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-member-content-info {
  margin-block: 22px;
  text-align: center;
}

.team-member-designation {
  display: block;
  color: #ff7d44;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.team-member-name {
  color: #003566;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Raleway", sans-serif;
  text-transform: capitalize;
}

.team-social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.team-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/dotted-map.svg");
  background-position: top left;
  background-size: auto;
  background-repeat: repeat-x;
  background-color: #f0f6f3;
  width: 100%;
  height: 600px;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-img {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-img .social-menu {
  display: -ms-grid !important;
  display: grid !important;
  position: absolute;
  gap: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-img .social-menu a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-align: center;
  background-color: #fff;
  color: #FF7D44;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-img .social-menu a:hover {
  background-color: #FF7D44;
  color: #fff;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-content {
  text-align: center;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-content h5 {
  font-size: 13px;
  font-weight: 600;
  color: #FF7D44;
  margin-bottom: 5px;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-wrapper-3 .team-image-3 .team-image-box .team-content h3 a:hover {
  color: #FF7D44;
}

.team-wrapper-3 .team-image-3 .team-image-box:hover .team-img .social-menu {
  opacity: 1;
  visibility: visible;
}

.team-wrapper-3 .team-image-3 .team-image-box:hover .team-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/***************************************
 - Sections / Service
***************************************/
.service-area {
  position: relative;
  z-index: 1;
}

.service-slider-1.swiper {
  margin-inline: -50px;
  -webkit-margin-after: -60px;
  margin-block-end: -60px;
  padding-block: 48px 60px;
}

.service-slider-1.swiper .swiper-slide {
  padding-inline: 12px;
}

.service-item {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 22px 24px 0px rgba(0, 53, 102, 0.06);
  box-shadow: 0px 22px 24px 0px rgba(0, 53, 102, 0.06);
  border: 1px solid transparent;
  border-radius: 12px;
  background-color: #fff;
  padding: 30px 30px 56px 30px;
}

.service-item:hover {
  border-color: rgba(255, 125, 68, 0.35);
}

.service-item:hover .service-thumbnail {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.service-item:hover .service-icon {
  background-color: #ff7d44;
}

.service-item:hover .service-icon img:first-child {
  opacity: 0;
}

.service-item:hover .service-icon img:last-child {
  opacity: 1;
}

.service-image-block {
  position: relative;
  border-radius: 12px;
}

.service-image-link {
  display: block;
  border-radius: 12px;
  height: 266px;
  overflow: hidden;
}

.service-thumbnail {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  bottom: calc(0% - 42px);
  left: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px dotted #ff7d44;
  border-radius: 50%;
  background: #fff;
  width: 84px;
  height: 84px;
}

.service-icon img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-icon img:last-child {
  position: absolute;
  opacity: 0;
}

.service-content {
  margin-top: 60px;
}

.service-link {
  color: #003566;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Raleway", sans-serif;
}

.service-summery {
  margin-bottom: 35px;
}

.service-image-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-image-inner-block {
  display: none;
  position: absolute;
  right: -60px;
  bottom: -53px;
  z-index: 1;
}

@media (min-width: 1400px) {
  .service-image-inner-block {
    display: inline-block;
  }
}

.service-image-inner-block::after {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  border-radius: 12px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.service-image-inner-block img {
  border-radius: 12px;
}

.service-image-inner-block-2 {
  display: none;
  position: absolute;
  top: 50%;
  right: -110px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

@media (min-width: 1400px) {
  .service-image-inner-block-2 {
    display: inline-block;
  }
}

.service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.service-info .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #003566;
  width: 58px;
  height: 58px;
  color: #fff;
}

.service-info .content a {
  display: block;
  color: #003566;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  font-family: "Raleway", sans-serif;
}

.video-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-ripple-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ff7d44;
  width: 90px;
  height: 90px;
  color: #fff;
}

.service-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/dotted-map.svg");
  background-position: top left;
  background-size: auto;
  background-repeat: repeat-x;
  background-color: #f0f6f3;
  width: 100%;
  height: 808px;
}

.service-img-card {
  display: none;
  position: absolute;
  top: 30px;
  left: 30px;
  border-radius: 12px;
  background-color: #4729a3;
  padding: 35px;
  max-width: 232px;
  color: #fff;
  font-weight: 600;
}

@media (min-width: 992px) {
  .service-img-card {
    display: inline-block;
  }
}

@media (min-width: 1800px) {
  .service-img-card {
    top: 55px;
    left: -90px;
  }
}

.service-img-card .content {
  margin-top: 33px;
}

.service-img-card h2 {
  color: #fff;
  font-size: 4.5rem
}

.arrow-abstract-1,
.arrow-abstract-2 {
  display: none;
  position: absolute;
  z-index: -1;
}

@media (min-width: 1800px) {

  .arrow-abstract-1,
  .arrow-abstract-2 {
    display: inline-block;
  }
}

.arrow-abstract-1 {
  bottom: 130px;
  left: 100px;
}

.arrow-abstract-2 {
  top: 184px;
  right: 122px;
}



.service-bg-map {
  background: #efecfa;
}

.service-track-img {
  display: none;
  position: absolute;
  bottom: 130px;
  left: 0;
}

@media (min-width: 1200px) {
  .service-track-img {
    display: inline-block;
  }
}

.service-card-items-3 {
  border-radius: 12px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #FFF;
  -webkit-box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  margin-top: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 15px;
  padding-bottom: 0;
}

.service-card-items-3 .service-image {
  overflow: hidden;
  border-radius: 12px;
}

.service-card-items-3 .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-card-items-3 .service-content {
  text-align: center;
  padding: 0px 35px 40px;
}

.service-card-items-3 .service-content .icon {
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 105px;
  background-color: #FF7D44;
  text-align: center;
  margin: 0 auto;
  margin-top: -125px;
  position: relative;
  margin-bottom: 25px;
  font-size: 41px;
  color: #FFF;
  border-radius: 12px;
}

.service-card-items-3 .service-content h4 {
  margin-bottom: 10px;
}

.service-card-items-3 .service-content h4 a:hover {
  color: #FF7D44;
}

.service-card-items-3 .service-content .link-btn {
  margin-top: 30px;
  display: inline-block;
  color: #FF7D44;
  font-size: 15px;
  font-weight: 900;
  text-transform: capitalize;
}

.service-card-items-3 .service-content .link-btn i {
  margin-left: 5px;
}

.service-card-items-3:hover {
  border-bottom: 2px solid #FF7D44;
}

.service-card-items-3:hover .service-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.service-section-3 {
  position: relative;
  z-index: 99;
}

.service-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #fff;
  top: 70%;
  height: initial;
}

.service-section-3 .service-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
}

@media screen and (max-width: 1199px) {
  .service-section-3 .service-btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.service-wrapper-5 .service-box-5 {
  position: relative;
  padding: 45px 30px;
  z-index: 9;
  text-align: center;
  padding-top: 0;
  margin-top: 30px;
}

.service-wrapper-5 .service-box-5 .icon {
  width: 77px;
  height: 77px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF7D44;
  margin: 0 auto 30px;
  position: relative;
}

.service-wrapper-5 .service-box-5 .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 125, 68, 0.14);
  text-align: center;
  content: "";
}

.service-wrapper-5 .service-box-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 6px;
  top: 40px;
  height: initial;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  z-index: -1;
}

.service-wrapper-5 .service-box-5 .content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-wrapper-5 .service-box-5 .content h4 a:hover {
  color: #FF7D44;
}

.service-wrapper-5 .service-box-5 .content .arrow-icon {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border: 1px solid rgba(0, 53, 102, 0.2196078431);
  display: inline-block;
  border-radius: 50px;
  margin-top: 30px;
  color: #FF7D44;
}

.service-wrapper-5 .service-box-5 .content .arrow-icon:hover {
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  color: #fff;
}

.service-wrapper-5 .service-box-5:hover .arrow-icon {
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  color: #fff;
}

.service-5 {
  position: relative;
  z-index: 9;
}

.service-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  top: 60%;
  z-index: -1;
  height: initial;
}

.service-section-4 {
  background: #F0F6F3;
}

.service-wrapper-4 {
  position: relative;
}

.service-wrapper-4 .service-image-4 {
  position: relative;
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.service-wrapper-4 .service-image-4 img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-wrapper-4 .service-image-4 .service-content {
  position: absolute;
  left: 20px;
  bottom: 35px;
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.368627451);
  padding-bottom: 20px;
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items .icon {
  width: 77px;
  height: 77px;
  background-color: #FF7D44;
  border-radius: 50px;
  font-size: 46px;
  text-align: center;
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items .icon i {
  color: #fff;
  font-size: 40px;
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items .icon img {
  width: initial;
  height: initial;
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items h3 {
  font-size: 32px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .service-wrapper-4 .service-image-4 .service-content .service-icon-items h3 {
    font-size: 22px;
  }
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items h3 a {
  color: #fff;
}

.service-wrapper-4 .service-image-4 .service-content .service-icon-items h3 a:hover {
  color: #FF7D44;
}

.service-wrapper-4 .service-image-4 .service-content p {
  margin-top: 20px;
  color: #fff;
}

.service-wrapper-4 .service-image-4 .service-content p a {
  color: #fff;
}

.service-wrapper-4 .service-image-4 .service-content p a i {
  margin-left: 5px;
}

.service-wrapper-4 .service-image-4:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.marque-text {
  background: #003566 !important;
}

.support-box-items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1399px) {
  .support-box-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.support-box-items .service-support-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1399px) {
  .support-box-items .service-support-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.support-box-items .service-support-box .support-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.support-box-items .service-support-box .support-content h3 {
  font-size: 32px;
  font-weight: 600;
  font-family: "DM Sans";
}

@media screen and (max-width: 767px) {
  .support-box-items .service-support-box .support-content h3 {
    font-size: 22px;
  }
}

.service-wrapper-6 .service-box-6 {
  position: relative;
  z-index: 9;
  padding: 12px 0;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 25px;
}

@media screen and (max-width: 991px) {
  .service-wrapper-6 .service-box-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 30px;
  }
}

.service-wrapper-6 .service-box-6::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  left: 60px;
  width: initial;
}

@media screen and (max-width: 1199px) {
  .service-wrapper-6 .service-box-6::before {
    left: 0;
    width: 100%;
  }
}

.service-wrapper-6 .service-box-6::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  border-radius: 12px;
  left: 30px;
  width: initial;
  background-repeat: no-repeat;
  background-size: cover;
  background: #FF7D44;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1199px) {
  .service-wrapper-6 .service-box-6::after {
    left: 0;
    width: 100%;
  }
}

.service-wrapper-6 .service-box-6 .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
}

@media screen and (max-width: 991px) {
  .service-wrapper-6 .service-box-6 .icon-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.service-wrapper-6 .service-box-6 .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 600px;
  gap: 50px;
  width: 100%;
}

@media screen and (max-width: 575px) {
  .service-wrapper-6 .service-box-6 .icon-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.service-wrapper-6 .service-box-6 .icon-items .icon {
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  width: 110px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.service-wrapper-6 .service-box-6 .icon-items .icon svg {
  display: initial;
}

.service-wrapper-6 .service-box-6 .icon-items h3 {
  font-size: 32px;
}

.service-wrapper-6 .service-box-6 .icon-items h3 a {
  color: #003566;
}

.service-wrapper-6 .service-box-6 .arrow-icon {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  text-align: center;
  border-radius: 50%;
  color: #fff;
}

.service-wrapper-6 .service-box-6 .arrow-icon i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.service-wrapper-6 .service-box-6 p {
  max-width: 435px;
}

.service-wrapper-6 .service-box-6:hover::before {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-wrapper-6 .service-box-6:hover::after {
  opacity: 1;
  visibility: visible;
}

.service-wrapper-6 .service-box-6:hover .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
}

.service-wrapper-6 .service-box-6:hover .icon-items h3 a {
  color: #fff;
}

.service-wrapper-6 .service-box-6:hover p {
  color: #fff;
}

.service-wrapper-6 .service-box-6:hover .arrow-icon {
  background: #fff;
  color: #003566;
}

.feature-section-5 {
  position: relative;
  z-index: 9;
}

.circle-shape {
  position: absolute;
  top: -30%;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .circle-shape {
    display: none;
  }
}

.counter-section {
  background-attachment: fixed;
}

/***************************************
 - Sections / Event
***************************************/
.request-quote-form-block {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  background-color: #190b41;
  padding: 40px;
}

@media (min-width: 1200px) {
  .request-quote-form-block {
    margin-top: -80px;
  }
}

.event-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-top: 35px;
}

@media (min-width: 576px) {
  .event-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-title {
  margin-block: 12px;
  color: #003566;
  font-weight: 700;
  font-size: 1.25rem;
}

.fix {
  overflow: hidden;
}

/***************************************
 - Sections / Industry
***************************************/
.industrial-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px 40px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .industrial-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .industrial-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .industrial-list {
    gap: 60px 50px;
  }
}

.industrial-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.25rem;
}

.industrial-item:hover .industrial-icon {
  border-color: transparent;
}

.industrial-item:hover .industrial-icon img:nth-child(odd) {
  opacity: 0;
}

.industrial-item:hover .industrial-icon img:nth-child(even) {
  opacity: 1;
}

.industrial-item:hover .industrial-icon::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.industrial-item:hover .industrial-link {
  color: #ff7d44;
}

.industrial-item:hover .industrial-link::after {
  width: 100%;
}

.industrial-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ff7d44;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  overflow: hidden;
}

.industrial-icon::after {
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  content: "";
}

.industrial-icon img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.industrial-icon img:nth-child(odd) {
  opacity: 1;
}

.industrial-icon img:nth-child(even) {
  position: absolute;
  opacity: 0;
}

.industrial-item .industrial-icon i {
  color: #ff7d44;
  font-size: 25px;
}

.industrial-item:hover .industrial-icon i {
  color: #fff;
}

.industrial-link {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #003566;
  line-height: 1;
}

@media (min-width: 768px) {
  .industrial-link {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
  }
}

.industrial-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #ff7d44;
  width: 0%;
  height: 1px;
  content: "";
}

.industrial-link:hover {
  color: #ff7d44;
}

.industrial-link:hover::after {
  width: 100%;
}

.industry-shape-1,
.industry-shape-2 {
  position: absolute;
  z-index: -1;
}

.industry-shape-1 {
  top: -200px;
  left: 0;
}

.industry-shape-2 {
  right: 0;
  bottom: 95px;
}

/***************************************
 - Sections / Why Choose Us
***************************************/
.why-choose-us-area {
  position: relative;
  z-index: 1;
}

.choose-us-wrapper {
  margin-left: 0;
}

@media (min-width: 1800px) {
  .choose-us-wrapper {
    margin-left: 300px;
  }
}

.why-choose-us-element-1 {
  display: none;
  top: 0;
  left: 0;
  z-index: -5;
}

@media (min-width: 1800px) {
  .why-choose-us-element-1 {
    display: inline-block;
  }
}

.why-choose-us-element-2 {
  display: none;
  top: 385px;
  left: 262px;
  z-index: -1;
}

@media (min-width: 1800px) {
  .why-choose-us-element-2 {
    display: inline-block;
  }
}

.why-choose-us-element-3 {
  display: none;
  top: 40px;
  right: 0;
  z-index: -3;
}

@media (min-width: 1400px) {
  .why-choose-us-element-3 {
    display: inline-block;
  }
}

@media (min-width: 1800px) {
  .why-choose-us-element-3 {
    display: inline-block;
  }
}

.why-choose-us-element-4 {
  display: none;
  right: 20px;
  bottom: 80px;
  z-index: -4;
}

@media (min-width: 1200px) {
  .why-choose-us-element-4 {
    display: inline-block;
  }
}

@media (min-width: 1800px) {
  .why-choose-us-element-4 {
    display: inline-block;
  }
}

.why-choose-us-element-5 {
  display: none;
  position: static;
  right: 70px;
  bottom: 0;
  z-index: -2;
}

@media (min-width: 992px) {
  .why-choose-us-element-5 {
    display: inline-block;
    position: absolute;
    right: 50px;
    width: 35%;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .why-choose-us-element-5 {
    right: 70px;
    width: auto;
  }
}

@media (min-width: 1800px) {
  .why-choose-us-element-5 {
    display: inline-block;
  }
}

.why-choose-us-element-6 {
  display: none;
  position: static;
  z-index: -6;
}

@media (min-width: 992px) {
  .why-choose-us-element-6 {
    display: inline-block;
    position: absolute;
    top: 555px;
    left: 170px;
    width: 8%;
    height: auto;
  }
}

.support-info .icon {
  background-color: rgba(255, 255, 255, 0.09);
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 1.25rem;
}

.why-choose-us-section-4 {
  padding: 120px 0;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .counter-box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 47px;
  margin-top: 20px;
}

@media screen and (max-width: 1199px) {
  .why-choose-us-wrapper-4 .why-choose-us-content-4 .counter-box-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .counter-box-items .counter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1199px) {
  .why-choose-us-wrapper-4 .why-choose-us-content-4 .counter-box-items .counter-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .counter-box-items .counter-box .count {
  font-size: 66px;
  font-weight: 700;
  color: #FF7D44;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .counter-box-items .counter-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .list-box {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 1199px) {
  .why-choose-us-wrapper-4 .why-choose-us-content-4 .list-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .list-box ul li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .list-box ul li svg {
  margin-right: 5px;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}

@media screen and (max-width: 1199px) {
  .why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF7D44;
  color: #fff;
  font-size: 22px;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn .icon-items span {
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans";
  color: #fff;
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn .icon-items h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans";
}

.why-choose-us-wrapper-4 .why-choose-us-content-4 .choose-us-btn .icon-items h4 a {
  color: #fff;
}

.why-choose-us-wrapper-4 .why-choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.choose-us-wrapper-44 {
  margin-top: 70px;
}

@media (max-width: 767px) {
  .choose-us-wrapper-44 {
    margin-top: 10px;
  }
}

.choose-us-wrapper-44 .choose-us-box {
  padding: 40px 25px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  z-index: 1;
  position: relative;
  background: #fff;
  margin-top: 0;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .choose-us-wrapper-44 .choose-us-box {
    text-align: center;
  }
}

.choose-us-wrapper-44 .choose-us-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  z-index: -1;
  border-radius: 12px;
}

.choose-us-wrapper-44 .choose-us-box.style-margin {
  margin-top: 24px;
}

.choose-us-wrapper-44 .choose-us-box .icon {
  font-size: 60px;
  color: #FF7D44;
  display: inline-block;
}

.choose-us-wrapper-44 .choose-us-box .number-itesm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.choose-us-wrapper-44 .choose-us-box .number-itesm .number {
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 53, 102, 0.15);
  font-family: Raleway;
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.choose-us-wrapper-44 .choose-us-box .content h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.choose-us-wrapper-44 .choose-us-box:hover {
  border: 1px solid #FF7D44;
}

.choose-us-wrapper-44 .choose-us-box:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.choose-us-wrapper-44 .choose-us-box:hover .icon svg path {
  fill: #fff;
}

.choose-us-wrapper-44 .choose-us-box:hover .number-itesm .number {
  -webkit-text-stroke-color: rgb(255, 255, 255);
}

.choose-us-wrapper-44 .choose-us-box:hover .content h5 {
  color: #fff;
}

.choose-us-wrapper-44 .choose-us-box:hover .content p {
  color: #fff;
}

.choose-us-wrapper-44 .choose-us-content {
  margin-left: 70px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper-44 .choose-us-content {
    margin-left: 0;
  }
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items {
  width: 100%;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .pro-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .pro-head .title {
  color: #003566;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: #003566;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .progress {
  background: rgba(255, 121, 45, 0.28);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6px;
  width: 100%;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .progress-value {
  -webkit-animation: load 3s normal forwards;
  animation: load 3s normal forwards;
  border-radius: 0;
  background: #FF7D44;
  height: 6px;
  width: 0;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .style-two {
  -webkit-animation: load2 3s normal forwards;
  animation: load2 3s normal forwards;
}

.choose-us-wrapper-44 .choose-us-content .progress-wrap .pro-items .style-three {
  -webkit-animation: load3 3s normal forwards;
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.choose-us-wrapper-44 .choose-us-content .choose-us-thumb {
  margin-top: 80px;
  margin-left: -208px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper-44 .choose-us-content .choose-us-thumb {
    margin-left: 0;
    margin-top: 30px;
  }
}

.choose-us-wrapper-44 .choose-us-content .choose-us-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.scrolling-text.ani-2 {
  -webkit-animation: scroll-right 20s linear infinite;
  animation: scroll-right 20s linear infinite;
}

.scrolling-text-inner>div {
  -webkit-animation: scroll-right 20s linear infinite;
  animation: scroll-right 20s linear infinite;
}

@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes scroll-right {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/***************************************
 - Sections / Fun-fact
***************************************/
.funfact-area {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  -webkit-box-shadow: 0px 22px 50px 11px rgba(0, 53, 102, 0.06);
  box-shadow: 0px 22px 50px 11px rgba(0, 53, 102, 0.06);
  border-right: 3px solid #ff7d44;
  border-radius: 12px;
  background-color: #fff;
  padding: 40px 40px;
}

@media (min-width: 768px) {
  .funfact-area {
    margin-top: 80px;
    padding: 80px 85px;
  }
}

@media (min-width: 992px) {
  .funfact-area {
    margin-top: 100px;
  }
}

@media (min-width: 1200px) {
  .funfact-area {
    margin-top: -10%;
  }
}

.fun-fact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.fun-fact-icon {
  margin-top: 5px;
  width: 51px;
  height: 51px;
}

.fun-fact-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.fun-fact-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
  color: #003566;
}

.fun-fact-title.is-secondary {
  color: #ff7d44;
}

.fun-fact-title-2 {
  margin-bottom: 20px;
}

.fun-fact-value {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .fun-fact-value {
    font-size: 3.75rem;
  }
}

@media (min-width: 1400px) {
  .fun-fact-value.is-large {
    font-size: 4.5rem;
  }
}

.fun-fact-plus {
  font-weight: 700;
  font-size: 1.5rem;
}

.fun-fact-text {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .fun-fact-text {
    font-size: 1.25rem;
  }
}

.fun-fact-text.is-small {
  font-size: 1rem;
}

.fun-fact-focus-text {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 53, 102, 0.12);
  padding-top: 20px;
  color: #003566;
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-section-3 {
  background: #FFF2EC;
}

.feature-wrapper-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1199px) {
  .feature-wrapper-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.feature-wrapper-3 .icon-items h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.counter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1199px) {
  .counter-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.counter-wrapper .counter-items {
  max-width: 265px;
}

.counter-wrapper .counter-items .fun-fact-value {
  font-size: 72px;
  font-weight: 800;
  font-family: "DM Sans";
  text-decoration: none;
  -webkit-text-stroke: 1.2px #fff;
  color: transparent;
}

.counter-wrapper .counter-items .start-number {
  font-size: 72px;
  font-weight: 800;
  font-family: "DM Sans";
  text-decoration: none;
  -webkit-text-stroke: 1.2px #fff;
  color: transparent;
}

.counter-wrapper .counter-items p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 10px;
  color: #fff;
}

.counter-wrapper .counter-items h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 20px;
}

.counter-wrapper .counter-items:hover .start-number {
  color: #FF7D44 !important;
  -webkit-text-stroke: initial !important;
}

.counter-wrapper .counter-items:hover .fun-fact-value {
  color: #FF7D44 !important;
  -webkit-text-stroke: initial !important;
}

.cta-wrapper-3 .right-content {
  max-width: 440px;
  width: 100%;
}

.cta-wrapper-3 .right-content p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-wrapper-3 .right-content .form-box {
  position: relative;
}

.cta-wrapper-3 .right-content .form-box button {
  position: absolute;
  top: 4px;
  right: 7px;
  bottom: 0;
  width: 50px;
  height: 50px;
  line-height: 63px;
  text-align: center;
  border-radius: 44px;
  background: #FF7D44;
}

.cta-wrapper-3 .right-content .form-input-1 {
  width: 100%;
  padding: 15px 25px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.video-wrapper-3 {
  padding: 280px 0;
  text-align: center;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  background-attachment: fixed;
}

.video-wrapper-3 .video {
  position: relative;
}

.video-wrapper-3 .video .video-btn {
  width: 116px;
  height: 116px;
  line-height: 116px;
  text-align: center;
  border-radius: 100px;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 24px;
}

.video-wrapper-3 .video .circle-image {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}

.video-wrapper-3 .video .circle-image img {
  -webkit-animation: cir36 10s linear infinite;
  animation: cir36 10s linear infinite;
}

.video-wrapper-3 .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.feature-box-items-4 {
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  padding: 50px 30px;
}

.feature-box-items-4 .feature-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 53, 102, 0.1215686275);
  padding-bottom: 30px;
}

.feature-box-items-4 .feature-icon-box h4 {
  font-size: 22px;
  font-weight: 700;
}

.feature-box-items-4 p {
  font-weight: 500;
}

.feature-wrapper-5 .feature-content-4 .counter-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 95px;
  margin-top: 40px;
  border-top: 1px solid rgba(35, 28, 37, 0.1411764706);
  padding-top: 30px;
}

@media screen and (max-width: 1199px) {
  .feature-wrapper-5 .feature-content-4 .counter-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.feature-wrapper-5 .feature-content-4 .counter-area .counter-content .fun-fact-value {
  font-size: 72px;
  font-weight: 800;
  color: #FF7D44;
}

.feature-wrapper-5 .feature-info .feature-box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  padding: 31px 37px;
  margin-top: 30px;
  margin-left: 40px;
}

@media screen and (max-width: 1199px) {
  .feature-wrapper-5 .feature-info .feature-box-items {
    margin-left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.feature-wrapper-5 .feature-info .feature-box-items .content h4 {
  font-size: 20px;
  font-weight: 600;
}

.pricing-section-5 {
  position: relative;
  overflow: hidden;
}

.pricing-section-5 .left-shape {
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
}

.pricing-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 1399px) {
  .company-wrapper-5 {
    padding-bottom: 100px;
  }
}

.company-wrapper-5 .company-content .button-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

@media screen and (max-width: 1399px) {
  .company-wrapper-5 .company-content .button-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.company-wrapper-5 .company-content .button-items .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.company-wrapper-5 .company-content .button-items .client-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.company-wrapper-5 .list-items {
  margin-top: 60px;
}

@media screen and (max-width: 1399px) {
  .company-wrapper-5 .list-items {
    padding-bottom: 0;
  }
}

.company-wrapper-5 .list-items ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  gap: 10px;
}

.company-wrapper-5 .list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.company-wrapper-5 .list-items .fun-fact-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: 12px;
  background: radial-gradient(133.22% 120.44% at 100.88% 22.84%, #FFE5CA 0%, #F6921E 50%, #D83B20 100%);
  padding: 48px 30px;
  margin-top: 50px;
  margin-bottom: -40px;
}

@media screen and (max-width: 1399px) {
  .company-wrapper-5 .list-items .fun-fact-value {
    margin-bottom: 0;
  }
}

.company-wrapper-5 .list-items .fun-fact-value span {
  color: #fff;
  font-size: 66px;
  font-weight: 700;
  font-family: "DM Sans";
}

.company-wrapper-5 .list-items .fun-fact-value h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.video-section-5 {
  background-attachment: fixed;
}

.testimonial-section-5 {
  position: relative;
  z-index: 9;
}

.testimonial-section-5 .testi-shape {
  position: absolute;
  right: 160px;
  top: 80px;
  z-index: -1;
}

.faq-5 {
  position: relative;
  z-index: 9;
}

.faq-5 .dot-s2 {
  position: absolute;
  left: 80px;
  bottom: 0;
  z-index: -1;
}

.faq-5 .dot-s3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.faq-5 .faq-accordion .accordion-item-2 {
  border-radius: 4px;
  border: 1px solid rgba(0, 25, 76, 0.08);
  background: #FAFAFA;
}

/***************************************
 - Sections / Custom Slider
***************************************/
.clint-slider-bg-area {
  border-radius: 12px;
  background: #fff2ec;
  padding: 70px 30px;
  text-align: center;
}

@media (min-width: 1200px) {
  .clint-slider-bg-area {
    padding: 70px 50px;
  }
}

@media (min-width: 1200px) {
  .clint-slider-bg-area {
    padding: 70px 85px;
  }
}

.clint-slider-bg-area h4 {
  display: inline-block;
  -webkit-transform: translateY(-82px);
  transform: translateY(-82px);
  border-radius: 12px;
  background-color: #fff;
  padding: 15px 40px;
}

.get-start-slider-area {
  background-color: #ff7d44;
  padding-block: 25px;
}

.get-start-slider-info-block {
  position: relative;
  z-index: 1;
  padding-block: 260px 60px;
}

@media (min-width: 992px) {
  .get-start-slider-info-block {
    padding-block: 300px 80px;
  }
}

@media (min-width: 1200px) {
  .get-start-slider-info-block {
    padding-block: 350px 100px;
  }
}

@media (min-width: 1200px) {
  .get-start-slider-info-block {
    padding-block: 418px 120px;
  }
}

.get-start-slider-info-block::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(0, 53, 102, 0.56);
  content: "";
}

.get-start-info-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.text-slider-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 57px;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -2px;
  white-space: nowrap;
}

.scrolling-text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.scrolling-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 57px;
  padding-right: 60px;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -2px;
}

.scrolling-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.scrolling-text-inner>div {
  -webkit-animation: scroll-left 20s linear infinite;
  animation: scroll-left 20s linear infinite;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/***************************************
 - Sections / Map Location
***************************************/
.map-container {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1200px;
}

.world-map {
  width: 100%;
}

.marker {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  background-color: #ff7d44;
  width: 14px;
  height: 14px;
}

.marker.location-1 {
  top: 11%;
  left: 24%;
}

.marker.location-2 {
  top: 14%;
  left: 52%;
}

.marker.location-3 {
  top: 23%;
  left: 74%;
}

.marker.location-4 {
  top: 32%;
  left: 44%;
}

.marker.location-5 {
  top: 64%;
  left: 32%;
}

.marker.location-6 {
  top: 63%;
  left: 78%;
}

/* Popup default hidden */
.marker .popup {
  display: none;
  position: absolute;
  top: -10px;
  left: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #ff7d44;
  padding: 10px;
  width: 260px;
  color: white;
}

/* Show popup on hover */
.marker:hover .popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.popup img {
  border-radius: 6px;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
}

.popup-text {
  font-weight: 600;
}

/***************
+ Pages:
****************/
/***************************************
* - Pages / About
***************************************/
.about-area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 40px;
}

@media (min-width: 992px) {
  .about-area {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (min-width: 1200px) {
  .about-area {
    gap: 80px;
  }
}

@media (min-width: 1400px) {
  .about-area {
    gap: 118px;
  }
}

.about-left-block {
  position: relative;
}

@media (min-width: 1200px) {
  .about-left-block .image-block {
    margin: inherit;
  }
}

.about-left-block .image-block img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
}

.about-left-block .image-block:nth-child(1) {
  -ms-grid-column-align: center;
  justify-self: center;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

@media (min-width: 1200px) {
  .about-left-block .image-block:nth-child(1) {
    -ms-grid-column-align: end;
    justify-self: end;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}

.about-left-block .image-block:nth-child(2) {
  display: none;
  -ms-grid-column-align: start;
  justify-self: start;
  margin-top: -225px;
}

@media (min-width: 1200px) {
  .about-left-block .image-block:nth-child(2) {
    display: inline-block;
  }
}

.about-left-block>img {
  display: none;
  position: absolute;
  top: 77%;
  right: 0%;
  z-index: -1;
}

@media (min-width: 1200px) {
  .about-left-block>img {
    display: inline-block;
  }
}

.about-left-block .about-shape-block {
  position: absolute;
  top: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 1200px) {
  .about-left-block .about-shape-block {
    left: 50%;
  }
}

@media (min-width: 1400px) {
  .about-left-block .about-shape-block {
    left: 25%;
  }
}

.about-left-block .about-shape-block .about-shape-inner-block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  height: 200px;
  text-align: center;
}

.about-left-block .about-shape-block .about-shape-text {
  position: absolute;
  color: #fff;
  text-align: center;
}

.about-left-block .about-shape-block .about-shape-text span {
  display: block;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

.about-section-img {
  display: none;
}

@media (min-width: 1800px) {
  .about-section-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.about-section-img img:nth-child(1) {
  position: absolute;
  top: 250px;
  left: 0;
  z-index: 1;
}

.about-section-img img:nth-child(2) {
  position: absolute;
  top: 160px;
  left: 0;
}

.about-section-img img:nth-child(3) {
  position: absolute;
  top: -250px;
  right: 0;
}

.about-section-img img:nth-child(4) {
  position: absolute;
  right: 0;
  bottom: 60px;
}

.about-area-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  justify-items: center;
  gap: 60px;
}

@media (min-width: 1200px) {
  .about-area-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {
  .about-area-2 {
    -ms-grid-columns: minmax(0, 768px) 90px minmax(0, 760px);
    grid-template-columns: minmax(0, 768px) minmax(0, 760px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 90px;
  }
}

.about-area-2 .about-style-2-img-block {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

@media (min-width: 1200px) {
  .about-area-2 .about-style-2-img-block {
    max-width: 100%;
  }
}

.about-area-2 .about-style-2-img-block .about-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
}

@media (min-width: 992px) {
  .about-area-2 .about-style-2-img-block .about-video {
    width: 232px;
    height: 232px;
  }
}

@media (min-width: 1400px) {
  .about-area-2 .about-style-2-img-block .about-video {
    display: inline-block;
    top: 55%;
    right: -116px;
    left: auto;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    width: 232px;
    height: 232px;
  }
}

.about-area-2 .about-style-2-img-block .about-elements-1 {
  display: none;
  top: calc(100% - 30px);
  left: 0%;
}

@media (min-width: 1200px) {
  .about-area-2 .about-style-2-img-block .about-elements-1 {
    display: inline-block;
  }
}

.about-area-2 .about-style-2-img-block .about-elements-2 {
  display: none;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .about-area-2 .about-style-2-img-block .about-elements-2 {
    display: inline-block;
  }
}

.about-area-2 .about-content-block {
  padding-inline: 20px;
}

@media (min-width: 576px) {
  .about-area-2 .about-content-block {
    padding-inline: 40px;
  }
}

@media (min-width: 1200px) {
  .about-area-2 .about-content-block {
    padding-inline: 0 20px;
  }
}

@media (min-width: 1800px) {
  .about-area-2 .about-content-block {
    padding-right: 0;
  }
}

.about-area-2 .section-content-block {
  max-width: 650px;
}

.feature-style-1-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 576px) {
  .feature-style-1-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .feature-style-1-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .feature-style-1-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-left: 40px;
  }
}

@media (min-width: 1400px) {
  .feature-style-1-list {
    gap: 65px;
    margin-left: 60px;
  }
}

@media (min-width: 1800px) {
  .feature-style-1-list {
    margin-left: 120px;
  }
}

.feature-style-1-icon {
  width: auto;
  height: 60px;
}

.feature-style-1-title {
  margin-block: 10px 5px;
  color: #003566;
  font-weight: 700;
  font-size: 1.375rem;
  font-family: "Raleway", sans-serif;
}

.about-wrapper-2 {
  position: relative;
  z-index: 1;
}

.about-wrapper-2 .about-elements-3 {
  top: 140px;
  right: 100px;
}

.about-wrapper-2 .about-elements-4 {
  right: 77px;
  bottom: 47px;
}

.about-wrapper-3 .section-content-block span {
  margin-bottom: 0;
}

.about-wrapper-3 .section-content-block h2 {
  margin-top: -40px;
}

.about-wrapper-3 .section-content-block {
  text-align: left;
}

.about-wrapper-3 .section-content-block .section-title {
  margin-left: 280px;
}

@media screen and (max-width: 767px) {
  .about-wrapper-3 .section-content-block .section-title {
    margin-left: 0;
  }
}

.about-wrapper-3 .about-image {
  margin-top: 30px;
  margin-left: -30%;
  border-radius: 12px;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-3 .about-image {
    margin-left: 0;
  }
}

.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-wrapper-3 .about-content {
  margin-top: 30px;
  margin-left: 50px;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}

.about-wrapper-3 .about-content p {
  font-weight: 500;
}

.about-wrapper-3 .about-content .about-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  margin-left: -37%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-box-wrap {
    margin-left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items {
  background-color: #003566;
  padding: 55px 60px;
  text-align: center;
  max-width: 540px;
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .about-wrapper-3 .about-content .about-box-wrap .about-box-items {
    padding: 20px 30px;
  }
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items .box-text {
  font-size: 20px;
  font-weight: 600;
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items .client-info {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items .client-info .client-img {
  border: 2px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items .client-info .client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items .client-info .content h6 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: "DM Sans";
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items .client-info .content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.about-wrapper-3 .about-content .about-box-wrap .about-box-items p {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.about-wrapper-3 .about-content .about-box-wrap .medal-content {
  text-align: center;
}

.about-wrapper-3 .about-content .about-box-wrap .medal-content h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "DM Sans";
  margin-top: 10px;
}

.about-wrapper-3 .about-content .about-list {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .about-wrapper-3 .about-content .about-list {
    margin-top: 30px;
  }
}

.about-wrapper-3 .about-content .about-list li {
  font-size: 18px;
  color: #013566;
  font-weight: 500;
}

.about-wrapper-3 .about-content .about-list li i {
  color: #FF7D44;
  margin-right: 10px;
}

.about-wrapper-3 .about-content .about-list li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-3 .about-content .about-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-btn {
    margin-top: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.about-wrapper-3 .about-content .about-btn .icon {
  width: 55px;
  height: 55px;
  line-height: 73px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF7D44;
  color: #fff;
  font-size: 22px;
}

.about-wrapper-3 .about-content .about-btn .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.about-wrapper-3 .about-content .about-btn .icon-items span {
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans";
}

.about-wrapper-3 .about-content .about-btn .icon-items h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans";
}

.about-wrapper-4 .about-image-box-4 {
  margin-right: 60px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-4 .about-image-box-4 {
    margin-right: 0;
  }
}

.about-wrapper-4 .about-image-box-4 .dot-shape {
  position: absolute;
  right: -26px;
  bottom: -22px;
}

.about-wrapper-4 .about-image-box-4 .about-image {
  position: relative;
}

.about-wrapper-4 .about-image-box-4 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-wrapper-4 .about-image-box-4 .about-image .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #FFF;
  -webkit-box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 30px 35px;
  position: absolute;
  left: -35px;
  bottom: -30px;
  min-width: 440px;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-4 .about-image-box-4 .about-image .icon-items {
    display: none;
  }
}

.about-wrapper-4 .about-image-box-4 .about-image .icon-items .fun-fact-value {
  color: #FF7D44;
}

.about-wrapper-4 .about-image-box-4 .about-image .icon-items .fun-fact-value span {
  font-size: 72px;
  font-weight: 800;
  font-family: Raleway;
  color: #FF7D44;
}

.about-wrapper-4 .about-image-box-4 .about-image .icon-items h4 {
  font-size: 20px;
  margin-top: 5px;
}

.about-wrapper-4 .about-content-4 .icon-box-items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-4 .about-content-4 .icon-box-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-4 .about-content-4 .icon-box-items .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.about-wrapper-4 .about-content-4 .icon-box-items h4 {
  font-size: 20px;
  font-weight: 700;
}

.about-wrapper-4 .about-content-4 .list-box {
  margin-top: 40px;
  border-radius: 12px;
  background: #FFF2EC;
  padding: 30px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-left: 5px solid #FF7D44;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-4 .about-content-4 .list-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-4 .about-content-4 .list-box ul li {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #013566;
}

.about-wrapper-4 .about-content-4 .list-box ul li i {
  margin-right: 5px;
  color: #FF7D44;
}

.about-wrapper-4 .about-content-4 .about-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-4 .about-content-4 .about-btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-4 .about-content-4 .about-btn .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF7D44;
  color: #fff;
  font-size: 22px;
}

.about-wrapper-4 .about-content-4 .about-btn .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.about-wrapper-4 .about-content-4 .about-btn .icon-items span {
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans";
}

.about-wrapper-4 .about-content-4 .about-btn .icon-items h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans";
}

.about-wrapper-5 {
  position: relative;
  z-index: 9;
}

.about-wrapper-5 .about-shape {
  position: absolute;
  top: -50px;
  left: 100px;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .about-wrapper-5 .about-shape {
    display: none;
  }
}

.about-wrapper-5 .about-image-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-right: 60px;
  margin-left: -90px;
}

@media screen and (max-width: 1399px) {
  .about-wrapper-5 .about-image-items {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 575px) {
  .about-wrapper-5 .about-image-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-5 .about-image-items img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-wrapper-5 .counter-box {
  width: 252px;
  height: 252px;
  text-align: center;
  margin-top: 18px;
  padding-top: 50px;
  border-radius: 126px 126px 126px 0px;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  font-size: 72px;
  min-width: 265px;
  color: #FF7D44;
  font-weight: 500;
}

.about-wrapper-5 .counter-box .start-number {
  font-weight: 800;
  color: #FF7D44;
  font-family: Raleway;
}

.about-wrapper-5 .counter-box p {
  font-size: 18px;
  font-weight: 500;
  color: #5C6672;
  margin-top: -15px;
}

.about-wrapper-5 .about-image-2 {
  height: 670px;
  position: relative;
}

.about-wrapper-5 .about-image-2 .object-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.about-wrapper-5 .about-image-2 img {
  -o-object-fit: cover;
  object-fit: cover;
}

.about-wrapper-5 .about-content .about-text {
  margin-top: 20px;
}

.about-wrapper-5 .about-content .icon-items-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
  .about-wrapper-5 .about-content .icon-items-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-5 .about-content .icon-items-area .icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
}

.about-wrapper-5 .about-content .icon-items-area .icon-items h5 {
  font-size: 20px;
  font-weight: 600;
}

.about-wrapper-5 .about-content .about-us-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 1399px) {
  .about-wrapper-5 .about-content .about-us-button {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper-5 .about-content .about-us-button .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.about-wrapper-5 .about-content .about-us-button .client-info h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}

.about-section-3 {
  position: relative;
}

.about-section-3 .right-shape {
  position: absolute;
  right: 40px;
  top: 0;
}

@media screen and (max-width: 1399px) {
  .about-section-3 .right-shape {
    display: none;
  }
}

.news-section-3 {
  position: relative;
  z-index: 9;
}

.news-section-3 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/***************************************
* - Pages / Blog
***************************************/
.inner-image-column-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.comment-user-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 55px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.comment-user-list.is-reply {
  margin-top: 55px;
  padding-left: 30px;
}

@media (min-width: 576px) {
  .comment-user-list.is-reply {
    padding-left: 40px;
  }
}

@media (min-width: 768px) {
  .comment-user-list.is-reply {
    padding-left: 100px;
  }
}

.comment-user-item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 576px) {
  .comment-user-item-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.comment-user-avater {
  width: 92px;
  height: 92px;
}

.comment-user-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.comment-user-name span {
  color: #003566;
  font-weight: 600;
  font-size: 1.125rem;
}

.comment-user-comment {
  border: 1px solid rgba(0, 53, 102, 0.15);
  border-radius: 12px;
  padding: 30px;
}

.news-section-4 {
  position: relative;
  z-index: 9;
}

.news-section-4 .news-shape-left {
  position: absolute;
  top: -40%;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .news-section-4 .news-shape-left {
    display: none;
  }
}

.news-section-4 .news-shape-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .news-section-4 .news-shape-right {
    display: none;
  }
}

.about-right-block h2 {
  font-size: 34px;
}

/***************************************
* - Pages / Contact
***************************************/
.map-block {
  width: 100%;
  height: 320px;
}

@media (min-width: 768px) {
  .map-block {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .map-block {
    height: 600px;
  }
}

@media (min-width: 1200px) {
  .map-block {
    height: 800px;
  }
}

.contact-wrapper-3 .contact-left-content .contact-info-items .contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.contact-wrapper-3 .contact-left-content .contact-info-items .contact-items .icon {
  width: 60px;
  height: 61px;
  border-radius: 4px;
  background: #FF7D44;
  line-height: 80px;
  text-align: center;
}

.contact-wrapper-3 .faq-accordion .accordion-item-1:has(.collapse.show) {
  background: #fff;
}

.contact-wrapper-4 .contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.contact-wrapper-4 .contact-items.style-1 {
  margin-top: 40px;
}

.contact-wrapper-4 .contact-items .icon {
  width: 60px;
  height: 61px;
  border-radius: 50px;
  background: #FF7D44;
  line-height: 80px;
  text-align: center;
}

.contact-wrapper-4 .contact-items .content h4 {
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans";
  color: #fff;
}

.contact-wrapper-4 .contact-items .content p {
  font-size: 24px;
  font-family: Raleway;
  font-size: 24px;
  font-weight: 700;
}

.contact-wrapper-4 .contact-items .content p a {
  color: #fff;
}

.contact-wrapper-4 .contact-content {
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  padding: 45px;
}

.contact-wrapper-4 .contact-content .contact-form-box .form-clt input,
.contact-wrapper-4 .contact-content .contact-form-box .form-clt textarea {
  border-radius: 4px;
  border: 1px solid rgba(0, 25, 76, 0.08);
  background: #FAFAFA;
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
}

.contact-wrapper-4 .contact-content .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

.contact-section-4 {
  background-attachment: fixed;
}

/***************************************
* - Pages / Team Details
***************************************/
.team-details-image-block img {
  border-radius: 12px;
}

.team-member-content-block {
  font-size: 1.125rem;
}

.team-contact-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team-contact-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.team-contact-info-icon {
  color: #ff7d44;
}

.team-contact-info-link {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #5c6672;
}

.team-contact-info-link:hover {
  color: #ff7d44;
}

.team-contact-info-text:hover {
  color: #5c6672;
}

/***************************************
* - Pages / Project Details
***************************************/
.project-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 40px;
}

@media (min-width: 576px) {
  .project-info-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .project-info-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px 0px;
  }
}

.project-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

@media (min-width: 1200px) {
  .project-info-item:not(:last-child)::after {
    position: absolute;
    top: 0;
    left: calc(100% + 40px);
    background-color: rgba(0, 53, 102, 0.35);
    width: 1px;
    height: 100%;
    content: "";
  }
}

@media (min-width: 1200px) {
  .project-info-item:not(:last-child)::after {
    left: calc(100% + 65px);
  }
}

.project-info-icon {
  width: 38px;
  height: 38px;
}

.project-info-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

.project-info-title {
  display: block;
  color: #003566;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Raleway", sans-serif;
}

.project-info-text {
  font-size: 1.125rem;
}

.project-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .project-pagination {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.project-pagination-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.project-pagination-item:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}

.project-pagination-item:last-child .project-pagination-text {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.project-pagination-image {
  border-radius: 50%;
  width: 71px;
  height: 71px;
  overflow: hidden;
}

.project-pagination-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #ff7d44;
  font-size: 1.125rem;
}

.project-pagination-link {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  color: #003566;
  font-weight: 600;
  font-size: 1.25rem;
  font-family: "Raleway", sans-serif;
}

@media (min-width: 768px) {
  .project-pagination-link {
    font-size: 1.5rem;
  }
}



/* ============================================================== 
    # Why Choose Us
=================================================================== */

.truck-left {
  position: absolute;
  right: 0;
  z-index: 2;
  max-width: 20%;
  top: 200px;
}

.tab-style-two-items nav .nav-tabs {
  margin: 0;
  border: none;

  margin-bottom: 10px;
}

.tab-style-two-items nav .nav-tabs::before,
.tab-style-two-items nav .nav-tabs::after {
  display: none;
}

.tab-style-two-items nav .nav-tabs button {
  border: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 25px;
  background: transparent;
  text-align: left;
  display: block;
  text-align: center;
  border-radius: 0;
  position: relative;
  border: 1px solid #263c9f;
  z-index: 1;
  background: #fff;
}

.tab-style-two-items nav .nav-tabs button:last-child {
  margin-right: 0;
}

.tab-style-two-items nav .nav-tabs button:hover,
.tab-style-two-items nav .nav-tabs button.active {
  background: #20207c;
  color: #fff;
}

.tab-style-two-items nav .nav-tabs button::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 3px;
  width: 0;
  background: #4729a3;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.tab-style-two-items nav .nav-tabs button.active::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.choose-us-style-one-info ul.list-style-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}

.choose-us-style-one-info ul.list-style-one li::after {
  color: var(--color-primary);
}

.thumb-style-one {
  margin-right: 50px;
  margin-left: -20%;
  position: relative;
  z-index: 2;
  height: 100%;
}

.thumb-style-one .video-btn-one {
  position: absolute;
  right: 0;
  bottom: 0;
}

.thumb-style-one img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.choose-us-style-one-info {
  position: relative;
}

.choose-us-style-one-info .tab-content .vs-blog__style1 {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: #fff;

  border-top: none;
}

.choose-us-style-one-info .tab-content:before {
  content: '';
  position: absolute;
  background: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 500px rgb(67 51 111);
  backdrop-filter: blur(10px);
  z-index: -1;
  display: none;
}


/*.choose-us-style-one-info::after {
  position: absolute;
  left: -200px;
  top: -80px;
  content: "";
  height: 200%;
  width: 500%;
  background: #003566;
}
*/
.tab-style-two-items {
  position: relative;
  z-index: 1;
}



/* ============================================================== 
    # Choose Us Style Two
=================================================================== */
.choose-us-two-thumb {
  position: relative;
  margin-left: -15%;
  padding-right: 50px;
}

.choose-us-two-thumb .fun-fact {
  background: var(--dark);
  display: inline-block;
  padding: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.choose-us-two-thumb .fun-fact .counter {
  color: var(--white);
  font-size: 70px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 10px;
}

.choose-us-two-thumb .fun-fact h4 {
  margin: 0;
  color: var(--white);
}

.tab-style-three-items {
  display: flex;
  gap: 60px;
  margin-top: 50px;
}

.tab-style-three-items .nav-tabs {
  min-width: 200px;
  border: none;
}

.tab-style-three-items .nav-tabs::before,
.tab-style-three-items .nav-tabs::after {
  display: none;
}

.tab-style-three-items .nav-tabs button {
  margin: 0;
  padding: 16px 25px;
  border: none;
  width: 100%;
  border-radius: 0;
  text-align: left;
  background: var(--white);
  color: var(--color-heading);
  margin-top: 15px;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  transition: all 0.35s ease-in-out;
}

.tab-style-three-items .nav-tabs button::after {
  position: absolute;
  right: -20px;
  top: 50%;
  content: "";
  height: 100%;
  width: 20px;
  background: var(--white);
  transform: translateY(-50%);
  z-index: -1;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transition: all 0.35s ease-in-out;
}

.tab-style-three-items .nav-tabs button.active::after {
  background: var(--color-primary);
}

.tab-style-three-items .nav-tabs button.active {
  background: var(--color-primary);
  border-color: transparent;
  color: var(--white);
}

.tab-style-three-items .nav-tabs button:first-child {
  margin-top: 0;
}

.eventSection{background-color: #efecfa !important; padding: 50px 0;}


.choose-us-style-two-info .progress {
  overflow: inherit;
  height: 8px;
  background: var(--white);
  border-radius: 0;
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.choose-us-style-two-info .progress .progress-bar {
  position: relative;
  overflow: inherit;
  background: var(--color-primary);
}

.choose-us-style-two-info .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -40px;
  color: var(--color-heading);
  font-size: 18px;
  font-weight: 700;
}

.choose-us-style-onea-area {
  background-color: #efecfa !important;
}

.choose-us-style-onea-area .sub-title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  padding: 7px 15px;
  font-size: 20px;
  border-radius: 4px;
}

.choose-us-style-onea-area .title {
  color: #4729a3;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
}

.choose-us-style-onea-area .title svg {
  stroke: rgb(22, 47, 106);
}

.choose-us-style-onea-area .vs-blog__style1 ul {
  overflow: auto;
  height: 298px;
  padding-right: 20px;
}

.choose-us-style-onea-area .vs-blog__style1 ul li {
  margin-bottom: 5px;
  padding: 5px 0px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #29136c
}

/*.choose-us-style-onea-area .vs-blog__style1 ul li:nth-child(even){ background: rgb(104 68 205 / 16%); }*/
.choose-us-style-onea-area .vs-blog__style1 ul li span {
  display: block;
}

.choose-us-style-onea-area .vs-blog__style1 ul li span i {
  margin-right: 5px;
  color: #29136c;
}

.choose-us-style-onea-area .vs-blog__style1 ul li a {
  font-size: 18px;
  color: #000;
}

.choose-us-style-onea-area .vs-blog__style1 ul li a:hover {
  color: #4729a3;
}


.choose-us-style-onea-area .whatNewAreaBox {
  background: #29136c;
  color: #fff;
  padding: 20px 0px 20px 30px;
}

.choose-us-style-onea-area .whatNewAreaBox ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  height: 360px;
  padding-right: 30px;
}

.choose-us-style-onea-area .whatNewAreaBox ul li {
  border-bottom: 1px solid #fff;
}

.choose-us-style-onea-area .whatNewAreaBox ul li a {
  color: #fff;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}

.choose-us-style-onea-area .whatNewAreaBox ul li a span span{ display:block; }

.choose-us-style-onea-area .whatNewAreaBox ul li a i {
  font-size: 18px; margin-right: 5px;
}

.counterArea {
  background: #29136c;

  padding: 5px 20px;
  color: #fff;
  border-radius: 5px;
}

.counterArea span {
  display: block;
  color: #bdadeb;
}


.clientSection {
  background: #fff;
/*  border-top: 2px solid #ebeaea;*/
  padding: 30px 0;
}

.clientSection .owl-nav{
    position: absolute;
    width: 100%;
    top: 84%;
}

.clientSection .clientArea {
  width: 90%;
  margin: auto;
}

.clientSection .clientArea .clientImgArea {
  width: 100%;
  border: 1px solid #e1e1e1;
  padding: 10px;
  background: #fff;
  text-align: center;
}

.clientSection .clientArea .clientImgArea a {
  width: 100%;
  display: block;
  text-align: center;
}

.clientSection .clientArea .clientImgArea img {
  height: 50px;
  width: auto;
  display: inline-block;
}

.clientSection .arrowAction-01 .owl-carousel .owl-stage-outer {
  margin-bottom: 0px;
}

.clientSection .arrowAction-01 .owl-nav button {
  bottom: 20px;
}

.clientSection .arrowAction-01 .owl-nav button.owl-prev {
  left: -50px;
}

.clientSection .arrowAction-01 .owl-nav button.owl-next {
  right: -50px;
}

.clientSection .arrowAction-01 .btnBox {
  bottom: 6px;
  left: -56px;

}


.section-header .dropdown-toggle::after {
  color: #fff
}

.section-header .dropdown-menu {
  width: 95px;
  /* max-width: 20px; */
  min-width: 95px;
}

.service-bg-serves {
  background-color: #fff;
}



/* ============================================================== 
    # Services Style Six
=================================================================== */
.services-style-six-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dddddd;
  overflow: hidden;

}

.services-style-six-item {
  padding: 50px;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

.services-style-six-item.active {
  background: #efecfa;
}

.services-style-six-item::after {
  position: absolute;
  right: -1px;
  top: 0;
  content: "";
  height: 100%;
  width: 1px;
  border-right: 1px solid #dddddd;
}

.services-style-six-item::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #dddddd;
}

.services-style-six-item .icon img {
  height: 60px;
}

.services-style-six-item .icon {
  text-align: right;
}

.services-style-six-item .icon i {
  font-size: 50px;
  color: #4729a3;
}

.services-style-six-item span {
  position: absolute;
  left: 50px;
  top: 50px;
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #bdadeb;
  transition: all 0.35s ease-in-out;
}

.services-style-six-item.active span {
  -webkit-text-stroke: 1px #bdadeb;
}

.services-style-six-item h4 {
  margin: 0;
  margin-top: 80px;
  bottom: -85px;
  transition: all 0.35s ease-in-out;
  position: relative;
}

.services-style-six-item a.round-btn {
  margin-top: 20px;
  position: relative;
  bottom: -50px;
  visibility: hidden;
  opacity: 0;
}

.services-style-six-item:hover h4 {
  bottom: 0;
}

.services-style-six-item:hover .round-btn {
  bottom: 0;
  transition-delay: 0.1s;
  opacity: 1;
  visibility: visible;
}

.services-style-six-item.bg-dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #190b41 !important;
}

.services-style-six-item.bg-dark h5 {
  font-size: 24px;
  color: #fff;
}

.services-style-six-item.bg-dark p {
  margin: 0;
}

.services-style-six-item.bg-dark h5 {
  font-size: 24px;
}

.services-style-six-item.bg-dark img {
  position: absolute;
  max-width: max-content;
  right: 30px;
  bottom: 30px;
  z-index: -1;
}



a.round-btn {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: #190b41;
  border-radius: 50%;
}

.services-style-one:hover .round-btn {
  transform: rotate(45deg);
  background: #FF5C01;
}

.color-secondary .services-style-one:hover .round-btn {
  background: #FF7D44;
}

.services-style-six-item svg {
  display: inline-block;
  max-width: 100%;
  fill: #000;
}

.feature-wrapper-3 .icon-items {

  border: 1px solid #bfa89d;
  text-align: left;
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  width: 100%;

}


footer.bg-dark-secondary {
  background-color: #29136c !important;
}


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


/* Footer Style Two */
footer.bg-dark.footer-style-two .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #29136c;
}

footer.footer-style-two .footer-item {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

footer.footer-style-two .footer-item::after {
  position: absolute;
  right: 0;
  top: -200px;
  bottom: -200px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
  width: 1px;
}

footer.footer-style-two .footer-item:last-child::after {
  display: none;
}

footer .footer-item.about {
  position: relative;
  z-index: 1;
}

footer .footer-item.about::after {
  position: absolute;
  right: 0;
  top: -400px;
  bottom: -400px;
  content: "";
  width: 500%;
  background: #190b41;
  z-index: -1;
}

footer.bg-dark-secondary .footer-bottom {
  background: #29136c;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-style-two-items {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-style-two-items .footer-item:first-child {
  padding-left: 0;
  padding-right: 50px;
}

.footer-style-two-items .footer-item:last-child {
  padding-right: 0;
}

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

.footer-style-two-items ul.footer-social {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  list-style: none;
  background: #29136c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 10px 0;
}

.footer-style-two-items ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 46px;
  text-align: center;
  line-height: 40px;
  color: #fff;
}

.footer-style-two-items ul.footer-social li a img {
  height: 17px;
}

footer.footer-style-two .footer-item:nth-child(2) {
  padding-left: 70px;
}

form.newsletter-form-style-one {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 5px;
}

form.newsletter-form-style-one input {
  background: transparent;
  border: none;
  box-shadow: none !important;
  padding: 15px;
}

form.newsletter-form-style-one button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--color-primary);
  border: none;
  height: 45px;
  width: 45px;
  border-radius: 5px;
}


/* Footer Bottom */
.footer-bottom {
  background: var(--dark);
  position: relative;
  z-index: 1;
}

.footer-style-one .footer-bottom::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: #29136c;
  z-index: -1;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-bottom ul li a {
  font-weight: 400;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .text-end ul {
  justify-content: flex-end;
}

footer a {
  font-weight: 400;
  color: #fff;
}

footer.bg-dark a:hover,
footer a:hover {
  color: #bdadeb;
}

footer .f-item.link ul li {
  margin-top: 13px;
}

footer .widget-title {
  margin-bottom: 30px;
  color: #fff;
}

ul.footer-address li a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-right: 10px;
  border-radius: 5px;
  color: #bdadeb;
}

ul.footer-address li {
  margin-top: 15px;
}

.accessibilityControlsArea .offcanvas-header svg {
  width: 38px;
  height: 38px;
  fill: #000;
  display: inline-block;
}

.accessibilityControlsArea .filterClearBtn {
  padding: 8px 15px;
  background: #4729a3;
  color: #fff;
  border-radius: 7px;
}

.accessibilityControlsArea button.btnBoxArea {

  padding: 4px 5px;
  border-radius: 8px;
  border: 1px solid #162f6a;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.accessibilityControlsArea button.btnBoxArea span {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.accessibilityControlsArea button.btnBoxArea svg {
  width: 48px;
  height: 48px;
  fill: #000;
  display: inline-block;
}

.accessibilityControlsArea button.btnBoxArea:hover {
  background: #000067;
  color: #fff;
}

.accessibilityControlsArea button.btnBoxArea:hover svg {
  fill: #fff;
}


.pmQuoteSection {
  background: #eff5ff;
  padding: 50px 0;
}

.pmQuoteSection .pmQuoteArea {}

.pmQuoteSection .pmQuoteArea .pmIngArea img {
  background: #fff;
  width: 260px;
  height: 260px;
  box-shadow: 0 2px 4px 0 rgba(35, 35, 47, .06), 0 6px 12px 0 rgba(35, 35, 47, .08);
  border-radius: 50%;
  object-fit: cover;
}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage {}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage .atPiont {
  font-size: 50px;
  color: #000;
  line-height: 10px;
}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage h5 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bolder;
    background: linear-gradient(90deg, rgba(222, 35, 65, 1) 0%, rgba(17, 163, 239, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage p {
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #162f6a;
  margin-bottom: 20px;
}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage .btn {
  gap: 15px;
  padding: 5px 5px 5px 17px;
}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage .pmEventDateArea {
  font-weight: 500;
  font-size: 18px;
  color: #162f6a;
  line-height: 22px;
}

.pmQuoteSection .pmQuoteArea .pmQuoteMessage .btn .btn-icon {
  width: 38px;
  height: 38px;
}

.pmQuoteSection .pmQuoteArea hr {
  border-top: 1px solid #162f6a;
  opacity: 1;
}

.btnViewEvrnt {
  padding: 8px 12px;
  gap: 8px;
  outline: none;
  border-radius: 4px;
  color: #162f6a;
  background-color: #fff;
  border: 1px solid #162f6a;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .12px;
  text-decoration: none;
}

.btnViewEvrnt i {
  font-size: 19px;
}

.btnViewEvrnt:hover {
  background: #eeebfa;
}

.btn-03 {
  padding: 8px 12px;
  gap: 8px;
  outline: none;
  border-radius: 4px;
  color: #29136c;
  background: #d7cbfc;
  border: 1px solid #d7cbfc;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .12px;
  display: inline-block;
  text-decoration: none;
}




.aboutSection {
  background: #fff;
  overflow: hidden;
  padding: 50px 0;
}

/*.aboutSection:before{position: absolute; opacity: 5%; content: ''; left: 0; right: 0; top:0; bottom:0;  background: url(../images/about-us-bg.png); background-size: cover;}*/
.aboutSection p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: justify;
}

.aboutSection .drMessageArea {
  position: relative;
  display: block;
  background: #FFFFFF;

  z-index: 2;
}

.aboutSection .drMessageArea p {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
}

.aboutSection .drMessageArea h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutSection .drMessageArea h2 {
  position: absolute;
  bottom: 160px;
  font-size: 28px;
  opacity: .2;
  left: -114px;
  transform: rotate(-91deg);
}

.aboutSection .drMessagePanel {
  position: relative;
  overflow: hidden;

}

.aboutSection .drMessageBox h6 {
  margin-top: -30px;
  background: #ffff;
  padding: 2px 10px;
  display: table;
  margin-bottom: 10px;
}

.moreArea a {
  position: relative;
  color: #232323;
  font-size: 15px;
  text-transform: capitalize;
  padding: 0;
  border: 0;
  left: 35px;
  margin: 2px 0 0;
  font-weight: 500;
  letter-spacing: 0;
}

.aboutSection .drMessageBox .moreArea {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: #fff;
  padding: 0 15px;
  width: 142px;
}

.moreArea a:before {
  position: absolute;
  content: "";
  left: -33px;
  top: 9px;
  height: 2px;
  width: 25px;
  background: #ff3c00;
}

.aboutSection .drMessageBox img {
  border-bottom: 6px solid #162f6a;
  width: 100%;
}


.aboutSection .images-column .inner-column {
    position: relative;
}

.aboutSection .images-column{ padding-left:25px; }

.aboutSection .images-column img {
    width: 100%; border-radius: 25px;
}




.lineArea {
  width: 100%;
  height: 7px;

  background-image: url(../images/line_bg.png);

}

.aboutSection .about-btn {
  display: block;
  padding: 12px 8px;
  min-height: 60px;
  border: .5px solid #162f6a;
  background: #fff;
  transition: all .3s ease;
  color: #150202;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  box-shadow: 0 1px 2px 0 rgba(35, 35, 47, .06), 0 4px 8px 0 rgba(35, 35, 47, .08);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.aboutSection .about-btn svg {
  margin-bottom: 8px;
}

.aboutSection .about-btn:hover {
  background: #29136c;
  color: #fff;
}

.aboutSection .about-btn:hover svg path {
  fill: #fff;
  color: #fff !important;
}


.btn-02 {
  padding: 10px 12px;
  gap: 8px;
  outline: none;
  border-radius: 4px;
  color: #162f6a;
  background-color: #fff;
  border: 1px solid #162f6a;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .12px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-02:hover {
  background: #eeebfa;
}

.section-service h2 {
  color: #4729a3;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
}

.recentDocumentsSection{ background:#efecfa; padding:0 20px;  }

.recentDocumentsSection .recentDocumentsInner{background:#dadafe; border-radius: 25px;}

.recentDocumentsSection .card {
  min-height: 140px;
  height: auto;
  padding: 15px !important;
  border-radius: 15px !important;
 
}

.recentDocumentsSection .card .card-body .card-title {
  color: #150202;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
  color: #162f6a;
}

.recentDocumentsSection .card .card-body p {
  color: #150202;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.recentDocumentsSection .photoHead{ padding-top:10px; }

.recentDocumentsSection .importantLinksBox{ height:100%; margin-left: 35px; padding:25px;
 box-shadow: rgba(0, 0, 0, 0.1) 0px -5px 12px; background:#fff url(../images/bg10.jpg) no-repeat bottom center;
 background-size:contain; }
.recentDocumentsSection .importantLinksArea {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
/*  height: 360px;*/
/*  padding-right: 30px;*/
}

.recentDocumentsSection .importantLinksArea ul {
  margin: 0;
  padding: 0;
  list-style: none;
 /* overflow: auto;
  height: 360px;*/
/*  padding-right: 10px;*/
}

/*.recentDocumentsSection .importantLinksArea ul li {
  border-bottom: 1px solid #959ba2;
}

.recentDocumentsSection .importantLinksArea ul li a {
  color: #150202;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}*/


.recentDocumentsSection .importantLinksArea ul li a  {
    background-color: #F7F8ED;
    color: #222429;
    padding: 6px 6px 6px 20px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1;
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 0;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.recentDocumentsSection .importantLinksArea ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    background-color: var(--bg-secondary);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.recentDocumentsSection .importantLinksArea ul li a i {
    background-color: #fff;
    color: var(--headings-color);
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*.recentDocumentsSection .importantLinksArea ul li a i {
  font-size: 20px;
}*/

.recentDocumentsSection .importantLinksArea ul li a:hover span{ color:#fff; }
.recentDocumentsSection .importantLinksArea ul li a:hover i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.recentDocumentsSection .importantLinksArea ul li a:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.recentDocumentsSection .importantLinksArea ul li a span{ position:relative; z-index:9; }
.recentDocumentsSection .personasBoxArea .personasImgArea img {
  width: 200px !important;
  height: 200px !important;
  background-color: #a3bbf3;
  border-radius: 50% !important;
  margin-bottom: 25px;
  display: inline-block;
}

.recentDocumentsSection .personasBoxArea .personasImgArea h6 {
  font-size: 20px;
}

.arrowAction-01,.arrowAction-02 {
  position: relative;
}

.arrowAction-01 .owl-nav button,.arrowAction-02 .owl-nav button {
  position: absolute;
  bottom: 0px;
  color: #757575;
  width: 30px;
  height: 26px;
  overflow: hidden;
}

.arrowAction-01 .owl-nav button.owl-prev,.arrowAction-02 .owl-nav button.owl-prev {
    position: absolute;
    top: -45px;
    right: 60px;
}

.arrowAction-01 .owl-nav button.owl-next, .arrowAction-02 .owl-nav button.owl-next {
     position: absolute;
    top: -45px;
    right: 0px;
}

.arrowAction-01 .owl-nav button:before, .arrowAction-02 .owl-nav button:before  {
  font-family: 'Font Awesome 6 Pro';
  color: #323232;
  border: 1px solid #ccc;
  background: #fff;
  width: 24px;
  font-weight: 900;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;

  font-size: 16px;
  transition: all 0.5s ease;
}

.arrowAction-01 .owl-nav button.owl-prev:before,.arrowAction-02 .owl-nav button.owl-prev:before {
  content: "\f104";

}

.arrowAction-01 .owl-nav button.owl-next:before ,.arrowAction-02 .owl-nav button.owl-next:before{
  content: "\f105";

}

.arrowAction-01 .owl-carousel .owl-stage-outer, .arrowAction-02 .owl-carousel .owl-stage-outer{
  margin-bottom: 20px;
}

.arrowAction-01 .owl-dots , .arrowAction-02 .owl-dots {
  width: 100%;
  text-align: center;
}







.arrowAction-01 a.btnPs ,.arrowAction-02 a.btnPs {
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: #fff;
  border-radius: 50px;
  position: absolute;
  font-size: 11px;
  text-align: center;
  left: 10px;
  background: #162f6a;
  border: 1px solid #fff;
}

.socialSection {
  background: #1e328d
}

.socialSection h2.headingArea,
.socialSection h2.headingArea svg path {
  color: #fff !important;
  fill: #fff;
  stroke: #fff;
}

.socialSection .socialBox {
  background: #fff;
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  padding: 5px;
}

.socialSection .socialBox h3 {
  background: #fff;
  font-size: 18px;
  color: #162f6a;
  padding: 10px;
  border-radius: 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #d1d1d1;
}

.socialSection .socialBox h3 i {
  display: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 7px;
  background: #fff;
  color: #000;
  font-size: 25px;
  text-align: center;
}

.socialSection .socialBox .socialPostArea {
  height: 350px;
  overflow: auto;
}

.socialSection .socialBox .socialPostArea img {
  width: 100%;
}

.govtImgArea a {
  background: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
}

.govtImgArea a img {
  height: 25px;
}


.mediaSection {
  width: 100%;
  background: #fff;
}

.mediaSection .imgBoxArea img {
  width: 100%;
}

.innerBannerSection {
  width: 100%;
  position: relative;
}

.innerBannerSection:after {
  position: absolute;
  left: 0;
  content: "";
  background: #29136C;
  background: linear-gradient(90deg, rgba(41, 19, 108, 1) 0%, rgba(41, 19, 108, 1) 27%, rgba(41, 19, 108, 0) 100%);
  height: 100%;
  width: 68%;
  top: 0;
  z-index: 1;
}

.innerBannerSection img {
  width: 100%;
}

.innerBannerSection .innerBannerbox {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.innerBannerSection .innerBannerbox h1 {
  color: #fff;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;

}

.innerBannerSection ol.breadcrumb {
  margin-bottom: 0px;
}

.innerBannerSection ol.breadcrumb li {
  color: #fff;
  position: relative;
  font-style: 16px;
}

.innerBannerSection ol.breadcrumb li a {
  color: #fff;
}

.innerBannerSection ol.breadcrumb li+li {
  padding-left: 25px;
}

.innerBannerSection ol.breadcrumb li+li::before {
  color: #fff;
  position: absolute;
  left: 8px;
}

.innerBannerSection ol.breadcrumb li a {
  text-decoration: underline;
}



.innerBannerSection .navigationSection {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

.innerBannerSection .innernav {
  background: #29136c;
  padding: 16px;
  margin-top: -40px;
  z-index: 8;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.innerBannerSection .innernav .nav {
  flex-wrap: nowrap;

}

.innerBannerSection .innernav .nav .nav-item {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.innerBannerSection .innernav .nav-link {
  color: #fff;
  font-size: 16px;
  padding: 7px 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -.1px;
  text-transform: none;
  position: relative;
}

.innerBannerSection .innernav .nav-link.active {
  font-weight: 700;
  margin-left: 20px;
}



.innerBannerSection .innernav .nav-link.active:before {
  content: "";
  position: absolute;
  left: -12px;
  top: 4px;
  width: 12px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg width='12' height='28' viewBox='0 0 12 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1293_43610)'%3E%3Cpath d='M8.35593 3.06788C8.35593 4.07416 9.17168 4.88992 10.178 4.88992C11.1842 4.88992 12 4.07417 12 3.06788C12 2.0616 11.1842 1.24585 10.178 1.24585C9.17168 1.24585 8.35593 2.0616 8.35593 3.06788Z' fill='white'/%3E%3Cpath d='M8.35593 10.356C8.35593 11.3623 9.17168 12.178 10.178 12.178C11.1842 12.178 12 11.3623 12 10.356C12 9.34969 11.1842 8.53394 10.178 8.53394C9.17168 8.53394 8.35593 9.34969 8.35593 10.356Z' fill='white'/%3E%3Cpath d='M8.35593 17.6441C8.35593 18.6503 9.17168 19.4661 10.178 19.4661C11.1842 19.4661 12 18.6503 12 17.6441C12 16.6378 11.1842 15.822 10.178 15.822C9.17168 15.822 8.35593 16.6378 8.35593 17.6441Z' fill='white'/%3E%3Cpath d='M8.35593 24.9321C8.35593 25.9384 9.17168 26.7542 10.178 26.7542C11.1842 26.7542 12 25.9384 12 24.9321C12 23.9259 11.1842 23.1101 10.178 23.1101C9.17168 23.1101 8.35593 23.9259 8.35593 24.9321Z' fill='white'/%3E%3Cpath d='M1.06785 3.06788C1.06785 4.07416 1.8836 4.88992 2.88988 4.88992C3.89616 4.88992 4.71191 4.07417 4.71191 3.06788C4.71191 2.0616 3.89616 1.24585 2.88988 1.24585C1.8836 1.24585 1.06785 2.0616 1.06785 3.06788Z' fill='white'/%3E%3Cpath d='M1.06785 10.356C1.06785 11.3623 1.8836 12.178 2.88988 12.178C3.89616 12.178 4.71191 11.3623 4.71191 10.356C4.71191 9.34969 3.89616 8.53394 2.88988 8.53394C1.8836 8.53394 1.06785 9.34969 1.06785 10.356Z' fill='white'/%3E%3Cpath d='M1.06785 17.6441C1.06785 18.6503 1.8836 19.4661 2.88988 19.4661C3.89616 19.4661 4.71191 18.6503 4.71191 17.6441C4.71191 16.6378 3.89616 15.822 2.88988 15.822C1.8836 15.822 1.06785 16.6378 1.06785 17.6441Z' fill='white'/%3E%3Cpath d='M1.06785 24.9321C1.06785 25.9384 1.8836 26.7542 2.88988 26.7542C3.89616 26.7542 4.71191 25.9384 4.71191 24.9321C4.71191 23.9259 3.89616 23.1101 2.88988 23.1101C1.8836 23.1101 1.06785 23.9259 1.06785 24.9321Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1293_43610'%3E%3Crect width='27' height='12' fill='white' transform='translate(12 0.5) rotate(90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}


.maincontent p {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  font-size: 16px;
  color: #323232;
  line-height: 25px;
  font-weight: 500;
}

.maincontent h2 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.maincontent h5 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.maincontent ul,
.maincontent ol {
  margin: 0;
  padding: 0;
  list-style: auto;
  margin-left: 12px;
}

.maincontent ul li,
.maincontent ol li {
  font-size: 16px;
  color: #323232;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.maincontent ul {
  list-style: disc;
}

.maincontent ul li {
  margin-bottom: 10px;
}

.maincontent .aboutcontent h2 {
  color: #162f6a;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -.12px;
  margin-bottom: 10px;
}


.maincontent .box {
  border-radius: 8px;
  border: 1px solid #ebeaea;
  background: #fff;
  padding: 16px;
  margin-bottom: 16px;
}

.maincontent .download-btn {
  padding: 8px 12px;
  gap: 8px;
  border: none;
  outline: none;
  background: #d2dfff;
  border-radius: 4px;
  color: #162f6a;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .12px;
  text-decoration: none;
}

.maincontent .link-btn {
  background: #a3bbf3;
  border-radius: 4px;
  border: none;
}

.maincontent .link-btn,
.maincontent .link-outline-btn {
  padding: 8px;
  outline: none;
  color: #162f6a;
  font-weight: 500;
  height: 40px;
  width: 40px;
  text-decoration: none;
  text-align: center;
  display: block !important;
}

.maincontent .link-btn.link-w-auto {
  width: auto;
  display: flex !important;
}

.maincontent .link-btn.link-w-auto span {
  font-size: 13px;
  font-weight: 600;
}

.ft-20 {
  font-size: 22px;
  color: #162f6a;
}

.maincontent .visionbox {
  background: #ebeaea;
  border-radius: 10px;
  padding: 32px;
}

.maincontent .visionbox img {
  width: 100%;
}

.maincontent .visionbox.imgStPanel {
  padding: 15px;
}

.maincontent .visionbox.imgStPanel img {
  border-radius: 10px;
}

.maincontent .visionbox h2 {
  color: #162f6a;
  font-style: normal;
  font-size: 25px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 0;
}


.maincontent .aboutcontent .objectivebox {
  border-radius: 12px;
  background: #d2dfff;
  padding: 12px;
  margin-bottom: 22px;
  height: 100%;
}

.maincontent .aboutcontent .objectivebox h3 {
  color: #162f6a;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
}




.maincontent .organisation-card {
  border: 1px solid #ebeaea;
  border-radius: 8px;
  padding: 16px 32px;
  gap: 8px;
}

.maincontent .organisation-card .organisation-card-title {
  gap: 10px;
  min-height: 115px
}

@media(max-width:991.5px) {
  .maincontent .organisation-card .organisation-card-title {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: start !important
  }
}

.maincontent .organisation-card .organisation-card-title .h3,
.maincontent .organisation-card .organisation-card-title h3 {
  color: #214aab;
  font-style: normal;
  font-weight: 500;
  line-height: 24px
}

.maincontent .organisation-card .organisation-card-title img {
  max-width: 191px;
  width: auto;
  height: 84px
}

.maincontent .organisation-card .organisation-description {
  min-height: 130px
}

.maincontent .performance-title {
  color: #214aab !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 24px !important
}

.maincontent .performance-card {
  gap: 4px;
  padding: 12px 24px;
  border: 1px solid #ebeaea;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px
}


.maincontent .photos-card {
  display: flex;
  flex-direction: column;

  margin-bottom: 20px;
}

.maincontent .photos-card iframe {
  width: 100%;
  height: 210px;
  border-radius: 10px;
}

.maincontent .photos-card .photos-img,
.maincontent .photos-card .videos-img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}


.maincontent .photos-card .photos-btn {
  bottom: 15px;
  right: 15px;
  color: #fff;
  padding: 8px;
  background: rgba(0, 0, 0, .6196078431);
  border-radius: 4px;
  border: none;
  text-align: center;
  outline: none;
  height: 40px;
  width: 40px;
  text-decoration: none;
}


.maincontent .photos-card .photoArea {
  background: #eaeaea;
  padding: 15px;
  border-radius: 10px;
}

.maincontent .photos-card .photoArea .photos-card-body h4 {
  font-size: 16px;
}

.maincontent .drMessageBox img {
  border-bottom: 6px solid #162f6a;
  width: 100%;
}

.ptype {
  font-size: 13px;
}



.maincontent .teamCardWrapper {
  background-color: #e7e1fd;
  border-radius: 24px;
  padding: 30px 30px 10px 30px;
  position: relative;
  margin-bottom: 50px;
}

.maincontent .teamCardWrapper:before {
  width: 2px;
  top: 100px;
  background: #c0c0c0;
  bottom: 150px;
  position: absolute;
  left: 50%;
  margin-left: -1px;
  content: "";
}

.maincontent .teamCardWrapper .ministerBox {
  width: 350px;
  margin: auto;
  background-color: #fff;

  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .12);
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0);
  z-index: 1;
  margin-top: 120px;
  position: relative;
  z-index: 1;
}

.maincontent .teamCardWrapper .ministerBox:first-child {
  margin-top: 80px;
}

.maincontent .teamCardWrapper .ministerBox a {
  display: block;
  color: #000;
  padding: 85px 24px 24px;
}

.maincontent .teamCardWrapper .ministerBox a .ministerImgBox {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
}

.maincontent .teamCardWrapper .ministerBox a .ministerImgBox img {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.maincontent .teamCardWrapper .ministerBox a h5 {
  font-size: 16px;
}

.maincontent .teamCardWrapper .ministerBox a h6 {
  font-size: 14px;
  color: #000;
}

.maincontent .our-team-list-header {
  background: #29136c;
  color: #fff;
  padding: 10px;
  margin-bottom: 4px;
}

.maincontent .our-team-list-header p {
  color: #fff;
}

.maincontent table.tableAddress {
  margin-bottom: 20px;
}

.maincontent table.tableAddress tbody tr td,
.maincontent table.tableAddress thead tr th {
  font-size: 15px;
}

.maincontent table.tableAddress tbody tr td p {
  font-size: 15px;
  line-height: 20px;
}

.maincontent .teamCardWrapper.feedbackAreaBox {
  font-weight: 600;
  padding: 40px;
}

.maincontent .teamCardWrapper.feedbackAreaBox:before {
  display: none;
}

.maincontent .teamCardWrapper.feedbackAreaBox span.redColor {
  color: #f21c0d;
  font-size: 20px;
}

.maincontent .teamCardWrapper.feedbackAreaBox label {
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
}

.maincontent .teamCardWrapper.feedbackAreaBox .form-control {
  padding: 12px;
}

.maincontent .teamCardWrapper.feedbackAreaBox p {
  font-size: 16px;
}

.maincontent .teamCardWrapper.feedbackAreaBox p span {
  display: block;
  font-size: 14px;
  color: #656565;
}

.maincontent .teamCardWrapper.feedbackAreaBox h6 {
  margin-bottom: 10px;
}

.submitBtn {
  padding: 10px 25px;
  background: #29136c;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
}



.maincontent .pdfListArea {
  border-top: 1px solid #000;
  padding: 10px 0;
  margin-top: 50px;
}

.maincontent .pdfListArea .detailsBtn {
  background-color: #fff !important;
  border: 1px solid #214aab !important;
  border-radius: 4px !important;
  color: #214aab !important;
  font-weight: 700 !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .12px;
  text-decoration: none;
  cursor: pointer;
  margin-top: ;
}



.paginationArea ul.pagination {
  list-style: none;
}

.paginationArea ul.pagination .page-link {
  width: 34px;
  height: 34px;
}

.paginationArea ul.pagination .page-link {
  border: 0
}

.active>.page-link,
.page-link.active,
.page-link::after {

  background: #29136c;
  border-color: #29136c;
}


.maincontent .seekerbox {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #5279d7;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  min-height: 100px;
  max-height: 134px;
  text-decoration: none;
}

.maincontent .seekerbox img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.maincontent .seekerbox a {
  position: absolute;
  right: 8px;
  bottom: 5px;
  color: #162f6a;
}


.maincontent .seekerbox.infoAreaBox {
  min-height: auto;
  padding: 10px;
  max-height: none;
  margin-bottom: 15px;
}

.maincontent .seekerbox.infoAreaBox p {
  font-size: 18px;
  padding: 0 15px;
}

.maincontent .seekerbox.infoAreaBox a {
  position: relative;
  color: #162f6a;
  right: auto;
  bottom: auto;
}

.maincontent .seekerbox.infoAreaBox .pdfSizeArea {
  font-weight: 600;
}

.maincontent .seekerbox.infoAreaBox .pdfSizeArea img {
  width: 18px;
}

.maincontent .imgBoxArea-2 {
  border: 1px solid #bdbdbd;
  padding: 15px;
  border-radius: 15px;
}

.maincontent .imgBoxArea-2 img {
  width: 100%;
  border-radius: 15px;
}

.maincontent .ministerTextBox {
  padding-left: 20px;
}

.maincontent .ministerTextBox h4 {
  margin-bottom: 15px;
  font-size: 20px;
}





.ministerProfileModal {
  font-weight: 600;
}

.ministerProfileModal .modal-body {
  padding: 0 25px 30px 25px;
}

.ministerProfileModal .f-12 {
  font-size: 12px;
}

.ministerProfileModal .modal-header {
  border: 0;
  padding: 15px 15px 0 0;
}

.ministerProfileModal .ministerImgBox {
  margin-bottom: 15px;
}

.ministerProfileModal .ministerImgBox img {
  border-radius: 50%;
  border: 2px solid #162f6a;
  object-fit: cover;
  width: 130px;
  height: 130px;
}


.maincontent .directorySection {
  font-weight: 600;
}

.maincontent .directorySection .directoryBox {
  border: 1px solid #b0b0b0;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
}

.maincontent .directorySection .directoryBox .designationArea {
  font-size: 14px;
}

.maincontent .directorySection .directoryBox .nameArea {
  font-size: 18px;
}

.maincontent .directorySection .directoryBox .departmentArea {
  background: #e7e1fd;
  font-size: 14px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
}

.maincontent .aboutcontent .tab-style-two-items nav .nav-tabs button {
  font-size: 14px;
  padding: 10px 10px;
}

.maincontent .aboutcontent .tab-style-two-items nav .nav-tabs button:hover,
.maincontent .aboutcontent .tab-style-two-items nav .nav-tabs button.active {
  background: #29136c;
  color: #fff;
}

.highlight-links-mode a {
  display: block;
}

body {
  transition: filter 0.3s ease;
}

body.invert-mode {
  filter: invert(1) hue-rotate(180deg);
}

.hide-img-mode img {
  visibility: hidden !important;
}

.hide-img-mode .header-top-left img {
  visibility: visible !important;
}

body.saturated-mode {
  filter: saturate(0.5) !important;
}

body.highlight-links-mode a,
body.highlight-links-mode a p,
body.highlight-links-mode a h3,
body.highlight-links-mode a h6 {
  background: #000 !important;
  color: #ff0 !important;
}

body.highlight-links-mode header a img {
  filter: invert(78%) sepia(169%) saturate(274%) hue-rotate(358deg) brightness(98%) contrast(199%);
}

body.highlight-links-mode header a svg {
  fill: #ff0 !important;
}


body.default-cursor-mode {
  cursor: url('data:image/svg+xml,<svg fill="%237a7a7a" height="32px" width="32px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 173.312 173.312" xml:space="preserve" stroke="%237a7a7a"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><polygon points="137.078,102.745 36.234,0 36.238,143.965 65.559,118.501 87.965,173.312 120.72,159.922 98.315,105.112 "></polygon></g></svg>'), auto !important
}

body.default-cursor-mode .chattag,
body.default-cursor-mode .connectbox-header,
body.default-cursor-mode .divisionbox,
body.default-cursor-mode .organisationbox,
body.default-cursor-mode .pointer,
body.default-cursor-mode .schemebox .ptype,
body.default-cursor-mode .slick-dots li button,
body.default-cursor-mode .socialmediabox ul li,
body.default-cursor-mode [role=button],
body.default-cursor-mode a:hover,
body.default-cursor-mode button:hover {
  cursor: url('data:image/svg+xml,<svg width="32px" height="32px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%237a7a7a" transform="matrix(1, 0, 0, 1, 0, 0)rotate(0)"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path fill="%237a7a7a" stroke="%237a7a7a" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11.5 22C4.7 22 3 16.333 3 13.5V10c0-.333.2-1 1-1s1 .667 1 1v2c0 .5.3 1.5 1.5 1.5S8 12.5 8 12V3c0-.333.2-1 1-1s1 .667 1 1v7c.5.5.8 1.2 2 0V8c0-.333.2-1 1-1s1 .667 1 1v1h1c0-.333.2-1 1-1s1 .667 1 1v1h1c0-.333.2-1 1-1s1 .667 1 1v3.5c0 2.833-1.7 8.5-8.5 8.5z"></path></g></svg>'), auto !important
}

/*----------------genealogy-scroll----------*/

.genealogy-scroll::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

.genealogy-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e4e4e4;
}

.genealogy-scroll::-webkit-scrollbar-thumb {
  background: #212121;
  border-radius: 10px;
  transition: 0.5s;
}

.genealogy-scroll::-webkit-scrollbar-thumb:hover {
  background: #d5b14c;
  transition: 0.5s;
}


/*----------------genealogy-tree----------*/
.genealogy-body {
  white-space: nowrap;
  overflow-y: hidden;
  padding: 50px;
  min-height: 500px;
  padding-top: 10px;
  text-align: center;
}

.genealogy-tree {
  display: inline-block;
}

.genealogy-tree ul {
  padding-top: 20px;
  position: relative;
  padding-left: 0px;
  display: flex;
  justify-content: center;
}

.genealogy-tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
}

.genealogy-tree li::before,
.genealogy-tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 4px solid #29136c;
  width: 50%;
  height: 18px;
}

.genealogy-tree li::after {
  right: auto;
  left: 50%;
  border-left: 4px solid #29136c;
}

.genealogy-tree li:only-child::after,
.genealogy-tree li:only-child::before {
  display: none;
}

.genealogy-tree li:only-child {
  padding-top: 0;
}

.genealogy-tree li:first-child::before,
.genealogy-tree li:last-child::after {
  border: 0 none;
}

.genealogy-tree li:last-child::before {
  border-right: 4px solid #29136c;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

.genealogy-tree li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

.genealogy-tree ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 4px solid #29136c;
  width: 0;
  height: 20px;
}

.genealogy-tree li a {
  text-decoration: none;
  color: #666;
  font-family: arial, verdana, tahoma;
  font-size: 11px;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.genealogy-tree li a:hover+ul li::after,
.genealogy-tree li a:hover+ul li::before,
.genealogy-tree li a:hover+ul::before,
.genealogy-tree li a:hover+ul ul::before {
  border-color: #fbba00;
}

/*--------------memeber-card-design----------*/
.member-view-box {
  /* width: 160px;
    height: 100px;*/
  text-align: center;
  border-radius: 10px;
  position: relative;
  border: 2px solid #29136c;
  padding: 20px 10px;
  background: #ece6ff;
  box-shadow: -6px -6px 0px 0px;
}

.member-image {
  position: relative;
}

.member-view-box h3 {
  font-size: 14px;
  font-weight: 600;
}

.member-view-box h3 span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}





.prabhtatyagi-circular-chart {}

.prabhtatyagi-circular-chart .circular-chart {
  width: 711px;
  height: 711px;
  margin: 0 auto;
  position: relative;
}

.prabhtatyagi-circular-chart .circular-chart .member {
  width: 210px;
  background: linear-gradient(135deg, #2b59c3, #3e74b9, #5b8dde);
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  line-height: 1.4;
  position: absolute;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #6b91db;
}


/* Circle line */
.prabhtatyagi-circular-chart .circle-line {
  position: absolute;
  width: 580px;
  height: 580px;
  border: 2px solid #3e74b9;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Positions around circle */
.prabhtatyagi-circular-chart .top {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.prabhtatyagi-circular-chart .top-right {
  top: 180px;
  right: -20px;
}

.prabhtatyagi-circular-chart .right {
  top: 390px;
  right: -30px;
}

.prabhtatyagi-circular-chart .bottom {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.prabhtatyagi-circular-chart .bottom-left {
  top: 390px;
  left: -30px;
}

.prabhtatyagi-circular-chart .left {
  top: 180px;
  left: -20px;
}




.header-bottom-right {
  width: 100%;
}

.outer-circle {
  width: 130px;
  border: 1px solid #ededed;
}

.inner-circle {
  width: 130px;

  border: 4px solid #ededed;
}


.radius-10 {
  border-radius: 5px !important;
}

.btn-primary {
  font-size: 14px;
  font-weight: 400;
}

.directors-message {
  background: #0A8BD5;
  background: linear-gradient(90deg, rgba(10, 139, 213, 1) 0%, rgba(26, 65, 123, 1) 100%);
  border-radius: 2rem !important;
}

.directors-message .card-body .btn-light {
  color: #1a417b;
}

.vision-section-container {
  background-color: #eff5ff;
}
.vision-section-container h2{
    font-weight: 600 !important;
    margin-bottom: 15px;
    font-size: 25px;
    background: linear-gradient(90deg, rgba(222, 35, 65, 1) 35%, rgb(0 168 255) 65%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.vision-section-container p{ color:#000; padding:0 200px; }
.centers-section .card-title {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: bolder;
  background: linear-gradient(90deg, rgba(222, 35, 65, 1) 0%, rgba(17, 163, 239, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.directorArea .centers-section .card-text{ font-size:14px; }
.directorArea .card{ border:1px solid #d9d9d9; margin-bottom:20px; padding:0 10px }
.centers-section .card-title {
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: bolder;
    background: linear-gradient(90deg, rgba(222, 35, 65, 1) 0%, rgba(17, 163, 239, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}


.centers-section .btn-primary {
  background:#263c9f;
  border: none;
}


.majorProjectsArea {
    background: linear-gradient(90deg, rgb(38 60 159) 0%, rgb(72 96 204) 100%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.majorProjectsArea  h2 span{ color:#000; background:#fff; font-size: 25px; padding:8px 25px; display:inline-block; border-radius:0 0 10px 10px;  }
.majorProjectsArea .projectsCard{ background:#4058c2; padding:15px; border-radius:15px 15px 0 0; }
.majorProjectsArea .projectsCard .cardImgArea{ width:100px; }
.majorProjectsArea .projectsCard .cardImgArea img{ width:100%; border-radius:10px; }
.majorProjectsArea .projectsCard h3{ font-size:22px; color:#fff; }  
.majorProjectsArea .projectsCard p{ color:#fff; }  
.majorProjectsArea .projectsCard a{ font-size: 13px; color:#fff; display:inline-block; }

.majorProjectsArea.arrowAction-01 .owl-nav button.owl-prev{
    top: -75px;
    right: 70px;
}
 .majorProjectsArea.arrowAction-01 .owl-nav button.owl-next{ top: -75px;}

.majorProjectsArea.arrowAction-01 .btnBox {
    top: 18px;
    right: 83px;
}


.news-and-events .date-box {
    width: 80px;
}
.news-and-events .date-box .date{
    background-color:#05abfa;
    color:#fff;
    height:50px;
    font-size:30px;
    font-weight:bold;
    border-radius: 20px 20px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-and-events .date-box .month{
    background-color: #dc2544;
    color:#fff;
    border-radius: 0px 0px 20px 20px;
    font-weight: 700;
    
}

.news-and-events .card{
  background-color: #f5f5f5;
}
.news-and-events .card .card-body a{
  background-color: #517cba;
  color:#fff;
}

.arrowAction-01 .owl-dots .owl-dot.active, .arrowAction-02 .owl-dots .owl-dot.active  {
  background: #517cba;
}

.arrowAction-01 .owl-dots .owl-dot , .arrowAction-02 .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: #dfecff;
  border-radius: 50px;
  margin: 0 5px;
}

.top-grid  {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-content: center;
  max-width:1100px;
  margin: auto;
}
.bottom-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  justify-content: center;

}


.box {
  background: #fff;
  color: #000;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  transition:all 0.3s ease;
  cursor: pointer;
}

.box:hover{
box-shadow: rgba(0Hackathon, 0, 0, 0.25) 0px 25px 50px -12px;
  transform: scale(1.01);
  transition:all 0.3s ease;
}
.important-links-section{
  background-color: #517bb9;
}
.important-links-section h2{
  color:#fff !important;

}
.important-links-section .box  {
  color:#2677f1;
  background-color: #fff;
}

.important-activities{
  padding: 50px 0;
}


.important-activities h2 {
    font-weight: 600 !important;
    margin-bottom: 15px;
    font-size: 30px;
    background: linear-gradient(90deg, rgba(222, 35, 65, 1) 35%, rgb(0 168 255) 65%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}



.important-activities .card{
  border-radius:20px;
}
.important-activities .card .date-box {border-radius:15px; overflow: hidden;}
.important-activities .card .date-box img{
 transition: all .2s;
  width: 100%;
}
.important-activities .card .card-body{ background-color: #eff5ff; border-radius: 15px;}
.important-activities .card .card-body h3{ font-size:20px; line-height: 25px; text-align:left; color:#263c9f; }
.important-activities .card .card-body h2 span{display: block; padding-top: 5px; font-size: 18px; color: #5b5b5b;}

.important-activities .card:hover .date-box img{ transform:scale(1.1); transition: all .2s;}


.important-activities.arrowAction-01 .owl-nav button.owl-prev {
    top: -43px;
    right: 70px;
}

.important-activities.arrowAction-01 .owl-nav button.owl-next {
    top: -43px;
}
.important-activities.arrowAction-01  .btnBox {
    top: 18px;
    right: 83px;
}
.gallery-section .nav-tabs{
     border:1px solid #75869d !important;
     display: flex;
     width: 415px; padding: 5px;
     border-radius: 7px;
  
  
}
.gallery-section .nav-tabs .nav-link{
     border-radius: 0px !important;
}

.gallery-section .nav-tabs .nav-link.active{
     background-color: #2b4387;
     color:#fff;
}
.gallery-section .nav-tabs .nav-link{
     background-color: #dadafe;
     color:#2b4387;
     padding:0.3rem 3rem;
     border:0px;
}

.gallery-section.arrowAction-01 .btnBox {
 
    top: 16px;
    right: 66px;
    z-index: 9;
}


.gallery-section.arrowAction-01 .photos-btn {
    bottom: 15px;
    right: 15px;
    color: #fff;
    padding: 8px;
    background: rgba(0,0,0,.6196078431);
    border-radius: 4px;
    border: none;
    text-align: center;
    outline: none;
    height: 40px;
    width: 40px;
    text-decoration: none;
}


.footer-top-bar-section a{
  border:1px solid #bfbfbf;
  text-decoration: none;
  border-radius: 10px;
  color:#000;
  padding:10px;
  box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
}

.arrowAction-01 .btnBox {
  position: absolute;
  top: 50px;
  right: 90px;
  z-index: 9;
}
.arrowAction-02 .btnBox {
    position: absolute;
    top: -36px;
    right: 78px;
    z-index: 9;
}

.logo-lines{
  color:#2739a7;
}

.section-02{ padding:40px 0; }


/*---------------------------------------------------- */
  /*global area*/
  /*----------------------------------------------------*/
  .feature-eight-section .eight-feature-box .feature-icon8 i,
  .ei-service-icon-text .ei-service-icon i,
  .eg-how-work-section .ei-how-work-content-item .eg-how-work-icon-text .eg-how-work-icon i {
    display: block;
    background-image: linear-gradient(173deg, #ff00d7 30%, #50c7f5 67%, #72aaff 99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ei-service-icon-text:hover .ei-service-icon i,
  .eg-how-work-section .ei-how-work-content-item .eg-how-work-icon-text:hover .eg-how-work-icon i {
    display: block;
    background: -webkit-gradient(left top, right top, color-stop(0%, #fff), color-stop(100%, #fff));
    background: -ms-linear-gradient(left, #fff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ei-service-icon-text .ei-service-icon:after,
  .eg-how-work-section .ei-how-work-content-item .eg-how-work-icon-text .eg-how-work-icon:after {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -1;
    transition: 0.3s all ease-in-out;
    transform: scale(0.5);
    border-radius: 100%;
    background-image: -ms-linear-gradient(173deg, #4cd0ff 0%, #617af4 53%, #ff03d0 99%);
  }
  @keyframes fadeFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeFromRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeFromUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeFromUp {
    animation-name: fadeFromUp;
  }

  .fadeFromRight {
    animation-name: fadeFromRight;
  }

  .fadeFromLeft {
    animation-name: fadeFromLeft;
  }

/*---------------------------------------------------- */
  /*global area*/
  /*----------------------------------------------------*/
  .feature-eight-section .eight-feature-box .feature-icon8 i,
  .ei-service-icon-text .ei-service-icon i,
  .eg-how-work-section .ei-how-work-content-item .eg-how-work-icon-text .eg-how-work-icon i {
    display: block;
    background-image: linear-gradient(173deg, #ff00d7 30%, #50c7f5 67%, #72aaff 99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ei-service-icon-text:hover .ei-service-icon i,
  .eg-how-work-section .ei-how-work-content-item .eg-how-work-icon-text:hover .eg-how-work-icon i {
    display: block;
    background: -webkit-gradient(left top, right top, color-stop(0%, #fff), color-stop(100%, #fff));
    background: -ms-linear-gradient(left, #fff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ei-service-icon-text .ei-service-icon:after,
  .eg-how-work-section .ei-how-work-content-item .eg-how-work-icon-text .eg-how-work-icon:after {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -1;
    transition: 0.3s all ease-in-out;
    transform: scale(0.5);
    border-radius: 100%;
    background-image: -ms-linear-gradient(173deg, #4cd0ff 0%, #617af4 53%, #ff03d0 99%);
  }
  @keyframes fadeFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeFromRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeFromUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeFromUp {
    animation-name: fadeFromUp;
  }

  .fadeFromRight {
    animation-name: fadeFromRight;
  }

  .fadeFromLeft {
    animation-name: fadeFromLeft;
  }


/*---------------------------------------------------- */
/*Featured area*/
/*----------------------------------------------------*/
@keyframes rotate {
  0% {
    top: -10px;
    left: -10px;
  }
  25% {
    top: 0px;
    left: 0px;
  }
  50% {
    top: 0px;
    left: 0px;
  }
  75% {
    top: 5px;
    left: 5px;
  }
  100% {
    top: -10px;
    left: -10px;
  }
}
.feature-eight-section {
  padding: 100px 0px 100px;
}

.feature-eight-section .ei-feature-shape {
  right: 0;
  top: 150px;
  z-index: -1;
  position: absolute;
}

.feature-eight-section .eight-section-title {
  max-width: 500px;
  position: relative;
}


.feature-eight-section .eight-feature-box {
  border-radius: 20px;
  padding: 40px 30px 53px;
  background-color: #e9ebf7;
  transition: 0.3s all ease-in-out;
}

.feature-eight-section .eight-feature-box .feature-icon8 {
  width: 98px;
  z-index: 1;
  height: 98px;
  margin: 0 auto;
  line-height: 98px;
  margin-bottom: 34px;
  border-radius: 25px;
  background-color: #ffffff;
  box-shadow: -0.707px 0.707px 10px 0px rgba(43, 1, 68, 0.1);
}

.feature-eight-section .eight-feature-box .feature-icon8:before,
.feature-eight-section .eight-feature-box .feature-icon8:after {
  content: "";
  z-index: -2;
  border-radius: 30%;
  mix-blend-mode: multiply;
  height: 110px;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 110px;
  position: absolute;
  transition: 0.3s all ease-in-out;
}

.feature-eight-section .eight-feature-box .feature-icon8:before {
  animation: rotate 1.8s linear infinite;
  background: #33f1ff;
}

.feature-eight-section .eight-feature-box .feature-icon8:after {
  animation: rotate 1.2s linear reverse infinite;
  background: #e933ff;
}

.feature-eight-section .eight-feature-box .feature-icon8 i {
  font-size: 50px;
  font-weight: 500;
  line-height: 100px;
}

.feature-eight-section .eight-feature-box .feature-icon8 .ei-icon-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 25px;
}

.feature-eight-section .eight-feature-box .ei-feature-more {
  position: absolute;
  background-color: #4ce7f3;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  line-height: 50px;
  transition: 0.3s all ease-in-out;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  bottom: 0px;
  margin: 0 auto;
}

.feature-eight-section .eight-feature-box .feature-text8 h3 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 13px;
}

.feature-eight-section .eight-feature-box .feature-text8 p {
  line-height: 1.5;
}

.feature-eight-section .eight-feature-box:hover {
  background-color: #fff;
  box-shadow: 0px 25px 38px 0px rgba(43, 1, 68, 0.17);
}

.feature-eight-section .eight-feature-box:hover .feature-icon8:before,
.feature-eight-section .eight-feature-box:hover .feature-icon8:after {
  display: block;
  opacity: 1;
}

.feature-eight-section .eight-feature-box:hover .ei-feature-more {
  opacity: 1;
  bottom: -25px;
  visibility: visible;
}


@media (max-width: 768px) {
  .top-grid,.bottom-grid  {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 500px) {
   .top-grid,.bottom-grid  {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 1450px) {
.menuSection ul.header-nav-list li .header-nav-link {
 padding:0 12px;
font-size: 14px;
}

}

@media (max-width: 1350px) {
.menuSection ul.header-nav-list li .header-nav-link {
 padding:0 12px;
font-size: 13px;
}
}

/* about us page  */
/*==================================================
            MODERN ABOUT SECTION
==================================================*/

.gov-about-section{
    padding:20px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#eef5fc 100%);
    position:relative;
    overflow:hidden;
}

.gov-about-section::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(20,84,170,.05);
    border-radius:50%;
}

.gov-about-section::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-120px;
    width:350px;
    height:350px;
    background:rgba(255,118,38,.05);
    border-radius:50%;
}

.gov-about-container{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    position:relative;
    z-index:2;
}


/*==========================
        SIDEBAR
==========================*/

.gov-about-sidebar{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    position:sticky;

    top:30px;

    height:max-content;

}

.gov-about-sidebar__title{

    background:linear-gradient(135deg,#003c86,#0b5ed7);

    color:#fff;

    padding:14px;

    font-size:16px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

}

.gov-about-menu{

    margin:0;

    padding:12px;

    list-style:none;

}

.gov-about-menu__item{

    margin-bottom:10px;

}

.gov-about-menu__item:last-child{

    margin-bottom:0;

}

.gov-about-menu__item a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border-radius:12px;

    text-decoration:none;

    color:#263238;

    font-size:15px;

    font-weight:500;

    transition:.35s;

    background:#f8fafc;

}

.gov-about-menu__item a i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#e8f0ff;

    color:#0b5ed7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

    transition:.35s;

}

.gov-about-menu__item:hover a{

    transform:translateX(8px);

    background:#eef5ff;

    color:#0b5ed7;

}

.gov-about-menu__item:hover a i{

    background:#0b5ed7;

    color:#fff;

}

.gov-about-menu__item--active a{

    background:linear-gradient(135deg,#ff6b35,#ff8c42);

    color:#fff;

    box-shadow:0 10px 25px rgba(255,107,53,.35);

}

.gov-about-menu__item--active a {
    background: #E0A008;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 107, 53, .35);
}

.gov-about-menu__item--active a i{

    background:#DD9D08;

    color:#fff;

}


/*==========================
        CONTENT
==========================*/

.gov-about-content{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.gov-about-content__heading{

    display:inline-block;

    margin:0 0 20px;

    padding:0px 28px;

    border-radius:12px;

    background:;

    color:black;

    font-size:30px;

    font-weight:700;

    position:relative;

}

/* .gov-about-content__heading::after{

    content:"";

    position:absolute;

    bottom:-10px;

    left:30px;

    width:70px;

    height:4px;

    background:#ff6b35;

    border-radius:10px;

} */

.gov-about-content__body{

    display:grid;

    grid-template-columns:1fr 340px;

    gap:40px;

    align-items:start;

}


/*==========================
        TEXT
==========================*/

.gov-about-content__text p{

    font-size:17px;

    color:#4d5965;

    line-height:1.9;

    margin-bottom:28px;

}

.gov-about-list{

    list-style:none;

    padding:0;

    margin:0;

}

.gov-about-list li{

    position:relative;

    padding:0 0 22px 48px;

    font-size:16px;

    color:#425466;

    line-height:1.9;

}

.gov-about-list li:last-child{

    padding-bottom:0;

}

.gov-about-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:3px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:linear-gradient(135deg,#0b5ed7,#003c86);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    font-weight:700;

}

.gov-about-list li::after{

    content:"";

    position:absolute;

    left:13px;

    top:32px;

    width:2px;

    height:100%;

    background:#d6e7ff;

}

.gov-about-list li:last-child::after{

    display:none;

}


/*==========================
        IMAGE
==========================*/

.gov-about-content__image{

    position:sticky;

    top:40px;

}

.gov-about-content__image img{

    width:100%;

    display:block;

    border-radius:18px;

    overflow:hidden;

    border:8px solid #fff;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    transition:.5s;

}

.gov-about-content__image img:hover{

    transform:scale(1.03) rotate(-1deg);

}


/*==========================
        RESPONSIVE
==========================*/

@media(max-width:1100px){

.gov-about-container{

grid-template-columns:1fr;

}

.gov-about-sidebar{

position:relative;

top:auto;

}

.gov-about-content__body{

grid-template-columns:1fr;

}

.gov-about-content__image{

position:relative;

top:auto;

max-width:450px;

margin:auto;

}

}

@media(max-width:768px){

.gov-about-section{

padding:45px 0;

}

.gov-about-content{

padding:25px;

}

.gov-about-content__heading{

font-size:24px;

padding:12px 22px;

}

.gov-about-content__text p{

font-size:15px;

}

.gov-about-list li{

font-size:15px;

padding-left:42px;

}

}

@media(max-width:576px){

.gov-about-sidebar__title{

font-size:18px;

padding:16px;

}

.gov-about-menu__item a{

font-size:14px;

padding:12px 15px;

}

.gov-about-content{

padding:20px;

border-radius:14px;

}

.gov-about-content__heading{

font-size:20px;

width:100%;

text-align:center;

}

.gov-about-content__heading::after{

left:50%;

transform:translateX(-50%);

}

}



/* gallery page code  */

  /* Design Tokens scoped to the wrapper */
  .goaf-gal-wrapper {
    /* Refined color palette - HSL-based modern harmonies */
    --goaf-navy-dark: hsl(216, 70%, 14%);      /* #0A1C33 - Deep Corporate Indigo */
    --goaf-navy-light: hsl(215, 55%, 22%);     /* #193452 - Muted Slate Navy */
    --goaf-saffron: hsl(28, 95%, 48%);         /* #E06907 - Vibrant Saffron Gold */
    --goaf-saffron-light: hsl(35, 100%, 55%);  /* #FFAA1D - Warm Saffron Amber */
    --goaf-green: hsl(146, 68%, 28%);          /* #16793F - Emerald Green */
    --goaf-green-light: hsl(145, 45%, 95%);    /* #ECF7F0 - Soft Green Wash */
    --goaf-bg-base: hsl(210, 20%, 98%);        /* #F4F6F9 - Soft Gray-Blue */
    --goaf-white: #ffffff;
    --goaf-gray-dark: hsl(215, 25%, 15%);      /* #1E293B - Slate Gray Dark */
    --goaf-gray-light: hsl(215, 16%, 47%);     /* #64748B - Slate Muted Gray */
    --goaf-border-color: rgba(10, 28, 51, 0.06);
    --goaf-border-radius-lg: 20px;
    --goaf-border-radius-md: 12px;
    --goaf-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --goaf-shadow-sm: 0 2px 8px rgba(10, 28, 51, 0.04);
    --goaf-shadow-md: 0 12px 24px rgba(10, 28, 51, 0.06);
    --goaf-shadow-lg: 0 20px 40px rgba(10, 28, 51, 0.12);
    
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--goaf-gray-dark);
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
  }

  .goaf-gal-wrapper *, .goaf-gal-wrapper *::before, .goaf-gal-wrapper *::after {
    box-sizing: border-box;
  }

  /* Decorative Ambient Background Glows */
  .goaf-ambient-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    animation: goaf-float-orb 20s infinite alternate ease-in-out;
  }
  .goaf-glow-1 {
    background: var(--goaf-saffron);
    top: -50px;
    left: -50px;
  }
  .goaf-glow-2 {
    background: var(--goaf-navy-light);
    bottom: 100px;
    right: -50px;
    animation-delay: -10s;
  }
  @keyframes goaf-float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.15); }
  }

  /* Header Styles */
  .goaf-header-container {
    max-width: 800px;
    margin: 20px auto 40px auto;
    text-align: center;
    animation: goaf-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .goaf-badge-top {
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--goaf-saffron);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(224, 105, 7, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
    border: 1px solid rgba(224, 105, 7, 0.15);
  }

  .goaf-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.25;
    background: linear-gradient(135deg, var(--goaf-navy-dark) 40%, var(--goaf-navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .goaf-subtitle {
    font-size: 1rem;
    color: var(--goaf-gray-light);
    max-width: 580px;
    margin: 0 auto 22px auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
  }

  .goaf-stats-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--goaf-white);
    padding: 10px 24px;
    border-radius: 100px;
    box-shadow: var(--goaf-shadow-sm);
    border: 1px solid var(--goaf-border-color);
  }

  .goaf-stat-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--goaf-gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .goaf-stat-num {
    color: var(--goaf-navy-dark);
    font-weight: 800;
    font-size: 0.95rem;
  }

  .goaf-stat-dot {
    width: 4px;
    height: 4px;
    background-color: var(--goaf-saffron);
    border-radius: 50%;
  }

  /* Grid Layout for Category Cards */
  .goaf-gal-grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 10px;
    animation: goaf-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
  }

  /* Category Card Container */
  .goaf-gal-card {
    background: var(--goaf-white);
    border-radius: var(--goaf-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--goaf-shadow-sm);
    transition: var(--goaf-transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--goaf-border-color);
  }

  .goaf-gal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--goaf-shadow-lg);
    border-color: rgba(10, 28, 51, 0.12);
  }

  /* Image Container inside Card */
  .goaf-gal-card-img-box {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #eaeaea;
  }

  .goaf-gal-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .goaf-gal-card:hover .goaf-gal-card-img {
    transform: scale(1.05);
  }

  /* Item Count Badge overlay (Top Right) */
  .goaf-gal-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    /* background: rgba(10, 28, 51, 0.75); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--goaf-white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--goaf-transition-smooth);
    z-index: 2;
  }

  .goaf-gal-card:hover .goaf-gal-card-badge {
    background:#E0A008;
    border-color:;
  }

  /* Image Hover Overlay Screen */
  .goaf-gal-card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 28, 51, 0.2) 0%, rgba(10, 28, 51, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--goaf-transition-smooth);
    z-index: 1;
  }

  .goaf-gal-card:hover .goaf-gal-card-hover-overlay {
    opacity: 1;
  }

  .goaf-gal-card-hover-text {
    color: var(--goaf-white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transform: translateY(10px);
    transition: var(--goaf-transition-smooth);
  }

  .goaf-gal-card-hover-circle {
    width: 36px;
    height: 36px;
    background: var(--goaf-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--goaf-navy-dark);
    transform: translateY(10px);
    transition: var(--goaf-transition-smooth);
    box-shadow: var(--goaf-shadow-md);
  }

  .goaf-gal-card:hover .goaf-gal-card-hover-text,
  .goaf-gal-card:hover .goaf-gal-card-hover-circle {
    transform: translateY(0);
  }

  /* Card Info Area */
  .goaf-gal-card-info {
    background-color: var(--goaf-white);
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-top: 1px solid var(--goaf-border-color);
  }

  /* Date Badge */
  .goaf-gal-card-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--goaf-green);
    background: var(--goaf-green-light);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
    width: fit-content;
  }

  .goaf-gal-card-date-badge svg {
    margin-top: -1px;
  }

  /* Bold Title */
  .goaf-gal-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--goaf-navy-dark);
    line-height: 1.4;
    margin: 0 0 20px 0;
    letter-spacing: -0.2px;
  }

  /* Card Bottom Link */
  .goaf-gal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--goaf-border-color);
    padding-top: 16px;
    margin-top: auto;
  }

  .goaf-gal-explore-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--goaf-navy-light);
    letter-spacing: 0.5px;
    transition: var(--goaf-transition-smooth);
  }

  .goaf-gal-arrow-icon {
    stroke: var(--goaf-navy-light);
    transition: var(--goaf-transition-smooth);
    transform: translateX(0);
  }

  .goaf-gal-card:hover .goaf-gal-explore-link {
    color:#E2A008;
  }

  .goaf-gal-card:hover .goaf-gal-arrow-icon {
    stroke: var(--goaf-saffron);
    transform: translateX(4px);
  }

  /* Images Grid View */
  .goaf-gal-images-view {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .goaf-gal-images-view.goaf-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* Images Header Controls */
  .goaf-gal-images-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--goaf-border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
    gap: 20px;
  }

  .goaf-gal-category-info-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--goaf-navy-dark);
    margin: 0;
    letter-spacing: -0.3px;
  }

  /* Refactored Back Button */
  .goaf-gal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--goaf-white);
    color: var(--goaf-navy-light);
    border: 1px solid var(--goaf-border-color);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--goaf-transition-smooth);
    font-size: 0.85rem;
    box-shadow: var(--goaf-shadow-sm);
  }

  .goaf-gal-back-btn:hover {
    background: var(--goaf-navy-dark);
    color: var(--goaf-white);
    border-color: var(--goaf-navy-dark);
    box-shadow: var(--goaf-shadow-md);
  }

  .goaf-gal-back-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s;
  }

  .goaf-gal-back-btn:hover svg {
    transform: translateX(-4px);
  }

  /* Images Grid */
  .goaf-gal-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
  }

  /* Image Thumbnail Item */
  .goaf-gal-image-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--goaf-border-radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--goaf-shadow-sm);
    border: 1px solid var(--goaf-border-color);
    transition: var(--goaf-transition-smooth);
  }

  .goaf-gal-image-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--goaf-shadow-md);
    border-color: rgba(10, 28, 51, 0.1);
  }

  .goaf-gal-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .goaf-gal-image-item:hover .goaf-gal-thumb-img {
    transform: scale(1.05);
  }

  /* Hover Overlay on Thumbnail (Frosted Glass Effect) */
  .goaf-gal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 28, 51, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--goaf-transition-smooth);
    color: var(--goaf-white);
    padding: 20px;
    text-align: center;
    z-index: 1;
  }

  .goaf-gal-image-item:hover .goaf-gal-image-overlay {
    opacity: 1;
  }

  .goaf-gal-zoom-icon {
    width: 38px;
    height: 38px;
    background:#E2A008;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(224, 105, 7, 0.3);
    transform: translateY(15px);
    transition: var(--goaf-transition-smooth);
  }

  .goaf-gal-image-item:hover .goaf-gal-zoom-icon {
    transform: translateY(0);
  }

  .goaf-gal-zoom-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--goaf-white);
  }

  .goaf-gal-img-caption-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transform: translateY(15px);
    transition: var(--goaf-transition-smooth);
    transition-delay: 0.04s;
    font-family: 'Inter', sans-serif;
  }

  .goaf-gal-image-item:hover .goaf-gal-img-caption-text {
    transform: translateY(0);
  }

  /* Centered Lightbox Modal */
  .goaf-gal-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 18, 33, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .goaf-gal-lightbox.goaf-show {
    opacity: 1;
    pointer-events: auto;
  }

  .goaf-gal-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .goaf-gal-lightbox.goaf-show .goaf-gal-lightbox-content {
    transform: scale(1);
  }

  .goaf-gal-lightbox-img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--goaf-border-radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Lightbox Controls (Sleek Glass Circles) */
  .goaf-gal-lightbox-close {
    position: absolute;
    top: -55px;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--goaf-white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--goaf-transition-smooth);
    padding: 0 0 4px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .goaf-gal-lightbox-close:hover {
    color: var(--goaf-white);
    background: var(--goaf-saffron);
    border-color: var(--goaf-saffron);
    transform: rotate(90deg);
  }

  .goaf-gal-lightbox-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--goaf-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--goaf-transition-smooth);
    user-select: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .goaf-gal-lightbox-nav:hover {
    background: var(--goaf-saffron);
    border-color: var(--goaf-saffron);
    box-shadow: 0 0 20px rgba(224, 105, 7, 0.5);
  }

  .goaf-gal-lightbox-prev {
    left: -75px;
  }

  .goaf-gal-lightbox-next {
    right: -75px;
  }

  .goaf-gal-lightbox-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  /* Caption Info under Lightbox Image */
  .goaf-gal-lightbox-caption-box {
    margin-top: 20px;
    text-align: center;
    color: var(--goaf-white);
    width: 100%;
    max-width: 600px;
  }

  .goaf-gal-lightbox-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
    font-family: 'Outfit', sans-serif;
  }

  .goaf-gal-lightbox-counter {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  /* Visual Key Hints */
  .goaf-gal-lightbox-keyboard-hints {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .goaf-gal-key-hint-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Thumbnail Strip at bottom of Lightbox */
  .goaf-gal-lightbox-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px auto 0 auto;
    overflow-x: auto;
    padding: 8px 4px;
    max-width: 480px;
    scrollbar-width: none; /* Hide scrollbar for clean look */
  }

  .goaf-gal-lightbox-thumbs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .goaf-lightbox-thumb-item {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.4;
    border: 2px solid transparent;
    transition: var(--goaf-transition-smooth);
    flex-shrink: 0;
  }

  .goaf-lightbox-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .goaf-lightbox-thumb-item:hover {
    opacity: 0.7;
    transform: scale(1.05);
  }

  .goaf-lightbox-thumb-item.goaf-active {
    opacity: 1;
    border-color: var(--goaf-saffron);
    box-shadow: 0 0 12px rgba(224, 105, 7, 0.4);
    transform: scale(1.08);
  }

  /* Responsive Styling */
  @media (max-width: 850px) {
    .goaf-gal-lightbox-prev {
      left: 15px;
      top: auto;
      bottom: -60px;
      transform: none;
    }
    .goaf-gal-lightbox-next {
      right: 15px;
      top: auto;
      bottom: -60px;
      transform: none;
    }
    .goaf-gal-lightbox-close {
      right: 15px;
      top: -50px;
    }
    .goaf-gal-lightbox-content {
      max-height: 80%;
      margin-bottom: 40px;
    }
    .goaf-gal-lightbox-img {
      max-height: 50vh;
    }
  }

  @media (max-width: 580px) {
    .goaf-main-title {
      font-size: 2rem;
    }
    .goaf-gal-grid-categories {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .goaf-gal-grid-images {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
    }
    .goaf-gal-lightbox-thumbs {
      max-width: 320px;
    }
  }

  /* Simple fade animation helper */
  .goaf-fade-out {
    opacity: 0 !important;
  }

  /* Fade-in Animation keyframes */
  @keyframes goaf-fade-in-up {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


/* banner gov-page-banner */
.gov-page-banner {
    position: relative;
    background-image: url(../images/about/banner-1.jpg);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}



/*==========================
        GOAF TENDER
===========================*/

.goaf-tender-section{
    padding:80px 0;
    background:#f4f6f9;
}

.goaf-tender-section .goaf-tender-container{

    width:min(1320px,92%);
    margin:auto;

}

/*==========================
        Heading
===========================*/

.goaf-tender-heading{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:35px;

}

.goaf-tender-heading h2{

    margin:0;
    font-size:34px;
    color:#12345b;

}

.goaf-tender-heading p{

    margin-top:8px;
    color:#6b7280;

}

.goaf-tender-count{

    background:#fff;
    border:1px solid #dbe4ef;

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

}

/*==========================
        Card
===========================*/

.goaf-tender-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    border:1px solid #dbe4ef;

    padding:35px;

    margin-bottom:25px;

    transition:.35s;

}

.goaf-tender-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/* Left Strip */

.goaf-tender-strip{

    position:absolute;

    left:0;
    top:0;

    width:7px;
    height:100%;

    background:#0d6efd;

    border-radius:18px 0 0 18px;

}

/*==========================*/

.goaf-tender-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.goaf-tender-id{

    font-size:13px;

    color:#6b7280;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.goaf-tender-id strong{

    display:block;

    margin-top:8px;

    color:#163a69;

    font-size:18px;

}

.goaf-tender-card h3{

    margin:0;

    font-size:28px;

    color:#1d2939;

    line-height:1.55;

    font-weight:600;

}

/*==========================*/

.goaf-tender-meta{

    margin-top:28px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    border-top:1px solid #e7edf5;

    padding-top:25px;

}

.goaf-tender-meta div{

    position:relative;

}

.goaf-tender-meta div:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-10px;
    top:5px;

    width:1px;
    height:40px;

    background:#e2e8f0;

}

.goaf-tender-meta span{

    display:block;

    color:#6b7280;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:1px;

    margin-bottom:8px;

}

.goaf-tender-meta strong{

    font-size:18px;

    color:#163a69;

}

/*==========================*/

.goaf-tender-download a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:170px;

    height:52px;

    border-radius:10px;

    background:#12345b;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.goaf-tender-download a:hover{

    background:#0d6efd;

}

/*==========================*/

@media(max-width:992px){

.goaf-tender-top{

flex-direction:column;
align-items:flex-start;
gap:20px;

}

.goaf-tender-meta{

grid-template-columns:repeat(2,1fr);

}

.goaf-tender-card h3{

font-size:22px;

}

}

@media(max-width:576px){

.goaf-tender-heading{

flex-direction:column;
align-items:flex-start;
gap:15px;

}

.goaf-tender-meta{

grid-template-columns:1fr;

}

.goaf-tender-meta div::after{

display:none;

}

.goaf-tender-download a{

width:100%;

}

.goaf-tender-card{

padding:25px;

}

.goaf-tender-card h3{

font-size:20px;

}

}


/*====================================
        GOAF TENDER SECTION
=====================================*/

.goaf-tender-section{
    padding:60px 0;
    background:#f4f7fb;
}

.goaf-tender-section .goaf-tender-container{
    width:min(1320px,92%);
    margin:auto;
}

/*====================================
        SECTION HEADING
=====================================*/

.goaf-tender-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.goaf-tender-heading h2{
    margin:0;
    font-size:32px;
    color:#12345b;
    font-weight:700;
}

.goaf-tender-heading p{
    margin-top:6px;
    color:#6b7280;
    font-size:15px;
}

.goaf-tender-count{
    background:#fff;
    border:1px solid #d8e3ef;
    padding:10px 20px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    color:#12345b;
}

/*====================================
        TENDER CARD
=====================================*/

.goaf-tender-card{

    position:relative;

    background:#fff;

    border:1px solid #dce6f1;

    border-radius:14px;

    padding:22px 28px;

    margin-bottom:16px;

    transition:.3s ease;

}

.goaf-tender-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(17,24,39,.08);

}

/*====================================
        LEFT STRIP
=====================================*/

.goaf-tender-strip{

    position:absolute;

    left:0;
    top:0;

    width:5px;

    height:100%;

    background:#0d6efd;

    border-radius:14px 0 0 14px;

}

/*====================================
        TOP AREA
=====================================*/

.goaf-tender-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:16px;

}

/*====================================
        TENDER ID
=====================================*/

.goaf-tender-id{

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#6b7280;

}

.goaf-tender-id strong{

    display:block;

    margin-top:5px;

    font-size:17px;

    font-weight:700;

    color:#163a69;

}

/*====================================
        TITLE
=====================================*/

.goaf-tender-card h3{

    margin:0;

    font-size:22px;

    line-height:1.45;

    font-weight:600;

    color:#1f2937;

}

/*====================================
        META INFO
=====================================*/

.goaf-tender-meta{

    margin-top:18px;

    padding-top:18px;

    border-top:1px solid #edf2f7;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.goaf-tender-meta div{

    position:relative;

}

.goaf-tender-meta div:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-9px;

    top:4px;

    width:1px;

    height:34px;

    background:#e5ebf2;

}

.goaf-tender-meta span{

    display:block;

    font-size:11px;

    color:#6b7280;

    text-transform:uppercase;

    letter-spacing:.8px;

    margin-bottom:4px;

}

.goaf-tender-meta strong{

    font-size:16px;

    font-weight:600;

    color:#163a69;

}

/*====================================
        DOWNLOAD BUTTON
=====================================*/

.goaf-tender-download a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:145px;

    height:44px;

    border-radius:8px;

    background:#12345b;

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.goaf-tender-download a:hover{

    background:#0d6efd;

}

/*====================================
        TABLET
=====================================*/

@media(max-width:992px){

    .goaf-tender-top{

        flex-direction:column;

        align-items:flex-start;

        gap:16px;

    }

    .goaf-tender-meta{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .goaf-tender-card h3{

        font-size:20px;

    }

    .goaf-tender-download a{

        width:160px;

    }

}

/*====================================
        MOBILE
=====================================*/

@media(max-width:576px){

    .goaf-tender-section{

        padding:45px 0;

    }

    .goaf-tender-heading{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

    }

    .goaf-tender-heading h2{

        font-size:28px;

    }

    .goaf-tender-card{

        padding:20px;

    }

    .goaf-tender-card h3{

        font-size:18px;

        line-height:1.5;

    }

    .goaf-tender-meta{

        grid-template-columns:1fr;

        gap:14px;

    }

    .goaf-tender-meta div::after{

        display:none;

    }

    .goaf-tender-download{

        width:100%;

    }

    .goaf-tender-download a{

        width:100%;

    }

}



/* about us video page  */
/*===================================
        GOAF VIDEO LIBRARY
===================================*/

.goaf-video-library{
    /* padding:30px 0; */
    
}

.goaf-video-container{
    width:min(1200px,92%);
    margin:auto;
}

/*=========================
        Heading
=========================*/

.goaf-video-header{
    text-align:center;
    margin-bottom:45px;
}

.goaf-video-header h2{
    font-size:34px;
    color:#0c6762;
    font-weight:700;
    margin-bottom:10px;
}

.goaf-video-header p{
    color:#666;
    font-size:15px;
}

/*=========================
        Cards
=========================*/

.goaf-video-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.goaf-video-card{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#fff;
    border-radius:18px;
   

  

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;
    overflow:hidden;
}

.goaf-video-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(13,138,131,.05);

    border-radius:50%;
cursor:pointer;
    right:-70px;
    top:-70px;

    transition:.4s;
}

.goaf-video-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.goaf-video-card:hover::before{

    transform:scale(1.2);

}

/*=========================
        Left
=========================*/

.goaf-video-left{

    display:flex;
    align-items:center;
    gap:22px;
}

.goaf-video-number{

    width:62px;
    height:62px;

    border-radius:18px;
background:linear-gradient(135deg,#003c86,#0b5ed7);

    color:#fff;

    font-size:22px;
    font-weight:700;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;
}

.goaf-video-content h3{

    margin:0;
    font-size:19px;
    color:#222;
    font-weight:600;
}

.goaf-video-content span{

    display:inline-block;
    margin-top:6px;

    color:#888;
    font-size:14px;
}

/*=========================
        Button
=========================*/

.goaf-video-btn{

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

   background:linear-gradient(135deg,#003c86,#0b5ed7);

    color:#fff;

    padding:12px 24px;

    border-radius:50px;

    font-weight:600;
    cursor: pointer;
    transition:.35s;
}

.goaf-video-btn i{

    font-size:18px;
}

.goaf-video-btn:hover{

    background:#3578C7;

    color:#fff;

    transform:translateX(5px);
}

/*=========================
        Responsive
=========================*/

@media(max-width:768px){

.goaf-video-card{

    flex-direction:column;
    align-items:flex-start;

    gap:20px;
}

.goaf-video-btn{

    width:100%;
    justify-content:center;
}

.goaf-video-left{

    align-items:flex-start;
}

.goaf-video-number{

    width:55px;
    height:55px;

    font-size:18px;
}

.goaf-video-content h3{

    font-size:17px;
}

}

/* contact us page  */
/*==================================
        CONTACT LOCATION
===================================*/

.contact-location-section .contact-location-wrapper{

    width:min(1320px,92%);
    margin:auto;

    background:#fff;

    border:1px solid #dfe5ee;
    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    position:relative;
    padding-top:30px;

}

.contact-location-section{

    padding:80px 0;
    background:#ffffff;

}

/*==================================
        Container
===================================*/

.contact-location-section
.contact-location-container{

    width:min(1180px,92%);
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:70px;

}

/*==================================
        Left Side
===================================*/

.contact-location-section
.contact-location-content{

    flex:1;
    max-width:520px;

}

/*==================================
        Address Row
===================================*/

.contact-location-section
.contact-location-address{

    display:flex;
    align-items:flex-start;
    gap:14px;

    margin-bottom:40px;

}

.contact-location-section
.contact-location-icon{

    flex-shrink:0;
    margin-top:3px;

}

.contact-location-section
.contact-location-icon i{

    color:#000;
    font-size:18px;

}

.contact-location-section
.contact-location-text p{

    margin:0;

    color:#111;

    font-size:21px;

    line-height:1.8;

    font-weight:400;

}

/*==================================
        Contact Details
===================================*/

.contact-location-section
.contact-location-info h4{

    margin:0 0 5px;

    font-size:21px;

    color:#000;

    font-weight:700;

}

.contact-location-section
.contact-location-info h5{

    margin:0 0 28px;

    font-size:21px;

    color:#000;

    font-weight:700;

}

.contact-location-section
.contact-location-info p{

    margin:0 0 8px;

    color:#111;

    font-size:21px;

    line-height:1.7;

    font-weight:400;

}

/*==================================
            Map
===================================*/

.contact-location-section
.contact-location-map{

    width:540px;
    flex-shrink:0;

}

.contact-location-section
.contact-location-map iframe{

    width:100%;
    height:320px;

    border:none;

    border-radius:2px;

    display:block;

}

/*==================================
        Responsive
===================================*/

@media(max-width:991px){

.contact-location-section
.contact-location-container{

    flex-direction:column;

    gap:40px;

}

.contact-location-section
.contact-location-content{

    max-width:100%;

}

.contact-location-section
.contact-location-map{

    width:100%;

}

.contact-location-section
.contact-location-map iframe{

    height:350px;

}

}

@media(max-width:576px){

.contact-location-section{

    padding:60px 0;

}

.contact-location-section
.contact-location-text p,

.contact-location-section
.contact-location-info h4,

.contact-location-section
.contact-location-info h5,

.contact-location-section
.contact-location-info p{

    font-size:16px;

    line-height:1.7;

}

.contact-location-section
.contact-location-map iframe{

    height:280px;

}

}


/*==================================
        Heading
===================================*/

.contact-location-section
.contact-location-text h4{

    margin:0 0 8px;

    font-size:28px;

    font-weight:700;

    color:#111;

}

.contact-location-section
.contact-location-text p{

    margin:0 0 14px;

    font-size:19px;

    line-height:1.8;

    color:#444;

}

/*==================================
        Contact Info
===================================*/

.contact-location-section
.contact-location-info{

    margin-top:35px;

}

.contact-location-section
.contact-location-item{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:18px;

    font-size:18px;

}

.contact-location-section
.contact-location-label{

    font-weight:700;

    color:#111;

    display:flex;

    align-items:center;

    gap:8px;

}

.contact-location-section
.contact-location-label i{

    color:#0b5ed7;

    font-size:16px;

}

.contact-location-section
.contact-location-item a{

    color:#444;

    text-decoration:none;

    transition:.3s;

}

.contact-location-section
.contact-location-item a:hover{

    color:#0b5ed7;

}

/* career page  */
/*======================================
        GOAF CAREERS SECTION
======================================*/

.goaf-careers-section{

    padding:30px 0;

    background:#f5f8fc;

}

/*======================================
        CONTAINER
======================================*/

.goaf-careers-section .goaf-careers-container{

    width:min(1320px,92%);

    margin:auto;

}

/*======================================
        HEADING
======================================*/

.goaf-careers-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.goaf-careers-heading .goaf-careers-subtitle{

    display:inline-block;

    background:#eaf6ee;

    color:#006837;

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:18px;

}

.goaf-careers-heading h2{

    font-size:42px;

    font-weight:700;

    color:#17345b;

    margin-bottom:18px;

}

.goaf-careers-heading p{

    color:#68768b;

    line-height:1.8;

}

/*======================================
        STATS
======================================*/

.goaf-careers-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:50px;

}

.goaf-careers-stat-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.goaf-careers-stat-card h3{

    font-size:40px;

    color:#006837;

    margin-bottom:8px;

}

.goaf-careers-stat-card span{

    color:#66758a;

}

/*======================================
        SEARCH
======================================*/

.goaf-careers-search{

    display:flex;

    gap:15px;

    margin-bottom:40px;

}

.goaf-careers-search input{

    flex:1;

    height:60px;

    border:none;

    background:#fff;

    border-radius:14px;

    padding:0 25px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.goaf-careers-search button{

    width:170px;

    border:none;

    border-radius:14px;

    background:#0854BE;

    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.goaf-careers-search button:hover{

    background:#2E76D8;

}

/*======================================
        CATEGORY
======================================*/

.goaf-careers-category{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin-bottom:50px;

}

.goaf-careers-category button{

    border:none;

    background:#fff;

    padding:14px 26px;

    border-radius:40px;

    cursor:pointer;

    font-weight:600;

    transition:.35s;

}

.goaf-careers-category button.active,

.goaf-careers-category button:hover{

    background:#006837;

    color:#fff;

}

/*======================================
        GRID
======================================*/

.goaf-careers-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

/*======================================
        CARD
======================================*/

.goaf-careers-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 18px 35px rgba(0,0,0,.06);

    transition:.35s;

    /* border-top:5px solid #006837; */

}

.goaf-careers-card:hover{

    transform:translateY(-8px);

}

.goaf-careers-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;

}

.goaf-careers-top .badge{

    padding:8px 16px;

    border-radius:40px;

    color:#fff;

    font-size:14px;

}

.goaf-careers-top .badge.green{

    background:#008c45;

}

.goaf-careers-top .badge.blue{

    background:#0b66d1;

}

.goaf-careers-top .badge.orange{

    background:#f39c12;

}

.goaf-careers-top .date{

    color:#7a8899;

}

.goaf-careers-card h3{

    font-size:24px;

    color:#17345b;

    margin-bottom:18px;

}

.goaf-careers-card p{

    color:#68768b;

    line-height:1.8;

    margin-bottom:28px;

}

.goaf-careers-footer{

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

.goaf-careers-footer a{

    text-decoration:none;

    font-weight:600;

    color:#006837;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.goaf-careers-stats{

grid-template-columns:repeat(2,1fr);

}

.goaf-careers-grid{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

.goaf-careers-stats{

grid-template-columns:1fr;

}

.goaf-careers-search{

flex-direction:column;

}

.goaf-careers-search button{

width:100%;

}

.goaf-careers-heading h2{

font-size:32px;

}
}
/*======================================
        MODAL STYLES (HIERARCHY BASED)
======================================*/

.goaf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.goaf-modal.active {
    opacity: 1;
    pointer-events: all;
}

.goaf-modal .goaf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 52, 91, 0.4);
    backdrop-filter: blur(8px);
}

.goaf-modal .goaf-modal-content {
    position: relative;
    background: #fff;
    width: min(700px, 90%);
    max-height: 80vh;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top: 6px solid #006837;
}

.goaf-modal.active .goaf-modal-content {
    transform: translateY(0) scale(1);
}

.goaf-modal .goaf-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f5f8fc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 40px;
    color: #68768b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.goaf-modal .goaf-modal-close:hover {
    background: #eaf6ee;
    color: #006837;
    transform: rotate(90deg);
}

.goaf-modal .goaf-modal-header {
    margin-bottom: 20px;
    padding-right: 30px;
}

.goaf-modal .goaf-modal-header h3 {
    font-size: 24px;
    color: #17345b;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.4;
}

.goaf-modal .goaf-modal-body {
    overflow-y: auto;
    flex: 1;
    padding-right: 5px;
}

/* Custom Scrollbar for Modal Body */
.goaf-modal .goaf-modal-body::-webkit-scrollbar {
    width: 6px;
}
.goaf-modal .goaf-modal-body::-webkit-scrollbar-track {
    background: #f5f8fc;
    border-radius: 10px;
}
.goaf-modal .goaf-modal-body::-webkit-scrollbar-thumb {
    background: #ccd5e0;
    border-radius: 10px;
}
.goaf-modal .goaf-modal-body::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.goaf-modal .goaf-modal-description {
    color: #68768b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.goaf-modal .goaf-modal-files-section h4 {
    font-size: 16px;
    color: #17345b;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.goaf-modal .goaf-modal-files-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goaf-modal .goaf-modal-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.goaf-modal .goaf-modal-file-item:hover {
    border-color: #006837;
    background: #f1f8f4;
    transform: translateX(4px);
}

.goaf-modal .goaf-modal-file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding-right: 15px;
}

.goaf-modal .goaf-modal-file-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.goaf-modal .goaf-modal-file-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.goaf-modal .goaf-modal-file-title {
    font-weight: 600;
    color: #17345b;
    font-size: 14.5px;
    line-height: 1.4;
}

.goaf-modal .goaf-modal-file-meta {
    font-size: 12px;
    color: #7a8899;
}

.goaf-modal .goaf-modal-file-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #006837;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 15px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.goaf-modal .goaf-modal-file-action-btn:hover {
    background: #014d28;
}

/* Empty State Styles (Hierarchy Based) */
.goaf-careers-grid .goaf-careers-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.03);
    border-top: 5px solid #68768b;
}

.goaf-careers-grid .goaf-careers-no-results .goaf-careers-no-results-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #a0aec0;
}

.goaf-careers-grid .goaf-careers-no-results h4 {
    font-size: 20px;
    color: #17345b;
    margin-bottom: 8px;
}

.goaf-careers-grid .goaf-careers-no-results p {
    color: #7a8899;
}


/* RTI INTRODUCTION PAGE  CSS */
/*======================================
            GOAF RTI SECTION
======================================*/

.goaf-rti-section{

    padding:90px 0;
    background:#f4f8fc;

}

.goaf-rti-section .goaf-rti-container{

    width:min(1320px,92%);
    margin:auto;

}

/*======================================
            Heading
======================================*/

.goaf-rti-section .goaf-rti-heading{

    text-align:center;
    margin-bottom:70px;

}

.goaf-rti-section .goaf-rti-badge{

    display:inline-block;
    padding:8px 18px;
    background:#e6f4ea;
    color:#0b7d41;
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;

}

.goaf-rti-section .goaf-rti-heading h2{

    font-size:42px;
    font-weight:700;
    color:#123b2f;
    margin-bottom:20px;

}

.goaf-rti-section .goaf-rti-heading p{

    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

/*======================================
            Cards
======================================*/

.goaf-rti-section .goaf-rti-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-bottom:80px;

}

.goaf-rti-section .goaf-rti-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.goaf-rti-section .goaf-rti-card:hover{

    transform:translateY(-8px);

}

.goaf-rti-section .goaf-rti-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#0b7d41;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;

}

.goaf-rti-section .goaf-rti-card h3{

    margin-bottom:15px;
    color:#123b2f;

}

.goaf-rti-section .goaf-rti-card p{

    color:#666;
    line-height:1.8;

}

/*======================================
            Section Title
======================================*/

.goaf-rti-section .goaf-rti-section-title{

    margin-bottom:40px;

}

.goaf-rti-section .goaf-rti-section-title h3{

    font-size:32px;
    color:#123b2f;

}

/*======================================
            Timeline
======================================*/

.goaf-rti-section .goaf-rti-timeline{

    border-left:4px solid #0b7d41;
    padding-left:40px;
    margin-bottom:80px;

}

.goaf-rti-section .goaf-rti-step{

    display:flex;
    gap:25px;
    margin-bottom:40px;

}

.goaf-rti-section .goaf-rti-step-number{

    min-width:65px;
    height:65px;
    border-radius:50%;
    background:#0b7d41;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;

}

.goaf-rti-section .goaf-rti-step-content{

    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.goaf-rti-section .goaf-rti-step-content h4{

    margin-bottom:10px;
    color:#123b2f;

}

.goaf-rti-section .goaf-rti-step-content p{

    color:#666;
    line-height:1.8;

}

/*======================================
            Table
======================================*/

.goaf-rti-section .goaf-rti-fee-section{

    margin-bottom:80px;

}

.goaf-rti-section .goaf-rti-table-wrap{

    overflow:auto;
    background:#fff;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.goaf-rti-section .goaf-rti-table{

    width:100%;
    border-collapse:collapse;

}

.goaf-rti-section .goaf-rti-table th{

    background:#0b7d41;
    color:#fff;
    padding:18px;

}

.goaf-rti-section .goaf-rti-table td{

    padding:18px;
    border-bottom:1px solid #eee;

}

.goaf-rti-section .goaf-rti-table tbody tr:hover{

    background:#f7fcf8;

}

/*======================================
            Apply
======================================*/

.goaf-rti-section .goaf-rti-apply{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    background:linear-gradient(135deg,#0b7d41,#1f9b5b);
    color:#fff;
    padding:45px;
    border-radius:18px;

}

.goaf-rti-section .goaf-rti-apply p{

    margin-top:15px;
    line-height:1.8;

}

.goaf-rti-section .goaf-rti-btn{

    display:inline-block;
    padding:16px 35px;
    background:#fff;
    color:#0b7d41;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;

}

.goaf-rti-section .goaf-rti-btn:hover{

    transform:translateY(-4px);

}


.goaf-page-strip{
    background:#f5f8fc;
    border-bottom:1px solid #dce6f3;
    padding:18px 0;
}

.goaf-page-strip .goaf-page-strip-container{
    width:min(1320px,92%);
    margin:auto;
}

.goaf-page-strip .goaf-page-strip-left h2{
    margin:0 0 6px;
    font-size:26px;
    color:#0b4ea2;
    font-weight:700;
}

.goaf-page-strip .goaf-page-strip-left p{
    margin:0;
    color:#6b7280;
    font-size:15px;
}

.goaf-page-strip .goaf-page-strip-left span{
    color:#f4a300;
    margin:0 8px;
}

/*======================================
            Responsive
======================================*/

@media(max-width:991px){

.goaf-rti-section .goaf-rti-apply{

flex-direction:column;
text-align:center;

}

.goaf-rti-section .goaf-rti-heading h2{

font-size:34px;

}

}

@media(max-width:767px){

.goaf-rti-section{

padding:70px 0;

}

.goaf-rti-section .goaf-rti-heading h2{

font-size:28px;

}

.goaf-rti-section .goaf-rti-step{

flex-direction:column;

}

.goaf-rti-section .goaf-rti-timeline{

padding-left:20px;

}

}

/* bottom stripe  */
/*==================================================
            GOAF PAGE INFO STRIP
==================================================*/

.goaf-page-info-strip{

    margin-top:70px;
    /* background:#f8fafc;
    border-top:1px solid #d9e3ef;
    border-bottom:1px solid #d9e3ef; */

}

.goaf-page-info-strip .goaf-page-info-strip__container{

    width:min(1320px,92%);
    margin:auto;
    padding:20px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

}

/*==================================================
                LEFT AREA
==================================================*/

.goaf-page-info-strip .goaf-page-info-strip__left{

    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;

}

.goaf-page-info-strip .goaf-page-info-strip__item{

    display:flex;
    align-items:center;
    gap:14px;

}

.goaf-page-info-strip .goaf-page-info-strip__item i{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#0b4ea2;
    color:#fff;

    border-radius:50%;
    font-size:18px;

}

.goaf-page-info-strip .goaf-page-info-strip__item span{

    display:block;
    font-size:13px;
    color:#7a8795;
    margin-bottom:3px;

}

.goaf-page-info-strip .goaf-page-info-strip__item strong{

    display:block;
    font-size:15px;
    color:#222;
    font-weight:600;

}

.goaf-page-info-strip .goaf-page-info-strip__divider{

    width:1px;
    height:48px;
    background:#d6dde7;

}

/*==================================================
                ARCHIVE BUTTON
==================================================*/

.goaf-page-info-strip .goaf-page-info-strip__archive-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:7px 12px;

    background:#044A9E;
    color:#fff;

    border-radius:8px;

    text-decoration:none;
    font-weight:600;

    transition:.35s;
    cursor:pointer;

}

.goaf-page-info-strip .goaf-page-info-strip__archive-btn:hover{

    background:#2d6fc2;

}

.goaf-page-info-strip .goaf-page-info-strip__archive-btn i{

    font-size:16px;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.goaf-page-info-strip .goaf-page-info-strip__container{

    flex-direction:column;
    align-items:flex-start;

}

.goaf-page-info-strip .goaf-page-info-strip__divider{

    display:none;

}

.goaf-page-info-strip .goaf-page-info-strip__left{

    flex-direction:column;
    align-items:flex-start;
    gap:18px;

}

.goaf-page-info-strip .goaf-page-info-strip__right{

    width:100%;

}

.goaf-page-info-strip .goaf-page-info-strip__archive-btn{

    width:100%;
    justify-content:center;

}

}

/* career page css 2nd time  */

   /*=========================================
        GOAF CAREER LIST
=========================================*/

.goaf-career-list{

    display:flex;
    flex-direction:column;
    gap:14px;

}

/*=========================================
        CAREER ITEM
=========================================*/

.goaf-career-list .goaf-career-item{

    display:grid;
    grid-template-columns:60px 1fr 55px;
    align-items:center;
    gap:18px;

    padding:18px 22px;

    background:#fff;
    border:1px solid #dfe6ef;
    border-radius:12px;

    text-decoration:none;

    transition:.35s ease;

}

.goaf-career-list .goaf-career-item:hover{

    border-color:#044A9E;
    box-shadow:0 10px 25px rgba(4,74,158,.08);
    transform:translateY(-2px);

}

/*=========================================
        PDF ICON
=========================================*/

.goaf-career-list .goaf-career-file{

    width:56px;
    height:56px;

    border-radius:12px;

    background:#fff2f2;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

}

.goaf-career-list .goaf-career-file i{

    color:#E0A008;
    font-size:28px;

}

/*=========================================
        CONTENT
=========================================*/

.goaf-career-list .goaf-career-content h5{

    margin:0 0 8px;

    font-size:17px;
    font-weight:600;
    color:#044A9E;

    line-height:1.4;

}

.goaf-career-list .goaf-career-content p{

    margin:0 0 12px;

    color:#555;
    font-size:14px;
    line-height:1.7;

}

/*=========================================
        META INFO
=========================================*/

.goaf-career-list .goaf-career-meta{

    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;

}

.goaf-career-list .goaf-career-meta span{

    display:flex;
    align-items:center;
    gap:6px;

    padding:5px 12px;

    background:#f5f8fc;

    border-radius:30px;

    color:#666;
    font-size:13px;
    font-weight:500;

}

.goaf-career-list .goaf-career-meta span i{

    color:#044A9E;

}

/*=========================================
        DOWNLOAD BUTTON
=========================================*/

.goaf-career-list .goaf-career-download{

    width:46px;
    height:46px;

    border-radius:50%;

    background:#eef4ff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#044A9E;

    transition:.35s ease;

}

.goaf-career-list .goaf-career-download i{

    font-size:18px;

}

.goaf-career-list .goaf-career-item:hover .goaf-career-download{

    background:#044A9E;
    color:#fff;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:768px){

.goaf-career-list .goaf-career-item{

    grid-template-columns:1fr;
    gap:15px;

}

.goaf-career-list .goaf-career-file{

    width:52px;
    height:52px;

}

.goaf-career-list .goaf-career-download{

    width:42px;
    height:42px;

}

.goaf-career-list .goaf-career-meta{

    gap:10px;

}

}


/* RTI INTRODUCTION    */
 <style>/*=========================================
        GOAF RTI CONTENT
=========================================*/

.goaf-rti-content{

    width:100%;

}


/*=========================================
        INTRO
=========================================*/

.goaf-rti-content .goaf-rti-intro{

    margin-bottom:35px;

}

.goaf-rti-content .goaf-rti-intro h2{

    font-size:42px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:18px;

    color:#111;

    letter-spacing:1px;

}

.goaf-rti-content .goaf-rti-intro p{

    font-size:16px;

    line-height:1.9;

    color:#555;

}


/*=========================================
        CARD
=========================================*/

.goaf-rti-content .goaf-rti-card{

    background:#fff;

    border:1px solid #e6ebf3;

    border-radius:10px;

    padding:28px;

    margin-bottom:24px;

}

.goaf-rti-content .goaf-rti-card h3{

    font-size:22px;

    color:#0854BE;

    margin-bottom:14px;

    font-weight:700;

    border-left:4px solid #0854BE;

    padding-left:14px;

}

.goaf-rti-content .goaf-rti-card p{

    color:#555;

    line-height:1.9;

    font-size:15px;

}

.goaf-rti-content .goaf-rti-card ul{

    padding-left:22px;

    margin-top:15px;

}

.goaf-rti-content .goaf-rti-card ul li{

    margin-bottom:12px;

    color:#555;

    line-height:1.8;

}


/*=========================================
        TABLE
=========================================*/

.goaf-rti-content .goaf-rti-fee-table{

    overflow-x:auto;

    margin-top:20px;

}

.goaf-rti-content .goaf-rti-fee-table table{

    width:100%;

    border-collapse:collapse;

}

.goaf-rti-content .goaf-rti-fee-table th{

    background:#0854BE;

    color:#fff;

    padding:15px;

    text-align:left;

    font-size:15px;

}

.goaf-rti-content .goaf-rti-fee-table td{

    padding:15px;

    border:1px solid #e4e8ef;

    color:#555;

    font-size:15px;

}

.goaf-rti-content .goaf-rti-fee-table tbody tr:nth-child(even){

    background:#f8fbff;

}

.goaf-rti-content .goaf-rti-note{

    margin-top:18px;

    color:#666;

    font-size:14px;

}


/*=========================================
        ROLE GRID
=========================================*/

.goaf-rti-content .goaf-rti-role-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:22px;

}

.goaf-rti-content .goaf-rti-role-grid div{

    background:#f7f9fc;

    border:1px solid #e5eaf1;

    border-radius:8px;

    padding:20px;

}

.goaf-rti-content .goaf-rti-role-grid h4{

    color:#0854BE;

    margin-bottom:10px;

    font-size:18px;

}

.goaf-rti-content .goaf-rti-role-grid p{

    margin:0;

    font-size:15px;

    line-height:1.8;

}


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.goaf-rti-content .goaf-rti-intro h2{

    font-size:34px;

}

.goaf-rti-content .goaf-rti-role-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:767px){

.goaf-rti-content .goaf-rti-card{

    padding:20px;

}

.goaf-rti-content .goaf-rti-intro h2{

    font-size:28px;

}

.goaf-rti-content .goaf-rti-card h3{

    font-size:20px;

}

}



/* RTI ACT 2005 PAGE  */
/*=========================================
        GOAF RTI MANUAL
=========================================*/



.goaf-rti-manual-section .goaf-rti-manual-wrapper{

    width:100%;

}


/*=========================================
        HEADING
=========================================*/

.goaf-rti-manual-section .goaf-rti-manual-heading{

    margin-bottom:30px;

}

.goaf-rti-manual-section .goaf-rti-manual-heading h2{

    font-size:28px;

    font-weight:700;

    color:#1d3557;

    margin-bottom:15px;

    line-height:1.4;

}

.goaf-rti-manual-section .goaf-rti-manual-heading p{

    color:#555;

    font-size:15px;

    line-height:1.9;

}


/*=========================================
        TABLE
=========================================*/

.goaf-rti-manual-section .goaf-rti-manual-table{

    overflow-x:auto;

}

.goaf-rti-manual-section .goaf-rti-manual-table table{

    width:100%;

    border-collapse:collapse;

    min-width:900px;

}

.goaf-rti-manual-section .goaf-rti-manual-table table th{

    background:#0854BE;

    color:#fff;

    font-size:15px;

    padding:16px;

    text-align:center;

    border:1px solid #d6dbe3;

}

.goaf-rti-manual-section .goaf-rti-manual-table table td{

    padding:18px;

    border:1px solid #d9dfe7;

    vertical-align:top;

    line-height:1.8;

    font-size:14px;

    color:#444;

}

.goaf-rti-manual-section .goaf-rti-manual-table table td:nth-child(1),

.goaf-rti-manual-section .goaf-rti-manual-table table td:nth-child(3),

.goaf-rti-manual-section .goaf-rti-manual-table table td:nth-child(5){

    text-align:center;

    white-space:nowrap;

}

.goaf-rti-manual-section .goaf-rti-manual-table tbody tr:nth-child(even){

    background:#f8fbff;

}

.goaf-rti-manual-section .goaf-rti-manual-table tbody tr:hover{

    background:#eef6ff;

}


/*=========================================
        NOTE
=========================================*/

.goaf-rti-manual-section .goaf-rti-manual-note{

    margin-top:35px;

    border:1px solid #d9e4ef;

    background:#fafcff;

    padding:25px;

}

.goaf-rti-manual-section .goaf-rti-manual-note h4{

    color:#0854BE;

    margin-bottom:15px;

    font-size:20px;

}

.goaf-rti-manual-section .goaf-rti-manual-note p{

    color:#555;

    line-height:1.9;

    margin-bottom:15px;

    font-size:15px;

}

.goaf-rti-manual-section .goaf-rti-manual-note p:last-child{

    margin-bottom:0;

}


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.goaf-rti-manual-section .goaf-rti-manual-heading h2{

    font-size:24px;

}

}

@media(max-width:767px){

.goaf-rti-manual-section .goaf-rti-manual-heading h2{

    font-size:22px;

}

.goaf-rti-manual-section .goaf-rti-manual-note{

    padding:20px;

}

}

/* RTI VIEW MANUALS PAGE  */
/*==========================================
        GOV ABOUT TABLE
==========================================*/

.gov-about-content table{

    width:100%;

    border-collapse:collapse;

    margin-top:30px;

    border:1px solid #d8e2ec;

    background:#fff;

}

.gov-about-content table thead th{

    background:#0854BE;

    color:#fff;

    padding:16px 18px;

    text-align:left;

    font-size:15px;

    font-weight:600;

}

.gov-about-content table tbody td{

    padding:18px;

    border-top:1px solid #e4eaf1;

    vertical-align:top;

    font-size:15px;

}

.gov-about-content table tbody tr:nth-child(even){

    background:#fafcff;

}

.gov-about-content table tbody tr:hover{

    background:#f4f8fd;

}


/*==========================================
        PDF INFO
==========================================*/

.gov-about-content .goaf-rti-doc-info{

    display:flex;

    align-items:flex-start;

    gap:16px;

}

.gov-about-content .goaf-rti-doc-info i{

    font-size:34px;

    color:#E0A008;

    flex-shrink:0;

    margin-top:3px;

}

.gov-about-content .goaf-rti-doc-info h5{

    margin:0 0 6px;

    font-size:18px;

    font-weight:600;

    color:#222;

    line-height:1.4;

}

.gov-about-content .goaf-rti-doc-info p{

    margin:0;

    color:#666;

    line-height:1.7;

    font-size:14px;

}


/*==========================================
        DOCUMENT COLUMN
==========================================*/

.gov-about-content .goaf-rti-document{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}


/*==========================================
        FILE SIZE
==========================================*/

.gov-about-content .goaf-rti-document-size{

    display:inline-block;

    min-width:72px;

    text-align:center;

    padding:6px 10px;

    background:#f5f7fa;

    border:1px solid #d6dde6;

    border-radius:4px;

    font-size:13px;

    font-weight:600;

    color:#555;

}


/*==========================================
        DOWNLOAD ICON
==========================================*/

.gov-about-content .goaf-rti-document-link{

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #d6dde6;

    border-radius:4px;

    background:#fff;

    color:#0854BE;

    text-decoration:none;

    transition:.3s;

}

.gov-about-content .goaf-rti-document-link i{

    font-size:15px;

}

.gov-about-content .goaf-rti-document-link:hover{

    background:#0854BE;

    border-color:#0854BE;

    color:#fff;

}


/*==========================================
        COLUMN ALIGNMENT
==========================================*/

.gov-about-content table tbody td:first-child{

    width:70px;

    text-align:center;

    font-weight:600;

    color:#444;

}

.gov-about-content table tbody td:last-child{

    width:170px;

}


/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:991px){

.gov-about-content{

    overflow-x:auto;

}

.gov-about-content table{

    min-width:850px;

}

}

@media(max-width:767px){

.gov-about-content table thead th,

.gov-about-content table tbody td{

    padding:14px;

}

.gov-about-content .goaf-rti-doc-info h5{

    font-size:16px;

}

.gov-about-content .goaf-rti-doc-info p{

    font-size:13px;

}

.gov-about-content .goaf-rti-doc-info i{

    font-size:28px;

}

}


/* RTI FIRST APPLELLATE AUTHORITY PAGE  */
/*==================================================
            GOAF RTI AUTHORITY SECTION



/*==================================================
                HEADING
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-heading{

    text-align:center;

    margin-bottom:30px;

}

.goaf-rti-authority-section .goaf-rti-authority-heading h2{

    margin:0 0 10px;

    font-size:34px;

    font-weight:700;

    color:#1f2937;

}

.goaf-rti-authority-section .goaf-rti-authority-heading p{

    margin:0;

    color:#6b7280;

    font-size:15px;

    line-height:1.8;

    max-width:900px;

    margin-inline:auto;

}


/*==================================================
                    TABS
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-tabs{

    justify-content:center;

    gap:14px;

    margin-bottom:30px !important;

}

.goaf-rti-authority-section .goaf-rti-authority-tabs .nav-link{

    border:none;

    background:#edf3fb;

    color:#0854BE;

    border-radius:50px;

    padding:11px 28px;

    font-size:15px;

    font-weight:600;

    min-width:180px;

    transition:.3s;

}

.goaf-rti-authority-section .goaf-rti-authority-tabs .nav-link:hover{

    background:#dce9fb;

}

.goaf-rti-authority-section .goaf-rti-authority-tabs .nav-link.active{

    background:#0854BE;

    color:#fff;

}


/*==================================================
                    CARD
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-card{

    background:#fff;

    border:1px solid #d9e3ef;

    border-radius:14px;

    overflow:hidden;

}


/*==================================================
                LOCATION BAR
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-location{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 28px;

    background:#f8fbff;

    border-bottom:1px solid #e5edf6;

}

.goaf-rti-authority-section .goaf-rti-authority-location i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0854BE;

    color:#fff;

    font-size:18px;

}

.goaf-rti-authority-section .goaf-rti-authority-location h4{

    margin:0;

    font-size:22px;

    font-weight:700;

    color:#1f2937;

}


/*==================================================
                    ITEM
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-item{

    display:grid;

    grid-template-columns:250px minmax(260px,1fr) 440px;

    gap:30px;

    align-items:center;

    padding:22px 28px;

    border-bottom:1px solid #edf2f7;

}

.goaf-rti-authority-section .goaf-rti-authority-item:last-child{

    border-bottom:none;

}


/*==================================================
                    ROLE
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-role{

    color:#0854BE;

    font-weight:700;

    font-size:15px;

    line-height:1.6;

}


/*==================================================
                    NAME
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-name{

    color:#1f2937;

    font-size:16px;

    font-weight:600;

    line-height:1.7;

}

.goaf-rti-authority-section .goaf-rti-authority-name small{

    display:block;

    margin-top:3px;

    color:#6b7280;

    font-size:13px;

    font-weight:500;

}


/*==================================================
                CONTACT
==================================================*/

.goaf-rti-authority-section .goaf-rti-authority-contact{

    display:grid;

    grid-template-columns:170px 250px;

    gap:18px;

    justify-content:end;

    align-items:center;

}

.goaf-rti-authority-section .goaf-rti-authority-contact a,

.goaf-rti-authority-section .goaf-rti-authority-contact span{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#4b5563;

    font-size:14px;

    white-space:nowrap;

    transition:.3s;

}

.goaf-rti-authority-section .goaf-rti-authority-contact a:hover{

    color:#0854BE;

}

.goaf-rti-authority-section .goaf-rti-authority-contact i{

    width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#edf4ff;

    color:#0854BE;

    font-size:13px;

    flex-shrink:0;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1199px){

.goaf-rti-authority-section .goaf-rti-authority-item{

    grid-template-columns:220px 1fr;

    gap:20px;

}

.goaf-rti-authority-section .goaf-rti-authority-contact{

    grid-column:1/-1;

    grid-template-columns:170px 250px;

    justify-content:flex-start;

    margin-top:10px;

}

}


@media(max-width:767px){

.goaf-rti-authority-section{

    padding:25px 0;

}

.goaf-rti-authority-section .goaf-rti-authority-heading h2{

    font-size:28px;

}

.goaf-rti-authority-section .goaf-rti-authority-heading p{

    font-size:14px;

}

.goaf-rti-authority-section .goaf-rti-authority-tabs{

    gap:10px;

}

.goaf-rti-authority-section .goaf-rti-authority-tabs .nav-link{

    min-width:auto;

    padding:10px 18px;

    font-size:14px;

}

.goaf-rti-authority-section .goaf-rti-authority-location{

    padding:16px;

}

.goaf-rti-authority-section .goaf-rti-authority-location h4{

    font-size:20px;

}

.goaf-rti-authority-section .goaf-rti-authority-item{

    grid-template-columns:1fr;

    gap:12px;

    padding:18px 16px;

}

.goaf-rti-authority-section .goaf-rti-authority-role{

    margin-bottom:5px;

}

.goaf-rti-authority-section .goaf-rti-authority-name{

    font-size:15px;

}

.goaf-rti-authority-section .goaf-rti-authority-contact{

    grid-template-columns:1fr;

    justify-content:flex-start;

    gap:10px;

    margin-top:5px;

}

.goaf-rti-authority-section .goaf-rti-authority-contact a,

.goaf-rti-authority-section .goaf-rti-authority-contact span{

    font-size:13px;

}

}



/* back navigation bar css   */
/*=========================================================
            GOAF BACK NAVIGATION SECTION
=========================================================*/

.goaf-back-navigation-section{
    padding:35px 0 15px;
    
}

.goaf-back-navigation-section .goaf-back-navigation-container{
    width:min(1320px,92%);
    margin:auto;
}

/*=========================================================
            BACK BUTTON
=========================================================*/

.goaf-back-navigation-section .goaf-back-navigation-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 26px;

    background:#ffffff;
    color:#0b3b8c;

    border:2px solid #0b3b8c;
    border-radius:8px;

    text-decoration:none;
    text-transform:uppercase;

    font-size:15px;
    font-weight:700;
    letter-spacing:.4px;

    transition:.35s ease;

    position:relative;
    overflow:hidden;

    box-shadow:0 6px 18px rgba(11,59,140,.08);
}

/* Shine Effect */

.goaf-back-navigation-section .goaf-back-navigation-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );

    transition:.7s;

}

/* Hover */

.goaf-back-navigation-section .goaf-back-navigation-btn:hover{

    background:#0b3b8c;
    color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 14px 28px rgba(11,59,140,.22);

}

.goaf-back-navigation-section .goaf-back-navigation-btn:hover::before{

    left:120%;

}

/*=========================================================
            ICON
=========================================================*/

.goaf-back-navigation-section .goaf-back-navigation-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s ease;

}

.goaf-back-navigation-section .goaf-back-navigation-btn:hover .goaf-back-navigation-icon{

    transform:translateX(-6px);

}

/*=========================================================
            TEXT
=========================================================*/

.goaf-back-navigation-section .goaf-back-navigation-text{

    white-space:nowrap;
    line-height:1;

}

/*=========================================================
            ACTIVE
=========================================================*/

.goaf-back-navigation-section .goaf-back-navigation-btn:active{

    transform:scale(.98);

}

/*=========================================================
            FOCUS
=========================================================*/

.goaf-back-navigation-section .goaf-back-navigation-btn:focus{

    outline:none;

    box-shadow:
        0 0 0 4px rgba(11,59,140,.15),
        0 10px 24px rgba(11,59,140,.18);

}

/*=========================================================
            RESPONSIVE
=========================================================*/

@media (max-width:768px){

    .goaf-back-navigation-section{

        padding:25px 0 10px;

    }

    .goaf-back-navigation-section .goaf-back-navigation-btn{

        padding:12px 18px;

        font-size:13px;

        gap:10px;

    }

}


  /* ANALYSE RESULT  */
    /*=========================================================
            GOAF ANALYSIS RESULT SECTION
=========================================================*/

.goaf-analysis-section{
    padding:40px 0;
    background:#f5f7fa;
}

.goaf-analysis-section .goaf-analysis-container{

    width:min(1320px,92%);
    margin:auto;

}


/*=========================================================
            PAGE HEADING
=========================================================*/

.goaf-analysis-section .goaf-analysis-heading{

    text-align:center;
    margin-bottom:45px;

}

.goaf-analysis-section .goaf-analysis-subtitle{

    display:inline-block;

    color:#6c757d;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.goaf-analysis-section .goaf-analysis-heading h2{

    font-size:38px;

    color:#0b3b8c;

    font-weight:700;

    margin-bottom:15px;

}

.goaf-analysis-section .goaf-analysis-heading p{

    max-width:720px;

    margin:auto;

    color:#555;

    line-height:1.8;

}


/*=========================================================
            FILTER BAR
=========================================================*/

.goaf-analysis-section .goaf-analysis-filter-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    background:#fff;

    border:1px solid #d8dee8;

    border-radius:10px;

    padding:22px;

    margin-bottom:45px;

    box-shadow:0 8px 22px rgba(0,0,0,.05);

}

.goaf-analysis-section .goaf-analysis-search{

    flex:1;

}

.goaf-analysis-section .goaf-analysis-search input{

    width:100%;

    height:52px;

    border:1px solid #cfd7e3;

    border-radius:6px;

    padding:0 18px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.goaf-analysis-section .goaf-analysis-search input:focus{

    border-color:#0b3b8c;

    box-shadow:0 0 0 3px rgba(11,59,140,.10);

}

.goaf-analysis-section .goaf-analysis-filter{

    display:flex;

    gap:15px;

}

.goaf-analysis-section .goaf-analysis-filter select{

    min-width:190px;

    height:52px;

    border:1px solid #cfd7e3;

    border-radius:6px;

    padding:0 15px;

    font-size:15px;

    background:#fff;

    outline:none;

    cursor:pointer;

    transition:.3s;

}

.goaf-analysis-section .goaf-analysis-filter select:focus{

    border-color:#0b3b8c;

}


/*=========================================================
            RESULT GROUP
=========================================================*/

.goaf-analysis-section .goaf-analysis-result-group{

    margin-bottom:50px;

    background:#fff;

    border:1px solid #dbe2ea;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}


/*=========================================================
            GROUP HEADER
=========================================================*/

.goaf-analysis-section .goaf-analysis-group-heading{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 28px;

    background:#0b3b8c;

    color:#fff;

}

.goaf-analysis-section .goaf-analysis-group-heading h3{

    margin:0;

    font-size:22px;

    font-weight:600;

}

.goaf-analysis-section .goaf-analysis-group-heading span{

    font-size:14px;

    background:rgba(255,255,255,.15);

    padding:8px 15px;

    border-radius:30px;

}


/*=========================================================
            TABLE WRAPPER
=========================================================*/

.goaf-analysis-section .goaf-analysis-table-wrapper{

    overflow-x:auto;

}


/*=========================================================
            TABLE
=========================================================*/

.goaf-analysis-section .goaf-analysis-table{

    width:100%;

    border-collapse:collapse;

}

.goaf-analysis-section .goaf-analysis-table thead{

    background:#eef3f8;

}

.goaf-analysis-section .goaf-analysis-table th{

    padding:18px;

    font-size:15px;

    color:#0b3b8c;

    text-align:left;

    border-bottom:1px solid #dbe2ea;

    white-space:nowrap;

}

.goaf-analysis-section .goaf-analysis-table td{

    padding:18px;

    border-bottom:1px solid #eceff3;

    font-size:15px;

    color:#444;

    vertical-align:middle;

}


/*=========================================================
            TABLE BODY
=========================================================*/

.goaf-analysis-section .goaf-analysis-table tbody tr{

    transition:.30s ease;

}

.goaf-analysis-section .goaf-analysis-table tbody tr:nth-child(even){

    background:#fafbfd;

}

.goaf-analysis-section .goaf-analysis-table tbody tr:hover{

    background:#edf5ff;

}

.goaf-analysis-section .goaf-analysis-table tbody tr:last-child td{

    border-bottom:none;

}

.goaf-analysis-section .goaf-analysis-table td:first-child{

    font-weight:700;

    color:#0b3b8c;

    text-align:center;

}

.goaf-analysis-section .goaf-analysis-table td:nth-child(3){

    white-space:nowrap;

    color:#666;

}


/*=========================================================
            PDF BUTTON
=========================================================*/

.goaf-analysis-section .goaf-analysis-download{

    display:inline-flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:#0B3B8C;

    font-weight:600;

    padding:5px 18px;

    border:1px solid #efc7c7;

    border-radius:6px;

    background:#fff7f7;

    transition:.30s ease;

}

.goaf-analysis-section .goaf-analysis-download i{

    font-size:18px;

}

.goaf-analysis-section .goaf-analysis-download:hover{

    background:#E0A008;

    color:#fff;

    border-color:#c62828;

    transform:translateY(-2px);

}


/*=========================================================
            PAGINATION
=========================================================*/

.goaf-analysis-section .goaf-analysis-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:45px;

    flex-wrap:wrap;

}

.goaf-analysis-section .goaf-analysis-pagination button{

    width:44px;

    height:44px;

    border:1px solid #d7dde6;

    background:#fff;

    color:#0b3b8c;

    border-radius:6px;

    cursor:pointer;

    font-weight:600;

    transition:.30s;

}

.goaf-analysis-section .goaf-analysis-pagination button:first-child,

.goaf-analysis-section .goaf-analysis-pagination button:last-child{

    width:auto;

    padding:0 18px;

}

.goaf-analysis-section .goaf-analysis-pagination button:hover{

    background:#0b3b8c;

    color:#fff;

    border-color:#0b3b8c;

}

.goaf-analysis-section .goaf-analysis-pagination button.active{

    background:#0b3b8c;

    color:#fff;

    border-color:#0b3b8c;

}


/*=========================================================
            TABLE SCROLLBAR
=========================================================*/

.goaf-analysis-section .goaf-analysis-table-wrapper::-webkit-scrollbar{

    height:8px;

}

.goaf-analysis-section .goaf-analysis-table-wrapper::-webkit-scrollbar-track{

    background:#eef2f6;

}

.goaf-analysis-section .goaf-analysis-table-wrapper::-webkit-scrollbar-thumb{

    background:#0b3b8c;

    border-radius:30px;

}


/*=========================================================
            RESPONSIVE
=========================================================*/

@media(max-width:991px){

.goaf-analysis-section{

    padding:60px 0;

}

.goaf-analysis-section .goaf-analysis-filter-wrapper{

    flex-direction:column;

    align-items:stretch;

}

.goaf-analysis-section .goaf-analysis-filter{

    flex-direction:column;

}

.goaf-analysis-section .goaf-analysis-filter select{

    width:100%;

    min-width:100%;

}

.goaf-analysis-section .goaf-analysis-group-heading{

    flex-direction:column;

    align-items:flex-start;

    gap:12px;

}

.goaf-analysis-section .goaf-analysis-heading h2{

    font-size:30px;

}

}


@media(max-width:768px){

.goaf-analysis-section .goaf-analysis-heading h2{

    font-size:26px;

}

.goaf-analysis-section .goaf-analysis-heading p{

    font-size:15px;

}

.goaf-analysis-section .goaf-analysis-table th,

.goaf-analysis-section .goaf-analysis-table td{

    padding:14px;

    font-size:14px;

}

.goaf-analysis-section .goaf-analysis-download{

    padding:8px 12px;

    font-size:13px;

}

.goaf-analysis-section .goaf-analysis-pagination{

    gap:8px;

}

.goaf-analysis-section .goaf-analysis-pagination button{

    width:40px;

    height:40px;

}

}


@media(max-width:576px){

.goaf-analysis-section{

    padding:50px 0;

}

.goaf-analysis-section .goaf-analysis-heading{

    margin-bottom:30px;

}

.goaf-analysis-section .goaf-analysis-heading h2{

    font-size:22px;

}

.goaf-analysis-section .goaf-analysis-subtitle{

    font-size:12px;

}

.goaf-analysis-section .goaf-analysis-group-heading{

    padding:18px;

}

.goaf-analysis-section .goaf-analysis-group-heading h3{

    font-size:18px;

}

.goaf-analysis-section .goaf-analysis-group-heading span{

    font-size:12px;

}

.goaf-analysis-section .goaf-analysis-search input,

.goaf-analysis-section .goaf-analysis-filter select{

    height:48px;

}

.goaf-analysis-section .goaf-analysis-table th,

.goaf-analysis-section .goaf-analysis-table td{

    padding:12px;

    font-size:13px;

}

.goaf-analysis-section .goaf-analysis-download{

    width:100%;

    justify-content:center;

}

}


/*=========================================================
            PRINT
=========================================================*/

@media print{

.goaf-analysis-section{

    background:#fff;

    padding:0;

}

.goaf-analysis-section .goaf-analysis-filter-wrapper,

.goaf-analysis-section .goaf-analysis-pagination{

    display:none;

}

.goaf-analysis-section .goaf-analysis-result-group{

    border:1px solid #000;

    box-shadow:none;

    margin-bottom:30px;

}

.goaf-analysis-section .goaf-analysis-group-heading{

    background:#fff !important;

    color:#000 !important;

    border-bottom:1px solid #000;

}

.goaf-analysis-section .goaf-analysis-table th{

    background:#f5f5f5 !important;

    color:#000;

}

.goaf-analysis-section .goaf-analysis-download{

    border:none;

    background:none;

    color:#000;

    padding:0;

}

}

.goaf-analysis-download{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.goaf-analysis-download span{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.goaf-analysis-download span small{
    font-size:10px;
    color:#8b8b8b;
    font-weight:500;
    margin-top:2px;
}

/* video gallery css  */
    /* ==========================================
       VIDEO GALLERY - SYSTEM DESIGN TOKENS & STYLES
       ========================================== */

    /* Design Tokens scoped to the wrapper */
    .goaf-gal-wrapper {
      --goaf-navy-dark: hsl(216, 70%, 14%);      /* #0A1C33 - Deep Corporate Indigo */
      --goaf-navy-light: hsl(215, 55%, 22%);     /* #193452 - Muted Slate Navy */
      --goaf-saffron: hsl(28, 95%, 48%);         /* #E06907 - Vibrant Saffron Gold */
      --goaf-saffron-light: hsl(35, 100%, 55%);  /* #FFAA1D - Warm Saffron Amber */
      --goaf-green: hsl(146, 68%, 28%);          /* #16793F - Emerald Green */
      --goaf-green-light: hsl(145, 45%, 95%);    /* #ECF7F0 - Soft Green Wash */
      --goaf-bg-base: hsl(210, 20%, 98%);        /* #F4F6F9 - Soft Gray-Blue */
      --goaf-white: #ffffff;
      --goaf-gray-dark: hsl(215, 25%, 15%);      /* #1E293B - Slate Gray Dark */
      --goaf-gray-light: hsl(215, 16%, 47%);     /* #64748B - Slate Muted Gray */
      --goaf-border-color: rgba(10, 28, 51, 0.06);
      --goaf-border-radius-lg: 20px;
      --goaf-border-radius-md: 12px;
      --goaf-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      
      /* Shadows */
      --goaf-shadow-sm: 0 2px 8px rgba(10, 28, 51, 0.04);
      --goaf-shadow-md: 0 12px 24px rgba(10, 28, 51, 0.06);
      --goaf-shadow-lg: 0 20px 40px rgba(10, 28, 51, 0.12);
      
      font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: var(--goaf-gray-dark);
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      box-sizing: border-box;
      position: relative;
    }

    .goaf-gal-wrapper *, 
    .goaf-gal-wrapper *::before, 
    .goaf-gal-wrapper *::after {
      box-sizing: border-box;
    }

    /* Decorative Ambient Background Glows */
    .goaf-gal-wrapper .goaf-ambient-glow {
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.08;
      z-index: -1;
      pointer-events: none;
      animation: goaf-float-orb 20s infinite alternate ease-in-out;
    }

    .goaf-gal-wrapper .goaf-glow-1 {
      background: var(--goaf-saffron);
      top: -50px;
      left: -50px;
    }

    .goaf-gal-wrapper .goaf-glow-2 {
      background: var(--goaf-navy-light);
      bottom: 100px;
      right: -50px;
      animation-delay: -10s;
    }

    @keyframes goaf-float-orb {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(40px, 40px) scale(1.15); }
    }

    /* Header Styles */
    .goaf-gal-wrapper .goaf-header-container {
      max-width: 800px;
      margin: 20px auto 40px auto;
      text-align: center;
      animation: goaf-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .goaf-gal-wrapper .goaf-badge-top {
      display: inline-flex;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--goaf-saffron);
      letter-spacing: 2px;
      text-transform: uppercase;
      background: rgba(224, 105, 7, 0.08);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 14px;
      border: 1px solid rgba(224, 105, 7, 0.15);
    }

    .goaf-gal-wrapper .goaf-main-title {
      font-size: 2.6rem;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
      line-height: 1.25;
      background: linear-gradient(135deg, var(--goaf-navy-dark) 40%, var(--goaf-navy-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .goaf-gal-wrapper .goaf-subtitle {
      font-size: 1rem;
      color: var(--goaf-gray-light);
      max-width: 580px;
      margin: 0 auto 22px auto;
      line-height: 1.6;
      font-family: 'Inter', sans-serif;
    }

    .goaf-gal-wrapper .goaf-stats-bar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: var(--goaf-white);
      padding: 10px 24px;
      border-radius: 100px;
      box-shadow: var(--goaf-shadow-sm);
      border: 1px solid var(--goaf-border-color);
    }

    .goaf-gal-wrapper .goaf-stat-item {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--goaf-gray-light);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .goaf-gal-wrapper .goaf-stat-num {
      color: var(--goaf-navy-dark);
      font-weight: 800;
      font-size: 0.95rem;
    }

    .goaf-gal-wrapper .goaf-stat-dot {
      width: 4px;
      height: 4px;
      background-color: var(--goaf-saffron);
      border-radius: 50%;
    }

    /* Grid Layout for Category Cards */
    .goaf-gal-wrapper .goaf-gal-grid-categories {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 30px;
      margin-top: 10px;
      animation: goaf-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
    }

    /* Category Card Container */
    .goaf-gal-wrapper .goaf-gal-card {
      background: var(--goaf-white);
      border-radius: var(--goaf-border-radius-lg);
      overflow: hidden;
      box-shadow: var(--goaf-shadow-sm);
      transition: var(--goaf-transition-smooth);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid var(--goaf-border-color);
    }

    .goaf-gal-wrapper .goaf-gal-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--goaf-shadow-lg);
      border-color: rgba(10, 28, 51, 0.12);
    }

    /* Image Container inside Card */
    .goaf-gal-wrapper .goaf-gal-card-img-box {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background-color: #eaeaea;
    }

    .goaf-gal-wrapper .goaf-gal-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-card-img {
      transform: scale(1.05);
    }

    /* Item Count Badge overlay (Top Right) */
    .goaf-gal-wrapper .goaf-gal-card-badge {
    background-color:#0b5ed7;
      position: absolute;
      top: 15px;
      right: 15px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 6px 14px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--goaf-white);
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: var(--goaf-transition-smooth);
      z-index: 2;
    }

    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-card-badge {
      background: #E0A008;
    }

    /* Hover Overlay Screen */
    .goaf-gal-wrapper .goaf-gal-card-hover-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(10, 28, 51, 0.2) 0%, rgba(10, 28, 51, 0.6) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      transition: var(--goaf-transition-smooth);
      z-index: 1;
    }

    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-card-hover-overlay {
      opacity: 1;
    }

    .goaf-gal-wrapper .goaf-gal-card-hover-text {
      color: var(--goaf-white);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      transform: translateY(10px);
      transition: var(--goaf-transition-smooth);
    }

    .goaf-gal-wrapper .goaf-gal-card-hover-circle {
      width: 36px;
      height: 36px;
      background: var(--goaf-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--goaf-navy-dark);
      transform: translateY(10px);
      transition: var(--goaf-transition-smooth);
      box-shadow: var(--goaf-shadow-md);
    }

    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-card-hover-text,
    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-card-hover-circle {
      transform: translateY(0);
    }

    /* Card Info Area */
    .goaf-gal-wrapper .goaf-gal-card-info {
      background-color: var(--goaf-white);
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      border-top: 1px solid var(--goaf-border-color);
    }

    /* Date Badge */
    .goaf-gal-wrapper .goaf-gal-card-date-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--goaf-green);
      background: var(--goaf-green-light);
      padding: 4px 10px;
      border-radius: 100px;
      margin-bottom: 14px;
      width: fit-content;
    }

    .goaf-gal-wrapper .goaf-gal-card-date-badge svg {
      margin-top: -1px;
    }

    /* Bold Title */
    .goaf-gal-wrapper .goaf-gal-card-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--goaf-navy-dark);
      line-height: 1.4;
      margin: 0 0 20px 0;
      letter-spacing: -0.2px;
    }

    /* Card Bottom Link */
    .goaf-gal-wrapper .goaf-gal-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--goaf-border-color);
      padding-top: 16px;
      margin-top: auto;
    }

    .goaf-gal-wrapper .goaf-gal-explore-link {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--goaf-navy-light);
      letter-spacing: 0.5px;
      transition: var(--goaf-transition-smooth);
    }

    .goaf-gal-wrapper .goaf-gal-arrow-icon {
      stroke: var(--goaf-navy-light);
      transition: var(--goaf-transition-smooth);
      transform: translateX(0);
    }

    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-explore-link {
      color: #E2A008;
    }

    .goaf-gal-wrapper .goaf-gal-card:hover .goaf-gal-arrow-icon {
      stroke: var(--goaf-saffron);
      transform: translateX(4px);
    }

    /* Videos Grid View */
    .goaf-gal-wrapper .goaf-gal-images-view {
      display: none;
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .goaf-gal-wrapper .goaf-gal-images-view.goaf-active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* Videos Header Controls */
    .goaf-gal-wrapper .goaf-gal-images-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--goaf-border-color);
      padding-bottom: 20px;
      margin-bottom: 30px;
      gap: 20px;
    }

    .goaf-gal-wrapper .goaf-gal-category-info-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--goaf-navy-dark);
      margin: 0;
      letter-spacing: -0.3px;
    }

    /* Refactored Back Button */
    .goaf-gal-wrapper .goaf-gal-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--goaf-white);
      color: var(--goaf-navy-light);
      border: 1px solid var(--goaf-border-color);
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 100px;
      cursor: pointer;
      transition: var(--goaf-transition-smooth);
      font-size: 0.85rem;
      box-shadow: var(--goaf-shadow-sm);
    }

    .goaf-gal-wrapper .goaf-gal-back-btn:hover {
      background: var(--goaf-navy-dark);
      color: var(--goaf-white);
      border-color: var(--goaf-navy-dark);
      box-shadow: var(--goaf-shadow-md);
    }

    .goaf-gal-wrapper .goaf-gal-back-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      transition: transform 0.3s;
    }

    .goaf-gal-wrapper .goaf-gal-back-btn:hover svg {
      transform: translateX(-4px);
    }

    /* Videos Grid */
    .goaf-gal-wrapper .goaf-gal-grid-images {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    /* Video Thumbnail Item */
    .goaf-gal-wrapper .goaf-gal-image-item {
      position: relative;
      aspect-ratio: 1/1;
      border-radius: var(--goaf-border-radius-md);
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--goaf-shadow-sm);
      border: 1px solid var(--goaf-border-color);
      transition: var(--goaf-transition-smooth);
    }

    .goaf-gal-wrapper .goaf-gal-image-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--goaf-shadow-md);
      border-color: rgba(10, 28, 51, 0.1);
    }

    .goaf-gal-wrapper .goaf-gal-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .goaf-gal-wrapper .goaf-gal-image-item:hover .goaf-gal-thumb-img {
      transform: scale(1.05);
    }

    /* Hover Overlay on Thumbnail (Frosted Glass Effect) */
    .goaf-gal-wrapper .goaf-gal-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 28, 51, 0.65);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      opacity: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: var(--goaf-transition-smooth);
      color: var(--goaf-white);
      padding: 20px;
      text-align: center;
      z-index: 1;
    }

    .goaf-gal-wrapper .goaf-gal-image-overlay:hover {
      opacity: 1;
    }

    .goaf-gal-wrapper .goaf-gal-play-icon {
      width: 38px;
      height: 38px;
      background: #E2A008;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(224, 105, 7, 0.3);
      transform: translateY(15px);
      transition: var(--goaf-transition-smooth);
    }

    .goaf-gal-wrapper .goaf-gal-image-item:hover .goaf-gal-play-icon {
      transform: translateY(0);
    }

    .goaf-gal-wrapper .goaf-gal-play-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--goaf-white);
    }

    .goaf-gal-wrapper .goaf-gal-img-caption-text {
      font-size: 0.85rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.4;
      transform: translateY(15px);
      transition: var(--goaf-transition-smooth);
      transition-delay: 0.04s;
      font-family: 'Inter', sans-serif;
    }

    .goaf-gal-wrapper .goaf-gal-image-item:hover .goaf-gal-img-caption-text {
      transform: translateY(0);
    }

    /* Centered Lightbox Modal */
    .goaf-gal-wrapper .goaf-gal-lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(7, 18, 33, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .goaf-gal-wrapper .goaf-gal-lightbox.goaf-show {
      opacity: 1;
      pointer-events: auto;
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .goaf-gal-wrapper .goaf-gal-lightbox.goaf-show .goaf-gal-lightbox-content {
      transform: scale(1);
    }

    /* Lightbox Video Element (YouTube Iframe) */
    .goaf-gal-wrapper .goaf-gal-lightbox-video {
      width: 100%;
      height: 60vh;
      max-width: 900px;
      aspect-ratio: 16/9;
      object-fit: contain;
      border-radius: var(--goaf-border-radius-md);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: block;
      outline: none;
      background: #000;
      transition: opacity 0.15s ease-in-out;
    }

    /* Lightbox Controls (Sleek Glass Circles) */
    .goaf-gal-wrapper .goaf-gal-lightbox-close {
      position: absolute;
      top: -55px;
      right: 0;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--goaf-white);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      font-weight: 300;
      cursor: pointer;
      line-height: 1;
      transition: var(--goaf-transition-smooth);
      padding: 0 0 4px 0;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-close:hover {
      color: var(--goaf-white);
      background: var(--goaf-saffron);
      border-color: var(--goaf-saffron);
      transform: rotate(90deg);
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-nav {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--goaf-white);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--goaf-transition-smooth);
      user-select: none;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-nav:hover {
      background: var(--goaf-saffron);
      border-color: var(--goaf-saffron);
      box-shadow: 0 0 20px rgba(224, 105, 7, 0.5);
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-prev {
      left: -75px;
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-next {
      right: -75px;
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-nav svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* Caption Info under Lightbox Video */
    .goaf-gal-wrapper .goaf-gal-lightbox-caption-box {
      margin-top: 20px;
      text-align: center;
      color: var(--goaf-white);
      width: 100%;
      max-width: 600px;
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 6px 0;
      letter-spacing: 0.3px;
      font-family: 'Outfit', sans-serif;
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-counter {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    /* Visual Key Hints */
    .goaf-gal-wrapper .goaf-gal-lightbox-keyboard-hints {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.35);
      margin-top: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .goaf-gal-wrapper .goaf-gal-key-hint-badge {
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-family: monospace;
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.7);
    }

    /* Thumbnail Strip at bottom of Lightbox */
    .goaf-gal-wrapper .goaf-gal-lightbox-thumbs {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin: 15px auto 0 auto;
      overflow-x: auto;
      padding: 8px 4px;
      max-width: 480px;
      scrollbar-width: none; /* Hide scrollbar */
    }

    .goaf-gal-wrapper .goaf-gal-lightbox-thumbs::-webkit-scrollbar {
      display: none; /* Chrome/Safari */
    }

    .goaf-gal-wrapper .goaf-lightbox-thumb-item {
      width: 50px;
      height: 50px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.4;
      border: 2px solid transparent;
      transition: var(--goaf-transition-smooth);
      flex-shrink: 0;
    }

    .goaf-gal-wrapper .goaf-lightbox-thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .goaf-gal-wrapper .goaf-lightbox-thumb-item:hover {
      opacity: 0.7;
      transform: scale(1.05);
    }

    .goaf-gal-wrapper .goaf-lightbox-thumb-item.goaf-active {
      opacity: 1;
      border-color: var(--goaf-saffron);
      box-shadow: 0 0 12px rgba(224, 105, 7, 0.4);
      transform: scale(1.08);
    }

    /* Responsive Styling */
    @media (max-width: 850px) {
      .goaf-gal-wrapper .goaf-gal-lightbox-prev {
        left: 15px;
        top: auto;
        bottom: -60px;
        transform: none;
      }
      .goaf-gal-wrapper .goaf-gal-lightbox-next {
        right: 15px;
        top: auto;
        bottom: -60px;
        transform: none;
      }
      .goaf-gal-wrapper .goaf-gal-lightbox-close {
        right: 15px;
        top: -50px;
      }
      .goaf-gal-wrapper .goaf-gal-lightbox-content {
        max-height: 80%;
        margin-bottom: 40px;
      }
      .goaf-gal-wrapper .goaf-gal-lightbox-video {
        max-height: 50vh;
      }
    }

    @media (max-width: 580px) {
      .goaf-gal-wrapper .goaf-main-title {
        font-size: 2rem;
      }
      .goaf-gal-wrapper .goaf-gal-grid-categories {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .goaf-gal-wrapper .goaf-gal-grid-images {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
      }
      .goaf-gal-wrapper .goaf-gal-lightbox-thumbs {
        max-width: 320px;
      }
    }

    /* Simple fade animation helper */
    .goaf-gal-wrapper .goaf-fade-out {
      opacity: 0 !important;
    }

    /* Fade-in Animation keyframes */
    @keyframes goaf-fade-in-up {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    

    /* History page css --- opum history  */
   
   /*==================================================
GOAF HISTORY
==================================================*/


.goaf-history-section .goaf-history-wrapper{
    max-width:1100px;
    margin:auto;
}

/*=========================
Heading
=========================*/

.goaf-history-section .goaf-history-heading{
    text-align:center;
    margin-bottom:45px;
}

.goaf-history-section .goaf-history-heading span{
    display:inline-block;
    background:#0b4d90;
    color:#fff;
    padding:6px 18px;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:15px;
}

.goaf-history-section .goaf-history-heading h2{
    font-size:34px;
    color:#1b2d4b;
    margin-bottom:8px;
    font-weight:700;
}

.goaf-history-section .goaf-history-heading p{
    color:#6d7785;
    font-size:15px;
}

/*=========================
Content
=========================*/

.goaf-history-section .goaf-history-content{
    position:relative;
}

.goaf-history-section .goaf-history-content::before{
    content:"";
    position:absolute;
    left:18px;
    top:0;
    bottom:0;
    width:2px;
    background:#d9e3ef;
}

/*=========================
History Card
=========================*/

.goaf-history-section .goaf-history-block{
    position:relative;
    background:#fff;
    margin-bottom:18px;
    margin-left:45px;
    padding:22px 24px;
    border-radius:8px;
    border-left:4px solid #0b4d90;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    transition:.3s;
}

.goaf-history-section .goaf-history-block:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.goaf-history-section .goaf-history-block::before{
    content:"";
    position:absolute;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#0b4d90;
    left:-35px;
    top:28px;
    border:4px solid #f7f9fc;
}

/*=========================
Paragraph
=========================*/

.goaf-history-section .goaf-history-block p{
    margin:0;
    font-size:16px;
    line-height:1.85;
    color:#49505a;
    text-align:justify;
}

/* Drop Cap */

.goaf-history-section .goaf-history-first::first-letter{
    float:left;
    font-size:52px;
    line-height:44px;
    padding-right:8px;
    color:#0b4d90;
    font-weight:700;
}

/*=========================
Responsive
=========================*/

@media(max-width:768px){

.goaf-history-section{
    padding:50px 0;
}

.goaf-history-section .goaf-history-heading h2{
    font-size:26px;
}

.goaf-history-section .goaf-history-content::before{
    left:10px;
}

.goaf-history-section .goaf-history-block{
    margin-left:28px;
    padding:18px;
}

.goaf-history-section .goaf-history-block::before{
    left:-23px;
}

.goaf-history-section .goaf-history-block p{
    font-size:15px;
    line-height:1.8;
}

.goaf-history-section .goaf-history-first::first-letter{
    font-size:42px;
    line-height:36px;
}

}


/*=========================================
History CULTIVATION
=========================================*/

.ncb-cultivation-section .ncb-cultivation-heading{
    margin-bottom:25px;
}

.ncb-cultivation-section .ncb-cultivation-heading h2{
    font-size:34px;
    font-weight:700;
    color:#123d7a;
    margin-bottom:10px;
}

.ncb-cultivation-section .ncb-cultivation-line{
    width:70px;
    height:4px;
    background:#123d7a;
}

.ncb-cultivation-section .ncb-cultivation-banner{
    margin-bottom:35px;
    overflow:hidden;
    border-radius:10px;
    border:1px solid #d9e0ea;
}

.ncb-cultivation-section .ncb-cultivation-banner img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.ncb-cultivation-section .ncb-cultivation-content{
    background:#fff;
    border:1px solid #dde3eb;
    border-radius:10px;
    padding:40px;
}

.ncb-cultivation-section .ncb-cultivation-content p{
    color:#4d5663;
    font-size:17px;
    line-height:2;
    text-align:justify;
    margin-bottom:22px;
}

.ncb-cultivation-section .ncb-cultivation-content strong{
    color:#123d7a;
}

.ncb-cultivation-section .ncb-cultivation-highlight{
    margin-top:35px;
    background:#f2f7fd;
    border-left:5px solid #123d7a;
    padding:25px;
    border-radius:6px;
}

.ncb-cultivation-section .ncb-cultivation-highlight h5{
    color:#123d7a;
    font-size:22px;
    margin-bottom:12px;
}

.ncb-cultivation-section .ncb-cultivation-highlight p{
    margin:0;
}

@media(max-width:768px){

.ncb-cultivation-section .ncb-cultivation-banner img{
    height:250px;
}

.ncb-cultivation-section .ncb-cultivation-content{
    padding:25px;
}

.ncb-cultivation-section .ncb-cultivation-heading h2{
    font-size:28px;
}

}

/* concentrated poppy straw  */
/*==================================================
CPS SECTION
==================================================*/



/*==================================================
Heading
==================================================*/

.ncb-cps-section .ncb-cps-heading{

    text-align:center;

    margin-bottom:40px;

}

.ncb-cps-section .ncb-cps-heading span{

    display:inline-block;

    background:#e9f1fb;

    color:#0b4f9d;

    padding:7px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.ncb-cps-section .ncb-cps-heading h2{

    font-size:38px;

    color:#0d2f57;

    margin-bottom:15px;

    font-weight:700;

}

.ncb-cps-section .ncb-cps-heading p{

    max-width:760px;

    margin:auto;

    color:#555;

    line-height:1.8;

}

/*==================================================
Banner
==================================================*/

.ncb-cps-section .ncb-cps-banner{

    margin-bottom:45px;

}

.ncb-cps-section .ncb-cps-banner img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    border-radius:12px;

}

/*==================================================
Content Box
==================================================*/

.ncb-cps-section .ncb-cps-content-box{

    background:#fff;

    border:1px solid #dfe7f2;

    border-radius:10px;

    padding:35px;

    margin-bottom:35px;

}

.ncb-cps-section .ncb-cps-title{

    margin-bottom:22px;

    border-left:5px solid #0b4f9d;

    padding-left:18px;

}

.ncb-cps-section .ncb-cps-title h3{

    font-size:26px;

    color:#123d7a;

    margin:0;

    font-weight:700;

}

.ncb-cps-section .ncb-cps-content-box p{

    font-size:17px;

    color:#4b5563;

    line-height:2;

    text-align:justify;

    margin-bottom:20px;

}

.ncb-cps-section .ncb-cps-content-box p:last-child{

    margin-bottom:0;

}

.ncb-cps-section .ncb-cps-content-box strong{

    color:#123d7a;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:768px){

.ncb-cps-section{

padding:50px 0;

}

.ncb-cps-section .ncb-cps-heading h2{

font-size:30px;

}

.ncb-cps-section .ncb-cps-banner img{

height:240px;

}

.ncb-cps-section .ncb-cps-content-box{

padding:25px;

}

.ncb-cps-section .ncb-cps-content-box p{

font-size:15px;

line-height:1.9;

}

}
/*=========================================
CPS TABLE
=========================================*/

.ncb-cps-table-wrapper{

    margin:40px 0;

    overflow-x:auto;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.ncb-cps-table{

    width:100%;

    border-collapse:collapse;

    min-width:700px;

    background:#fff;

}

/*====================
Header
====================*/

.ncb-cps-table thead th{

    background:linear-gradient(135deg,#0f4c81,#1b6ca8);

    color:#fff;

    padding:18px 16px;

    text-align:left;

    font-size:15px;

    font-weight:600;

    border-right:1px solid rgba(255,255,255,.15);

}

.ncb-cps-table thead th:last-child{

    border-right:none;

}

.ncb-cps-table thead small{

    display:block;

    margin-top:6px;

    font-size:12px;

    font-weight:400;

    opacity:.9;

}

/*====================
Body
====================*/

.ncb-cps-table tbody td{

    padding:16px;

    border:1px solid #e5ebf3;

    font-size:15px;

    color:#444;

}

.ncb-cps-table tbody tr:nth-child(even){

    background:#f8fbff;

}

.ncb-cps-table tbody tr:hover{

    background:#eef6ff;

    transition:.3s;

}

.ncb-cps-table tbody td:first-child{

    width:70px;

    text-align:center;

    font-weight:600;

    color:#0f4c81;

}

.ncb-cps-table tbody td:nth-child(2){

    font-weight:600;

    color:#123d7a;

}

/*====================
Responsive
====================*/

@media(max-width:768px){

.ncb-cps-table thead th,

.ncb-cps-table tbody td{

    padding:14px;

    font-size:14px;

}

}


/*=====================================
CPS INFO
======================================*/

.ncb-cps-info{
    margin-top:35px;
}

.ncb-cps-info .ncb-cps-info-box{
    background:#fff;
    border:1px solid #dfe6ef;
    border-left:4px solid #0b5ed7;
    border-radius:8px;
    padding:22px 24px;
    margin-bottom:22px;
}

.ncb-cps-info .ncb-cps-info-box h3{
    margin:0 0 15px;
    color:#0b3d91;
    font-size:22px;
    font-weight:700;
}

.ncb-cps-info .ncb-cps-info-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.ncb-cps-info .ncb-cps-info-box ul li{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    line-height:1.7;
    color:#444;
}

.ncb-cps-info .ncb-cps-info-box ul li:last-child{
    margin-bottom:0;
}

.ncb-cps-info .ncb-cps-info-box ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:11px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#0b5ed7;
}

.ncb-cps-info .ncb-cps-way-forward{
    background:#eef6ff;
    border-left:4px solid #0b5ed7;
    border-radius:8px;
    padding:22px 24px;
}

.ncb-cps-info .ncb-cps-way-forward h3{
    margin:0 0 12px;
    color:#0b3d91;
    font-size:22px;
    font-weight:700;
}

.ncb-cps-info .ncb-cps-way-forward p{
    margin:0;
    line-height:1.8;
    color:#444;
}

@media(max-width:768px){

.ncb-cps-info .ncb-cps-info-box,
.ncb-cps-info .ncb-cps-way-forward{
    padding:18px;
}

.ncb-cps-info .ncb-cps-info-box h3,
.ncb-cps-info .ncb-cps-way-forward h3{
    font-size:20px;
}

}


/* ACT Circular Forms -- NDPS  */
/*====================================================
 NDPS LEGAL DOCUMENTS
=====================================================*/

.goaf-ndps-section .goaf-ndps-wrapper{
    max-width:1250px;
    margin:auto;
    padding:0 15px;
}

.goaf-ndps-section .goaf-ndps-heading{
    text-align:center;
    margin-bottom:22px;
}

.goaf-ndps-section .goaf-ndps-badge{
    display:inline-block;
    background:#d7b15a;
    color:#fff;
    padding:5px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    letter-spacing:.6px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.goaf-ndps-section .goaf-ndps-heading h2{
    margin:0;
    color:#0b5c63;
    font-size:30px;
    font-weight:700;
}

.goaf-ndps-section .goaf-ndps-heading p{
    margin-top:6px;
    color:#666;
    font-size:15px;
}

/*============================*/

.goaf-ndps-section .goaf-ndps-table-box{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #dbe7e8;
    box-shadow:0 8px 22px rgba(0,0,0,.06);
}

/*============================*/

.goaf-ndps-section .goaf-ndps-table{
    width:100%;
    border-collapse:collapse;
}

.goaf-ndps-section .goaf-ndps-table thead{
    background:linear-gradient(90deg,#0b6a71,#138a8b);
}

.goaf-ndps-section .goaf-ndps-table thead th{
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:14px 14px;
    text-align:left;
    border-right:1px solid rgba(255,255,255,.18);
}

.goaf-ndps-section .goaf-ndps-table thead th:last-child{
    border-right:none;
}

/*============================*/

.goaf-ndps-section .goaf-ndps-table tbody td{
    padding:12px 14px;
    font-size:14px;
    color:#333;
    vertical-align:top;
    border-bottom:1px solid #e6ecec;
}

.goaf-ndps-section .goaf-ndps-table tbody tr:nth-child(even){
    background:#fbfcfc;
}

.goaf-ndps-section .goaf-ndps-table tbody tr:hover{
    background:#eef7f7;
}

/*============================*/

.goaf-ndps-section .goaf-ndps-table tbody td:first-child{
    width:70px;
    text-align:center;
    font-weight:700;
    color:#20207C;
}

/*============================*/

.goaf-ndps-section .goaf-ndps-table a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    text-decoration:none;
    color:#20207C;
    font-weight:600;
    transition:.3s;
}

.goaf-ndps-section .goaf-ndps-table a::before{
    content:"📄";
    font-size:15px;
}

.goaf-ndps-section .goaf-ndps-table a:hover{
    color:#b6862d;
}

/*============================*/

@media(max-width:991px){

.goaf-ndps-section .goaf-ndps-table-box{
    overflow-x:auto;
}

.goaf-ndps-section .goaf-ndps-table{
    min-width:900px;
}

.goaf-ndps-section .goaf-ndps-heading h2{
    font-size:24px;
}

}

@media(max-width:576px){

.goaf-ndps-section{
    padding:30px 0;
}

.goaf-ndps-section .goaf-ndps-table thead th,
.goaf-ndps-section .goaf-ndps-table tbody td{
    padding:10px;
    font-size:13px;
}

}



/* upcoming events css */
   /*=========================
   GOAF EVENTS
=========================*/


.goaf-events-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.goaf-events-heading{
    text-align:center;
    margin-bottom:45px;
}

.goaf-events-heading h2{
    font-size:38px;
    color:#17375e;
    margin:10px 0;
    font-weight:700;
}

.goaf-events-heading p{
    max-width:720px;
    margin:auto;
    color:#6c757d;
    line-height:1.7;
}

.goaf-events-subtitle{
    display:inline-block;
    padding:7px 18px;
    border-radius:30px;
    background:#e8f0fb;
    color:#0c4da2;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.goaf-events-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.goaf-events-card{
    background:#fff;
    border-radius:12px;
    border:1px solid #e4e8ef;
    display:grid;
    grid-template-columns:95px 1fr 160px;
    align-items:center;
    padding:24px;
    transition:.3s;
}

.goaf-events-card:hover{
    border-color:#0c4da2;
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.goaf-events-date{
    width:72px;
    height:72px;
    border-radius:12px;
    background:#0c4da2;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.goaf-events-day{
    font-size:28px;
    font-weight:700;
    line-height:1;
}

.goaf-events-month{
    font-size:14px;
    text-transform:uppercase;
    margin-top:5px;
}

.goaf-events-content h3{
    margin:0 0 12px;
    font-size:22px;
    color:#17375e;
}

.goaf-events-content p{
    margin:12px 0 0;
    color:#666;
    line-height:1.7;
}

.goaf-events-meta{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.goaf-events-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#6b7280;
    font-size:15px;
}

.goaf-events-meta svg{
    width:18px;
    height:18px;
    color:#0c4da2;
}

.goaf-events-btn{
    justify-self:end;
    text-decoration:none;
    background:#17375e;
    color:#fff;
    padding:12px 24px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.goaf-events-btn:hover{
    background:#0c4da2;
}

@media(max-width:992px){

.goaf-events-card{
    grid-template-columns:80px 1fr;
    gap:20px;
}

.goaf-events-btn{
    grid-column:1/-1;
    justify-self:flex-start;
}

}

@media(max-width:576px){

.goaf-events-card{
    display:block;
    padding:20px;
}

.goaf-events-date{
    margin-bottom:18px;
}

.goaf-events-heading h2{
    font-size:30px;
}

.goaf-events-meta{
    gap:15px;
    margin-top:10px;
}

.goaf-events-btn{
    display:inline-block;
    margin-top:20px;
}

}
   .goaf-events-section{
    padding:45px 0;
    background:#f8fafc;
}

.goaf-events-heading{
    text-align:center;
    margin-bottom:28px;
}

.goaf-events-heading h2{
    font-size:34px;
    margin:8px 0;
}

.goaf-events-heading p{
    max-width:650px;
    margin:auto;
    font-size:15px;
}

.goaf-events-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.goaf-events-card{
    display:grid;
    grid-template-columns:70px 1fr auto;
    align-items:center;
    gap:18px;
    padding:14px 18px;
    background:#fff;
    border:1px solid #e4e8ef;
    border-radius:8px;
    transition:.25s;
}

.goaf-events-card:hover{
    border-color:#0b5cab;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.goaf-events-date{
    width:60px;
    height:60px;
    border-radius:8px;
}

.goaf-events-day{
    font-size:24px;
}

.goaf-events-month{
    font-size:12px;
}

.goaf-events-content h3{
    font-size:18px;
    margin:0 0 6px;
}

.goaf-events-content p{
    margin:6px 0 0;
    font-size:14px;
    line-height:1.55;
    color:#666;
}

.goaf-events-meta{
    gap:18px;
    margin-top:4px;
}

.goaf-events-meta span{
    font-size:13px;
}

.goaf-events-meta svg{
    width:15px;
    height:15px;
}

.goaf-events-btn{
    padding:9px 18px;
    font-size:14px;
    border-radius:5px;
    white-space:nowrap;
}


/*=============================
  GOVERNMENT CITIZENS CHARTER
==============================*/



.gov-charter .gov-charter__wrapper{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* Header */

.gov-charter .gov-charter__header{
    background:#0854BE;
    color:#fff;
    padding:35px;
    border-radius:12px;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.gov-charter .gov-charter__header::after{
    content:"";
    width:80px;
    height:80px;
    background:rgba(255,255,255,.08);
    position:absolute;
    right:-20px;
    top:-20px;
    border-radius:50%;
}

.gov-charter .gov-charter__tag{
    display:inline-block;
    padding:6px 14px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    border-radius:30px;
    font-size:12px;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.gov-charter .gov-charter__header h2{
    margin:0 0 15px;
    font-size:32px;
    font-weight:700;
}

.gov-charter .gov-charter__header p{
    margin:0;
    max-width:900px;
    line-height:1.8;

}

/* Card */

.gov-charter .gov-charter__content{
    margin-top:-35px;
    position:relative;
}

.gov-charter .gov-charter__card{
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e6edf5;
}

.gov-charter .gov-charter__title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.gov-charter .gov-charter__title span{
    width:6px;
    height:28px;
    background:#E0A008;
    border-radius:30px;
}

.gov-charter .gov-charter__title h3{
    margin:0;
    font-size:24px;
    color:#E0A008;
}

.gov-charter .gov-charter__intro{
    color:#555;
    margin-bottom:25px;
}

/* Grid */

.gov-charter .gov-charter__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.gov-charter .gov-charter__item{
    display:flex;
    gap:15px;
    padding:18px;
    background:#f8fbff;
    border:1px solid #dbe7f4;
    border-radius:10px;
    transition:.3s;
}

.gov-charter .gov-charter__item:hover{
    transform:translateY(-3px);
    border-color:#0856C3;
}

.gov-charter .gov-charter__icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0856C3;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}

.gov-charter .gov-charter__item h4{
    margin:0 0 6px;
    font-size:17px;
    color:#0856C3;
}

.gov-charter .gov-charter__item p{
    margin:0;
    color:#666;
    line-height:1.6;
    font-size:14px;
}

/* Note */

.gov-charter .gov-charter__note{
    margin-top:28px;
    padding:18px 22px;
    border-left:5px solid #0856C3;
    background:#eef5fc;
    color:#444;
    line-height:1.8;
    border-radius:6px;
}

/* Responsive */

@media(max-width:768px){

    .gov-charter{
        padding:40px 0;
    }

    .gov-charter .gov-charter__header{
        padding:25px;
    }

    .gov-charter .gov-charter__header h2{
        font-size:26px;
    }

    .gov-charter .gov-charter__card{
        padding:25px;
    }

    .gov-charter .gov-charter__grid{
        grid-template-columns:1fr;
    }

}


/* footer page - sitemap */
/*==========================
 GOAF SITEMAP
===========================*/


.goaf-sitemap-heading{
    text-align:center;
    margin-bottom:45px;
}

.goaf-sitemap-subtitle{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    background:#edf3ff;
    color:#174a9c;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:12px;
}

.goaf-sitemap-heading h2{
    font-size:36px;
    font-weight:700;
    color:#1d2d50;
    margin-bottom:10px;
}

.goaf-sitemap-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

.goaf-sitemap-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.goaf-sitemap-card{
    background:#fff;
    border:1px solid #e5e8f0;
    border-radius:12px;
    overflow:hidden;
    transition:.35s;
}

.goaf-sitemap-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.goaf-sitemap-card h3{
    margin:0;
    padding:16px 20px;
    background:#173f90;
    color:#fff;
    font-size:18px;
    font-weight:600;
    position:relative;
}

.goaf-sitemap-card h3::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#f0ad00;
}

.goaf-sitemap-card ul{
    margin:0;
    padding:10px 0;
    list-style:none;
}

.goaf-sitemap-card ul li{
    border-bottom:1px solid #eef2f7;
}

.goaf-sitemap-card ul li:last-child{
    border-bottom:none;
}

.goaf-sitemap-card ul li a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    color:#444;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.goaf-sitemap-card ul li a::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:#174a9c;
    flex-shrink:0;
    transition:.3s;
}

.goaf-sitemap-card ul li a:hover{
    background:#f8fbff;
    color:#174a9c;
    padding-left:28px;
}

.goaf-sitemap-card ul li a:hover::before{
    background:#f0ad00;
}

@media(max-width:768px){

.goaf-sitemap-section{
    padding:50px 0;
}

.goaf-sitemap-heading h2{
    font-size:28px;
}

.goaf-sitemap-grid{
    gap:18px;
}

.goaf-sitemap-card h3{
    font-size:17px;
}

}



/*==========================
GOAF HISTORY MAP
===========================*/

.goaf-history-map-section{
    padding:40px;
    background:#fff;
    border:1px solid #e4e8ef;
    border-radius:12px;
    margin:40px 0;
}

.goaf-history-map-header{
    margin-bottom:30px;
}

.goaf-history-map-header h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#173f90;
}

.goaf-history-map-header p{
    margin-top:8px;
    color:#666;
    font-size:15px;
}

.goaf-history-map-tree{
    position:relative;
    padding-left:25px;
}

.goaf-history-map-line{
    position:absolute;
    left:12px;
    top:42px;
    width:2px;
    height:185px;
    background:#d5dce8;
}

.goaf-history-map-node{
    position:relative;
    margin-bottom:18px;
}

.goaf-history-map-node::before{
    content:"";
    position:absolute;
    left:-18px;
    top:12px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#174a9c;
}

.goaf-history-map-node a{
    color:#173f90;
    text-decoration:none;
    font-weight:700;
    font-size:18px;
}

.goaf-history-map-parent{
    margin-bottom:18px;
}

.goaf-history-map-children{
    margin-left:35px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.goaf-history-map-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 18px;
    background:#f8f9fc;
    border:1px solid #e6ebf2;
    border-radius:8px;
    text-decoration:none;
    color:#444;
    transition:.3s;
}

.goaf-history-map-item span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#174a9c;
    flex-shrink:0;
}

.goaf-history-map-item::before{
    content:"";
    position:absolute;
    left:-25px;
    top:50%;
    width:25px;
    height:2px;
    background:#d5dce8;
    transform:translateY(-50%);
}

.goaf-history-map-item:hover{
    background:#eef5ff;
    color:#174a9c;
    border-color:#174a9c;
}

.goaf-history-map-item.active{
    background:#174a9c;
    color:#fff;
    border-color:#174a9c;
}

.goaf-history-map-item.active span{
    background:#f4b000;
}

@media(max-width:768px){

.goaf-history-map-section{
    padding:25px;
}

.goaf-history-map-header h3{
    font-size:24px;
}

.goaf-history-map-children{
    margin-left:20px;
}

.goaf-history-map-line{
    height:205px;
}

}

/*==========================
GOAF SITEMAP TREE
==========================*/

.goaf-sitemap-list{
    list-style:none;
    margin:0;
    padding:0;
}

.goaf-sitemap-parent{
    position:relative;
}

.goaf-sitemap-parent>.goaf-sitemap-submenu{
    list-style:none;
    margin:10px 0 8px 22px;
    padding-left:18px;
    border-left:2px solid #d9e3f4;
}

.goaf-sitemap-submenu li{
    position:relative;
    border:none !important;
}

.goaf-sitemap-submenu li::before{
    content:"";
    position:absolute;
    left:-18px;
    top:21px;
    width:12px;
    height:2px;
    background:#d9e3f4;
}

.goaf-sitemap-submenu a{
    display:block;
    padding:8px 16px !important;
    font-size:14px !important;
    color:#5b6473 !important;
}

.goaf-sitemap-submenu a::before{
    width:6px !important;
    height:6px !important;
    background:#f0ad00 !important;
}

.goaf-sitemap-submenu a:hover{
    color:#174a9c !important;
    padding-left:22px !important;
}


/* feedback form  */
/* =========================================================
   GOAF FEEDBACK
   ========================================================= */

.goaf-feedback {
    --goaf-feedback-primary: #174a9c;
    --goaf-feedback-primary-dark: #103b80;
    --goaf-feedback-accent: #0d6efd;
    --goaf-feedback-bg: #f4f8fc;
    --goaf-feedback-card: #ffffff;
    --goaf-feedback-border: #d9e2ec;
    --goaf-feedback-text: #243447;
    --goaf-feedback-muted: #65758b;
    --goaf-feedback-required: #d32f2f;

    width: 100%;
    /* padding: 35px 20px; */
  
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.goaf-feedback__container {
    width: min(100%, 1080px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.goaf-feedback__header {
    margin-bottom: 20px;
}



.goaf-feedback__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    margin-bottom: 7px;

    border: 1px solid #d7e4f4;
    border-radius: 30px;

    background: #eaf2fb;
    color: var(--goaf-feedback-primary);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.goaf-feedback__title {
    margin: 0 0 7px;

    color: var(--goaf-feedback-primary);

    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
}

.goaf-feedback__intro {
    max-width: 700px;
    margin: 0 auto;

    color: var(--goaf-feedback-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.goaf-feedback__form {
    padding: 25px 28px;

    background:#F5F8FC;
    border: 1px solid #e0e7ef;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(20, 55, 95, .07);
}


/* =========================================================
   FORM ROW
   ========================================================= */

.goaf-feedback__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    margin-bottom: 16px;
}


/* =========================================================
   FORM FIELD
   ========================================================= */

.goaf-feedback__field {
    min-width: 0;
}

.goaf-feedback__field label {
    display: block;
    margin-bottom: 6px;

    color: var(--goaf-feedback-text);

    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.goaf-feedback__field label span {
    color: var(--goaf-feedback-required);
    font-weight: 700;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
   ========================================================= */

.goaf-feedback__field input,
.goaf-feedback__field select,
.goaf-feedback__field textarea {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid var(--goaf-feedback-border);
    border-radius: 6px;

    background: #fff;
    color: #26364a;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.goaf-feedback__field input,
.goaf-feedback__field select {
    height: 40px;
    padding: 0 12px;
}

.goaf-feedback__field textarea {
    min-height: 76px;
    padding: 10px 12px;

    resize: vertical;
    line-height: 1.45;
}

.goaf-feedback__field input::placeholder,
.goaf-feedback__field textarea::placeholder {
    color: #9aa8b8;
}

.goaf-feedback__field input:hover,
.goaf-feedback__field select:hover,
.goaf-feedback__field textarea:hover {
    border-color: #b8c9dc;
}

.goaf-feedback__field input:focus,
.goaf-feedback__field select:focus,
.goaf-feedback__field textarea:focus {
    border-color: var(--goaf-feedback-accent);

    box-shadow: 0 0 0 3px rgba(13, 110, 253, .09);

    background: #fcfdff;
}


/* =========================================================
   CAPTCHA
   ========================================================= */

.goaf-feedback__captcha-box {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
}

.goaf-feedback__captcha-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    width: 135px;
    height: 40px;

    overflow: hidden;

    border: 1px solid #d7dee7;
    border-radius: 5px;

    background:
        repeating-linear-gradient(
            -15deg,
            #eef3f8 0,
            #eef3f8 3px,
            #ffffff 3px,
            #ffffff 7px
        );

    user-select: none;
}

.goaf-feedback__captcha-image span {
    display: inline-block;

    color: #293e62;

    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 700;
}

.goaf-feedback__captcha-image span:nth-child(1) {
    transform: rotate(-8deg);
}

.goaf-feedback__captcha-image span:nth-child(2) {
    transform: rotate(7deg);
}

.goaf-feedback__captcha-image span:nth-child(3) {
    transform: rotate(-4deg);
}

.goaf-feedback__captcha-image span:nth-child(4) {
    transform: rotate(9deg);
}

.goaf-feedback__captcha-image span:nth-child(5) {
    transform: rotate(-6deg);
}

.goaf-feedback__captcha-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 1px solid #cbd7e4;
    border-radius: 5px;

    background: #f7faff;
    color: var(--goaf-feedback-primary);

    font-size: 20px;
    cursor: pointer;

    transition: .2s ease;
}

.goaf-feedback__captcha-refresh:hover {
    background: #eaf2fb;
    border-color: #a9bdd5;
    transform: rotate(90deg);
}


/* =========================================================
   FOOTER
   ========================================================= */

.goaf-feedback__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 5px;
    padding-top: 16px;

    border-top: 1px solid #edf1f5;
}

.goaf-feedback__required {
    margin: 0;

    color: var(--goaf-feedback-muted);

    font-size: 11px;
}

.goaf-feedback__required span {
    color: var(--goaf-feedback-required);
    font-weight: 700;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.goaf-feedback__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 145px;
    height: 40px;
    padding: 0 18px;

    border: 0;
    border-radius: 6px;

    background: var(--goaf-feedback-primary);
    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 5px 12px rgba(23, 74, 156, .16);

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.goaf-feedback__submit span {
    font-size: 17px;
    line-height: 1;
    transition: transform .2s ease;
}

.goaf-feedback__submit:hover {
    background: var(--goaf-feedback-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(23, 74, 156, .22);
}

.goaf-feedback__submit:hover span {
    transform: translateX(3px);
}

.goaf-feedback__submit:active {
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .goaf-feedback {
        padding: 25px 15px;
    }

    .goaf-feedback__form {
        padding: 20px 18px;
        border-radius: 11px;
    }

    .goaf-feedback__row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .goaf-feedback__title {
        font-size: 22px;
    }

    .goaf-feedback__intro {
        font-size: 12px;
    }

    .goaf-feedback__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .goaf-feedback__submit {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .goaf-feedback {
        padding: 20px 10px;
    }

    .goaf-feedback__form {
        padding: 17px 14px;
    }

    .goaf-feedback__title {
        font-size: 20px;
    }

    .goaf-feedback__eyebrow {
        font-size: 10px;
    }

    .goaf-feedback__captcha-image {
        width: 125px;
    }
}


/*====================================
GOAF PRIVACY POLICY
====================================*/


.goaf-policy-box{
    background:#fff;
    border:1px solid #dce5f1;
    border-radius:8px;
    overflow:hidden;
}



.goaf-policy-head h2{
    margin:0;
    color:#fff;
    font-size:28px;
    font-weight:600;
}

.goaf-policy-body{
    display:grid;
    grid-template-columns:2.4fr 1fr;
}

.goaf-policy-content{
    padding:24px 28px;
}

.goaf-policy-content p{
    margin:0 0 18px;
    color:#4b5563;
    font-size:15px;
    line-height:1.8;
    text-align:justify;
}

.goaf-policy-content p:last-child{
    margin-bottom:0;
}

.goaf-policy-side{
    background:#f7f9fc;
    border-left:1px solid #e3eaf5;
    padding:24px;
}

.goaf-policy-side h4{
    margin:0 0 18px;
    color:#174a9c;
    font-size:18px;
    font-weight:600;
}

.goaf-policy-side ul{
    margin:0;
    padding:0;
    list-style:none;
}

.goaf-policy-side li{
    position:relative;
    padding:0 0 14px 22px;
    color:#555;
    line-height:1.6;
    font-size:14px;
}

.goaf-policy-side li:last-child{
    padding-bottom:0;
}

.goaf-policy-side li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#174a9c;
    font-weight:700;
}

@media(max-width:768px){

.goaf-policy-body{
    grid-template-columns:1fr;
}

.goaf-policy-side{
    border-left:none;
    border-top:1px solid #e3eaf5;
}

.goaf-policy-head h2{
    font-size:24px;
}

}


/* =========================================================
   GOAF EXTERNAL LINKS
   Government Website Footer Section
========================================================= */

.goaf-external-links {
    --goaf-ext-primary: #1f287f;
    --goaf-ext-primary-dark: #171d69;
    --goaf-ext-text: #ffffff;
    --goaf-ext-muted: #cbd1f2;
    --goaf-ext-border: rgba(255, 255, 255, 0.18);
    --goaf-ext-hover: rgba(255, 255, 255, 0.08);

    width: 100%;
    padding: 34px 20px;

    box-sizing: border-box;

    background:#20207C;

    font-family:
        "Noto Sans",
        "Segoe UI",
        Arial,
        sans-serif;
}


/* =========================================================
   CONTAINER
========================================================= */

.goaf-external-links
.goaf-external-links__container {

    width: min(100%, 1080px);

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.goaf-external-links
.goaf-external-links__header {

    margin-bottom: 22px;
}


/* Eyebrow */

.goaf-external-links
.goaf-external-links__header
.goaf-external-links__eyebrow {

    display: block;

    margin-bottom: 5px;

    color: #dce2ff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* Heading */

.goaf-external-links
.goaf-external-links__header
h2 {

    margin: 0;

    color: var(--goaf-ext-text);

    font-size: 22px;

    line-height: 1.3;

    font-weight: 600;
}


/* Heading line */

.goaf-external-links
.goaf-external-links__header
.goaf-external-links__line {

    display: block;

    width: 58px;

    height: 2px;

    margin-top: 9px;

    background: #ffffff;

    opacity: .9;
}


/* =========================================================
   LINKS GRID
========================================================= */

.goaf-external-links
.goaf-external-links__grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px 14px;
}


/* =========================================================
   LINK ITEM
========================================================= */

.goaf-external-links
.goaf-external-links__grid
.goaf-external-links__item {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 58px;

    padding: 9px 12px;

    box-sizing: border-box;

    border: 1px solid var(--goaf-ext-border);

    border-radius: 4px;

    background: transparent;

    color: var(--goaf-ext-text);

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


/* =========================================================
   LEFT ARROW
========================================================= */

.goaf-external-links
.goaf-external-links__item
.goaf-external-links__icon {

    flex: 0 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    color: #dce2ff;

    font-size: 22px;

    line-height: 1;

    transition:
        transform .2s ease,
        color .2s ease;
}


/* =========================================================
   LINK CONTENT
========================================================= */

.goaf-external-links
.goaf-external-links__item
.goaf-external-links__content {

    display: flex;

    flex-direction: column;

    min-width: 0;

    padding-right: 10px;
}


/* Main link title */

.goaf-external-links
.goaf-external-links__item
.goaf-external-links__content
strong {

    overflow: hidden;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* Description */

.goaf-external-links
.goaf-external-links__item
.goaf-external-links__content
small {

    margin-top: 2px;

    overflow: hidden;

    color: var(--goaf-ext-muted);

    font-size: 10px;

    line-height: 1.35;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   EXTERNAL ICON
========================================================= */

.goaf-external-links
.goaf-external-links__item
.goaf-external-links__external {

    margin-left: auto;

    flex: 0 0 auto;

    color: #cbd5ff;

    font-size: 15px;

    line-height: 1;

    opacity: .75;

    transition:
        opacity .2s ease,
        transform .2s ease;
}


/* =========================================================
   HOVER
========================================================= */

.goaf-external-links
.goaf-external-links__item:hover {

    background: var(--goaf-ext-hover);

    border-color: rgba(255, 255, 255, .35);

    transform: translateY(-2px);
}


.goaf-external-links
.goaf-external-links__item:hover
.goaf-external-links__icon {

    color: #ffffff;

    transform: translateX(3px);
}


.goaf-external-links
.goaf-external-links__item:hover
.goaf-external-links__external {

    opacity: 1;

    transform: translate(2px, -2px);
}


/* =========================================================
   KEYBOARD ACCESSIBILITY
========================================================= */

.goaf-external-links
.goaf-external-links__item:focus-visible {

    outline: 2px solid #ffffff;

    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .goaf-external-links
    .goaf-external-links__grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .goaf-external-links {

        padding: 28px 15px;
    }

    .goaf-external-links
    .goaf-external-links__header {

        margin-bottom: 17px;
    }

    .goaf-external-links
    .goaf-external-links__header
    h2 {

        font-size: 19px;
    }

    .goaf-external-links
    .goaf-external-links__grid {

        grid-template-columns: 1fr;

        gap: 8px;
    }

    .goaf-external-links
    .goaf-external-links__grid
    .goaf-external-links__item {

        min-height: 53px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .goaf-external-links {

        padding: 24px 12px;
    }

    .goaf-external-links
    .goaf-external-links__item
    .goaf-external-links__content
    strong {

        font-size: 12px;
    }

    .goaf-external-links
    .goaf-external-links__item
    .goaf-external-links__content
    small {

        font-size: 9.5px;
    }
}


/*==================================================
CPS SECTION
==================================================*/



/*==================================================
Heading
==================================================*/

.ncb-cps-section .ncb-cps-heading{

    text-align:center;

    margin-bottom:40px;

}

.ncb-cps-section .ncb-cps-heading span{

    display:inline-block;

    background:#e9f1fb;

    color:#0b4f9d;

    padding:7px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.ncb-cps-section .ncb-cps-heading h2{

    font-size:38px;

    color:#0d2f57;

    margin-bottom:15px;

    font-weight:700;

}

.ncb-cps-section .ncb-cps-heading p{

    max-width:760px;

    margin:auto;

    color:#555;

    line-height:1.8;

}

/*==================================================
Banner
==================================================*/

.ncb-cps-section .ncb-cps-banner{

    margin-bottom:45px;

}

.ncb-cps-section .ncb-cps-banner img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    border-radius:12px;

}

/*==================================================
Content Box
==================================================*/

.ncb-cps-section .ncb-cps-content-box{

    background:#fff;

    border:1px solid #dfe7f2;

    border-radius:10px;

    padding:35px;

    margin-bottom:35px;

}

.ncb-cps-section .ncb-cps-title{

    margin-bottom:22px;

    border-left:5px solid #0b4f9d;

    padding-left:18px;

}

.ncb-cps-section .ncb-cps-title h3{

    font-size:26px;

    color:#123d7a;

    margin:0;

    font-weight:700;

}

.ncb-cps-section .ncb-cps-content-box p{

    font-size:17px;

    color:#4b5563;

    line-height:2;

    text-align:justify;

    margin-bottom:20px;

}

.ncb-cps-section .ncb-cps-content-box p:last-child{

    margin-bottom:0;

}

.ncb-cps-section .ncb-cps-content-box strong{

    color:#123d7a;

}

/*==================================================
Responsive
==================================================*/

@media(max-width:768px){

.ncb-cps-section{

padding:50px 0;

}

.ncb-cps-section .ncb-cps-heading h2{

font-size:30px;

}

.ncb-cps-section .ncb-cps-banner img{

height:240px;

}

.ncb-cps-section .ncb-cps-content-box{

padding:25px;

}

.ncb-cps-section .ncb-cps-content-box p{

font-size:15px;

line-height:1.9;

}

}
/*=========================================
CPS TABLE
=========================================*/

.ncb-cps-table-wrapper{

    margin:40px 0;

    overflow-x:auto;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.ncb-cps-table{

    width:100%;

    border-collapse:collapse;

    min-width:700px;

    background:#fff;

}

/*====================
Header
====================*/

.ncb-cps-table thead th{

    background:linear-gradient(135deg,#0f4c81,#1b6ca8);

    color:#fff;

    padding:18px 16px;

    text-align:left;

    font-size:15px;

    font-weight:600;

    border-right:1px solid rgba(255,255,255,.15);

}

.ncb-cps-table thead th:last-child{

    border-right:none;

}

.ncb-cps-table thead small{

    display:block;

    margin-top:6px;

    font-size:12px;

    font-weight:400;

    opacity:.9;

}

/*====================
Body
====================*/

.ncb-cps-table tbody td{

    padding:16px;

    border:1px solid #e5ebf3;

    font-size:15px;

    color:#444;

}

.ncb-cps-table tbody tr:nth-child(even){

    background:#f8fbff;

}

.ncb-cps-table tbody tr:hover{

    background:#eef6ff;

    transition:.3s;

}

.ncb-cps-table tbody td:first-child{

    width:70px;

    text-align:center;

    font-weight:600;

    color:#0f4c81;

}

.ncb-cps-table tbody td:nth-child(2){

    font-weight:600;

    color:#123d7a;

}

/*====================
Responsive
====================*/

@media(max-width:768px){

.ncb-cps-table thead th,

.ncb-cps-table tbody td{

    padding:14px;

    font-size:14px;

}

}


/*=====================================
CPS INFO
======================================*/

.ncb-cps-info{
    margin-top:35px;
}

.ncb-cps-info .ncb-cps-info-box{
    background:#fff;
    border:1px solid #dfe6ef;
    border-left:4px solid #0b5ed7;
    border-radius:8px;
    padding:22px 24px;
    margin-bottom:22px;
}

.ncb-cps-info .ncb-cps-info-box h3{
    margin:0 0 15px;
    color:#0b3d91;
    font-size:22px;
    font-weight:700;
}

.ncb-cps-info .ncb-cps-info-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.ncb-cps-info .ncb-cps-info-box ul li{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    line-height:1.7;
    color:#444;
}

.ncb-cps-info .ncb-cps-info-box ul li:last-child{
    margin-bottom:0;
}

.ncb-cps-info .ncb-cps-info-box ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:11px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#0b5ed7;
}

.ncb-cps-info .ncb-cps-way-forward{
    background:#eef6ff;
    border-left:4px solid #0b5ed7;
    border-radius:8px;
    padding:22px 24px;
}

.ncb-cps-info .ncb-cps-way-forward h3{
    margin:0 0 12px;
    color:#0b3d91;
    font-size:22px;
    font-weight:700;
}

.ncb-cps-info .ncb-cps-way-forward p{
    margin:0;
    line-height:1.8;
    color:#444;
}

@media(max-width:768px){

.ncb-cps-info .ncb-cps-info-box,
.ncb-cps-info .ncb-cps-way-forward{
    padding:18px;
}

.ncb-cps-info .ncb-cps-info-box h3,
.ncb-cps-info .ncb-cps-way-forward h3{
    font-size:20px;
}

}


/* Start 10 august */
.goaf-documents-section {
    margin-top: 50px;
}

.goaf-documents-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.goaf-documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.goaf-document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    transition: all 0.25s ease;
}

.goaf-document-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.goaf-document-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #f3f4f6;
    font-size: 24px;
}

.goaf-document-content {
    flex: 1;
}

.goaf-document-title {
    margin: 0 0 7px;
    font-size: 17px;
    font-weight: 600;
}

.goaf-document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #777;
}

.goaf-document-action {
    display: flex;
    gap: 8px;
}

@media (max-width: 767px) {

    .goaf-document-item {
        flex-wrap: wrap;
    }

    .goaf-document-content {
        width: calc(100% - 72px);
    }

    .goaf-document-action {
        width: 100%;
    }

    .goaf-document-action .btn {
        flex: 1;
    }

}