/*1. Default CSS*/
:root {
  /*@Googel Font-Family Declaration*/
  --av-gf-body:'Mukta Mahee', sans-serif;
  --av-gf-heading:'Quicksand', sans-serif;
  --av-gf-fontawesome: "Font Awesome 6 Pro";
  /*@Color Declaration*/
  --av-text:#7E8185;
  --av-text-dark: #9DB6D5;
  --av-text-gray: #89868d;
  --av-primary:#17008c;
  --av-secondary:#038e42;
  --av-base:#07c7ff;	
  --av-accent:#6e2a00;
  --av-gray: #f3f6fd;
  --av-white: #fff;
  --av-black: #0B2038;
  --av-light:#e7f8fd;
  --av-border-color: #FCE9DD;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*Typography CSS*/
body {
  font-family:var(--av-gf-body);
  font-size:16px;
  font-weight: 400;
  color: var(--av-color-text-body);
}
a {text-decoration: none;}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--av-gf-heading);
  color:var(--av-primary);
  margin-top: 0px;
  font-weight: var(--av-fw-sbold);
  line-height: 1.2;
}
h1 {font-size: var(--av-fs-h1);}
h2 {font-size: var(--av-fs-h2);}
h3 {font-size: var(--av-fs-h3);}
h4 {font-size: var(--av-fs-h4);}
h5 {font-size: var(--av-fs-h5);}
h6 {font-size: var(--av-fs-h6);}
ul {
  margin: 0px;
  padding: 0px;
}
p {
  font-size: 16px;
  font-weight:400;
  color: var(--av-color-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}
.av-light {
	background:var(--av-light);
}
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

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

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

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  text-decoration:none;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--av-primary);
  color: var(--av-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--av-primary);
  color: var(--av-white);
  text-shadow: none;
}

::selection {
  background: var(--av-primary);
  color: var(--av-white);
  text-shadow: none;
}

*::-moz-placeholder {
  background:#f4f5f8;
  color: var(--av-white);
  opacity: 1;
}

*::-webkit-input-placeholder {
  color: var(--av-primary);
  font-size: var(--av-fs-body);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: var(--av-primary);
  font-size: var(--av-fs-body);
  opacity: 1;
}

*::-ms-input-placeholder {
  color: var(--av-primary);
  font-size: var(--av-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--av-primary);
  font-size: var(--av-fs-body);
  opacity: 1;
}

/*Background Colors*/

/* Common Classes CSS **/
.w-img img {width: 100%;}
.m-img img {max-width: 100%;}
img {max-width: 100%;}
.fix {overflow: hidden;}
.clear {clear: both;}
.f-left {float: left;}
.f-right {float: right;}
.z-index-1 {z-index: 1;}
.z-index-11 {z-index: 11;}
.overflow-y-visible {overflow-x: hidden;overflow-y: visible;}
.p-relative {position: relative;}
.p-absolute {position: absolute;}
.include-bg {background-position: center;background-size: cover;background-repeat: no-repeat;}
.b-radius {border-radius: 6px;}

.padding {padding:90px 0;}
@media (max-width: 991px) {
  .padding {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .padding {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .sm-padding {
    padding: 15px;
  }
}
.padding-15 {
  padding: 15px !important;
}
.pt-0 {padding-top: 0;}
.pb-0 {padding-bottom: 0;}
/* Section Heading */
.section-heading {
  margin-bottom:35px;
}
.section-heading .sub-heading {
  color:var(--av-base);
  margin-bottom: 22px;
  line-height: 42px;
  font-weight: 600;
  font-size: 27px;
}
.section-heading .section-title {
  font-weight:800;
  margin-bottom:20px;
  font-size:36px;		
}
@media (max-width: 991px) {
  .section-heading .section-title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.section-heading p {
  font-size: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.section-heading p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-heading p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-heading.mb-60 {
    margin-bottom: 40px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
}
/* Margin Class */
.mt-10 {margin-top: 10px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mt-25 {margin-top: 25px;}
.mt-30 {margin-top: 30px;}
.mt-35 {margin-top: 35px;}
.mt-40 {margin-top: 40px;}
.mt-45 {margin-top: 45px;}
.mt-50 {margin-top: 50px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-25 {margin-bottom: 25px;}
.mb-30 {margin-bottom: 30px;}
.mb-35 {margin-bottom: 35px;}
.mb-40 {margin-bottom: 40px;}
.mb-45 {margin-bottom: 45px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-90 {margin-bottom: 90px;}
.mr-10 {margin-right:10px;}

/*Buttons CSS*/
.av-primary-btn {
  background:var(--av-primary);
  color:var(--av-white);
  font-family:var(--av-gf-primary);
  display: inline-block;
  font-size:18px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  padding:16px 35px;
  letter-spacing: 0;
  border-radius:3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.av-primary-btn:focus, .av-primary-btn:hover {
  color: var(--av-white);
}
@media (max-width: 767px) {
  .av-primary-btn {
    font-size: 15px;
    padding: 15px 25px;
  }
}
.av-primary-btn span {
  position: relative;
  z-index: 20;
}
.av-primary-btn:after {
  background: var(--av-white);
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -1;
}
.av-primary-btn:hover:after {
  left: 120%;
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.av-primary-btn i {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .av-primary-btn i {
    margin-left: 10px;
  }
}
/*Start Back to top css*/
.back-to-top {
  background: var(--av-primary);
  border-radius: 3px;
  bottom: 30px;
  color:var(--av-white);
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
}
.back-to-top:hover, .back-to-top:focus {
  background:var(--av-base);
  color:var(--av-white);
}
/*End scroll_up css*/
/*Preloader Start Here*/
.preloader {
  background-color:var(--av-white);
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  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;
  z-index: 99999;
}
.preloader .loader {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.preloader .pre-box {
  width: 50px;
  height: 50px;
  background:var(--av-secondary);
  -webkit-animation: loaderAnimate 0.5s linear infinite;
  animation: loaderAnimate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.preloader .pre-shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: loaderShadow 0.5s linear infinite;
  animation: loaderShadow 0.5s linear infinite;
}

@-webkit-keyframes loaderAnimate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes loaderAnimate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes loaderShadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}
@keyframes loaderShadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}
/*Preloader End Here*/

/*Header CSS*/
.header {
  background-color: transparent;
  padding:0px 40px;
  box-shadow:0 4px 18px 0 rgba(0,0,0,.078);
  width: 100%;
  height: auto;
  display: block;
  /*position: absolute;
  top: 20px;*/
  position:relative;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header.header__sticky {
  background-color:var(--av-white);
  box-shadow:0 4px 18px 0 rgba(0,0,0,.078);
  position: fixed;
  left: 0;
  top: 0;
  padding: 15px 0 15px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-contact-area {align-items:center;}
@media (max-width: 991px) {
  .header.header__sticky {
    display: none;
  }
}
.header .primary-header {
  padding:0px 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header .primary-header {
    padding:2px 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .primary-header {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .header .primary-header {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  .header .primary-header-inner {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    grid-column-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1199px) {
  .header .primary-header-inner {
    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;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .primary-header-inner .header-contact-area {
    display: none;
  }
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-contact-area {
    display: none;
  }
}
.header .primary-header-inner .header-contact-area i {
  color: var(--av-primary);
  font-size: 20px;
  margin-right: 10px;
  background-color: var(--av-base);
  padding: 18px;
  border-radius: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .primary-header-inner .header-contact-area i {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-contact-area a {
  color:var(--av-black);
  font-size: 18px;
  margin-left: 10px;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .primary-header-inner .header-contact-area a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header .primary-header-inner {
    grid-template-columns: 180px 1fr 180px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .primary-header-inner {
    grid-template-columns: 175px 1fr 175px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .primary-header-inner {
    grid-template-columns: 135px 1fr 135px;
    grid-column-gap: 15px;
  }
  .header .primary-header-inner .header-contact-area a {
    margin-left: 5px;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .header .primary-header-inner .header-right .header-btn {
    margin-right: 60px;
  }
  .header .primary-header-inner .header-right .mobile-side-menu-toggle {
    font-size: 30px;
    color:var(--av-primary);
  }
  .header .primary-header-inner .header-right .mobile-side-menu-toggle:hover {
    content: "/f550";
  }
}

.header-menu-wrap {
  display: none;
}
@media (min-width: 992px) {
  .header-menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 25px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .header-menu-wrap .sub-menu li {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-menu-wrap .sub-menu li {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-menu-wrap .sub-menu li {
    margin: 0 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-menu-wrap .sub-menu li {
    margin: 0 5px;
  }
}
.header-menu-wrap .sub-menu li a {
  display: block;
  font-family: var(--av-gf-body);
  font-size: 16px;
  letter-spacing: 0;
  font-weight:600;
  text-transform: capitalize;
  color:var(--av-black);
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}
.header-menu-wrap .sub-menu li a:before {
  content: "";
  background-color:var(--av-black);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -10px;
  -webkit-transform: skewX(30deg);
      -ms-transform: skewX(30deg);
          transform: skewX(30deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header-menu-wrap .sub-menu li ul {
  background-color: var(--av-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 62px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.header-menu-wrap .sub-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.header-menu-wrap .sub-menu li li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid var(--av-white);
  text-align: left;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header-menu-wrap .sub-menu li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header-menu-wrap .sub-menu li li:hover {
  background-color: var(--av-primary);
}
.header-menu-wrap .sub-menu li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--av-color-theme-bg-dark);
  font-weight: 500;
  font-size: 14px;
  line-height: 45px;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.header-menu-wrap .sub-menu li li a:before {
  display: none;
}
.header-menu-wrap .sub-menu li li:hover a {
  color: var(--av-white);
}
.header-menu-wrap .sub-menu li:hover a:before {
  width: 100%;
}
.header-menu-wrap .sub-menu .has-dropdown {
  position: relative;
}
.header-menu-wrap .sub-menu .has-dropdown a {
  padding-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-menu-wrap .sub-menu .has-dropdown a {
    padding-right: 15px;
  }
}
.header-menu-wrap .sub-menu .has-dropdown ul li {
  margin: 0;
  padding-left: 20px;
}
.header-menu-wrap .sub-menu .has-dropdown ul li a {
  padding-right: 0;
}
.header-menu-wrap .sub-menu .has-dropdown:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  color: var(--av-white);
  font-size: 13px;
  content: "\f078";
  position: absolute;
  top: 51%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-menu-wrap .sub-menu .has-dropdown:after {
    top: 56%;
  }
}
.header-menu-wrap .sub-menu .has-dropdown:hover:before {
  color: var(--av-primary);
}

.header-right {
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right {
    display: none;
  }
}
.header-right .av-primary-btn {
  background-color: var(--av-primary);
  font-size: 16px;
  padding: 15px 18px;
  border: 1px solid var(--av-primary);
  color: var(--av-white);	
}
@media (max-width: 991px) {
  .header-right .av-primary-btn {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-right .av-primary-btn {
    font-size: 14px;
    padding: 15px 20px;
  }
  .header-right .av-primary-btn i {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-right .av-primary-btn {
    font-size: 14px;
    padding: 15px 20px;
  }
  .header-right .av-primary-btn i {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right .av-primary-btn {
    font-size: 14px;
    padding: 15px;
  }
  .header-right .av-primary-btn i {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-right {
    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;
    position: relative;
  }
}
@media (max-width: 767px) {
   .header {padding:16px 0;}	
  .header-right .header-logo img {
    width:160px;
  }
}

.sticky-header-wrap.fixed .primary-header-inner {
  padding: 10px 0;
}
.sticky-header-wrap.fixed .primary-header-inner .header-menu-wrap .sub-menu li ul {
  top: 56px;
}

.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media (max-width: 991px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--av-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--av-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 991px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--av-gf-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-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;
  padding: 25px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  width: 150px;
  height: 120px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--av-gf-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--av-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--av-primary);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item .side-menu-arrow i {
  font-weight: 200;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--av-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.html), auto;
}
@media (max-width: 991px) {
  .side-menu-overlay {
    display: none;
  }
}

.sticky-header-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
}
.sticky-header-wrap.fixed {
  display: block;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
          box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}
.sticky-header-wrap .header {
  position: relative;
  top: 0;
}
.sticky-header-wrap .header .top-bar {
  display: none;
}

@-webkit-keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media (max-width: 991px) {
  .mobile-side-menu {
    /*position: fixed;*/
	position:absolute;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    background-color:var(--av-white);
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-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: 50px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 15px;
    right: 40px;
    color:var(--av-primary);
    font-size: 20px;
    height:36px;
    width:36px;
    border-radius: 50%;
    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;
    border:1px solid var(--av-primary);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 20px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--av-primary);
    color: var(--av-white);
  }
  
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color:var(--av-primary);
    font-family: var(--av-gf-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-list li {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .side-menu-list li i {
    background-color: var(--av-primary);
    font-size: 12px;
    color: var(--av-white);
    width: 30px;
    height: 30px;
    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;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-right: 20px;
  }
  .mobile-side-menu .side-menu-list li :last-child {
    margin-bottom: 0;
  }
  .mobile-side-menu .side-menu-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    list-style: none;
  }
  .mobile-side-menu .side-menu-social ul li a {
    background-color: var(--av-white);
    color: var(--av-primary);
    font-size: 18px;
    width: 50px;
    padding: 15px 0;
    line-height: 1;
    text-align: center;
    border: 1px solid var(--av-color-border-6);
    border-radius: 2px;
    display: block;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .mobile-side-menu .side-menu-social ul li a:hover {
    background-color: var(--av-primary);
    color: var(--av-white);
  }
  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }
  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    float: none;
    display: block;
    width: auto;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--av-color-border-5);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color:var(--av-black);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}
@media (max-width: 991px) and (max-width: 767px), (max-width: 991px) and (max-width: 575px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    padding: 0;
    top: -10px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 200;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
  }
}
@media (max-width: 991px) and (max-width: 767px), (max-width: 991px) and (max-width: 575px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 40px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 18px;
    font-weight: 400;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    
  }
}
.header-2 {
  background-color:var(--av-white);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .header-2 {
    position: inherit;
  }
}
.header-2 .primary-header-inner {
  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:7px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991px) {
  .header-2 .primary-header-inner {
    padding: 10px 0;
  }
}
.header-2 .primary-header-inner .header-logo {
  max-width: 200px;
  width: 100%;
}
.header-2 .primary-header-inner .header-logo a {
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 991px), (max-width: 767px), (max-width: 575px) {
  .header-2 .primary-header-inner .header-logo {
    max-width: 150px;
    width: 100%;
  }
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu li {
  margin: 0 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-2 .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-2 .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-2 .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-2 .primary-header-inner .header-menu-wrap .sub-menu li a {
    font-size: 14px;
  }
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu ul {
  top: 66px;
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu ul li {
  margin: 0;
}
.header-2 .primary-header-inner .header-menu-wrap .sub-menu ul li a {
  height: 45px;
  line-height: 45px;
}
.header-2 .primary-header-inner .header-right {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.header-2 .primary-header-inner .header-right .header-logo {
  display: inline-block;
}
.header-2 .primary-header-inner .header-right .header-logo img {
  width: 100%;
}
@media (max-width: 991px) {
  .header-2 .primary-header-inner .header-right .header-btn,
  .header-2 .primary-header-inner .header-right .header-contact-area {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-2 .primary-header-inner .header-right .header-contact-area {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-2 .primary-header-inner .mean-push {
    display: none;
  }
  .header-2 .primary-header-inner .header-right {
    width: 100%;
  }
}

.sticky-header-wrap.fixed .primary-header-inner {
  padding: 10px 0;
}
.sticky-header-wrap.fixed .primary-header-inner .header-menu-wrap .sub-menu li ul {
  top: 56px;
}
/*Header CSS End*/

/*
==================================
    Banner Three
==================================
*/
.banner-three {
    position: relative;
    display: block;
    background-color:var(--av-light);;
    padding:160px 0 60px;
    overflow: hidden;
    z-index: 10;
}

.banner-three__shape1 {
    position: absolute;
    top: 229px;
    left: 140px;
    z-index: 1;
}

.banner-three__shape2 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.banner-three__shape3 {
    position: absolute;
    left: 50%;
    bottom: 0;
    right: 0;
    transform: translateX(-50%);
}

.banner-three__shape4 {
    position: absolute;
    left: 45%;
    bottom: 130px;
}

.banner-three__shape5 {
    position: absolute;
    /*top: 0;*/
    right:30px;
}

.banner-three__shape6 {
    position: absolute;
    top:100px;
    right: 285px;
    z-index: 1;
}

.banner-three__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: -142px;
}

.banner-three__content-inner {
    position: relative;
    display: block;
    max-width: 610px;
    width: 100%;
}

.banner-three__content .sec-title-four {
    padding-bottom: 36px;
}

.banner-three__content .sec-title-four .sub-title h4 {
    font-size: 27px;
  line-height: 45px;
  font-weight: 700;
  color: var(--av-base);
}

.banner-three__content .sec-title-four h2 {
    font-size: 62px;
    line-height: 1.1em;
    font-weight:500;
}
.banner-three__content .sec-title-four h2 strong{
 font-weight: 700;	
}
.banner-three__content .text {
    position: relative;
    display: block;
    width: 100%;
}

.banner-three__content .text p {
    color: rgb(20, 20, 20, 0.8);
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
}


.banner-three__content .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    line-height: 0;
    margin-top: 62px;
}

.banner-three__content .btn-box .av-primary-btn {
  padding: 21px 60px;
  font-size: 27px;
}






.banner-three__img {
    position: relative;
    display: block;
    max-width: 716px;
    width: 100%;
    flex: 1;
}

.banner-three__img ul {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner-three__img ul li {
    position: relative;
    display: block;
    float: left;
}

.banner-three__img-single {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 300px;
    background:linear-gradient(180deg, rgb(191, 234, 247) 0%, rgba(202, 243, 51, 0.00) 78.09%);
    padding: 24px;
}

.banner-three__img-single .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 300px;
}

.banner-three__img-single.instyle--2 {
    border-radius: 200px;
    background: linear-gradient(180deg, rgb(202, 243, 51, 0.00) 0%, rgba(191, 234, 247) 78.09%);
}

.banner-three__img-single.instyle--2 .inner {
    border-radius: 200px;
}
/*About Section*/
.about-section {
  position: relative;
  padding: 120px 0 116px;
}
@media (max-width: 991.98px) {
  .about-section .image-column .inner-column {
    margin-bottom: 40px;
  }
}
.about-section .image-column .inner-column .image-box {
  position: relative;
}
.about-section .image-column .inner-column .image-box .exp-box {
  position: absolute;
  top: 118px;
  left: -70px;
  width: 220px;
  background-color:var(--vln-secondary);
  -webkit-box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
          box-shadow: 0 15px 60px rgba(68, 67, 67, 0.08);
  padding:10px 50px 10px 120px;
  border-radius: 10px;
}
@media (max-width: 1399.98px) {
  .about-section .image-column .inner-column .image-box .exp-box {
    top: 53px;
    left: 19px;
  }
}
@media (max-width: 767.98px) {
  .about-section .image-column .inner-column .image-box .exp-box {
    left: 50px;
  }
}
@media (max-width: 575.98px) {
  .about-section .image-column .inner-column .image-box .exp-box {
    left: 15px;
  }
}
.about-section .image-column .inner-column .image-box .exp-box .image {
  margin-bottom: 24px;
  position: absolute;
  top:3px;
  left:10px;
}

.about-section .image-column .inner-column .image-box .exp-box .title {
  font-family:var(--vln-gf-heading);
  color:var(--vln-accent);
  font-weight:700;
  margin-bottom:0;
  font-size:36px;
}
.about-section .image-column .inner-column .image-box .exp-box span {
  font-size: 30px;
  font-family: var(--vln-gf-heading);
  line-height: auto;
  color: var(--vln-accent);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .about-section .image-column .inner-column .image-box .image img {
    width: 100%;
  }
}
.about-section .image-column .inner-column .image-box .image-2 {
  position: absolute;
  bottom:50px;
  right:30px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .about-section .image-column .inner-column .image-box .image-2 {
    display: none;
  }
}
.about-section .content-column .inner-column {
  margin-left:25px;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column {
    margin-left: 10px;
  }
}
.about-section .content-column .inner-column .sub-title {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--av-gf-heading);
  color: var(--av-base);
}

.about-section .content-column .inner-column .title {
  font-size: 42px;
  margin-bottom: 19px;
  font-weight: 700;
  font-family: var(--av-gf-heading);
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .title {
    font-size: 39px;
  }
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .title {
    font-size: 30px;
    line-height: 37px;
  }
}
.about-section .content-column .inner-column .text {
  font-family: var(--av-gf-body);
  color: var(--av-black);
  margin-bottom: 25px;
  text-align: justify;	
}
.overlay-anim {
  position: relative;
}
.overlay-anim:before {
  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:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.bounce-y {
  -webkit-animation: bounce-y 5s infinite linear;
  animation: bounce-y 5s 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);
  }
}


.projects-masonry__img {
  position:relative;
  overflow:hidden;
  padding:0px
}
.img--bg {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  -o-object-fit:cover;
  object-fit:cover;
  -o-object-position:top center;
  object-position:top center;
  font-family:"object-fit: cover; object-position: top center";
  z-index:-1
}
.projects-masonry__item {
  color:#fff;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-align:start;
  -ms-flex-align:start;
  align-items:flex-start
}
.projects-masonry__item .projects-masonry__img img {
  -webkit-transition:-webkit-transform 1s;
  transition:-webkit-transform 1s;
  -o-transition:transform 1s;
  transition:transform 1s;
  transition:transform 1s,-webkit-transform 1s
}
.projects-masonry__item:hover .projects-masonry__img img {
  -webkit-transform:scale(1.2);
  -ms-transform:scale(1.2);
  transform:scale(1.2)
}
.projects-masonry__item .heading {
  width:100%;
  max-width:660px
}
.projects-masonry__item .heading .button {
  margin-top:20px
}
.projects-masonry__inner {
  width:100%;
  max-width:420px;
  text-align:center;
  padding:30px 0
}
.projects-masonry__text {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  color:#fff
}
.projects-masonry__badge {
  display:inline-block;
  font-size:14px;
  font-weight:700;
  padding:6px 13px;
  margin-bottom:22px;
  border-radius:4px
}
.projects-masonry__title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 17px;
  font-weight: 600;
}
.projects-masonry__title a {
  color:#fff;
  text-decoration:none;
  -webkit-transition:color .3s;
  -o-transition:color .3s;
  transition:color .3s
}
.projects-masonry__title a:hover {
  color:#efc940
}
.projects-masonry__details-holder {
  margin-top:30px
}
.projects-masonry__details-holder .projects-masonry__details-item {
  display:inline-block
}
.projects-masonry__details-holder .projects-masonry__details-item:not(:last-of-type) {
  margin-right:15px
}
.projects-masonry__details-holder .projects-masonry__details-item span:nth-of-type(2) {
  font-weight:700
}
.projects-masonry__link {
  position:relative;
  display:inline-block;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  text-decoration:none;
  margin-top:30px;
  opacity:0;
  -webkit-transition:opacity .3s;
  -o-transition:opacity .3s;
  transition:opacity .3s
}
.projects-masonry__item:hover .projects-masonry__link {
  opacity:1
}
.projects-masonry__link::after {
  content:"";
  display:inline-block;
  height:1px;
  width:100%;
  background:#efc940;
  position:absolute;
  bottom:2px;
  left:0;
  -webkit-transition:opacity .3s;
  -o-transition:opacity .3s;
  transition:opacity .3s
}
.projects-masonry__link:hover::after {
  opacity:0
}
.projects-masonry__item--vertical .projects-masonry__img {
  height:50%;
  width:100%;
  display:none
}
@media only screen and (min-width:1367px) {
  .projects-masonry__item--vertical .projects-masonry__img {
    display:initial
  }
}
.projects-masonry__item--vertical .projects-masonry__text {
  height:100%;
  width:100%
}
@media only screen and (min-width:1367px) {
  .projects-masonry__item--vertical .projects-masonry__text {
    height:50%
  }
}
.projects-masonry__item--horizontal .projects-masonry__img {
  height:100%;
  width:50%;
  display:none
}
@media only screen and (min-width:1367px) {
  .projects-masonry__item--horizontal .projects-masonry__img {
    display:initial
  }
}
.projects-masonry__item--horizontal .projects-masonry__text {
  height:100%;
  width:100%
}
@media only screen and (min-width:1367px) {
  .projects-masonry__item--horizontal .projects-masonry__text {
    width:50%
  }
}
.projects-masonry__item--primary .projects-masonry__img {
  height:100%;
  width:100%;
  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
}
.projects-masonry__item--height-1,
.projects-masonry__item--height-2 {
  height:400px
}
@media only screen and (min-width:1200px) {
  .projects-masonry__item--height-1 {
    height:900px
  }
}
@media only screen and (min-width:1200px) {
  .projects-masonry__item--height-2 {
    height:450px
  }
}
.projects-masonry__item--heading {
  height:auto;
  margin-bottom:40px
}
@media only screen and (min-width:992px) {
  .projects-masonry__item--heading {
    margin-bottom:0
  }
}



/*Our Core Values Section Start Here*/
.core-values-section {
	position:relative;
	padding:60px 0;
}
.core-values-section .section-heading {margin-bottom:0;}
.core-values-section .section-heading .section-title{margin-bottom:10px;}
.core-values-section .core-values-text {	
	padding-left: 5px;
	padding-right: 20px;
	margin-bottom: 40px;
}
.core-values__content-list {
  position: relative;
  display: block;
  padding-top:15px;
  padding-bottom:15px;
}
.core-values__content-list.plant {
   padding-top:15px;
   padding-bottom:15px;
   border-top:none;
   border-bottom:none;
}
.core-values__content-list.plant li {margin-bottom:5px;}
.core-values__content-list.plant li .title {padding-left:15px;}
.core-values__content-list.plant li .title h3 {font-size:16px;line-height:24px;text-transform:none;}
.core-values__content-list.plant li .icon {font-size: 24px;
  line-height: 24px;}
.core-values__content-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom:5px;
}

.core-values__content-list li:last-child {
  margin-bottom: 0;
}

.core-values__content-list li .icon {
  position: relative;
  display: block;
  color:var(--av-base);
  font-size:24px;
  line-height:24px;
}

.core-values__content-list li .title {
  position: relative;
  display: block;
  padding-left: 20px;
}
.core-values__content-list li .title h3 {
  font-size: 18px;
  line-height: 28px;
  color: var(--av-black);
  font-weight: 500;
}
.core-values__content-text {
  position: relative;
  display: block;
  padding-top:20px;
}
.core-values__content-text.plant{padding-top:0;}
.core-values__content-text h5 {
	font-weight: 800;
  margin-bottom: 20px;
  font-size: 36px;
  color: var(--av-accent)
}
.core-values-section .section-heading.mango{margin-bottom:0;}
.core-values-section .section-heading.mango .section-title {font-size:45px;margin-bottom:0;}
/*Our Core Values Section End Here*/


.gallery-area {
  margin-bottom: -5px;
  overflow: hidden;	
}
.gallery-area .gallery-img {
  position: relative;
}
/*.gallery-area .gallery-img::before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 34px;
  color: var(--av-secondary);
  opacity: 1;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.gallery-area .gallery-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(9, 14, 13, 0.6)), to(rgba(9, 14, 13, 0.6)));
  background: linear-gradient(0deg, rgba(9, 14, 13, 0.6) 0%, rgba(9, 14, 13, 0.6) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-area .gallery-img:hover {
  cursor: pointer;
  cursor: pointer;
}*/
.gallery-area .gallery-img:hover::after {
  opacity: 1;
  visibility: visible;
}
.gallery-area .gallery-img:hover::before {
  opacity: 1;
  visibility: visible;
}
.gallery-area .gallery-slider {
  /* the parent */
}
.gallery-area .gallery-slider .slick-slide {
  margin: 0 10px;
}
.gallery-area .gallery-slider .slick-slide img {
  width: 100%;
  height: 100%;
}
.gallery-area .gallery-slider .slick-list {
  margin: 0 -10px;
}






/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color:#141414;
  position: relative;
  padding-top:160px;
  padding-bottom: 112px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 88px;
    padding-bottom: 92px;
  }
}
@media (max-width: 575px) {
  .page-header {
    padding-top: 69px;
    padding-bottom: 72px;
  }
}
@media (max-width: 430px) {
  .page-header {
    padding-top: 71px;
  }
}
.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header__bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color:rgb(20, 20, 20, 0.75);
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header__content {
  text-align: center;
}
.page-header__title {
  margin-bottom: 11px;
  font-size: 55px;
  color: var(--av-white);
  font-weight: 600;
  letter-spacing:-0.03em;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .page-header__title {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .page-header__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .page-header__title {
    font-size: 35px;
  }
}
@media (max-width: 430px) {
  .page-header__title {
    font-size: 33px;
  }
}

.taxiz-breadcrumb {
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  flex-wrap: wrap;
}
.taxiz-breadcrumb li {
  font-size: 16px;
  color: var(--av-white);
  font-weight: 700;
  text-transform: capitalize;
  line-height: normal;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .taxiz-breadcrumb li {
    font-size: 15px;
  }
}
.taxiz-breadcrumb li:not(:last-of-type)::after {
  content: "\f105";
  font-family:"Font Awesome 6 Pro";
  font-size: 20px;
  color: var(--av-white);
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 0;
  margin-left: 6px;
  margin-right: 6px;
}
.taxiz-breadcrumb li .taxiz-breadcrumb__icon {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--av-white);
}
.taxiz-breadcrumb li .taxiz-breadcrumb__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.taxiz-breadcrumb li span,
.taxiz-breadcrumb li a {
  display: inline-flex;
}
.taxiz-breadcrumb li:last-child span {
  color: var(--av-base);
}
.taxiz-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.taxiz-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.taxiz-breadcrumb li a:hover {
  color: var(--av-base);
}



/*Our Projects Start Here*/
.port-part {
 padding:45px 0px;
}
.port-part .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
 color: var(--av-primary) !important;
 background: var(--av-base);
}
.port-part .nav-link:focus, .nav-link:hover {
  color: var(--av-primary) !important;
}
.port-part .nav-pills .nav-link {
  color: var(--av-primary) !important;
}
.port-menu {
 display:-webkit-box;
 -webkit-box-align:center;
 -ms-flex-align:center;
 align-items:center;
 -webkit-box-pack:center;
 -ms-flex-pack:center;
 justify-content:center;
 margin-bottom:35px;
	text-align: center;
}
.port-menu li {
 margin: 6px 3px;
  list-style: none;
  display: inline-block;
}
.port-menu li .active {
 color: var(--av-primary);
  background: var(--av-base);
}
.av-menu {
 font-size:18px;
 font-weight:500;
 line-height:20px;
 color:var(--av-white);
 text-transform:capitalize;
 background:var(--av-primary);
 border:none;
 letter-spacing:0.3px;
 padding:10px 20px;
 cursor:pointer;
/* border-radius:8px;
 border:1px solid var(--primary);*/
}
.menu:focus {
 outline:none
}
.port-parent {
 margin-bottom:25px
}
.port-card {
 margin:25px 10px
}
@media (max-width: 767px) {
 .port-part {
  padding:0px 0px
 }
 .port-heading {
  margin-bottom:30px
 }
 .port-heading h2 {
  font-size:28px;
  line-height:36px
 }
 .port-menu {
  -ms-flex-wrap:wrap;
  flex-wrap:wrap
 }
 .port-menu li {
  margin:7px 7px
 }
 .port-card {
  width:100%;
  margin:15px 0px
 }
}
@media (min-width: 380px) and (max-width: 575px) {
 .port-part .container {
  max-width:380px
 }
}
@media (min-width: 576px) and (max-width: 767px) {
 .port-part .container {
  max-width:568px
 }
 .port-parent .col-sm-6 {
  padding:0px 10px
 }
 .port-card {
  margin:10px 0px
 }
}
@media (min-width: 768px) and (max-width: 991px) {
 .port-menu li {
  margin:0px 5px
 }
}

.port-card {
 margin:0px 15px;
 border-radius:8px;
 position:relative
}
.port-card:hover .port-oly {
 -webkit-transform:scale(1);
 transform:scale(1);
 -webkit-transform-origin:center;
 transform-origin:center
}
.port-img img {
 width:100%;
 border-radius:8px
}
.port-oly {
 position:absolute;
 top:0px;
 left:0px;
 width:100%;
 height:100%;
 border-radius:8px;
 background:rgba(0,0,0,0.6);
 -webkit-transform:scale(0);
 transform:scale(0);
 transition:all linear .3s;
 -webkit-transition:all linear .3s;
 -moz-transition:all linear .3s;
 -ms-transition:all linear .3s;
 -o-transition:all linear .3s
}
.port-btn {
 position:absolute;
 top:50%;
 left:50%;
 -webkit-transform:translate(-50%, -50%);
 transform:translate(-50%, -50%);
 text-align:center;
 width:160px
}
.port-btn .btn {
 font-size:14px;
 font-weight:500;
 text-transform:capitalize;
 padding:10px 25px;
 margin:12px 0px;
 border-radius:5px;
 letter-spacing:0.3px;
 transition:all linear .3s;
 -webkit-transition:all linear .3s;
 -moz-transition:all linear .3s;
 -ms-transition:all linear .3s;
 -o-transition:all linear .3s
}
.port-btn .btn-inline {
 color:var(--av-primary);
 background:var(--av-white)
}
.port-btn .btn-inline:hover {
 color: var(--av-primary);
  background: var(--av-base);
}
.port-text {
 position:absolute;
 bottom:30px;
 left:50%;
 -webkit-transform:translateX(-50%);
 transform:translateX(-50%);
 width:100%;
 padding:0px 25px
}
.port-text h6 {
 color:var(--av-white);
 font-weight:700;
 text-transform:capitalize;
 letter-spacing:0.3px;
 margin-left:15px;
 position:relative;
 font-size: 18px;
}
.port-text h6::before {
 position:absolute;
 content:"";
 top:50%;
 left:-15px;
 width:3px;
 height:100%;
 background:var(--av-base);
 -webkit-transform:translateY(-50%);
 transform:translateY(-50%)
}
@media (max-width: 575px) {
 .port-card {
  width:270px;
  margin:0px 8px
 }
}
@media (min-width: 576px) and (max-width: 767px) {
 .port-part .container {
  max-width:570px
 }
 .port-card {
  margin:0px 8px
 }
}
/*Our Projects End Here*/


/*Contact Section*/
.contact-section{
  position:relative;
  padding:60px 0;	
}
.contact-section .form-inner{
  position: relative;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.1);
  padding: 70px;
}
.contact-section .form-inner h1{font-size:32px;font-weight:700}
.contact-section .form-inner .form-group {
  position: relative;
  padding: 0px 10px;
  margin-bottom: 20px;
}
.contact-section .form-inner .form-group input {
  height: form-control-height();
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: var(--vln-black);
  font-size: 18px;
  width: 100%; 
}

.contact-section .form-inner form{
  position: relative;
  margin: 0px 5px;
}

.contact-section .form-inner .form-group textarea {
  font-size:18px;
  padding: 14px 30px;	
  height: 160px;
  resize: none;
  display: block;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  width: 100%;
  color: var(--vln-black);
}

.google-map-section{
  position: relative;
  margin-bottom: -150px;
}

.google-map-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 620px;
}









/*Footer Section Start Here*/
.footer-bg {background-color:#061738;position:relative;overflow:hidden;}
.footer-logo {margin:60px 0 30px;}
.footer-menu {margin-bottom:30px;}
.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: 18px;font-weight: 500;color:var(--av-white);}
.footer-menu ul li a:hover {color:var(--av-base);}

.contact-item{
  padding: 30px 60px;
  border-radius: 15px;
  background-color:#082459;
  transition: all 0.3s ease;
  color: var(--av-white);	
}
.contact-item:hover .contact-icon {
  background:var(--av-secondary);
  color: var(--av-white);
}
.contact-title {
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 30px;
  color:var(--av-white);
  font-weight: 700;
}
.contact-icon {
  color:var(--av-primary);
  font-size: 33px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color:var(--av-base);
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease;
  line-height: 89px;
}
.contact-content span {
  font-size: 18px;
  line-height: 26px;
  color:var(--av-white);
  font-weight: 400;
  display: block;
}
.contact-content span a:hover {
  color:var(--av-base);
}
/*Copyright Area*/
.copyright-area {
  background-color:#091c40;	
  padding:25px 0 25px;
}
.copyright-area .copyright-text {padding-left:18px;}
@media (max-width: 991px) {
	.copyright-area .copyright-text {
		text-align: center;
	}
}
.copyright-area .powered-by {float:right;padding-right: 18px;}

@media (max-width: 991px) {
  .copyright-area .powered-by {
    text-align: center;
    margin-top: 15px;
  }
}
.copyright-area .powered-by a, .copyright-area .copyright-text a {
  position:relative;
  color:var(--av-base);	
}
.copyright-area .powered-by a:after, .copyright-area .copyright-text a:after {
  background-color:var(--av-base);	
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.copyright-area .powered-by a:hover:after, .copyright-area .copyright-text a:hover:after{
  width: 100%;
}
/*Footer Section End Here*/