/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@media (max-width: 991px) {
  .btn:focus {
    box-shadow: none !important;
  }
}

.crossLine {
  background: transparent;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
body.overflowhidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  outline: none !important;
}
a:hover {
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 20px;
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
ul li {
  font-size: 16px;
  line-height: 20px;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.defaultButton {
  background: #000;
  padding: 10px 15px;
  color: #fff;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  font-size: 16px;
}
.defaultButton:hover, .defaultButton:focus {
  background: #125AD3;
  color: #fff;
}

.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 20px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #000;
}

.sectionTitle {
  font-size: 40px;
}
@media (max-width: 991px) {
  .sectionTitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 18px;
  }
}

.sectionPadding {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 30px 0px;
  }
}

.innerHeader .mainHeader {
  position: relative;
  z-index: 999999;
}

.mainHeader {
  padding: 10px 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .mainHeader {
    position: relative;
  }
}
.mainHeader header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 12px;
}
.mainHeader header .logo a {
  display: block;
  outline: none !important;
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    margin-top: 50px;
  }
}
.mainHeader header .navbarLink ul li {
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .mainHeader header .navbarLink ul li {
    padding-left: 25px;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin-bottom: 50px;
    margin-left: 0;
  }
}
.mainHeader header .navbarLink ul li a {
  line-height: 24px;
  color: #000;
  font-size: 16px;
  padding: 0;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 13px;
    padding: 10px 12px 10px 12px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    color: #fff;
    font-size: 25px;
    padding: 0;
    font-weight: 300;
  }
}
.mainHeader header .navbarLink ul li a:before {
  content: "";
  position: absolute;
  background: #8dc63f;
  width: 0;
  height: 1px;
  bottom: 0;
  transition: all ease-in-out 0.5s;
  left: 0;
}
.mainHeader header .navbarLink ul li a:hover:before {
  width: 100%;
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  background: none;
  border-radius: 0;
  color: #8dc63f;
}
.mainHeader header .navbarLink ul li.active a:before, .mainHeader header .navbarLink ul li:hover a:before {
  width: 100%;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #8dc63f;
    background: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: transparent;
  padding: 0;
  margin: 0;
  min-width: 220px;
  transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #000;
  padding: 10px;
  font-size: 16px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #000;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #fff !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    transform: rotate(0deg);
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown li {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    text-align: center;
    padding: 3px 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
.mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
  flex-direction: column;
}
@media (min-width: 992px) {
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu, .mainHeader header .navbarLink ul li:focus > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    flex-direction: column;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  transform: rotate(0deg);
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown {
  left: 0 !important;
  top: 100% !important;
  position: relative;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li {
  padding-left: 20px;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li a {
  font-size: 13px;
  padding: 0;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover {
  background: none;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover a {
  color: #000 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    transform: none !important;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #000;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 35px;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
.mainHeader.innerheader header .navbarLink ul li a {
  color: #000;
}
.mainHeader.innerheader header .navbarLink ul li:hover a {
  color: #8dc63f;
  border-bottom: 1px solid #8dc63f;
}

.homeSlider.slick-slider {
  margin-bottom: 0 !important;
}

.homebanner {
  position: relative;
}
.homebanner .slick-dots {
  bottom: 15%;
}
@media (max-width: 1024px) {
  .homebanner .slick-dots {
    bottom: 2%;
  }
}
@media (max-width: 767px) {
  .homebanner .slick-dots {
    bottom: 4%;
  }
}
@media (max-width: 575px) {
  .homebanner .slick-dots {
    bottom: 10%;
  }
}
@media (max-width: 480px) {
  .homebanner .slick-dots {
    position: relative;
    bottom: 0px;
  }
}
.homebanner .slick-dots li {
  margin: 0;
}
.homebanner .slick-dots li button {
  font-size: 0;
  background: #fff;
  height: 10px;
  width: 10px;
  border-radius: 20px;
}
.homebanner .slick-dots li.slick-active {
  width: 50px;
  height: 10px;
  margin: 0 5px;
}
.homebanner .slick-dots li.slick-active button {
  background: #8DC63F;
  height: 10px;
  width: 50px;
}
@media (max-width: 480px) {
  .homebanner .slick-dots li {
    width: 11px;
  }
  .homebanner .slick-dots li button {
    background: #a59d9d;
  }
}
.homebanner .bannerBox {
  display: block !important;
  position: relative;
}
.homebanner .bannerBox img {
  width: 100%;
}
@media (max-width: 767px) {
  .homebanner .bannerBox img {
    height: 365px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerBox img {
    height: auto;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerBox img {
    height: 228px;
  }
}
@media (max-width: 400px) {
  .homebanner .bannerBox img {
    height: 150px;
  }
}
.homebanner .bannerBox #myVideo {
  min-width: 100%;
  min-height: 100%;
  max-height: 642px;
  width: 100%;
  display: flex;
  flex-direction: column;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .homebanner .bannerBox #myVideo {
    max-height: 487px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerBox #myVideo {
    max-height: 365px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerBox #myVideo {
    max-height: 365px;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerBox #myVideo {
    max-height: 228px;
  }
}
@media (max-width: 400px) {
  .homebanner .bannerBox #myVideo {
    max-height: 150px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerBox .bannerdetailbox {
    flex-direction: column-reverse;
  }
}
.homebanner .bannerBox .bannerdetailbox .bannerImage {
  transition: all ease-in-out 0.8s;
  right: -100%;
  opacity: 0;
  position: absolute;
  top: 0;
  display: flex;
  bottom: 0;
  align-items: center;
}
.homebanner .bannerBox .bannerdetailbox .bannerImage img {
  width: 100%;
}
@media (max-width: 1024px) {
  .homebanner .bannerBox .bannerdetailbox .bannerImage {
    left: 0;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerBox .bannerdetailbox .bannerImage {
    top: -29%;
  }
}
.homebanner .bannerBox .bgimg {
  height: 650px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .homebanner .bannerBox .bgimg {
    height: 950px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerBox .bgimg {
    height: 700px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerBox .bgimg {
    height: 650px;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerBox .bgimg {
    height: 550px;
  }
}
.homebanner .bannerText {
  transition: all ease-in-out 0.8s;
  left: -100%;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  bottom: 0;
  flex-direction: column;
  margin: auto;
  justify-content: center;
}
.homebanner .bannerText .bannerDesc {
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  margin-bottom: 30px;
}
.homebanner .bannerText .bannerDesc span {
  font-size: 60px;
}
.homebanner .bannerText h1 {
  font-size: 45px;
  line-height: 50px;
  color: #7C7C7C;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .homebanner .bannerText h1 {
    color: #000;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText h1 {
    color: #000;
    font-size: 35px;
    line-height: 45px;
  }
}
.homebanner .bannerText p {
  font-size: 45px;
  line-height: 50px;
  font-weight: 600;
}
.homebanner .bannerText p span {
  font-weight: 500;
}
@media (max-width: 575px) {
  .homebanner .bannerText p {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerText p {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 1024px) {
  .homebanner .bannerText {
    /*right: auto; left: 0;*/
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText h1 {
    font-size: 32px;
  }
  .homebanner .bannerText p {
    font-size: 36px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText {
    max-width: none;
    bottom: 0;
    align-items: center;
    text-align: left;
  }
  .homebanner .bannerText h1 {
    font-size: 28px;
  }
  .homebanner .bannerText p {
    font-size: 28px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerText {
    position: relative;
    text-align: center;
  }
}
.homebanner .slick-slide.slick-current .bannerBox .bannerImage {
  transition: all ease-in-out 0.8s;
  right: 0%;
  opacity: 1;
}
.homebanner .slick-slide.slick-current .bannerText {
  transition: all ease-in-out 0.8s;
  left: 0;
  opacity: 1;
}

@keyframes font_banner {
  0% {
    letter-spacing: 18px;
    opacity: 0;
  }
  100% {
    letter-spacing: 0px;
    opacity: 1;
  }
}
.innerbanner {
  position: relative;
}
.innerbanner .innerbannertext .title {
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  margin-bottom: 0;
}
.innerbanner .innerbannerimg img {
  width: 100%;
}
@media (max-width: 991px) {
  .innerbanner .innerbannerimg img {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.inquiryForm {
  background: #f1f1f1;
}
.inquiryForm .form-group {
  margin-bottom: 25px;
}
.inquiryForm .defaultButton a {
  color: #fff;
}

.offcanvas {
  position: relative;
  visibility: visible;
}
.offcanvas .offcanvas-start {
  top: inherit;
  left: inherit;
  width: 100%;
  border-right: 0px;
  transform: translateX(0);
}
@media (max-width: 767px) {
  .offcanvas {
    position: fixed;
    visibility: hidden;
  }
  .offcanvas .contentMobile {
    display: none;
  }
  .offcanvas .offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    transform: translateX(15px);
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/dropdown.svg) no-repeat;
  background-position: center right 20px;
}

.form-floating > label {
  color: #000;
}

.form-control:focus {
  box-shadow: none;
}

.title {
  font-size: 69px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  font-weight: 300;
  text-transform: uppercase;
}
.title.blackColor {
  color: #000;
  text-align: left;
}
.title.fnt60 {
  font-size: 60px;
  line-height: 70px;
}
@media (max-width: 1199px) {
  .title.fnt60 {
    font-size: 48px;
    line-height: 50px;
  }
}
@media (max-width: 1024px) {
  .title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .title.fnt60 {
    font-size: 38px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 40px;
    line-height: 50px;
  }
  .title.fnt60 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 25px;
    line-height: 35px;
  }
  .title.fnt60 {
    font-size: 28px;
    line-height: 35px;
  }
}

.subdetail {
  font-size: 32px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .subdetail {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .subdetail {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .subdetail {
    font-size: 21px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .subdetail {
    font-size: 19px;
    line-height: 24px;
  }
}

.fancybox-outer, .fancybox-inner {
  position: absolute;
}

.txtcenter {
  text-align: center;
}

.designsec {
  background: #8DC63F;
  min-height: 682px;
}
@media (max-width: 991px) {
  .designsec {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .designsec {
    min-height: 530px;
  }
}
@media (max-width: 575px) {
  .designsec {
    min-height: 320px;
  }
}
.designsec .title {
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .designsec .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .designsec .title {
    font-size: 47px;
    line-height: 55px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .designsec .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
  }
}
.designsec .details {
  color: #fff;
  font-size: 36px;
  line-height: 45px;
  max-width: 959px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .designsec .details {
    font-size: 30px;
    line-height: 40px;
  }
}

.servicesec {
  background: url(../images/servicebg.png);
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  height: 650px;
  display: flex;
  background-attachment: fixed;
}
@media (max-width: 991px) {
  .servicesec {
    height: auto;
  }
}
.servicesec .servicedetail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .servicesec .servicedetail {
    justify-content: center;
    align-items: center;
  }
}
.servicesec .servicedetail .servicebox {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
  padding: 50px 80px;
  min-height: 294px;
}
@media (max-width: 1024px) {
  .servicesec .servicedetail .servicebox {
    padding: 50px 65px;
  }
}
@media (max-width: 991px) {
  .servicesec .servicedetail .servicebox {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
    min-height: 200px;
    margin-top: 10px;
  }
  .servicesec .servicedetail .servicebox a p:after {
    display: none;
  }
}
.servicesec .servicedetail .servicebox:hover .iconsec img {
  transform: scale(1.15);
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .servicesec .servicedetail .servicebox.thirdservice:after {
    display: none;
  }
}
.servicesec .servicedetail .servicebox a p {
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  font-weight: 700;
  position: relative;
  margin-bottom: 0;
  min-height: 72px;
  text-transform: capitalize;
}
.servicesec .servicedetail .servicebox a p:after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #8DC63F;
  width: 50px;
  bottom: -64%;
  left: 0;
}
@media (max-width: 991px) {
  .servicesec .servicedetail .servicebox a p:after {
    right: 0;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox a p {
    text-align: center;
  }
}
.servicesec .servicedetail .servicebox a:hover p {
  color: #8DC63F;
}
.servicesec .servicedetail .servicebox .iconsec img {
  transition: 0.2s ease-in-out 0s;
  margin-bottom: 10px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox .iconsec.pencilimg {
    text-align: center;
  }
}
.servicesec .servicedetail .servicebox .iconsec.thumbimg {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox .iconsec.thumbimg {
    text-align: center;
  }
}
.servicesec .servicedetail .servicebox .iconsec.eventimg {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox .iconsec.eventimg {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox .iconsec.videoimg {
    text-align: center;
  }
}
.servicesec .servicedetail .servicebox:last-child {
  border: none;
}
.servicesec .servicedetail .servicebox:after {
  content: "";
  position: absolute;
  background: #000;
  height: 294px;
  width: 2px;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .servicesec .servicedetail .servicebox:after {
    display: none;
  }
}
.servicesec .servicedetail .servicebox:last-child:after {
  display: none;
}

.whowearesec {
  background: #8DC63F;
}
.whowearesec.sectionPadding {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .whowearesec .title {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .whowearesec .title {
    margin-bottom: 30px;
  }
}
.whowearesec ul li {
  list-style: none;
  display: flex;
  align-items: baseline;
  margin-bottom: 46px;
}
@media (max-width: 1024px) {
  .whowearesec ul li {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .whowearesec ul li {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .whowearesec ul li {
    justify-content: center;
    margin-bottom: 10px;
  }
}
.whowearesec ul li span {
  font-size: 44px;
  line-height: 50px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  display: inline-block;
}
@media (max-width: 1024px) {
  .whowearesec ul li span {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 991px) {
  .whowearesec ul li span {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .whowearesec ul li span {
    font-size: 15px;
  }
}
.whowearesec ul li p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #61862F;
}
@media (max-width: 575px) {
  .whowearesec ul li p {
    font-size: 13px;
  }
}
.whowearesec ul li.worksec1 {
  margin-left: 11%;
}
@media (max-width: 767px) {
  .whowearesec ul li.worksec1 {
    margin-left: 6%;
  }
}
@media (max-width: 480px) {
  .whowearesec ul li.worksec1 {
    margin-left: 0;
  }
}
.whowearesec ul li.teamsec {
  margin-left: 34%;
}
@media (max-width: 991px) {
  .whowearesec ul li.teamsec {
    margin-left: 23%;
  }
}
@media (max-width: 767px) {
  .whowearesec ul li.teamsec {
    margin-left: 7%;
  }
}
@media (max-width: 480px) {
  .whowearesec ul li.teamsec {
    margin-left: 0;
  }
}
.whowearesec ul li:last-child {
  margin-left: 47%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .whowearesec ul li:last-child {
    margin-left: 38%;
  }
}
@media (max-width: 767px) {
  .whowearesec ul li:last-child {
    margin-left: 16%;
  }
}
@media (max-width: 480px) {
  .whowearesec ul li:last-child {
    margin-left: 0;
  }
}
.whowearesec .bottomtxt {
  font-size: 106px;
  line-height: 110px;
  color: white;
  opacity: 0.2;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .whowearesec .bottomtxt {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (max-width: 991px) {
  .whowearesec .bottomtxt {
    font-size: 70px;
    line-height: 80px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .whowearesec .bottomtxt {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .whowearesec .bottomtxt {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  .whowearesec .bottomtxt {
    font-size: 29px;
    line-height: 35px;
  }
}

.worksection {
  min-height: 600px;
  background-attachment: fixed;
  background-size: contain;
}
.worksection .imgbox {
  overflow: hidden;
  position: relative;
}
.worksection .imgbox a img {
  transition: transform 5s ease-out;
}
.worksection .imgbox .overlay {
  background: transparent;
  position: absolute;
  margin: auto;
  width: 0px;
  height: 0px;
  border-radius: 8px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.worksection .imgbox .overlay .modalHover {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  padding: 0 20px;
  background: url(../images/subtract.png);
  background-repeat: no-repeat;
  width: 205px;
  height: 72px;
}
.worksection .imgbox .overlay .modalSubtitle {
  color: #fff;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  line-height: 23px;
  margin: auto;
  opacity: 0;
}
.worksection .imgbox .overlay .modalPara {
  color: #fff;
  text-align: left;
  margin: 0;
  opacity: 0;
  max-width: 230px;
  font-weight: normal;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.worksection .imgbox:hover .overlay {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.worksection .imgbox:hover .overlay .modalSubtitle {
  opacity: 1;
  transition: 1.3s ease;
}
.worksection .imgbox:hover .overlay .modalPara {
  opacity: 1;
  transition: 1.3s ease;
}
@media (max-width: 991px) {
  .worksection.sectionPadding {
    padding-bottom: 50px;
  }
}
.worksection .imgbox {
  margin-bottom: 20px;
}
.worksection .imgbox img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 767px) {
  .worksection .imgbox img {
    height: 350px;
  }
}
.worksection .title {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .worksection .title {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .worksection .title {
    margin-bottom: 30px;
  }
}
.worksection ul {
  display: flex;
  align-items: flex-start;
}
.worksection ul li {
  list-style: none;
  box-shadow: 0 10px 20px #D9D9D9;
}
.worksection ul li.worklist {
  margin: 0 20px;
  margin-top: 7%;
}
.worksection ul li img {
  height: 100%;
}
.worksection .commonbtn {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .worksection .commonbtn {
    margin-top: 40px;
  }
}

.commonbtn {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #8DC63F;
  padding: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  display: inline-block;
  transition: all ease-in-out 0.2s;
  border: none;
}
.commonbtn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000;
  transition: all 0.3s;
  z-index: 0;
}
.commonbtn:hover {
  color: #fff;
}
.commonbtn:hover:before {
  width: 100%;
  z-index: -1;
  left: 0;
}

.clientsec {
  background: #95D6E8;
}
.clientsec .title {
  margin-bottom: 30px;
}
.clientsec .clientbox {
  padding: 26px;
  min-height: 142px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  .clientsec .clientbox {
    min-height: 128px;
  }
}
@media (max-width: 575px) {
  .clientsec .clientbox {
    min-height: auto;
    margin-bottom: 15px;
  }
}
.clientsec .clientSlider .slick-slide img {
  max-height: 100px;
}
@media (max-width: 1024px) {
  .clientsec .clientSlider {
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .clientsec .clientSlider {
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .clientsec .clientSlider {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.clientsec .clientSlider .slick-slide {
  margin: 0 10px;
}
.clientsec .clientSlider .slick-prev {
  top: 56%;
  left: -3%;
}
.clientsec .clientSlider .slick-prev:before {
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 50px;
  line-height: 0;
}
@media (max-width: 1024px) {
  .clientsec .clientSlider .slick-prev {
    top: 97%;
    left: 46%;
  }
}
.clientsec .clientSlider .slick-next {
  top: 56%;
  right: -3%;
}
.clientsec .clientSlider .slick-next:before {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 50px;
  line-height: 0;
}
@media (max-width: 1024px) {
  .clientsec .clientSlider .slick-next {
    top: 97%;
    right: 46%;
  }
}
@media (max-width: 1024px) {
  .clientsec .clientSlider .slick-dots button {
    font-size: 0;
    background: #929292;
    height: 5px;
    width: 5px;
    border-radius: 50px;
  }
}
@media (max-width: 991px) {
  .clientsec .clientSlider .slick-dots li {
    margin: 0;
  }
}
.clientsec .clientSlider .slick-dots li.slick-active {
  width: 30px;
  margin: 0 5px;
}
.clientsec .clientSlider .slick-dots li.slick-active button {
  background: #066799;
  width: 30px;
}
.clientsec .testimonialSlider .slick-dots {
  bottom: -45px;
}
.clientsec .testimonialSlider .slick-dots li {
  margin: auto;
}
.clientsec .testimonialSlider .slick-dots li button {
  font-size: 0;
  background: #929292;
  height: 5px;
  width: 5px;
  border-radius: 50px;
}
.clientsec .testimonialSlider .slick-dots li.slick-active {
  width: 30px;
  margin: 0 5px;
}
.clientsec .testimonialSlider .slick-dots li.slick-active button {
  background: #066799;
  width: 30px;
}
.clientsec .testimonialbox {
  margin-top: 30px;
}
.clientsec .testimonialbox p {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
  color: #414042;
  text-align: center;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .clientsec .testimonialbox p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .clientsec .testimonialbox p {
    font-size: 16px;
    line-height: 26px;
  }
}
.clientsec .testimonialbox ul {
  text-align: center;
  margin-top: 10px;
}
.clientsec .testimonialbox ul li {
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.clientsec .testimonialbox ul li.name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.clientsec .testimonialbox .testimonialimg {
  margin: 0px auto;
  margin-top: 30px;
  width: 110px;
  height: 110px;
  border: 7px solid #D9D9D9;
  border-radius: 100%;
  overflow: hidden;
}
.clientsec .testimonialbox .testimonialimg img {
  width: 100%;
  margin: auto;
}

.stickybtn {
  display: inline-block;
  position: fixed;
  z-index: 99999 !important;
  right: 14px;
  bottom: 20%;
}
.stickybtn ul li {
  list-style: none;
  margin-bottom: 24px;
}
.stickybtn ul li i:before {
  color: #012132;
  font-size: 45px;
  line-height: 24px;
}
.stickybtn ul li:last-child {
  margin-bottom: 0;
}
.stickybtn ul li a {
  display: inline-block;
  transition: 0.2s ease-in-out 0s;
}
.stickybtn ul li a:hover {
  cursor: pointer;
  transform: scale(1.25);
}
@media (max-width: 1024px) {
  .stickybtn {
    border-radius: 50px;
    left: auto;
    right: 0;
    padding: 12px;
  }
}

.awardsection {
  background: #CFB393;
  text-align: center;
}
.awardsection .title {
  margin-bottom: 50px;
  margin-top: 8px;
}
@media (max-width: 575px) {
  .awardsection .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .awardsection .awardSlider .slick-dots {
    bottom: -43px;
  }
  .awardsection .awardSlider .slick-dots button {
    font-size: 0;
    background: #929292;
    height: 15px;
    width: 15px;
    border-radius: 50px;
  }
}
@media (max-width: 991px) {
  .awardsection .awardSlider .slick-dots li.slick-active button {
    background: #066799;
  }
}
.awardsection .awardSlider .awardBox {
  position: relative;
}
.awardsection .awardSlider .awardBox img {
  width: 771px;
  margin: auto;
}
.awardsection .awardSlider .awardBox .awarddetailbox {
  background: #000;
  opacity: 0.5;
  max-width: 370px;
  padding: 30px;
  position: absolute;
  top: 0;
  left: 15.5%;
}
@media (min-width: 1400px) and (max-width: 1800px) {
  .awardsection .awardSlider .awardBox .awarddetailbox {
    left: 20.5%;
  }
}
.awardsection .awardSlider .awardBox .awarddetailbox p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
}
.awardsection .awardSlider .awardBox .awarddetailbox p:last-child {
  font-weight: 500;
}
@media (max-width: 575px) {
  .awardsection .awardSlider .awardBox .awarddetailbox p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .awardsection .awardSlider .awardBox .awarddetailbox {
    left: 9%;
  }
}
@media (max-width: 991px) {
  .awardsection .awardSlider .awardBox .awarddetailbox {
    left: 0;
  }
}
@media (max-width: 575px) {
  .awardsection .awardSlider .awardBox .awarddetailbox {
    max-width: 100%;
    position: relative;
    padding: 15px;
  }
}
.awardsection .awardSlider .slick-prev {
  left: 7%;
}
.awardsection .awardSlider .slick-prev:before {
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 50px;
}
@media (max-width: 1024px) {
  .awardsection .awardSlider .slick-prev {
    left: 3%;
  }
}
.awardsection .awardSlider .slick-next {
  right: 7%;
}
.awardsection .awardSlider .slick-next:before {
  content: "\f105  ";
  font-family: "FontAwesome";
  font-size: 50px;
}
@media (max-width: 1024px) {
  .awardsection .awardSlider .slick-next {
    right: 3%;
  }
}

footer {
  background: linear-gradient(90deg, #2F8ABD 0%, #89C145 100%);
}
footer .title {
  text-align: left;
}
@media (max-width: 1024px) {
  footer .title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  footer .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  footer .contactdetail {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  footer .contactdetail {
    flex-direction: column-reverse;
  }
}
footer .contactdetail span {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
footer .contactdetail ul li {
  list-style: none;
}
footer .contactdetail ul li a {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  transition: all ease-in-out 0.2s;
}
@media (max-width: 991px) {
  footer .contactdetail ul li a {
    font-size: 20px;
    line-height: 30px;
  }
}
footer .contactdetail ul li a img {
  margin-left: 12px;
}
footer .contactdetail ul li:first-child {
  margin-bottom: 10px;
}
footer .contactdetail ul li:hover a {
  color: #8DC63F;
}
footer .contactdetail .email {
  color: #fff;
  display: block;
  margin-top: 20px;
}
footer .contactdetail .email:hover {
  color: #8DC63F;
}
footer .contactdetail .footerlogo {
  margin-top: 20%;
  display: block;
}
@media (max-width: 767px) {
  footer .contactdetail .footerlogo {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  footer .contactdetail .footerlogo {
    margin-bottom: 25px;
  }
}
footer .inquiryForm {
  background: none;
}
footer .inquiryForm .roboto {
  position: relative;
}
footer .inquiryForm .roboto label {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  footer .inquiryForm {
    margin-top: 30px;
  }
}
footer .inquiryForm .commonbtn {
  padding: 9px 34px;
  text-align: left;
  margin-top: 30px;
}
@media (max-width: 767px) {
  footer .inquiryForm {
    text-align: center;
  }
}
footer .inquiryForm .form-group ::-moz-placeholder {
  color: #fff;
  font-size: 18px !important;
  line-height: 28px !important;
  display: flex !important;
  align-items: flex-start !important;
  vertical-align: top !important;
  padding-bottom: 10px;
}
footer .inquiryForm .form-group ::placeholder {
  color: #fff;
  font-size: 18px !important;
  line-height: 28px !important;
  display: flex !important;
  align-items: flex-start !important;
  vertical-align: top !important;
  padding-bottom: 10px;
}
footer .inquiryForm .form-group .form-control {
  background: none;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  color: #fff;
}
footer .disclamber {
  margin-top: 60px;
}
footer .disclamber p.title {
  margin-bottom: 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
footer .disclamber p.title:hover {
  color: #8DC63F;
}
@media (max-width: 767px) {
  footer .disclamber p.title {
    text-align: left;
    margin-bottom: 10px;
  }
}
footer .disclamber .content {
  display: none;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  color: #fff;
}

.brandingdetailsec.sectionPadding {
  padding-top: 0;
}
@media (max-width: 767px) {
  .brandingdetailsec.sectionPadding {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .brandingdetailsec.sectionPadding {
    padding-top: 30px;
  }
}
.brandingdetailsec .brandingdetail {
  margin-top: 50px;
  max-width: 959px;
}
.brandingdetailsec .brandingdetail p {
  color: #585858;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .brandingdetailsec .brandingdetail {
    margin-top: 30px;
  }
}
.brandingdetailsec .brandingimg {
  text-align: end;
  margin-top: -21%;
}
@media (max-width: 1024px) {
  .brandingdetailsec .brandingimg {
    margin-top: -31%;
  }
}
@media (max-width: 991px) {
  .brandingdetailsec .brandingimg {
    margin-top: -36%;
  }
}
@media (max-width: 575px) {
  .brandingdetailsec .brandingimg {
    margin-top: 0;
  }
}

.relatedwork {
  background: #EEEEEE;
}
.relatedwork .title {
  text-align: left;
  color: #000;
  margin-bottom: 50px;
}
.relatedwork .relatedworksec ul {
  display: flex;
  flex-wrap: wrap;
}
.relatedwork .relatedworksec ul li {
  list-style: none;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}
.relatedwork .relatedworksec ul li a {
  border: 10px solid rgba(105, 105, 105, 0.5);
  border-radius: 100%;
  height: 320px;
  width: 320px;
  display: block;
}
.relatedwork .relatedworksec ul li a img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  .relatedwork .relatedworksec ul li a {
    height: 280px;
    width: 280px;
  }
}
@media (max-width: 991px) {
  .relatedwork .relatedworksec ul li a {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 767px) {
  .relatedwork .relatedworksec ul li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .relatedwork .relatedworksec ul li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .relatedwork .relatedworksec ul li a {
    height: 250px;
    width: 250px;
    margin: 0 auto;
  }
}

.aboutSection .title {
  margin: 0px;
}
.aboutSection .subdetail {
  font-weight: 600;
  max-width: 80%;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 1199px) {
  .aboutSection .subdetail {
    max-width: 71%;
  }
}
@media (max-width: 991px) {
  .aboutSection .subdetail {
    max-width: 98%;
  }
}
@media (max-width: 767px) {
  .aboutSection .subdetail {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .aboutSection .title {
    margin: 0px 0px 7px 0px;
  }
}

.aboutSection_second {
  position: relative;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.aboutSection_second .imgbox {
  position: relative;
  z-index: 1;
  max-width: 86%;
}
.aboutSection_second .contentbox {
  position: absolute;
  z-index: 2;
  left: 0px;
  top: auto;
  bottom: auto;
  width: 100%;
}
.aboutSection_second .contentbox::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 51%;
  height: 100%;
  background: #95D6E8;
}
.aboutSection_second .contentbox .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.aboutSection_second .contentbox p {
  padding-bottom: 0px;
  margin: 0px;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
}
.aboutSection_second .contentbox .maxwidthset1 {
  max-width: 526px;
}
@media (max-width: 1199px) {
  .aboutSection_second .contentbox::after {
    width: 65%;
  }
  .aboutSection_second .contentbox .maxwidthset1 {
    max-width: 516px;
  }
  .aboutSection_second .contentbox .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .aboutSection_second .imgbox {
    max-width: 100%;
  }
  .aboutSection_second .contentbox::after {
    width: 80%;
  }
  .aboutSection_second .contentbox .maxwidthset1 {
    max-width: 516px;
  }
  .aboutSection_second .contentbox .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .aboutSection_second .contentbox::after {
    width: 90%;
    left: 5%;
    right: 5%;
  }
  .aboutSection_second .contentbox .maxwidthset1 {
    max-width: 100%;
  }
  .aboutSection_second .contentbox .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .aboutSection_second .contentbox .maxwidthset1 {
    max-width: 83%;
    margin: 0px auto;
  }
  .aboutSection_second .contentbox .container {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .aboutSection_second .contentbox p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 400px) {
  .aboutSection_second .imgbox img {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .aboutSection_second .contentbox .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .aboutSection_second .contentbox p {
    font-size: 20px;
    line-height: 26px;
  }
}

.aboutSection_3 .maxwidth983 {
  max-width: 667px;
}
.aboutSection_3 .maxwidth983 p {
  font-size: 22px;
  line-height: 28px;
  padding: 0px 0px 26px 0px;
  margin: 0px;
}
.aboutSection_3 .maxwidth983 p:last-child {
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .aboutSection_3 .maxwidth983 {
    max-width: 100%;
  }
  .aboutSection_3 .maxwidth983 p {
    font-size: 19px;
    line-height: 26px;
  }
}
@media (max-width: 400px) {
  .aboutSection_3 .maxwidth983 p {
    font-size: 18px;
    line-height: 24px;
  }
}

.abtsec {
  position: relative;
}
.abtsec:before {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(69% 0%, 107% 0%, 38% 100%, 0% 100%);
          clip-path: polygon(69% 0%, 107% 0%, 38% 100%, 0% 100%);
  width: 118%;
  height: 100%;
  background: #4DA4BC;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.abtsec .abtdetail .title {
  color: #000;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .abtsec .abtdetail .title {
    margin-bottom: 30px;
  }
}
.abtsec .abtdetail .subdetail {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .abtsec .abtdetail .subdetail {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .abtsec .abtdetail .subdetail {
    font-size: 25px;
    line-height: 35px;
  }
}
.abtsec .abtdetail .detail {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  max-width: 755px;
}

.abtperson {
  background-color: #95D6E8;
}
.abtperson .abtpersondetail {
  display: flex;
}
@media (max-width: 991px) {
  .abtperson .abtpersondetail {
    flex-direction: column;
  }
}
.abtperson .abtpersondetail .abtimg {
  flex: 0 0 30%;
  max-width: 30%;
}
.abtperson .abtpersondetail .abtimg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .abtperson .abtpersondetail .abtimg img {
    height: 500px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 991px) {
  .abtperson .abtpersondetail .abtimg {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.abtperson .abtpersondetail .persondetail {
  flex: 0 0 70%;
  max-width: 70%;
}
.abtperson .abtpersondetail .persondetail.sectionPadding {
  padding: 100px 50px;
}
@media (max-width: 991px) {
  .abtperson .abtpersondetail .persondetail.sectionPadding {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .abtperson .abtpersondetail .persondetail.sectionPadding {
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  .abtperson .abtpersondetail .persondetail {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.abtperson .abtpersondetail .persondetail .personname {
  font-size: 45px;
  line-height: 55px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .abtperson .abtpersondetail .persondetail .personname {
    font-size: 35px;
    line-height: 45px;
  }
}
.abtperson .abtpersondetail .persondetail .detail {
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  margin-bottom: 20px;
}
.abtperson .abtpersondetail .persondetail p {
  font-size: 18px;
  line-height: 26px;
}

.clientdetail p {
  font-size: 18px;
  line-height: 28px;
  max-width: 756px;
  margin-bottom: 0;
}
.clientdetail .title {
  text-align: left;
  color: #000;
  font-weight: 400;
  text-transform: inherit;
  max-width: 970px;
  margin-bottom: 40px;
  font-size: 35px;
  line-height: 45px;
}
@media (max-width: 1024px) {
  .clientdetail .title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .clientdetail .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .clientdetail .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.clientdetail ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.clientdetail ul li {
  list-style: none;
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 10px;
}
.clientdetail ul li .clientBox {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  max-height: 122px;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.clientdetail ul li .clientBox img {
  max-height: 109px;
}
@media (max-width: 991px) {
  .clientdetail ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 767px) {
  .clientdetail ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.testimonialPage .testimonialbox {
  margin-top: 0;
}

.awardsec ul {
  display: flex;
}
.awardsec ul li {
  list-style: none;
  color: #585858;
  border-bottom: 1px solid #D9D9D9;
  padding: 10px 0;
}
.awardsec ul li.organization {
  flex: 0 0 20%;
  max-width: 20%;
  filter: grayscale(1);
  transition: all ease-in-out 0.2s;
}
.awardsec ul li.prize {
  flex: 0 0 30%;
  max-width: 30%;
}
.awardsec ul li.prize p {
  max-width: 270px;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}
.awardsec ul li.prize p:first-child {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 25px;
}
.awardsec ul li.project {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}
.awardsec ul li.project p {
  font-weight: 500;
}
.awardsec ul li.year {
  flex: 0 0 10%;
  max-width: 10%;
}
.awardsec ul li.year span {
  font-weight: 500;
}
.awardsec ul:hover .prize p {
  color: #005D77;
}
.awardsec ul:hover .organization {
  filter: grayscale(0);
}
.awardsec ul:hover .project {
  color: #005D77;
}
.awardsec ul:hover .year span {
  color: #005D77;
}

.char {
  font-size: 20px;
  line-height: 30px;
  animation: an 1s ease-out 1 both;
  display: inline-block;
}

@keyframes an {
  from {
    opacity: 0;
    transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
  }
  to {
    opacity: 1;
    transform: perspective(500px) translate3d(0, 0, 0);
  }
}
.contactsec {
  position: relative;
}
.contactsec:before {
  content: "";
  position: absolute;
  background: #4DA4BC;
  height: 100%;
  width: 353px;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .contactsec:before {
    width: 285px;
  }
}
@media (max-width: 767px) {
  .contactsec:before {
    width: 250px;
  }
}
@media (max-width: 575px) {
  .contactsec:before {
    width: 195px;
  }
}
.contactsec .social {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .contactsec .social {
    margin-top: 30px;
  }
}
.contactsec .social ul {
  display: flex;
}
.contactsec .social ul li {
  list-style: none;
  margin-right: 20px;
}
.contactsec .social ul li i:before {
  font-size: 35px;
  line-height: 45px;
  color: #000;
}
@media (max-width: 1024px) {
  .contactsec .social ul li i:before {
    font-size: 32px;
    line-height: 40px;
  }
}
.contactsec .social ul li a {
  transition: all ease-in-out 0.2s;
  display: inline-block;
}
.contactsec .social ul li .facebook:hover i:before {
  color: #3b5998;
}
.contactsec .social ul li .twitter:hover i:before {
  color: #00acee;
}
.contactsec .social ul li .youtube:hover i:before {
  color: #c4302b;
}
.contactsec .social ul li .linkedin:hover i:before {
  color: #0A66C2;
}
.contactsec .emailsec {
  display: flex;
  align-items: baseline;
}
.contactsec .emailsec i:before {
  color: #000;
}
.contactsec .emailsec ul {
  margin-left: 20px;
}
.contactsec .emailsec ul li {
  list-style: none;
  margin-bottom: 5px;
}
.contactsec .emailsec ul li a {
  color: #000;
  font-size: 25px;
  line-height: 35px;
  transition: all ease-in-out 0.2s;
  display: block;
}
@media (max-width: 1024px) {
  .contactsec .emailsec ul li a {
    font-size: 22px;
    line-height: 30px;
  }
}
.contactsec .emailsec ul li:hover a {
  color: #8DC63F;
}
.contactsec .emailsec.phone {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .contactsec .emailsec.phone {
    margin-top: 30px;
  }
}
.contactsec .title {
  color: #000;
  text-align: left;
}
@media (max-width: 1024px) {
  .contactsec .title {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .contactsec .title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
.contactsec .inquiryForm {
  background: #FFFFFF;
  box-shadow: 0px 5px 15px 10px rgba(0, 0, 0, 0.16);
  padding: 40px;
}
.contactsec .inquiryForm button {
  border: none;
}
.contactsec .inquiryForm .roboto {
  display: flex;
}
@media (max-width: 767px) {
  .contactsec .inquiryForm .contactbtn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .contactsec .inquiryForm {
    margin-top: 50px;
  }
}
.contactsec .inquiryForm .commonbtn {
  padding: 9px 34px;
  text-align: left;
  margin-top: 20px;
}
.contactsec .inquiryForm .form-group .form-control {
  border: none;
  border-bottom: 1px solid #A8A8A8;
  border-radius: 0;
}
.contactsec .inquiryForm .form-group ::-moz-placeholder {
  color: #000;
  font-size: 16px !important;
  line-height: 26px !important;
  display: flex !important;
  align-items: flex-start !important;
  vertical-align: top !important;
  padding-bottom: 10px;
}
.contactsec .inquiryForm .form-group ::placeholder {
  color: #000;
  font-size: 16px !important;
  line-height: 26px !important;
  display: flex !important;
  align-items: flex-start !important;
  vertical-align: top !important;
  padding-bottom: 10px;
}
.contactsec .inquiryForm select {
  border: none;
  border-bottom: 1px solid #A8A8A8;
  border-radius: 0;
}

.qualificationsec p {
  font-size: 36px;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .qualificationsec p {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .qualificationsec p {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .qualificationsec p {
    font-size: 25px;
    line-height: 35px;
  }
}
.qualificationsec .qualificationdetail {
  max-width: 370px;
  margin-left: auto;
}
.qualificationsec .qualificationdetail p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .qualificationsec .qualificationdetail {
    max-width: 100%;
  }
}
.qualificationsec .row {
  align-items: end;
}

.service {
  background: #F2F2F2;
}
@media (max-width: 767px) {
  .service.sectionPadding {
    padding-top: 0;
  }
}
.service .servicebox .servicetitle {
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 50px;
  text-align: left !important;
}
@media (max-width: 1024px) {
  .service .servicebox .servicetitle {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .service .servicebox .servicetitle {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }
}
.service .servicebox .serviceimg {
  box-shadow: 0 10px 20px #D9D9D9;
}
.service .servicebox .serviceimg img {
  width: 100%;
}
@media (max-width: 767px) {
  .service .servicebox .serviceimg img {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.service .servicebox p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 20px;
  color: #696969;
}
.service .servicebox.marginB {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .service .servicebox.marginB {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .service .servicebox.marginB {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .service .servicebox {
    border-bottom: 1px solid #7fbb53;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .service .servicebox.borderN {
    border: none;
  }
}
.service .row .padding20 {
  padding: 0 50px;
}
@media (max-width: 1024px) {
  .service .row .padding20 {
    padding: 0 30px;
  }
}
.service .row .margin20 {
  margin-top: 13%;
}
@media (max-width: 767px) {
  .service .row .margin20 {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .service .row .margin20 {
    margin-top: 30px;
  }
}

.eventSec {
  background: #F2F2F2;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: -56px;
}
.eventSec.eventlist {
  margin-top: 0px;
}
.eventSec.fancyBox {
  background: none;
}
.eventSec .filter {
  position: relative;
}
.eventSec .filter .filterdropdown {
  background: rgba(122, 122, 122, 0.7);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  position: absolute;
  right: 50px;
  top: 5%;
  z-index: 1;
  padding: 30px 20px;
  display: none;
  width: 279px;
  min-height: 452px;
}
.eventSec .filter .filterdropdown .dropdownsec {
  background: #FFFFFF;
  padding: 15px;
  border-radius: 8px;
}
.eventSec .filter .filterdropdown .dropdownsec ul li {
  list-style: none;
  margin-bottom: 10px;
}
.eventSec .filter .filterdropdown .dropdownsec ul li a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.eventSec .filter .filterdropdown .dropdownsec ul li a:hover {
  color: #8dc63f;
}
.eventSec .filter .filterdropdown .dropdownsec ul li.active a {
  font-size: 16px;
  line-height: 20px;
  color: #555555;
}
.eventSec .filter .filterdropdown select {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background: #fff url(../images/dropdown.svg) no-repeat;
  background-position: center right 20px;
  width: 240px;
}
.eventSec .filter .filterdropdown select option {
  background: #F2F2F2;
  font-size: 14px;
  line-height: 20px;
  color: #9D9D9D;
  padding: 15px;
}
.eventSec .filtersec {
  text-align: end;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .eventSec .filtersec {
    margin-bottom: 30px;
  }
}
.eventSec .filtersec a {
  background: #8DC63F;
  padding: 10px;
  border-radius: 50px;
  display: inline-block;
  height: 40px;
  width: 40px;
}
.eventSec .masonry .brick {
  position: relative;
  width: 100%;
}
.eventSec .masonry .brick .fancy a {
  position: relative;
}
.eventSec .masonry .brick .fancy a:before {
  position: absolute;
  content: "";
  background: rgba(141, 198, 63, 0.7);
  width: 0;
  height: 0;
  transition: all ease-in-out 0.2s;
}
.eventSec .masonry .brick .fancy a:hover:before {
  width: 100%;
  height: 100%;
}
.eventSec .masonry .brick .fancy a:hover:after {
  width: 30px;
  height: 30px;
}
.eventSec .masonry .brick .fancy a:after {
  content: "";
  position: absolute;
  background: url(../images/plus.png);
  background-repeat: no-repeat;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all ease-in-out 0.2s;
}
.eventSec .masonry .brick .overlay {
  background: transparent;
  position: absolute;
  margin: auto;
  width: 0px;
  height: 0px;
  border-radius: 8px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.eventSec .masonry .brick .overlay .modalHover {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  padding: 0 20px;
  background: url(../images/subtract.png);
  background-repeat: no-repeat;
  width: 205px;
  height: 72px;
}
@media (max-width: 575px) {
  .eventSec .masonry .brick .overlay .modalHover {
    width: 165px;
    height: 60px;
    background-size: contain;
    padding: 0;
  }
}
.eventSec .masonry .brick .overlay .modalSubtitle {
  color: #fff;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  line-height: 23px;
  margin: auto;
  opacity: 0;
}
.eventSec .masonry .brick .overlay .modalPara {
  color: #fff;
  text-align: left;
  margin: 0;
  opacity: 0;
  max-width: 230px;
  font-weight: normal;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eventSec .masonry .brick:hover .overlay {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.eventSec .masonry .brick:hover .overlay .modalSubtitle {
  opacity: 1;
  transition: 1.3s ease;
}
.eventSec .masonry .brick:hover .overlay .modalPara {
  opacity: 1;
  transition: 1.3s ease;
}
@media (max-width: 480px) {
  .eventSec .masonry {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.worksec {
  background: #95D6E8;
  position: relative;
  min-height: 450px;
}
.worksec.sectionPadding {
  padding-bottom: 50px;
}
.worksec .workImage {
  position: absolute;
  left: 0;
  top: 30%;
}
.worksec .workImage img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 80%;
}
@media (max-width: 1199px) {
  .worksec .workImage img {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .worksec .workImage img {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .worksec .workImage {
    position: relative;
    top: 0;
  }
  .worksec .workImage img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .worksec .workImage {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
  }
  .worksec .workImage img {
    max-width: 100%;
  }
}
.worksec .worktitle {
  font-size: 44px;
  line-height: 55px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .worksec .worktitle {
    font-size: 36px;
    line-height: 47px;
  }
}
@media (max-width: 575px) {
  .worksec .worktitle {
    font-size: 24px;
    line-height: 30px;
  }
}
.worksec .worktitle span {
  display: inline-block;
  animation: up_down 1.5s ease-in-out infinite;
}
.worksec p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .worksec p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .worksec {
    min-height: auto;
  }
  .worksec .workImage {
    max-width: 85%;
  }
  .worksec .workImage img {
    height: 200px;
    margin-bottom: 20px;
    width: 100%;
  }
  .worksec .worktitle {
    text-align: center;
  }
  .worksec p {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .worksec .workImage img {
    margin-bottom: 10px;
  }
}

@keyframes up_down {
  0% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-6px);
  }
}
.rightarrow {
  text-align: end;
  margin-bottom: 30px;
}
.rightarrow .commonbtn {
  padding: 10px 20px;
  background: #168aa9;
}
.rightarrow .commonbtn i {
  margin-right: 15px;
}
.rightarrow .commonbtn i:before {
  color: white;
}
.rightarrow .commonbtn a {
  color: #fff;
}
@media (max-width: 575px) {
  .rightarrow .commonbtn {
    padding: 5px 15px;
  }
}
@media (max-width: 767px) {
  .rightarrow {
    margin-bottom: 20px;
  }
}

.companyname {
  padding: 30px 0;
  position: relative;
}
.companyname ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.companyname ul li {
  margin-right: 30px;
  list-style: none;
}
.companyname ul li .companytitle {
  font-size: 16px;
  line-height: 24px;
  color: #047FA0;
  font-weight: 500;
  margin-bottom: 0px;
}
.companyname ul li p {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 575px) {
  .companyname ul li p br {
    display: none;
  }
}
@media (max-width: 575px) {
  .companyname ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@keyframes anm1 {
  0% {
    width: 0px;
  }
}
@keyframes anm2 {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#whoweare ul {
  position: relative;
}
#whoweare ul li.firstli {
  opacity: 0;
  transition: all ease-in 0.8s 0s;
}
@media (max-width: 575px) {
  #whoweare ul li.firstli {
    margin-left: 0%;
  }
}
#whoweare ul li.secondli {
  opacity: 0;
  transition: all ease-in 0.8s 1s;
}
@media (max-width: 575px) {
  #whoweare ul li.secondli {
    margin-left: 0%;
  }
}
#whoweare ul li.thirdli {
  opacity: 0;
  transition: all ease-in 0.8s 2s;
}
@media (max-width: 575px) {
  #whoweare ul li.thirdli {
    margin-left: 0%;
  }
}
#whoweare ul li.fourthli {
  opacity: 0;
  transition: all ease-in 0.8s 3s;
  margin-left: 47%;
}
@media (max-width: 991px) {
  #whoweare ul li.fourthli {
    margin-left: 38%;
  }
}
@media (max-width: 767px) {
  #whoweare ul li.fourthli {
    margin-left: 14%;
  }
}
@media (max-width: 575px) {
  #whoweare ul li.fourthli {
    margin-left: 0%;
  }
}
#whoweare ul .firstLine {
  position: absolute;
  top: 62px;
  left: 11%;
  border-width: 1px;
  height: 0;
  border-style: dashed;
  border-color: #fff;
  transition: all ease-in 1s 0.5s;
  margin: auto;
  opacity: 0;
}
#whoweare ul .secondLine {
  position: absolute;
  top: 45%;
  left: 34%;
  border-width: 1px;
  height: 0;
  border-style: dashed;
  border-color: #fff;
  transition: all ease-in 1s 1.5s;
  margin: auto;
  opacity: 0;
}
#whoweare ul .thirdLine {
  position: absolute;
  top: 72%;
  left: 47%;
  border-width: 1px;
  height: 0;
  border-style: dashed;
  border-color: #fff;
  transition: all ease-in 1s 2.5s;
  margin: auto;
  opacity: 0;
}
#whoweare.active ul li.firstli {
  opacity: 1;
}
#whoweare.active ul li.secondli {
  opacity: 1;
}
#whoweare.active ul li.thirdli {
  opacity: 1;
}
#whoweare.active ul li.fourthli {
  opacity: 1;
}
#whoweare.active ul .firstLine {
  height: 50px;
  opacity: 1;
}
@media (max-width: 1024px) {
  #whoweare.active ul .firstLine {
    height: 30px;
  }
}
@media (max-width: 991px) {
  #whoweare.active ul .firstLine {
    display: none;
  }
}
#whoweare.active ul .secondLine {
  height: 50px;
  opacity: 1;
}
@media (max-width: 1024px) {
  #whoweare.active ul .secondLine {
    height: 30px;
  }
}
@media (max-width: 991px) {
  #whoweare.active ul .secondLine {
    display: none;
  }
}
#whoweare.active ul .thirdLine {
  height: 50px;
  opacity: 1;
}
@media (max-width: 1024px) {
  #whoweare.active ul .thirdLine {
    height: 30px;
  }
}
@media (max-width: 991px) {
  #whoweare.active ul .thirdLine {
    display: none;
  }
}

label.error {
  display: flex;
  align-items: flex-start;
  color: red;
  font-size: 12px;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 100%;
}

.form-group {
  position: relative;
}

#captchaerror {
  margin-top: 10px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: right;
  top: 100%;
  font-size: 12px;
}

.info2, .success, .warning2, .failure, .validation2 {
  border: 1px solid;
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
}

.info2 {
  color: #00529B;
  background-color: #BDE5F8;
  background-image: url(../../assets/images/info.png);
}

.success {
  color: #4F8A10;
  background-color: #DFF2BF;
  background-image: url(../../assets/images/success.png);
}

.warning2 {
  color: #9F6000;
  background-color: #FEEFB3;
  background-image: url(../../assets/images/warning.png);
}

.failure {
  color: #D8000C;
  background-color: #FFBABA;
  background-image: url(../../assets/images/error.png);
}

.hm_client #owl-example1, .hm_client .owl-carousel .owl-stage-outer {
  height: 110px !important;
}

input[type=text].error, textarea.error {
  border-bottom: 2px solid #F00 !important;
}

label.error {
  color: #F00;
}

label.error {
  position: absolute;
  font-size: 13px;
  font-weight: 400;
}

/* Style the tab */
.tabLinks {
  overflow: hidden;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  background-color: transparent;
}

/* Style the buttons inside the tab */
.tabLinks button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  margin: 15px 15px;
  font-size: 24px;
  margin: 5px 15px;
}

/* Change background color of buttons on hover */
.tabLinks button:hover {
  background-color: #368eb4;
  color: #fff;
}

/* Create an active/current tablink class */
.tabLinks button.active {
  background-color: #368eb4;
  color: #fff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 15px;
}

.videoBox {
  display: flex;
  flex-wrap: wrap;
}
.videoBox .videoFancy {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 25px;
}
.videoBox .videoFancy img {
  width: 100%;
}
@media (max-width: 767px) {
  .videoBox .videoFancy {
    flex: 0 0 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */