@charset "UTF-8";
/*Theme default CSS*/
:root {
  --kl-font:'Syne', sans-serif;
  --kl-title:"Big Shoulders Display", sans-serif;
  --kl-text:'Syne', sans-serif;
  --kl-primary:#cc4427;
  --kl-secondary:#195d71;
  --kl-tertiary:#06416F;	
  --kl-base:#61CE70;
  --kl-accent:#ff781f;
  --kl-black:#1E1E1E;
  --kl-white:#ffffff;
  --kl-gray:#F9F9F9;	
  --kl-text-body:#363636;
  --kl-text-dark:#1d1e20;
  --kl-text-light:#d27bfd;
  --kl-text-primary:#391e6c;
  --kl-bg-dark:#23013c;
  --kl-bg-primary:#f6f4ff;
  --kl-bg-secondary:#f2f2f2;
  --kl-bg-light:#f4f5ff;
  --kl-bg-light-2:#F3F7FA;
  --kl-bg-light-3:#f5f6fc;
  --kl-border-dark:#212529;
  --kl-border-light:#eeebf2;
 --bg-purple-gradiunt: linear-gradient(313deg, #673de6 0%, #3f169a 100%);
}
body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family:var(--kl-font);
  color:var(--kl-text-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family:var(--kl-title);	
  color:var(--kl-black);
  font-weight: bold;
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
a {
  text-decoration:none;
  outline:none!important;
  cursor:pointer;
  color:var( --kl-primary);
  transition:all .4s ease-in-out
}
a:hover {
  color:var( --kl-secondary)
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
}
a, i, button, img, input, span,
*:before, *:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
*:focus {
  outline: 0px solid;
}

a:focus {
  color: inherit;
  outline: medium none;
  -webkit-transform: scale(1);
          transform: scale(1);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.rotate-315 {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.opacity-60 {
  opacity: 0.6 !important;
}
/*Common Class*/
.fix {
  overflow: hidden;
}
.clear {
  clear: both;
}
.float-start {
  float: left;
}
.float-end {
  float: right;
}
.section {
  width: 100%;
  overflow:hidden;	
}
.bg-gray {background-color:var( --kl-bg-light-2);}
.section.bg-white {background-color: #fff;}
.bg-primary-cs {background: var(--kl-primary);}
.bg-secondary-cs {background:var(--kl-accent);}
.section-primary-bg {background:var(--kl-bg-primary);}
.image-anime{
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.overlay-anim {
  position: relative;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
          animation: bounce-y 10s infinite linear;
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 10s infinite linear;
          animation: bounce-x 10s infinite linear;
}
@-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);
  }
}
/*Section Title*/
.section-title .title {
  font-size: 42px;
  color:var(--kl-primary);
  line-height: 28px;
  padding-bottom: 20px;
  margin: 0;
  position: relative;
  font-weight: 600;
}
.section-title .title span {color:var(--kl-secondary);}
.section-title p {
  color: var(--kl-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  font-style: italic;
}
.section-title .sub-title {
	font-size:21px;
	font-weight:600;
	line-height:52px;
	color: var(--kl-secondary);
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 22px;
  }
	.section-title .sub-title {font-size: 18px;}
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
.section-title .title {font-size: 36px;}
}
@media only screen and (max-width: 479px) {
  .section-title .title {
    font-size:27px;
    line-height:32px;
    padding-bottom: 15px;
  }
}
.section-title.title-white h1 {
  color: #fff;
}
.section-title.title-white h1::before {
  border-color: #fff;
}

.page-banner-area {
  background: var(--kl-bg-light-2);
  border-bottom: 1px solid #e3ecf2;
  border-top: 1px solid #e3ecf2;
}
.page-banner-area .page-banner h2 {
  color:var(--kl-secondary);
  text-transform: uppercase;
  font-weight: 700;
  font-family: Montserrat;
}
.page-banner-area .page-banner .breadcrumb {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
}
.page-banner-area .page-banner .breadcrumb li a {
  font-size: 16px;
  color:var(--kl-black);
}
.page-banner-area .page-banner .breadcrumb li a:hover {
  color:var(--kl-tertiary);
}
.page-banner-area .page-banner .breadcrumb li + li::before {
  font-size:12px;
   color:var(--kl-black);
  content: "/Â ";
  padding: 0 5px;
	
}

form {
  margin-left: -10px;
  margin-right: -10px;
}

.input-box {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
  float: left;
  display: block;
}
.input-box input[type=text] {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 40px;
  line-height: 24px;
  padding: 7px 15px;
}
.input-box input[type=email] {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 40px;
  line-height: 24px;
  padding: 7px 15px;
}
.input-box textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 150px;
  line-height: 24px;
  padding: 7px 15px;
}
.input-box input[type=submit] {
  display: block;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 40px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 7px 45px;
  text-transform: uppercase;
}
.input-box input[type=submit]:hover {
  background-color: #26547c;
  color: #fff;
}
.submit-box {
  width: auto;
  margin-bottom: 0;
}
.input-box-2 {
  width: 100%;
  float: left;
  display: block;
}
.input-box-2 .input-box {
  width: 50%;
}
@media only screen and (max-width: 479px) {
  .input-box-2 .input-box {
    width: 100%;
  }
}
.primary-btn {
 background: var(--kl-primary);
  color:var(--kl-white);
  display: inline-block;
  padding:18px 30px;
  border: 0;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius:0px;
  font-weight:500;
  font-size:18px;
  line-height:18px;
}
.primary-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius:30px;
  background:var(--kl-secondary);
  opacity: 0;
  z-index: -1;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:active  {
  background:var(--kl-secondary);
  color: var(--kl-white);
}
.primary-btn:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .primary-btn {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .primary-btn {
    padding:18px 32px;
    font-size: 14px;
  }
}
.secondary-btn {
  background: var(--kl-accent);
  color: var(--kl-black);
  display: inline-block;
  padding:18px 45px;
  border-radius:3px;
  font-weight: 600;	
  text-transform:uppercase;
  font-size: 18px;	
  line-height:18px;	
}
@media (max-width: 991px) {
  .secondary-btn {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active {
  background: #d2b808;
  color: var(--kl-black);
}

@media (max-width: 767px) {
  .secondary-btn {
    padding:18px 32px;
    font-size: 13px;
  }
}
.tertiary-btn {
  background:var(--kl-primary);
  color:var(--kl-white);
  display: inline-block;
  padding: 18px 45px;
  border: 0;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius:3px;
  font-weight: 600;
  font-size:18px;
  line-height:18px;
}
.tertiary-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius:18px;
  background:var(--kl-accent);
  opacity: 0;
  z-index: -1;
}
.tertiary-btn:hover, .tertiary-btn:focus, .tertiary-btn:active  {
  background:var(--kl-accent);
  color:var(--kl-white);
}
.tertiary-btn:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .tertiary-btn {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .tertiary-btn {
    padding:18px 36px;
    font-size: 14px;
  }
}
.row {
  --bs-gutter-x: 30px;
}
/*Header Area Start Here*/
/*-- Header Area --*/
.header-area {
  float: left;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  background-color: #fff;
  z-index:999;
  padding-right: 60px;
  padding-left: 60px;	
}
.header-area.stick {
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header-area.stick .header-search {
  padding: 26px 0;
}
@media only screen and (max-width: 767px) {
  .header-area.stick .header-search {
    padding: 16px 0;
  }
}
.header-area.stick .main-menu {
  margin: 26px 0;
}
@media only screen and (max-width: 767px) {
  .header-area.stick .main-menu {
    margin: 0;
  }
}
.header-area .logo {
  display: inline-block;
  margin: 15px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .logo {
    width: 140px;
  }
}
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.header-area {padding-right: 0px;padding-left: 0px;}
}
@media only screen and (max-width: 767px) {
  .header-area .logo {
    width:230px;
  }
  .header-area {
  padding-right:10px;
  padding-left:10px;	
}
.header-contact-info {display:none !important;}	
}
.header-area .logo img {
  width: 100%;
}
@media only screen and (max-device-width: 480px) {
	.header-contact-info {display:none !important;}	
}
/*-- Animation For Stick Menu --*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
    transform: none;
  }
}
/*-- Menu Toggle --*/
.header-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-buttons .mobile-login-btn {
  border: 1px solid var(--kl-primary);
  border-radius: 3px;
  padding:5px 7px;
  color: var(--kl-primary);
  font-weight: 600;
}
.header-buttons .mobile-call {
  color: var(--kl-primary);
  margin-top:4px;
  margin-right:12px;	
  font-size:24px;	
}
.menu-toggle {
  margin-left: 20px;
  width:45px;
  height:40px;
  border:none;
  background-color:var(--kl-primary);
  border-radius:3px;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.menu-toggle:hover {
  background-color:var(--kl-primary);
}
@media only screen and (max-width: 767px) {
  .menu-toggle {
    margin-left: 15px;
  }
}
.menu-toggle i {
  display: block;
  font-size: 16px;
  line-height: 28px;
}
/*-- Call Us --*/
.header-contact-info {
  padding:24px 0;
  position: relative;
  display: flex;
  align-items: center;	
}
.header-contact-info .info__item--call {
  display:flex;
  align-items:center;
  /*margin-right: 20px;*/	
  gap:9px;
  transition: all 0.7s ease-in-out;
  z-index: 1;
  background-color: var(--kl-secondary);
  border-radius:100px;
  padding:9px 18px;	
}
.header-contact-info .info__item__icon {
  font-size:20px;
  color:var(--kl-secondary);
  line-height:50px;
  width:50px;
  height:50px;
  border-radius:500px;
  margin-left:0;
  display:flex;
  justify-content: center;
  align-items:center;
  background:var(--kl-white);
  box-shadow: 0 0 40px rgba(0,0,0,.15);	
  position:relative;
  transition:all 0.4s ease-in-out;
}
.header-contact-info .info__item__icon .fa-phone {
  transform: scaleX(-1);
}

.header-contact-info .info__item__content__text {
  color:var(--kl-white);
  font-family: var(--kl-font);
  font-size:14px;
  font-style:normal;
  font-weight:700;
  line-height:30px;
  margin-bottom: -3px;
}
.header-contact-info .info__item__content__call {
  margin-top: -9px;
  color:var(--kl-white);
  font-family: var(--kl-font);
  font-size:21px;
  font-style: normal;
  font-weight: 700;
  line-height: 166.667%;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: all 500ms ease;
}
.header-contact-info .info__item:last-child i {
  margin-right: 0;
}
.header-contact-info .call-btn {
	font-weight:700;
	padding: 6px 12px;
	font-size:18px;
	color:var(--kl-black);
}
.header-contact-info .call-btn i {font-size:24px;}
.header-contact-info .call-btn:hover {
	color:var(--kl-primary)
}
.header-contact-info .call-btn .fa-phone {
  transform: scaleX(-1);
}
.header-contact-info .donate-btn {
  background:var(--kl-tertiary);
  color: var(--kl-white);
  padding:9px 24px;
  border-radius:16px;
  font-weight:600;
}
.header-contact-info .donate-btn:hover {
	background:var(--kl-primary);
	color:var(--kl-black);
}
@media only screen and (max-width: 767px) {
	.header-call {
    padding: 26px 0;
    position: static;
  }
}
/*-- Menu --*/
.main-menu {
  margin: 36px 0;
}

@media only screen and (max-width: 767px) {
  .main-menu {
    margin: 0;
    width: 100%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .main-menu nav {
    padding-bottom: 10px;
  }
}
.main-menu nav ul li {
  display: block;
  float: left;
  margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu nav ul li {
    margin-left: 18px;
  }
  .header-contact-info .info__item__content__call {font-size: 16px}	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu nav ul li {margin-left:10px;}
  .login-btn {display:none;}
  .header-contact-info .info__item__icon{line-height:42px;width:42px;height:42px;font-size:16px;}
  .header-contact-info .info__item--call{margin-right:5px;gap:6px;}
  .header-contact-info .info__item__content__call {font-size:16px;margin-right:5px !important;}	
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li {
    float: none;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.main-menu nav ul li:first-child {
  margin-left: 0;
}
.main-menu nav ul li a {
  border-top: 1px solid transparent;
  display: block;
  font-size: 18px;
  color: var(--kl-black);
  line-height: 22px;
  font-weight: 500;
  margin: 3px 0 2px;
}
/*.main-menu nav ul li a span {
  position: absolute;
  right: 10px;
  top: 3px;
  width: 42px;
  height: 16px;
  font-weight: 600;
  line-height: 1.6em;
  border-radius: 50px;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--kl-base);
  background-color: var(--kl-primary);
  text-align: center;
}*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu nav ul li a {
    font-size: 13px;
  }
}
.main-menu nav ul li a:hover {
  color:var(--kl-primary);
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li a:hover {
    border-color: transparent;
  }
}
.main-menu nav ul li.active a {
  color:var(--kl-primary);
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li.active a {
    border-color: transparent;
  }
}


/*About Section*/
.about-section {
  position: relative;
  padding:160px 0;
}
.about-section  .section-title .title {font-size: 27px;padding-bottom: 10px;}
@media (max-width: 991.98px) {
  .about-section {
    padding: 0 0 75px;
  }
}
.about-section .icon-plane {
  position: absolute;
  top:180px;
  right:100px;
  width:106px;
  height:639px;
  background-image: url(../images/icon-plane.png);
}
@media (max-width: 1199.98px) {
  .about-section .icon-plane {
    display: none;
  }
}
.about-section .content-column .inner-column .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom:15px;
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .info-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
	  
    text-align: center;
  }
	.about-section .content-column .inner-column .info-box .title {
  padding-left: 15px;
}
}
.about-section .content-column .inner-column .info-box:last-child {
  margin-bottom: 0;
}
.about-section .content-column .inner-column .info-box .icon {
  color:var(--kl-white);
  font-size:21px;
  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;
  min-width:50px;
  min-height:50px;
  border-radius: 50%;
  background-color:var(--kl-secondary);
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .info-box .icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.about-section .content-column .inner-column .info-box .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;	
}
.about-section .content-column .inner-column .info-box .title br {
  display: none;
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .info-box .title br {
    display: block;
  }
}
.about-section .content-column .inner-column .author-box .inner-box {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #f3f4f7;
  margin-left: 22px;
  padding: 0 0 20px;
}
@media (max-width: 767.98px) {
  .about-section .content-column .inner-column .author-box .inner-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 0;
    padding: 0 55px 20px;
    margin-top: 55px;
  }
}
.about-section .content-column .inner-column .author-box .inner-box:hover .author-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.about-section .content-column .inner-column .author-box .inner-box .author-img {
  border-radius: 50%;
  position: relative;
  margin-top: -25px;
  margin-bottom: 10px;
  overflow: hidden;
}
.about-section .content-column .inner-column .author-box .inner-box .author-img img {
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section .content-column .inner-column .author-box .inner-box .author-info {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-section .content-column .inner-column .author-box .inner-box .author-info .name {
  margin-bottom: 0;
  line-height: 1;
}
.about-section .content-column .inner-column .author-box .inner-box .author-info .designation {
  color: #4c4d56;
  font-size: 12px;
}
.about-section .content-column .inner-column .list-style-one {
  margin-top: 32px;
}

@media (max-width: 991.98px) {
  .about-section .image-column {
    display: none;
  }
}
.about-section .image-column .inner-column {
  position: relative;
  padding-right: 50px;
}
.about-section .image-column .inner-column:before {
  position: absolute;
  content: "";
  bottom: -68px;
  left: 0;
  background-color:var(--kl-secondary);
  width: 169px;
  height: 16px;
  -webkit-animation: bounce-x 10s infinite linear;
          animation: bounce-x 10s infinite linear;
}
.about-section .image-column .image-box {
  position: relative;
}
.about-section .image-column .image-box .image {
  margin-bottom: 0;
}
.about-section .image-column .image-box .image img {
  width: 100%;
}
.about-section .image-column .image-box .image-2 {
  margin-bottom: 0;
  border:10px solid var(--kl-white);
  position: absolute;
  top:150px;
  right:-150px;
}

.about-section .exp-box {
  position: absolute;
  right: -50px;
  bottom: -147px;
}
.about-section .exp-box:hover .inner .icon {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.about-section .exp-box .inner {
  background-color:var(--kl-primary);
  width: 269px;
  height: 240px;
  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;
  -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;
  position: relative;
  padding: 32px 0;
}
.about-section .exp-box .inner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.about-section .exp-box .inner .icon {
  color:var(--kl-white);
  font-size: 50px;
  position: absolute;
  top: 0;
  width: 132px;
  height: 102px;
  background-color: rgba(255, 255, 255, 0.1);
  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;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section .exp-box .inner .count {
  color:var(--kl-white);
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-section .exp-box .inner .title {
  color:var(--kl-white);
}
/*Services Offered Area Start Here*/
.services-offered-list {
    padding:30px;
	background: var( --kl-bg-light-2);
	border-radius: 20px;
}
.services-offered-list .section-title .title {font-size: 32px;}
.services-offered-list p {
    color: #1a1b1e;
    font-size:16px;
    line-height:32px;
}
.services-offered-list ul li {
	color: #1a1b1e;
  font-size: 16px;
  line-height: 32px;
}
.services-offered-list ul li::before {
  font-family: "Font Awesome 6 Pro";
  content: '\f058';
  margin: 0 10px 0 3px;
  font-size: 16px;
  color: var(--kl-secondary);
  font-weight: 600;
}
.services-offered {
  position: relative;
  display: block;
  padding:90px 0 90px;
  z-index: 1;
}
.services-offered-left {
  position: relative;
  display: block;
}
.services-offered-left p {font-size:16px;line-height:28px;}
.services-offered-left .section-title {
  margin-bottom: 25px;
}
.services-offered-points {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
}
.services-offered-points li {
  position: relative;
  display: flex;
}
.services-offered-points li+li {
  margin-top:25px;
}
.services-offered-points li .icon {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-offered-points li .icon.sea{align-items: flex-start;}
.services-offered-points li .icon span {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;	
  background-color: var(--kl-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.services-offered-points li:hover .icon span {
  transform: scale(.9);
}
.services-offered-points li .content {
  position: relative;
  display: block;
  margin-left: 30px;
}
.services-offered-points li .content ul li{font-size:16px;margin-top:10px;margin-left:18px;}
.services-offered-points li .content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}
.services-offered-points li .content p {
  font-size: 16px;
  line-height: 28px;
}
.services-offered-right {
  position: relative;
  display: block;
  margin-left: 110px;
}
.services-offered-right-kl {margin-right:110px;margin-left:0;}
.services-offered-right-img {
  position: relative;
  display: block;
  z-index: 1;
}
.services-offered-right-img img {
  width: 100%;
}
.services-offered-shape {
  position: absolute;
  top: -32px;
  left: -37px;
  z-index: -1;
}
.services-offered-shape img {
  width: auto;
}
.industries-served-list {
  background:#fff;
  border-radius:20px;
  padding:30px;
}
.industries-served-list h4 {
	font-size:21px;
  color: var(--kl-primary);
}
.industries-served-list ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}
.industries-served-list ul li{
    background-image: url('../images/arrow.svg');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 25px;
	font-size: 16px;
	color: var(--kl-black);
	font-weight: 400;
    width: calc(50% - 15px); /* Adjust gap as needed */
}
.industries-served-list ul li:last-child{
	margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
	.industries-served-list ul li {width: 100%;}
	.services-offered-right{margin-left: 0px;}
	.services-offered-right-kl {margin-right: 0px;margin-bottom:55px;}
	.fot-contact-info.box-style2 {  margin-bottom: 15px;}
}
.about-shape {
  position: absolute;
  z-index: 1;
}
.about-shape.ashape-2 {
  bottom: 0;
  left: -20px;
}

.services-offered-img{
  position: relative;
}

.services-offered-img::before{
  content: "";
  position: absolute;
  left:15px;
  bottom: 0;
  width:100%;
  height: 90%;
  background:var(--kl-primary);
  border-radius: 50px;
  transform: rotate(5deg);
  opacity: .2;
  z-index: -1;
}

.services-offered-img img{
  width:100%;
  border-radius: 50px;
}
/*Services Offered Area End Here*/
.work-process {
	padding:60px 0;
	position:relative;
}
.work-shape {
  position: absolute;
  z-index: 1;
}
.work-shape.pshape-1 {
  right: 11%;
  top: 26%;
  animation: float-bob-y infinite 5s linear;
}
.work-shape.pshape-2 {
  left: 7.5%;
  top: 28%;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
.work-shape.pshape-3 {
  left: 12.39%;
  bottom: 12%;
  animation: scale-up-one infinite 3s linear;
}
.work-shape.pshape-4 {
  right: 8%;
  bottom: 16%;
  animation: rotation infinite 5s alternate-reverse;
}

.single-work {
  text-align: center;
  position: relative;
  z-index: 1;
}
.single-work__icon {
  background-color: #E7F4F7;
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  line-height: 120px;
  position: relative;
  z-index: 2;
}
.single-work .semi-title {
  color: #18152c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-work .semi-title {
    font-size: 18px;
  }
}
.sw-2::before {
  content: '';
  position: absolute;
  background:url("../images/dot-line.svg") no-repeat;
  width: 100%;
  height: 81px;
  left: -151px;
  top: -67px;
  z-index: -1;
  transform: rotate(5deg);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sw-2::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sw-2::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .sw-2::before {
    display: none;
  }
}
.sw-2 .single-work__icon {
  background-color: #F9F5ED;
}

.sw-3::before {
  content: '';
  position: absolute;
  background:url("../images/dot-line.svg") no-repeat;
  width: 100%;
  height: 81px;
  left: -151px;
  top: -68px;
  z-index: -1;
  transform: rotate(6deg);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sw-3::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sw-3::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .sw-3::before {
    display: none;
  }
}
.sw-3::after {
  content: '';
  position: absolute;
  background:url("../images/dot-line.svg") no-repeat;
  width: 100%;
  height: 81px;
  right: -151px;
  top: -58px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sw-3::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sw-3::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .sw-3::after {
    display: none;
  }
}
.sw-3 .single-work__icon {
  background-color: #FAF1F1;
}

.sw-4 .single-work__icon {
  background-color: #E9F3FF;
}
/*Clients Area Start Here*/
.clients-section-area {
  padding:60px 0;	
  position: relative;
}
.clients-section-area .client-slider .img {
  width:218px;
  height:76px;
  display: inline-block;
  border:1px solid #f2f2ed;	
}
/*Clients Area End Here*/
/*Start Banner CSS*/
.innerPage-banner {
    background:url("../images/page-header.jpg") no-repeat center center / cover;
    position: relative;
    z-index: 1;
    margin-top: 100px;
}
.innerPage-banner.vision{background:url("../images/vision-mission.jpg") no-repeat center center / cover;}
.innerPage-banner.services{background:url("../images/services.jpg") no-repeat center center / cover;}
.innerPage-banner.airlines{background:url("../images/airlines.jpg") no-repeat center center / cover;}
.innerPage-banner.networks{background:url("../images/networks.jpg") no-repeat center center / cover;}
.innerPage-banner.contact{background:url("../images/contact.jpg") no-repeat center center / cover;}
.innerPage-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 90, 0.52);
    top: 0;
    left: 0;
    z-index: -1;
}

.pageBanner-content > h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 110px;
    color: #fff;
}

.breadcrumbs {
    margin-top: 30px;
    padding: 10px 25px 8px;
    display: inline-block;
    background:var(--kl-primary);
    color: #fff;
}

.breadcrumbs > a,
.breadcrumbs > span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
}

.breadcrumbs > a + a,
.breadcrumbs > a + span {
    padding-left: 16px;
    margin-left: 10px;
    position: relative;
}

.breadcrumbs > a + a::before,
.breadcrumbs > a + span::before {
    position: absolute;
    content: '-';
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    left: 0;
    top: 0;
}

.pageBanner-content {
    padding: 124px 0 140px;
    position: relative;
    z-index: 3;
}

.breadcrumbs > a:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
	.pageBanner-content {padding:60px 0 50px;}
	.pageBanner-content > h1 {font-size: 72px;}
	.breadcrumbs {margin-top: 5px;}
	.contact-us-content, .contact-us-form {width:100% !important;}
	.contact-us-box {padding:20px !important;}
}
/*End Banner CSS*/
/*Start Line parallex CSS*/
.scroling-lines {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}

.scroling-lines > span {
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.scroling-lines span span {
    position: absolute;
    height: 20px;
    content: '';
    width: 100%;
    left: 0;
    display: block;
    background: white;
}

.scroling-lines > span:nth-child(1) {
    left: 15%;
}

.scroling-lines span:nth-child(1) span {
    top: 10%;
}

.scroling-lines > span:nth-child(2) {
    left: 33%;
}

.scroling-lines span:nth-child(2) span {
    top: 85%;
}

.scroling-lines > span:nth-child(3) {
    left: 51%;
}

.scroling-lines span:nth-child(3) span {
    top: 22%;
}

.scroling-lines > span:nth-child(4) {
    left: 69%;
}

.scroling-lines span:nth-child(4) span {
    top: 35%;
}

.scroling-lines > span:nth-child(5) {
    left: 87%;
}

.scroling-lines span:nth-child(5) span {
    top: 85%;
}
/*End Line parallex CSS*/
/*Vision, Mission & Values Section Start*/
.vision-mission{
	padding: 100px 0;
}
.vision-mission .section-title p {font-size:16px;}
.vision-mission-list{
	background:var( --kl-bg-light-2);
	border-radius: 20px;
	padding: 30px;
}
.vision-mission-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.vision-mission-list ul li{
    background-image: url('../images/arrow.svg');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 25px;
	font-size: 16px;
	color: var(--kl-black);
	font-weight: 400;
}
.vision-mission-list ul li:last-child{
	margin-bottom: 0;
}
.vision-mission-btn{
	margin-top: 40px;
}
.vision-mission-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
	margin-left: 15px;
}
.vision-mission-image-box-1{
	width: calc(48% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.vision-mission-image-box-2{
	width: calc(52% - 15px);
	margin-top: 100px;
}
.vision-mission-image{
	width: 100%;
}
.vision-mission-image figure{
	display: block;
	border-radius: 20px;
}
.vision-mission-image img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.vision-mission-image.why-img-1{
	aspect-ratio: 1 / 1.065;
}
.vision-mission-image.why-img-2 img{
    aspect-ratio: 1 / 0.78;
}
.vision-mission-image.why-img-3 img{
    aspect-ratio: 1 / 1.692;
}
/*Vision, Mission & Values Section End*/
.shipping-logos {
    position:relative;
}
.logo-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #dee2e6;
}

  .hover-effect:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }

  .logo-img {
    max-height: 60px;
    object-fit: contain;
  }

  @media (max-width: 576px) {
    .logo-img {
      max-height: 45px;
    }
  }
/*Global Networks Start Here*/
.global-networks-area {
	padding:120px 0;
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: right bottom;
	position: relative;
	z-index: 1;
}
.global-img {
	position: absolute;
	left: 5%;
}
@media (min-width: 2000px) {
	.global-img {
		position: absolute;
		left: 10%;
	}
}
@media (min-width: 2200px) {
	.global-img {
		position: absolute;
		left: 15%;
	}
}
@media (min-width: 2500px) {
	.global-img {
		position: absolute;
		left: 18%;
	}
}

.card-global-networks{
	background:var(--kl-bg-light-2);
	padding: 50px;
}

ul.list-global-networks{
	padding: 0;
	margin: 0;
	list-style: none;
}

ul.list-global-networks li {
	position: relative;
	z-index: 1;
	padding-left: 30px;
	margin-top: 12px;
    font-size: 16px;
	color: var(--kl-black);
}

ul.list-global-networks li::after {
	position: absolute;
    left: 0;
    top: 0;
    width: 16px; /* Adjust as needed */
    height: 16px; /* Adjust as needed */
    background-image: url('../images/arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}
@media (min-width: 1024px) {
	.thumb-style-two {
		position: relative;
		top: -80px;
	}  
}
/*Global Networks End Here*/
/*Contact Us Page css*/
.page-contact-us{
    padding: 100px 0;
}
.contact-us-box{
    background-color:var( --kl-bg-light-2);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
    padding: 80px;
}

.contact-us-content,
.contact-us-form{
    width: calc(50% - 30px);    
}

.contact-us-form{
    background-color:var(--kl-white);
    border-radius: 20px;
    padding: 40px;
}

.contact-info-item{
    display: flex;
    border-bottom:1px solid #dbdddd;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.contact-info-item:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.contact-info-item .icon-box{
    position: relative;
    width: 60px;
    height: 60px;
    background-color:var(--kl-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.contact-info-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 10px;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before{
    transform: scale(1) rotate(180deg);
}

.contact-info-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img{
    filter: brightness(1) invert(1);
}

.contact-item-content{
    width: calc(100% - 85px);
}

.contact-item-content p{
   text-transform: capitalize;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 18px;
  color: var(--kl-primary);
}

.contact-item-content h3{
    font-size: 18px;
  font-weight: 600;
}

.contact-item-content h3 a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover{
    color: var(--accent-color);
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--kl-text-body);
    background-color: transparent;
    border:1px solid #dbdddd;
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.contact-form .primary-btn{
    width: 100%;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	height: 550px;
	width: 100%;
}

/*Footer Area Start Here*/
.footer-bg {
  background-color: transparent;
  background-image: linear-gradient(160deg,#090c15 62%,#161617 100%);
  padding: 0px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.shape-fill {
  fill:#fff;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.footer-logo {
  margin-bottom:15px;
}
.fot-contact-info {
  font-size:15px;
  overflow:hidden;
}
.fot-contact-info h6 {
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.fot-contact-info i {
  font-size: 30px;
  margin-top: 2px;
  line-height: 1;
  float: left;
}
.fot-contact-info i:before {
  font-size: 40px;
}
.fot-contact-info i.fa-map-marker:before {
  font-size: 37px;
}
.fot-contact-info img {
  width: 30px;
  margin-top: 3px;
  float: left;
}
.fot-contact-info p {
  margin-bottom: 0;
}
.fot-contact-info .info-text {
  padding-left: 50px;
  font-weight: 500;
}
.fot-contact-info.text-light {
  color: #fff;
}
.fot-contact-info.text-light h6,
.contact-info.text-light i {
  color: #f00;
}
.fot-contact-info.box-style2 {
  width: 100%;
  border-radius:10px;
  background:rgba(254,254,254,.1);
  padding:38px 25px;
  height:260px;
}
.fot-contact-info.text-light h6 {
  font-family: var(--kl-title);
  font-size: 32px;
  color: #93e7ff;
  font-weight: 600;
  text-transform: none;
  padding-top: 20px;
}
.fot-contact-info.box-style2 i {
  float: none;
  margin-top: 0px;
  vertical-align: bottom;
}
.fot-contact-info.box-style2 .box-icon {
  background:#0b0e15;
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  line-height: 80px;
  display: flex;
  justify-content: center;
}
.fot-contact-info.box-style2 p {
	
  color: #fff;
  margin-bottom: 15px;
}
.fot-contact-info.box-style2 p a {
  color:#fff;
}
.border-left .box-style2,
.border-right .box-style2 {
  position: relative;
}
.footer-menu {
  margin:40px 0;
}
.footer-menu ul {
  padding-left: 0;
  margin: 0;
}
.site-footer .footer-menu ul li {
  margin-bottom: 12px;
}
.footer-menu ul {
  list-style: none;
  text-align: center;
}
.footer-menu ul li {
  display: inline-block;
  margin: 0px 29px;
}
.footer-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.footer-menu ul li a:visited {
  color: #fff;
}
.footer-bottom {
  padding-top:40px;
  border-top: none;
}
.footer-bottom p {
  line-height: 24px;
  margin-top: 13px;
  color:#FFF;
}
.footer-bottom p a {
  color:#FFF;
}
.footer-bottom p a:hover {
  color:#f00;
  ;
}