@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway: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");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Josefin Sans", sans-serif;
  color: #3B3D3C;
  background-color: #141414;
}

ion-icon {
  margin-top: 5px;
}
ion-icon:hover {
  cursor: pointer;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #2F2B2B;
}
a:hover {
  cursor: pointer;
}

input,
img,
.slick-slider {
  outline: none;
}

button {
  border: none;
  outline: none;
}
button:hover {
  cursor: pointer;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #353535;
}

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

@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    letter-spacing: 0px;
  }
}
button {
  font-family: "Josefin Sans", sans-serif;
  color: white;
  background: transparent;
  text-transform: uppercase;
  border: 1px solid white;
  padding: 7px 15px;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  z-index: 20;
}
button .fa-arrow-right {
  transform: translate(-8px, 2px);
  color: #FF480D;
  font-size: 17px;
}
button .hover-curve {
  position: absolute;
  transition: 0.5s;
  border-radius: 25px;
  width: 130%;
  height: 100%;
  left: -109%;
  top: 0;
  z-index: -19;
  background-color: white;
}
button:hover {
  cursor: pointer;
  color: #FF480D;
}
button:hover .hover-curve {
  left: -14%;
}

.breadcrumb {
  background: url("../images/breadcrumb.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 0;
  position: relative;
  padding: 30px 0;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.7);
}
.breadcrumb .wrapper {
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}
.breadcrumb .bread-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.breadcrumb .bread-wrap .bread-item,
.breadcrumb .bread-wrap .bread-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease-in;
}
.breadcrumb .bread-wrap .bread-item {
  position: relative;
  padding: 0 20px 0 10px;
}
.breadcrumb .bread-wrap .bread-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "fontawesome";
  font-size: 12px;
  color: #fff;
}
.breadcrumb .bread-wrap .bread-item .bread-link {
  transition: 0.3s ease-in;
}
.breadcrumb .bread-wrap .bread-item .bread-link:hover {
  color: #ffcc00;
}
.breadcrumb .bread-wrap .bread-item:last-child::before {
  content: none;
}
.breadcrumb .bread-wrap .bread-item:first-child {
  padding-left: 0;
}
.breadcrumb .bread-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
  position: relative;
}

header {
  padding: 0 70px;
}

nav {
  max-width: 1600px;
  margin: auto;
  min-height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
nav .imgdiv img {
  max-width: 120px;
}
nav ul {
  display: flex;
}
nav ul li {
  margin-right: 45px;
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
nav ul li img {
  margin-right: 10px;
}
nav ul li a {
  color: #fff;
}
nav ul li a:hover {
  opacity: 0.7;
}
nav ul li:last-child {
  margin-right: 0;
}
nav ul li.active a {
  opacity: 0.7;
}
nav ul li .dropdown-menu {
  display: none;
}
nav ul li:hover .dropdown-menu {
  display: block;
  position: absolute;
  background-color: #fff;
  padding: 5px 0;
  box-shadow: 0px 4px 4px -4px #333;
  border-radius: 4px;
  z-index: 2;
}
nav ul li:hover .dropdown-menu ul {
  flex-direction: column;
  margin: 5px;
}
nav ul li:hover .dropdown-menu ul .dropdown-link {
  font-size: 12px;
  color: #333;
}
nav ul li:hover .dropdown-menu ul .dropdown-link li {
  width: 150px;
  padding: 5px;
  margin-right: 0;
  margin-bottom: 5px;
  text-align: left;
}
nav ul li:hover .dropdown-menu ul .dropdown-link.bgcolor {
  background-color: transparent;
}
nav ul li:hover .dropdown-menu ul .dropdown-link:hover {
  color: #fff;
  background-color: #ffcc00;
}
nav ion-icon {
  font-size: 40px;
}
nav ion-icon:hover {
  opacity: 0.7;
}
nav .sidebar-icon {
  display: none;
}
nav .sidebar {
  position: fixed;
  box-shadow: -1px 0px 3px 0px #cbc9c9;
  right: 0;
  top: 75px;
  width: 200px;
  transform: translateX(300px);
  background-color: #333;
  height: 100vh;
  z-index: 100;
}
nav .sidebar ul {
  display: block;
}
nav .sidebar ul .navlists {
  display: none;
}
nav .sidebar ul li {
  padding: 12px 15px;
  margin: 0;
  transition: 0.3s margin;
}
nav .sidebar ul li:hover {
  margin-left: 10px;
}
nav .showSidebar {
  transition: 0.3s;
  transform: translateX(0px);
}

.showShadow {
  box-shadow: 0 1px 3px 0px #cbc9c9;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: white;
  transition: 0.3s;
}
.showShadow nav {
  padding: 0 40px;
}

.sidebar ul .navlists a li .dropdown-menu .dropdown-link:hover {
  color: #333;
  background-color: #ffcc00;
}

@media screen and (max-width: 1200px) {
  nav {
    padding: 10px 20px;
  }
  nav ul {
    display: flex;
  }
  nav ul li {
    margin-right: 25px;
    font-size: 13px;
  }
  nav ul li img {
    margin-right: 10px;
    width: 10px;
  }
}
@media screen and (max-width: 1100px) {
  nav {
    padding: 10px 30px;
  }
  nav ion-icon {
    font-size: 35px;
  }
  nav ul {
    display: none;
  }
  nav .sidebar-icon {
    display: inline;
  }
  nav .sidebar ul .navlists {
    display: block;
  }
  nav .sidebar ul .navlists li .dropdown-menu ul .dropdown-link:hover li {
    color: #fff;
    background-color: #ffcc00;
  }
  nav .sidebar ul li:hover .dropdown-menu {
    position: inherit;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 30px;
  }

  nav ion-icon {
    font-size: 25px;
  }
}
.banner .block {
  position: relative;
}
.banner .block .image {
  max-height: calc(100vh - 125px);
  width: 100%;
  position: relative;
}
.banner .block .image img {
  width: 100%;
}
.banner .block .image::before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  width: 100%;
  z-index: 2;
  background: url(../images/shape.png) no-repeat center 100%/cover;
}
.banner .block .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.banner .block .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  max-width: 700px;
  z-index: 3;
  padding: 0 80px;
}
.banner .block .text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.banner .block .text h5 {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}
.banner .block .text .button {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 35px;
}
.banner .block .text .button .btn-effect {
  margin-left: 10px;
  margin-right: 25px;
  letter-spacing: 1px;
  color: #fff;
  padding: 10px 22px;
  border: 1px solid #fff;
}
.banner .block .text .button .btn-effect:hover {
  background-color: #fff;
  color: #ffcc00;
}
.banner .block .text .button .btn-effect:last-child {
  background-color: #ffcc00;
  border-color: #ffcc00;
}
.banner .block .text .button .btn-effect:last-child:hover {
  color: #fff;
}

@media screen and (max-width: 992px) {
  .banner .block .text h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .banner .block .image {
    height: 350px;
    min-height: 350px;
  }
  .banner .block .image img {
    height: 350px;
    min-height: 350px;
    width: 100%;
    max-width: initial;
    object-fit: cover;
  }
  .banner .block .text {
    width: 100%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    margin: 0 auto;
  }
  .banner .block .text h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .banner .block .button {
    justify-content: center;
  }
  .banner .block .button a {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .banner .slick-arrow {
    display: none !important;
  }
  .banner .block .text {
    margin-top: 20px;
    position: static;
    transform: translate(0);
  }
  .banner .block .text h2 {
    color: #ffcc00;
  }
  .banner .block .text h5 {
    color: #8a8a8a;
    font-size: 14px;
  }
  .banner .block .button {
    justify-content: center;
    padding-bottom: 10px;
  }
  .banner .block .button a {
    font-size: 12px;
    padding: 8px 18px;
  }
}
@media screen and (max-width: 576px) and (max-width: 400px) {
  .banner .block .button a {
    font-size: 11px;
    padding: 7px 15px;
  }
}
@media screen and (max-width: 576px) {
  .banner .block .button a.white {
    border: 1px solid #000;
  }
  .banner .block .button a.white::before, .banner .block .button a.white::after {
    border-color: #000;
  }
}
.services-section {
  padding: 60px 0 30px 0;
  margin-top: 50px;
}
.services-section .container {
  max-width: 85%;
  margin: 0 auto;
}
.services-section .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}
.services-section .wrapper .block {
  padding: 0 20px 40px 20px;
  border-radius: 8px;
  background-color: #fff;
  flex: 0 0 33%;
  width: 33%;
}
.services-section .wrapper .block .image img {
  margin-top: -30px;
  border-radius: 8px;
  max-width: 100%;
}
.services-section .wrapper .block .content {
  padding: 0 30px;
  text-align: center;
}
.services-section .wrapper .block .title {
  font-size: 20px;
  color: #333;
  margin: 20px auto;
  text-align: center;
  line-height: 1.5;
}
.services-section .wrapper .block ul {
  margin-bottom: 35px;
}
.services-section .wrapper .block ul li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.services-section .wrapper .block ul li::before {
  content: "";
  display: inline-block;
  color: #ffcc00;
  margin-right: 8px;
  background: url(../images/tick.png) no-repeat center center/contain;
  height: 14px;
  width: 14px;
}
.services-section .wrapper .block .button {
  background-color: #ffcc00;
  color: #333;
  padding: 10px 20px;
  border-radius: 30px;
  width: 220px;
  margin: 0 auto;
  cursor: pointer;
  overflow: anywhere;
}
.services-section .wrapper .block:nth-child(2) {
  margin: 0 20px;
}

@media screen and (max-width: 1200px) {
  .services-section .wrapper .block .button {
    font-size: 13px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 992px) {
  .services-section {
    margin-top: 40px;
  }
  .services-section .container {
    max-width: 95%;
  }
  .services-section .wrapper {
    flex-direction: column;
  }
  .services-section .wrapper .block {
    flex: 0 0 100%;
    width: 100%;
  }
  .services-section .wrapper .block .image img {
    width: 100%;
  }
  .services-section .wrapper .block .content {
    padding: 0;
  }
  .services-section .wrapper .block .title {
    font-size: 18px;
  }
  .services-section .wrapper .block .button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .services-section .wrapper .block:nth-child(2) {
    margin: 70px 20px;
  }
}
.orange-curve-div {
  margin-top: 280px;
  padding-bottom: 75px;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #FF480D;
  position: relative;
}
.orange-curve-div .make-curve {
  position: absolute;
  width: 100%;
  padding: 35px;
  left: 0;
  top: -35px;
  z-index: 19;
  background-color: white;
  border-radius: 100%;
}
.orange-curve-div .crossdiv {
  position: absolute;
  z-index: 20;
  top: -200px;
  max-width: 1100px;
  background: #F6F6F6;
  box-shadow: 0 0 8px -2px grey;
  display: flex;
}
.orange-curve-div .crossdiv .descriptions {
  padding: 26px;
  width: 50%;
}
.orange-curve-div .crossdiv .descriptions h2 {
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 400;
}
.orange-curve-div .crossdiv .descriptions h2 span {
  font-size: 60px;
  font-weight: 600;
}
.orange-curve-div .crossdiv .descriptions .crossdiv-compo {
  display: flex;
  justify-content: center;
  margin-bottom: 23px;
}
.orange-curve-div .crossdiv .descriptions .crossdiv-compo h3 {
  color: #68E2C7;
  font-size: 33px;
  flex: 0 0 25%;
}
.orange-curve-div .crossdiv .descriptions .crossdiv-compo h4 {
  font-size: 20px;
}
.orange-curve-div .crossdiv .descriptions .crossdiv-compo p {
  font-weight: 500;
  letter-spacing: 0.2px;
  word-spacing: 2px;
}
.orange-curve-div .crossdiv .cross-image-div {
  width: 50%;
}
.orange-curve-div .crossdiv .cross-image-div img {
  width: 100%;
  height: 100%;
}
.orange-curve-div .contents {
  max-width: 800px;
  text-align: center;
  color: white;
}
.orange-curve-div .contents h3 {
  font-size: 34px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.orange-curve-div .contents h4 {
  font-size: 21px;
  letter-spacing: 0.4px;
  margin: 10px 0 45px 0px;
}
.orange-curve-div .contents button .contact-text {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.orange-curve-div .contents button:hover .contact-text {
  color: #333;
}

@media screen and (max-width: 1100px) {
  .orange-curve-div {
    margin-top: 250px;
  }
  .orange-curve-div .contents h3 {
    font-size: 30px;
  }
  .orange-curve-div .make-curve {
    display: none;
  }
  .orange-curve-div .crossdiv {
    top: -200px;
    max-width: 1100px;
    background: #F6F6F6;
    display: flex;
  }
  .orange-curve-div .crossdiv .descriptions {
    padding: 26px;
    width: 100%;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo {
    display: flex;
    justify-content: center;
    margin-bottom: 23px;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo h3 {
    color: #68E2C7;
    font-size: 33px;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo div {
    flex: 0 0 75%;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo h4 {
    font-size: 20px;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo p {
    font-weight: 500;
  }
  .orange-curve-div .crossdiv .cross-image-div {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .orange-curve-div {
    padding-bottom: 40px;
  }
  .orange-curve-div .contents h3 {
    font-size: 30px;
  }
  .orange-curve-div .make-curve {
    display: none;
  }
  .orange-curve-div .crossdiv {
    top: -200px;
    max-width: 500px;
    background: #F6F6F6;
    display: flex;
  }
  .orange-curve-div .crossdiv .descriptions {
    padding: 26px;
    text-align: center;
    width: 100%;
  }
  .orange-curve-div .crossdiv .descriptions h2 {
    font-size: 22px;
  }
  .orange-curve-div .crossdiv .descriptions h2 span {
    font-size: 40px;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 23px;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo h3 {
    font-size: 25px;
    margin-bottom: 3px;
    flex: 0 0 100%;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo div {
    flex: 0 0 100%;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo h4 {
    font-size: 20px;
    margin-bottom: 3px;
  }
  .orange-curve-div .crossdiv .descriptions .crossdiv-compo p {
    letter-spacing: 0.5px;
    font-size: 14px;
  }
  .orange-curve-div .crossdiv .cross-image-div {
    display: none;
  }
  .orange-curve-div .contents h3 {
    font-size: 26px;
    letter-spacing: 0.2px;
  }
  .orange-curve-div .contents h4 {
    font-size: 18px;
    letter-spacing: 0.2px;
  }
}
@media screen and (max-width: 576px) {
  .orange-curve-div .contents h3 {
    font-size: 22px;
  }
  .orange-curve-div .contents h4 {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  .orange-curve-div .contents h3 {
    font-size: 18px;
  }
  .orange-curve-div .contents h4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .orange-curve-div {
    margin-top: 350px;
  }
  .orange-curve-div .crossdiv {
    top: -275px;
  }
}
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 100px auto;
}
.features .imgdiv {
  max-width: 500px;
}
.features .content-wrapper {
  position: relative;
  max-width: 450px;
  padding: 20px 60px;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  margin-left: 50px;
}
.features .content-wrapper .top-curve {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 60px;
  right: -1px;
  top: -58px;
  border-radius: 100% 0 0 0;
  border-top: 1px solid grey;
  border-right: 1px solid grey;
  z-index: -10;
}
.features .content-wrapper .top-curve img {
  transform: translate(-21px, 0px) rotate(0deg) scale(1.2);
  background: transparent;
}
.features .content-wrapper .bottom-curve {
  position: absolute;
  display: flex;
  z-index: -10;
  width: 101%;
  height: 70px;
  right: -3px;
  bottom: -33px;
  border-radius: 0 0 50% 50%;
  border-bottom: 1.5px solid grey;
}
.features .content-wrapper .bottom-curve img {
  transform: translate(27px, -17px) rotate(-2deg) scale(1.5);
  background: transparent;
}
.features .content-wrapper .content {
  display: flex;
  margin-bottom: 25px;
}
.features .content-wrapper .content span {
  font-size: 35px;
  color: #ffcc00;
  margin-right: 35px;
}
.features .content-wrapper .content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 27px;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
  color: #fff;
}
.features .content-wrapper .content p {
  font-family: "Raleway", sans-serif;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #8a8a8a;
}

@media screen and (max-width: 1100px) {
  .features .imgdiv {
    max-width: 400px;
    margin-bottom: 100px;
  }
  .features .content-wrapper {
    max-width: 375px;
    padding: 20px 25px;
    margin-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
  }
  .features .imgdiv {
    max-width: 350px;
    margin-bottom: 100px;
  }
  .features .content-wrapper {
    margin-left: 0px;
  }
  .features .content-wrapper .top-curve img {
    transform: translate(0px, -7px) rotate(0deg) scale(1);
  }
  .features .content-wrapper .bottom-curve img {
    transform: translate(0px, -5px) rotate(0deg) scale(1);
  }
  .features .content-wrapper .content {
    margin-bottom: 20px;
  }
  .features .content-wrapper .content span {
    font-size: 25px;
    color: #FF480D;
    margin-right: 20px;
  }
  .features .content-wrapper .content h3 {
    font-size: 23px;
    letter-spacing: 0.3px;
  }
  .features .content-wrapper .content p {
    font-family: "Raleway", sans-serif;
    line-height: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .features .content-wrapper .content h3 {
    font-size: 18px;
  }
  .features .content-wrapper .content p {
    font-size: 13px;
  }
}
.section-action {
  padding: 70px 0;
  margin-top: 50px;
  background-color: #fff;
}
.section-action .container {
  max-width: 85%;
  margin: 0 auto;
}
.section-action .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}
.section-action .wrapper .block {
  padding: 0 20px;
  border-radius: 8px;
  flex: 0 0 25%;
  width: 25%;
}
.section-action .wrapper .block img {
  max-width: 300px;
}
.section-action .wrapper .block .title {
  margin-bottom: 20px;
  font-size: 20px;
}
.section-action .wrapper .block p {
  line-height: 1.8;
}
.section-action .wrapper .block .button {
  text-align: center;
}
.section-action .wrapper .block .button .btn {
  font-size: 14px;
  color: #000;
  background-color: #ffcc00;
  padding: 16px 32px;
  border-radius: 30px;
}
.section-action .wrapper .block:nth-child(2) {
  flex: 0 50%;
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 1376px) {
  .section-action .wrapper .block img {
    max-width: 100%;
  }
  .section-action .wrapper .block .button .btn {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 992px) {
  .section-action .container {
    max-width: 95%;
  }
  .section-action .wrapper {
    flex-direction: column;
  }
  .section-action .wrapper .block {
    flex: 0 0 100%;
    width: 100%;
  }
  .section-action .wrapper .block img {
    max-width: 200px;
  }
  .section-action .wrapper .block .title {
    margin-top: 20px;
  }
  .section-action .wrapper .block .button {
    margin-top: 30px;
    text-align: left;
  }
  .section-action .wrapper .block .button .btn {
    font-size: 14px;
    color: #fff;
    background-color: #98AE6B;
    padding: 16px 32px;
    border-radius: 30px;
  }
  .section-action .wrapper .block:nth-child(2) {
    flex: 0 50%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px;
}
.gallery .imgdiv {
  position: relative;
  max-width: calc(100% / 4 - 20px);
  height: 225px;
  margin-bottom: 20px;
}
.gallery .imgdiv:hover {
  cursor: pointer;
}
.gallery .imgdiv:hover .hov-layer {
  z-index: 10;
}
.gallery .imgdiv:hover .hov-layer h3 {
  opacity: 1;
  transform: scale(1);
}
.gallery .imgdiv:hover .hov-layer button {
  right: 0px;
}
.gallery .imgdiv .hov-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -10;
  overflow: hidden;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #98AE6B;
}
.gallery .imgdiv .hov-layer h3 {
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.gallery .imgdiv .hov-layer h3:first-child {
  color: white;
  margin-bottom: 10px;
  transition-delay: 0.3s;
}
.gallery .imgdiv .hov-layer button {
  position: absolute;
  right: -60px;
  bottom: 0;
  transition: 0.5s;
  width: 60px;
  height: 40px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: black;
  background-color: white;
}
.gallery .imgdiv .hov-layer button:hover {
  color: #1594A4;
}

@media screen and (max-width: 1100px) {
  .gallery {
    margin-right: 20px;
  }
  .gallery .imgdiv {
    max-width: calc(100% / 3 - 25px);
  }
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 25px;
  }
  .gallery .imgdiv {
    max-width: calc(100% / 2 - 15px);
    height: auto;
    margin-bottom: 15x;
  }
  .gallery .imgdiv .hov-layer h3 {
    font-size: 16px;
  }
  .gallery .imgdiv .hov-layer button {
    height: 30px;
    width: 45px;
    line-height: 15px;
    font-size: 17px;
  }
}
@media screen and (max-width: 450px) {
  .gallery .imgdiv .hov-layer {
    padding: 10px;
  }
  .gallery .imgdiv .hov-layer h3 {
    font-size: 13px;
  }
  .gallery .imgdiv .hov-layer button {
    height: 25px;
    width: 25px;
    font-size: 13px;
  }
}
.clients-reviews {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 80px 0;
}
.clients-reviews h1 {
  color: #ffcc00;
  font-size: 40px;
  text-transform: uppercase;
}
.clients-reviews h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 25px;
}
.clients-reviews p {
  color: #c5c5c5;
  padding: 10px 0;
  font-weight: 400;
  line-height: 1.8;
}
.clients-reviews .about-us {
  width: 35%;
  margin-right: 50px;
}
.clients-reviews .about-us button {
  margin-top: 30px;
  color: #ffcc00;
  background: #000;
  border: 1px solid #ffcc00;
  padding: 10px 30px 10px 20px;
}
.clients-reviews .about-us button .fa-arrow-right {
  color: white;
}
.clients-reviews .about-us button .hover-curve {
  background-color: #ffcc00;
}
.clients-reviews .about-us button .contact-text {
  color: #ffcc00;
  transition: 0.3s ease-in-out;
}
.clients-reviews .about-us button:hover {
  color: white;
}
.clients-reviews .about-us button:hover .contact-text {
  color: #fff;
}
.clients-reviews .clients-info {
  width: 35%;
}
.clients-reviews .clients-info .imgdiv {
  width: 75px;
  height: 75px;
  border-radius: 75px;
  margin-right: 25px;
}
.clients-reviews .clients-info .wrapper {
  margin: 10px 0;
}
.clients-reviews .clients-info h3 {
  font-size: 17px;
  color: #1594A4;
}
.clients-reviews .clients-info h4 {
  font-size: 15px;
  margin-top: 5px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}
.clients-reviews .clients-info p {
  background: #585858;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
}
.clients-reviews .clients-info .clients-slider .slide:focus {
  outline: none;
}
.clients-reviews .clients-info .clients-slider button {
  display: none;
}
.clients-reviews .clients-info .clients-slider .slick-dots {
  display: flex;
}
.clients-reviews .clients-info .clients-slider .slick-dots li {
  width: 15px;
  height: 15px;
  border: 1px solid #ffcc00;
  transform: rotate(-45deg);
  margin: 7px;
}
.clients-reviews .clients-info .clients-slider .slick-dots li:hover {
  cursor: pointer;
}
.clients-reviews .clients-info .clients-slider .slick-dots .slick-active {
  background-color: #ffcc00;
}

@media screen and (max-width: 1100px) {
  .clients-reviews {
    padding: 10px 20px;
  }
  .clients-reviews h1 {
    font-size: 35px;
  }
  .clients-reviews h2 {
    font-size: 23px;
    margin-bottom: 20px;
  }
  .clients-reviews p {
    padding: 7px 0;
  }
  .clients-reviews .about-us {
    width: 85%;
    margin-right: 0;
    margin-bottom: 70px;
  }
  .clients-reviews .about-us button {
    margin-top: 25px;
  }
  .clients-reviews .clients-info {
    width: 85%;
  }
  .clients-reviews .clients-info .imgdiv {
    width: 75px;
    height: 75px;
    border-radius: 75px;
    margin-right: 25px;
  }
  .clients-reviews .clients-info .wrapper {
    margin: 10px 0;
  }
  .clients-reviews .clients-info h3 {
    font-size: 17px;
    color: #1594A4;
  }
  .clients-reviews .clients-info h4 {
    font-size: 15px;
    margin-top: 5px;
    font-weight: 400;
    font-style: italic;
  }
  .clients-reviews .clients-info p {
    background: #EDF7F8;
    padding: 15px;
    margin: 20px 0;
  }
  .clients-reviews .clients-info .clients-slider .slick-dots li {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  .clients-reviews {
    margin: 60px 0;
    text-align: center;
  }
  .clients-reviews h1 {
    font-size: 27px;
  }
  .clients-reviews h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .clients-reviews p {
    letter-spacing: 0.6px;
  }
  .clients-reviews .about-us {
    width: 85%;
  }
  .clients-reviews .clients-info {
    width: 85%;
  }
  .clients-reviews .clients-info .imgdiv {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .clients-reviews .clients-info .wrapper {
    align-items: center;
    flex-direction: column;
  }
  .clients-reviews .clients-info .clients-slider .slick-dots {
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .clients-reviews {
    margin: 40px 0;
  }
  .clients-reviews h1 {
    font-size: 22px;
  }
  .clients-reviews h2 {
    font-size: 18px;
  }
  .clients-reviews p {
    font-size: 14px;
  }
  .clients-reviews .clients-info p {
    font-size: 14px;
  }
}
.file-download {
  width: 85%;
  margin: 20px auto;
}
.file-download .title {
  text-align: center;
}
.file-download .title h5 {
  font-size: 24px;
  font-weight: 700;
  color: #ffcc00;
  text-transform: capitalize;
}
.file-download .download-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  justify-content: space-between;
}
.file-download .download-wrap .pdf_file {
  flex: 0 0 calc(100% / 3 - 20px);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.file-download .download-wrap .pdf_file img {
  max-width: 100%;
}
.file-download .download-wrap .pdf_file p {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 5px;
  text-align: center;
  transition: 0.3s ease-out;
}
.file-download .download-wrap .pdf_file p:hover {
  color: #ffcc00;
}

@media screen and (max-width: 992px) {
  .file-download {
    width: 85%;
  }
  .file-download .title h5 {
    font-size: 24px;
  }
  .file-download .download-wrap {
    margin: 20px 0;
    flex-wrap: wrap;
  }
  .file-download .download-wrap .pdf_file {
    flex: 0 0 calc(100% / 2 - 20px);
    font-size: 20px;
    margin-bottom: 30px;
  }
  .file-download .download-wrap .pdf_file img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
  }
  .file-download .download-wrap .pdf_file:last-child {
    margin-bottom: 0;
  }
}
footer {
  font-family: "Roboto", sans-serif;
  color: #d9d9d9;
  background: #222222;
  padding: 50px 20px;
}
footer p {
  color: #d9d9d9;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
footer .contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 1100px;
  text-align: center;
  padding: 40px;
  border-bottom: 1px solid #d9d9d9;
}
footer .contact span {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 60px;
  background-color: #ffcc00;
  text-align: center;
  line-height: 55px;
  font-size: 25px;
  margin-bottom: 12px;
  color: #000;
}
footer .contact .logo-wrapper {
  flex: 0 0 calc(100% / 4 - 10px);
  margin: 0 5px;
  margin-bottom: 25px;
  word-break: break-all;
}
footer .contact .logo-wrapper p {
  letter-spacing: 1.1px;
}
footer .contact .logo-wrapper .footer-logo img {
  width: 100px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  max-width: 1100px;
  padding-top: 40px;
}
footer .content-wrapper .content {
  flex-basis: 20%;
  margin-bottom: 25px;
}
footer .content-wrapper .content:first-child {
  flex-basis: 30%;
}
footer .content-wrapper .content h2 {
  font-size: 21px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  font-weight: 400;
  margin-bottom: 33px;
}
footer .content-wrapper .content p {
  line-height: 28px;
  font-weight: 400;
}
footer .content-wrapper .content ul li {
  margin: 8px 0;
  letter-spacing: 0.7px;
  text-transform: capitalize;
}
footer .content-wrapper .content ul li a {
  color: #d9d9d9;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}
footer .content-wrapper .content ul li a:hover {
  color: #98AE6B;
}
footer .content-wrapper .content ul li span {
  display: inline-block;
  width: 10px;
  margin-right: 18px;
}

.footer-bottom {
  width: 100%;
  color: #d9d9d9;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: black;
  text-align: center;
  letter-spacing: 0.6px;
  padding: 20px;
}
.footer-bottom a {
  font-size: 14px;
  color: #d9d9d9;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1100px) {
  footer .contact {
    justify-content: space-between;
    padding: 40px 20px;
  }
  footer .contact span {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
    margin-bottom: 12px;
  }
  footer .contact .logo-wrapper p {
    font-size: 14px;
  }
  footer .content-wrapper {
    width: 85%;
    justify-content: space-between;
  }
  footer .content-wrapper .content {
    flex-basis: 30%;
  }
  footer .content-wrapper .content h2 {
    margin-bottom: 10px;
  }
  footer .content-wrapper .content:first-child {
    flex-basis: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  footer .contact {
    padding: 20px;
  }
  footer .contact span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 19px;
    margin-bottom: 10px;
  }
  footer .contact .logo-wrapper p {
    font-size: 14px;
  }
  footer .content-wrapper {
    width: 100%;
  }
  footer .content-wrapper .content p {
    font-size: 15px;
    letter-spacing: 0.4px;
    line-height: 20px;
  }
  footer .content-wrapper ul {
    font-size: 14px;
  }
  footer .content-wrapper ul li {
    margin: 5px 0;
  }

  .footer-bottom {
    padding: 15px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  footer {
    padding: 20px;
  }
  footer .contact {
    flex-direction: column;
  }
  footer .contact .logo-wrapper {
    width: 100%;
  }
  footer .contact .logo-wrapper span {
    font-size: 16px;
  }
  footer .contact .logo-wrapper p {
    font-size: 13px;
  }
  footer .content-wrapper {
    text-align: center;
  }
  footer .content-wrapper .content {
    flex-basis: 100%;
  }
  footer .content-wrapper .content:first-child {
    margin-bottom: 25px;
  }
  footer .content-wrapper .content:last-child {
    margin-bottom: 0;
  }
  footer .content-wrapper .content h2 {
    font-size: 18px;
  }
  footer .content-wrapper .content p {
    font-size: 13px;
  }
  footer .content-wrapper .content ul li a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
.page-about-us .container {
  max-width: 85%;
  margin: auto;
}
.page-about-us .about-us-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.page-about-us .about-us-wrap .about-us-content {
  flex: 0 0 50%;
}
.page-about-us .about-us-wrap .about-us-content .title h6 {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  background-color: #ffcc00;
  padding: 8px;
  border-radius: 4px 8px/12px 8px;
}
.page-about-us .about-us-wrap .about-us-content .title h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffcc00;
  padding: 20px 0;
}
.page-about-us .about-us-wrap .about-us-content .title h4 span {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  display: block;
}
.page-about-us .about-us-wrap .about-us-content p {
  font-size: 1rem;
  color: #eaefe4;
  line-height: 1.7;
  padding-bottom: 15px;
}
.page-about-us .about-us-wrap .about-us-content p:last-child {
  padding-bottom: 0;
}
.page-about-us .about-us-wrap .about-us-image {
  flex: 0 0 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  position: relative;
}
.page-about-us .about-us-wrap .about-us-image .figure {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-about-us .about-us-wrap .about-us-image .figure img {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .page-about-us {
    margin-top: 60px;
  }
  .page-about-us .about-us-wrap {
    flex-direction: column;
  }
  .page-about-us .about-us-wrap .about-us-content {
    margin-bottom: 30px;
  }
  .page-about-us .about-us-wrap .about-us-content .title h6 {
    font-size: 0.9375rem;
    padding: 12px;
  }
  .page-about-us .about-us-wrap .about-us-content .title h4 {
    font-size: 2.5rem;
    padding: 20px 0;
  }
  .page-about-us .about-us-wrap .about-us-content .title h4 span {
    font-size: 2.25rem;
  }
  .page-about-us .about-us-wrap .about-us-content p {
    font-size: 1rem;
    padding-bottom: 15px;
  }
  .page-about-us .about-us-wrap .about-us-image .figure {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
  }
}
@media screen and (max-width: 576px) {
  .page-about-us .about-us-wrap {
    margin-top: 30px;
  }
  .page-about-us .about-us-wrap .about-us-content .title h6 {
    font-size: 0.9375rem;
    padding: 8px;
  }
  .page-about-us .about-us-wrap .about-us-content .title h4 {
    font-size: 1.75rem;
    padding: 15px 0;
  }
  .page-about-us .about-us-wrap .about-us-content .title h4 span {
    font-size: 1.5rem;
  }
  .page-about-us .about-us-wrap .about-us-content p {
    font-size: 0.9375rem;
  }
}
.page-services {
  padding: 80px 0;
}
.page-services .container {
  max-width: 85%;
  margin: auto;
}
.page-services .service-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
  box-shadow: none;
  margin: 0 0 60px 0;
}
.page-services .service-block .figure {
  flex: 0 0 calc(100% / 2 - 20px);
  min-height: 100%;
  overflow: hidden;
}
.page-services .service-block .figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-services .service-block .block-content {
  flex: 0 0 calc(100% / 2 - 20px);
  margin: 0 10px;
}
.page-services .service-block .block-content h4 {
  font-size: 26px;
  color: #ffcc00;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 20px;
}
.page-services .service-block .block-content p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #eaefe4;
  line-height: 1.7;
}

@media screen and (max-width: 1199px) {
  .page-services .service-block {
    align-items: center;
  }
  .page-services .service-block .figure {
    flex: 0 0 calc(40% - 20px);
    margin: 0 10px;
  }
  .page-services .service-block .block-content {
    flex: 0 0 calc(60% - 20px);
    margin: 0 10px;
  }
  .page-services .service-block .block-content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .page-services {
    padding: 60px 0;
  }
  .page-services .service-block {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .page-services .service-block .figure {
    flex: 0 0 calc(100%);
    margin: 0 0 20px 0;
  }
  .page-services .service-block .block-content {
    flex: 0 0 calc(100%);
    margin: 0;
    text-align: center;
  }
  .page-services .service-block .block-content h4 {
    padding: 10px 0;
  }
  .page-services .service-block .block-content p {
    margin-bottom: 5px;
  }
  .page-services .service-block.rev-block {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 576px) {
  .page-services .service-block {
    margin-bottom: 30px;
  }
  .page-services .service-block .block-content h4 {
    font-size: 20px;
  }
  .page-services .service-block .block-content p {
    font-size: 13px;
  }
  .page-services .service-block.rev-block {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .page-services {
    padding: 30px 0;
  }
}
.page-gallery {
  padding: 80px 0;
}
.page-gallery .gallery-title {
  text-align: center;
}
.page-gallery .gallery-title h5 {
  color: #a9a9a9;
  font-size: 40px;
  text-transform: uppercase;
}
.page-gallery .gallery-title h6 {
  color: #ffcc00;
  font-size: 28px;
  font-weight: 400;
  margin-top: 5px;
}
.page-gallery .gallery {
  padding-bottom: 0;
}

@media screen and (max-width: 991px) {
  .page-gallery {
    padding: 60px 0;
  }
  .page-gallery .gallery-title h5 {
    font-size: 32px;
  }
  .page-gallery .gallery-title h6 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .page-gallery {
    padding: 40px 0;
  }
  .page-gallery .gallery-title h5 {
    font-size: 26px;
  }
  .page-gallery .gallery-title h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .page-gallery .gallery-title h5 {
    font-size: 22px;
  }
  .page-gallery .gallery-title h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 481px) {
  .page-gallery {
    padding: 30px 0;
  }
}
.page-contact {
  margin: 80px 0;
}
.page-contact .container {
  width: 85%;
  margin: auto;
}
.page-contact .contact-title {
  text-align: center;
  margin-bottom: 60px;
}
.page-contact .contact-title h5 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.page-contact .contact-title h6 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #eaefe4;
  padding-top: 10px;
}
.page-contact .contact-wrapper {
  display: flex;
  justify-content: space-between;
}
.page-contact .contact-wrapper .contact-info {
  flex: 0 0 40%;
  padding: 40px 40px;
  background-color: rgba(255, 204, 0, 0.3);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.page-contact .contact-wrapper .contact-info::before {
  content: "";
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #fff;
}
.page-contact .contact-wrapper .contact-info::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #525252;
}
.page-contact .contact-wrapper .contact-info .desc h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #eaefe4;
}
.page-contact .contact-wrapper .contact-info .desc p {
  font-size: 0.875rem;
  color: #eaefe4;
  padding-top: 10px;
}
.page-contact .contact-wrapper .contact-info .info {
  margin: 40px 0;
}
.page-contact .contact-wrapper .contact-info .info .co-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.page-contact .contact-wrapper .contact-info .info .co-detail .icon i {
  font-size: 0.875rem;
  color: #eaefe4;
  padding-right: 10px;
}
.page-contact .contact-wrapper .contact-info .info .co-detail .text .info-link {
  font-size: 1rem;
  color: #eaefe4;
  overflow-wrap: anywhere;
}
.page-contact .contact-wrapper .contact-info .info .co-detail:last-child {
  margin-bottom: 0;
}
.page-contact .contact-wrapper .contact-info .contact-social-link {
  display: flex;
}
.page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link {
  margin-right: 30px;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #98AE6B;
  z-index: -1;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
.page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link .icon-img {
  line-height: 50px;
}
.page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link .icon-img img {
  width: 20px;
}
.page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link:hover::before {
  background-color: #fff;
}
.page-contact .contact-wrapper .contact-form {
  flex: 0 0 calc(60% - 20px);
}
.page-contact .contact-wrapper .contact-form .title h5 {
  font-size: 0.875rem;
  color: #a9a9a9;
  font-weight: 700;
  margin-bottom: 15px;
}
.page-contact .contact-wrapper .contact-form .form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-contact .contact-wrapper .contact-form .form .form-block {
  flex: 0 0 calc(100% / 2 - 10px);
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.page-contact .contact-wrapper .contact-form .form .form-block label {
  font-size: 0.875rem;
  color: #eaefe4;
}
.page-contact .contact-wrapper .contact-form .form .form-block .form-fill {
  padding: 8px 10px;
  border: none;
  border-bottom: 2px solid #a9a9a9;
  border-radius: 4px;
  background-color: transparent;
  resize: none;
  color: #eaefe4;
}
.page-contact .contact-wrapper .contact-form .form .form-block .form-fill:focus {
  outline: none;
  box-shadow: none;
}
.page-contact .contact-wrapper .contact-form .form .form-block:nth-child(5) {
  flex: 0 0 100%;
  width: 100%;
}
.page-contact .contact-wrapper .contact-form .form .btn {
  font-size: 0.9375rem;
  color: #eaefe4;
  padding: 10px 20px;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 4px;
}

@media screen and (max-width: 1200px) {
  .page-contact .contact-wrapper .contact-info::before {
    width: 70px;
    height: 70px;
  }
  .page-contact .contact-wrapper .contact-info::after {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 992px) {
  .page-contact {
    margin: 60px 0;
  }
  .page-contact .contact-wrapper .contact-info::before {
    width: 70px;
    height: 70px;
  }
  .page-contact .contact-wrapper .contact-info::after {
    width: 30px;
    height: 30px;
  }
  .page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link .icon-img {
    line-height: 35px;
  }
  .page-contact .contact-wrapper .contact-info .contact-social-link .cntct-link .icon-img img {
    width: 15px;
  }
}
@media screen and (max-width: 800px) {
  .page-contact {
    margin: 40px 0;
  }
  .page-contact .contact-wrapper {
    flex-direction: column-reverse;
  }
  .page-contact .contact-wrapper .contact-form {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page-contact {
    margin: 30px 0;
  }
  .page-contact .contact-wrapper .contact-form {
    margin-bottom: 30px;
  }
  .page-contact .contact-wrapper .contact-form .form {
    flex-direction: column;
  }
}
.page-quote {
  background: url("../images/quote-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0;
}
.page-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8);
}
.page-quote .container {
  max-width: 85%;
  margin: auto;
}
.page-quote .form {
  max-width: 60%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
.page-quote .form .form-bundle {
  display: grid;
}
.page-quote .form .form-bundle .form-txt {
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.page-quote .form .form-bundle .form-fill {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #525252;
  padding: 8px 10px;
  border-radius: 2px;
  border: none;
  resize: none;
}
.page-quote .form .form-bundle .form-fill:focus {
  box-shadow: none;
  outline: none;
}
.page-quote .form .form-bundle .form-fill::placeholder {
  color: #525252;
}
.page-quote .form .form-bundle.message-group {
  grid-column: 1/3;
}

/* for all the form style*/
.title-text {
  position: relative;
  padding-bottom: 30px;
}
.title-text h5 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffcc00;
}
.title-text.title-change {
  padding: 0 10px 30px 10px;
}
.title-text.title-change h5 {
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.title-text.title-change p {
  color: #eaefe4;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .page-quote {
    padding: 40px 0;
  }
  .page-quote::before {
    width: 100%;
  }
  .page-quote .form {
    max-width: 100%;
  }
}
@media screen and (max-width: 577px) {
  .page-quote .title-text h5 {
    font-size: 2rem;
    color: #fff;
  }
  .page-quote .form {
    grid-gap: 20px 10px;
  }
  .page-quote .form .form-bundle {
    grid-column: 1/3;
  }
  .page-quote .form .form-bundle .form-txt {
    font-size: 0.9375rem;
  }
  .page-quote .form .form-bundle .form-fill {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .page-quote {
    padding: 30px 0;
  }
}
.service_inner_page {
  padding: 80px 0;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.service_inner_page .side-linkbar {
  flex: 0 0 calc(25% - 20px);
  margin-right: 20px;
  padding: 40px 20px;
  background-color: rgba(82, 82, 82, 0.1);
  font-family: "Nunito", sans-serif;
}
.service_inner_page .side-linkbar h6 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  word-spacing: 0.03em;
  padding-bottom: 10px;
}
.service_inner_page .side-linkbar ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s ease-in-out;
}
.service_inner_page .side-linkbar ul li i {
  padding: 5px 8px;
  background: rgba(138, 138, 138, 0.1);
  font-size: 12px;
  transition: 0.3s ease-in-out;
  margin-right: 5px;
}
.service_inner_page .side-linkbar ul li .service_sub_link {
  font-size: 14px;
  color: #ffcc00;
  word-spacing: 0.03em;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
.service_inner_page .side-linkbar ul li:hover {
  cursor: pointer;
}
.service_inner_page .side-linkbar ul li:hover i {
  color: #98AE6B;
}
.service_inner_page .side-linkbar ul li:hover .service_sub_link {
  color: #98AE6B;
}
.service_inner_page .side-linkbar ul li.active {
  cursor: pointer;
}
.service_inner_page .side-linkbar ul li.active i {
  color: #98AE6B;
}
.service_inner_page .side-linkbar ul li.active .service_sub_link {
  color: #98AE6B;
}
.service_inner_page .inner-page-desc .inner-desc h2 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.02em;
  word-spacing: 0.04em;
  padding-bottom: 10px;
}
.service_inner_page .inner-page-desc .inner-desc h4 {
  font-size: 18px;
  color: #ffcc00;
  word-spacing: 0.04em;
  padding: 15px 0;
  line-height: 1.5;
}
.service_inner_page .inner-page-desc .inner-desc p {
  font-size: 14px;
  color: #8a8a8a;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.service_inner_page .inner-page-desc .inner-desc .pointwise {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.service_inner_page .inner-page-desc .inner-desc .pointwise .point-block {
  flex: 0 0 calc(100% / 2 - 20px);
  margin-right: 20px;
  margin-top: 20px;
}
.service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon i {
  font-size: 20px;
  color: #ffcc00;
  padding-right: 10px;
}
.service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon h4 {
  font-size: 18px;
  color: #333;
  word-spacing: 0.05em;
  text-transform: capitalize;
  font-weight: 700;
}
.service_inner_page .inner-page-desc .inner-desc .pointwise p {
  font-size: 14px;
  color: #8a8a8a;
}
.service_inner_page .inner-page-desc .inner-desc .images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px 0;
}
.service_inner_page .inner-page-desc .inner-desc .images .img {
  flex: 0 0 calc(100% / 2 - 20px);
  margin: 10px 10px 10px 0;
}
.service_inner_page .inner-page-desc .inner-desc .images .img img {
  transition: 0.3s ease-in-out;
  max-width: 100%;
}
.service_inner_page .inner-page-desc .inner-desc ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.service_inner_page .inner-page-desc .inner-desc ul li {
  flex: 0 0 calc(100% / 2 - 10px);
  display: flex;
  flex-direction: row;
  margin-right: 10px;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 14px;
}
.service_inner_page .inner-page-desc .inner-desc ul li i {
  margin-right: 8px;
  font-size: 10px;
  padding: 5px;
  background-color: #ffcc00;
  border-radius: 100%;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .service_inner_page {
    padding: 60px 40px;
    flex-direction: column-reverse;
  }
  .service_inner_page .side-linkbar {
    padding: 30px 20px;
  }
  .service_inner_page .side-linkbar h6 {
    font-size: 18px;
  }
  .service_inner_page .side-linkbar ul li {
    margin-top: 10px;
  }
  .service_inner_page .side-linkbar ul li i {
    padding: 5px 8px;
    font-size: 12px;
  }
  .service_inner_page .side-linkbar ul li .service_sub_link {
    font-size: 14px;
  }
  .service_inner_page .inner-page-desc .inner-desc h2 {
    font-size: 22px;
  }

  .row-flip {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .service_inner_page {
    padding: 40px 20px;
  }
  .service_inner_page .side-linkbar {
    padding: 20px;
  }
  .service_inner_page .inner-page-desc .inner-desc h2 {
    font-size: 18px;
  }
  .service_inner_page .inner-page-desc .inner-desc h4 {
    font-size: 16px;
  }
  .service_inner_page .inner-page-desc .inner-desc p {
    font-size: 13px;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon i {
    font-size: 18px;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon h4 {
    font-size: 16px;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise p {
    font-size: 13px;
  }
  .service_inner_page .inner-page-desc .inner-desc ul li {
    font-size: 13px;
    flex: 0 0 calc(100%);
  }
}
@media screen and (max-width: 576px) {
  .service_inner_page {
    padding: 40px 20px;
  }
  .service_inner_page .side-linkbar {
    padding: 20px;
  }
  .service_inner_page .inner-page-desc .inner-desc h2 {
    font-size: 18px;
  }
  .service_inner_page .inner-page-desc .inner-desc h4 {
    font-size: 16px;
  }
  .service_inner_page .inner-page-desc .inner-desc p {
    font-size: 13px;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise .point-block {
    flex: 0 0 calc(100%);
    margin-right: 0;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon i {
    font-size: 18px;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise .point-block .icon h4 {
    font-size: 16px;
  }
  .service_inner_page .inner-page-desc .inner-desc .pointwise p {
    font-size: 13px;
  }
  .service_inner_page .inner-page-desc .inner-desc ul li {
    font-size: 13px;
    flex: 0 0 calc(100%);
  }
}
.thanks {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin: 80px 0;
}
.thanks .icon {
  padding-top: 60px;
  width: 100%;
}
.thanks .icon i {
  font-size: 72px;
  color: #ffcc00;
}
.thanks .message {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin-top: 50px;
}
.thanks .message h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  word-spacing: 0.05em;
  color: #fff;
}
.thanks .message p {
  font-size: 16px;
  word-spacing: 0.05em;
  color: #fff;
  padding-top: 15px;
}
.thanks .redirect {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  background-color: #ffcc00;
  border: 1px solid #ffcc00;
  transition: 0.3s ease-in-out;
  padding: 10px;
  margin-top: 50px;
}
.thanks .redirect i {
  color: #fff;
  padding-right: 8px;
  transition: 0.3s ease-in-out;
}
.thanks .redirect h5 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  word-spacing: 0.05em;
  margin-bottom: 0;
  transition: 0.3s ease-in-out;
}
.thanks .redirect:hover {
  text-decoration: none;
  background-color: transparent;
}
.thanks .redirect:hover i {
  color: #ffcc00;
}
.thanks .redirect:hover h5 {
  color: #ffcc00;
}

/*# sourceMappingURL=style.css.map */
