@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

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

a:hover {
  color: #383838;
}

* {
  outline: none !important;
}

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

section {
  position: relative;
}

section:not(.section-touch):not(.hero-banner) > * {
  overflow: hidden;
}

html, body {
  height: 100%;
}

body {  
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  font-size: 16px;
  background-color: #ffffff;
  color: #313131;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  position: relative; 
  overflow-x: hidden;
}

.font-weight-medium {
  font-weight: 500;
}

/* Colors */

.text-primary {
  color: #3dad5c !important
}

/* Button */

.btn {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 17px;
  border-radius: 0;
}

.btn-primary {
  background-color: #3dad5c;
  border-color: #3dad5c;
}

.btn-primary:hover {
  background-color: #4ec16d;
  border-color: #4ec16d;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus,
.custom-select:focus, .form-control:focus {
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #4ec16d;
  border-color: #4ec16d;
}

.btn-gradient {
  background: #acd096;
  background: -moz-linear-gradient(-45deg,  #acd096 0%, #72a751 100%);
  background: -webkit-linear-gradient(-45deg,  #acd096 0%,#72a751 100%);
  background: linear-gradient(135deg,  #acd096 0%,#72a751 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acd096', endColorstr='#72a751',GradientType=1 );
  color: #313131;
  border-color: #acd096;
  border-radius: 6px;
}

.btn-gradient:hover {
  background: #72a751;
  background: -moz-linear-gradient(-45deg,  #72a751 0%, #acd096 100%);
  background: -webkit-linear-gradient(-45deg,  #72a751 0%,#acd096 100%);
  background: linear-gradient(135deg,  #72a751 0%,#acd096 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#72a751', endColorstr='#acd096',GradientType=1 );
}

/* Menu Toggle */
.navbar-collapse {
  transition: .2s height ease;
}

.navbar-collapse .dropdown-toggle:after {
  content: none;
}

.navbar-toggler {
  padding: 0px;
  margin-left: 20px;
}

.navbar-toggler:focus {
  outline: none;
}

.menu_toggle {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: block;
}

.menu_toggle .hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
}

.menu_toggle .hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 4px 0;
  display: block;
  background: #313131;
  border-radius: 3px;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.menu_toggle .hamburger span:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.menu_toggle .hamburger span:nth-child(2) {
  -webkit-transition-delay: .125s;
  -o-transition-delay: .125s;
  transition-delay: .125s;
}

.menu_toggle .hamburger span:nth-child(3) {
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}

.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
}

.menu_toggle .hamburger-cross span {
  display: block;
  background: #313131;
  border-radius: 3px;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}

.collapsed .menu_toggle .hamburger span:nth-child(1) {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.collapsed .menu_toggle .hamburger span:nth-child(2) {
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s;
}

.collapsed .menu_toggle .hamburger span:nth-child(3) {
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  width: 0%;
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}

/* Multi Menu */
.multi-menu {

}

.dropdown-menu.multi-menu {
  border-radius: 0;
  top: 70px;
  width: 230px;
  border: 0;
  border-top: 2px solid #72a751;
  margin-top: 0;
  padding: 0;
}

.dropdown-menu.multi-menu .dropdown-item {
  font-size: 14px;
  color: #313131;
  padding: 5px 15px;
  border-bottom: 1px solid #D5D5D5;
  position: relative;
}

.dropdown-menu.multi-menu .dropdown-item.active,
.dropdown-menu.multi-menu .dropdown-item:active,
.dropdown-menu.multi-menu .dropdown-item:hover {
  background-color: transparent !important;
  color: #000000;
}

.dropdown-menu.multi-menu .dropdown-item:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;  
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2LjQyIiBoZWlnaHQ9IjExLjg4NyIgdmlld0JveD0iMCAwIDYuNDIgMTEuODg3Ij4NCiAgPGcgaWQ9Im11bHRpbWVkaWEtb3B0aW9uXzFfIiBkYXRhLW5hbWU9Im11bHRpbWVkaWEtb3B0aW9uICgxKSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNy43NDIpIj4NCiAgICA8ZyBpZD0iR3JvdXBfMTk4NjcxIiBkYXRhLW5hbWU9Ikdyb3VwIDE5ODY3MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTE3Ljc0MiAwKSI+DQogICAgICA8cGF0aCBpZD0iUGF0aF84NTI0NiIgZGF0YS1uYW1lPSJQYXRoIDg1MjQ2IiBkPSJNMTI0LjAyNyw1LjYxN2wtNS41LTUuNDgzYS40NjEuNDYxLDAsMSwwLS42NTEuNjUzbDUuMTcxLDUuMTU3TDExNy44NzgsMTEuMWEuNDYxLjQ2MSwwLDAsMCwuNjUxLjY1Mmw1LjUtNS40ODNhLjQ2MS40NjEsMCwwLDAsMC0uNjUyWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTExNy43NDIgMCkiLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPg0K");
  width: 6px;
  height: 12px;
  border: 0;
}

.dropdown-menu.multi-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-menu.multi-menu {
  background-image: url(../images/bg-menu.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto;
}

.dropdown-menu.multi-menu li .dropdown-menu.multi-menu {
  background-image: url(../images/bg-menu1.png);
}

/** Header **/
.top-menu {
  background-color: #72A751;
  padding: 8px 0;
}

.top-social {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
}

.top-social li:not(:first-child) {
  margin-left: 12px;
}

.top-social a {
  height: 26px;
  display: block;
}

header {
  background-color: transparent;
  min-height: 100px;
  position: absolute;
  top: 42px;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 3;
}

.navbar {
  padding: 7px 15px;
}

.navbar .navbar-brand {
  padding: 0;
}

.navbar .nav-link {
  color: #313131;
  font-size: 18px;  
  font-weight: 600;
  text-transform: capitalize;
  transition: .2s all;
  position: relative;
}


.navbar .nav-link.active:before {
  content: '';
  position: absolute;
  top: -29px;
  width: calc(100% - 1rem);
  background-color: #72a751;
  left: 0;
  height: 3px;
  margin: 0 auto;
  right: 0;
}

.navbar .nav-item:not(:last-child) .nav-link {
  margin-right: 25px;
}

.navbar .nav-item:nth-last-child(2) .nav-link {
  margin-right: 20px;
}

.navbar .nav-item.active .nav-link {
  color: #229961;
  font-weight: bold;
}

.navbar-expand-lg .navbar-nav .nav-link.nav-btn {
  color: #ffffff;
  background-color: #72A751;
  border-radius: 6px;
  padding: 8px 19px;
  text-align: center;
  text-transform: uppercase;
}

/* Common Title */
.section-title {
  position: relative;
}

.section-title .title-lg {
  color: #72A751;
  font-size: 24px;
  font-weight: 500;
}

.section-title p {
  font-size: 16px;
  color: #313131;
  margin-top: 15px;
}

/** Hero Slider **/
.hero-banner {
  position: relative;
}

.hero-banner:after {
  background-image: url(../images/banner-right-flower.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  height: 326px;
  width: 212px;
  content: '';
  position: absolute;
  bottom: -32px;
  z-index: 2;
}

.btn-enquire-sticky {
  position: fixed;
  top: 260px;
  right: 0;
  z-index: 2;
  background-color: #72A751;
  border-radius: 6px 0 0 6px;
  font-size: 22px;
  font-weight: 500;
  color: #3B5F25;
  padding: 19px 15px 19px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*min-height: 710px;*/
  height: calc(100vh - 42px);  
  position: relative;
  width: 100%;
}

.owl-carousel .owl-item .hero-shape img {
  width: auto;
  margin: auto;
}

.hero-title {
  position: relative;
}

.hero-title h4 {
  font-size: 70px;
  color: #313131;
  font-family: 'Lobster', cursive;
  position: absolute;
  top: 200px;
  left: -20px;
  text-align: center;
}

.hero-carousel.owl-theme .owl-dots {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}

.hero-carousel.owl-theme .owl-dots .owl-dot span {
  height: 14px;
  width: 14px;
  background: transparent;
  border: 1px solid #229961;
  border-radius: 14px;
  margin: 4px;
  transition: .5s ease-in-out;
}

.hero-carousel.owl-theme .owl-dots .owl-dot.active span,
.hero-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #ffffff;
  width: 34px;
}

.hero-carousel.owl-theme .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  margin-top: 0;
  padding: 0 20px;
}


.hero-carousel.owl-theme .owl-nav [class*="owl-"] {
  height: 80px;
  width: 80px;
  border-radius: 80px;
  background: rgba(0,0,0,0.2);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s all;
}

.hero-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  background: rgb(0, 0, 0, 0.4);
}

/* Location */

.section-location {
  padding: 40px 0 130px;
}

.location-map {
  margin-top: 25px;
}

/* Why */

.section-whychoose {
  padding: 80px 0 45px;
}

.card-box {
  box-shadow: 0 0 26px rgba(0,0,0,0.16);
  text-align: center;
  padding: 25px 15px;
    font-size: 15px;
    margin-bottom: 25px;
    text-align: -webkit-center;
}


.card-box h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 10px;
}

.quality-content {
  background-image: url(../images/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 85px 40px;
}

.quality-content p {
  line-height: 28px;
  color: #fff;
}

.quality-image {
  height: 100%;
}

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

.section-reason {
  padding: 100px 0 70px;
}

.section-reason .no-gutters {
  margin-top: 60px;
}

.reason-list li {
  margin-bottom: 40px;
}

.reason-list li h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.reason-list li p {
  font-size: 14px;
}

.reason-right .media-body {
  margin-left: 20px;
}

.reason-left .media-body {
  margin-right: 20px;
}

.section-product {
  padding: 63px 0;
  background-image: url(../images/bg-product.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.nav-products  {
  margin-top: 45px;
}

.nav-products .nav-link {
  display: flex;
  flex-direction: column;
  transition: .4s ease all;
}

.nav-products .nav-link.active {
  background-color: transparent;
  color: #72a751;
}

.nav-products .icon-wrap {
  height: 82px;
  display: block;
  width: auto;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;  
  transition: .4s ease all;
}

.nav-products .nav-link:hover { color: #72a751; }

.nav-products .nav-link:hover .icon-wrap { transform: scale(1.1); }

.tab-content-product {
  margin-top: 45px;
}

.product-card {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.16);
  position: relative;
  padding: 13px;
}

.product-image img {
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-card a {
  border: 1px solid #72A751;
  display: inline-block;
  border-radius: 15px;
  color: #72A751;
  padding: 5px 20px;
  font-size: 12px;
  position: absolute;
  right: 13px;
  bottom: 13px;
}

.product-card a:hover, .product-card a:focus {
  background-color: #72A751;
  color: #ffffff;
}

.product-card h6 {
  max-width: 60%;
  margin-left: auto;
  height: 70px;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.product-onion h6 {
  color: #BF1D3D;
}

.product-rose-onion h6 {
  color: #9A0212;
}

.product-garlic h6 {
  color: #936E3F;
}

.section-assurance {

}

.section-assurance .quality-content {
  padding: 30px 40px; 
}

.list-plant {
  list-style: none;
  margin-top: 15px;
}

.list-plant li {
  position: relative;
  padding-left: 35px;
  line-height: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.about-content .list-plant li {
  color: #313131;
}

.list-plant li:before {
  content: '';
  background-image: url('../images/icon-plant.svg');
  background-repeat: no-repeat;
  height: 21px;
  width: 18px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.about-content .list-plant li:before {
  background-image: url('../images/icon-plant-dark.svg');
}

.section-team {
  padding: 45px 0;
}

.card-team-header {
  background: #acd096;
  background: -moz-linear-gradient(-45deg,  #acd096 0%, #72a751 100%);
  background: -webkit-linear-gradient(-45deg,  #acd096 0%,#72a751 100%);
  background: linear-gradient(135deg,  #acd096 0%,#72a751 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acd096', endColorstr='#72a751',GradientType=1 );
  position: relative;
  padding: 60px 0;
  border-radius: 12px 12px 0 0;
}

.card-team-header img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 4px 5px 10px rgba(0,0,0,0.20);
}

.card-team-body {
  padding: 95px 0 15px;
}

.team-title {
  margin-bottom: 25px;
}

.team-title h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.team-title h4:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 100px;
  height: 2px;
  background-color: #3DAD5C;
}

.team-social {
  margin-bottom: 15px;
}

.team-content p {
  color: #707070;
  min-height: 170px;
}

.team-content a {
  text-decoration: underline;
  font-style: italic;
  color: #72A751;
  display: block;
  text-align: right;
}

.section-apeda {
  background-image: url(../images/bg-gmp.png);
  background-repeat: no-repeat;
  padding: 36px 0;
  background-size: cover;
}

.section-apeda h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
}

/* Contact */

.section-touch {
  padding: 0 0 85px;
  background-color: #e8e8e8;
  background-image: url("../images/bg-touch.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.section-touch .section-title {
  bottom: -100px;
  z-index: 1;
}

.touch-card {
  padding: 65px 55px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 20px 0 69px rgba(0,0,0,.16);
  position: relative;
  bottom: -145px;
}

.touch-card .form-group {
  margin-bottom: 40px;
}

.touch-card label {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
}

.touch-card .form-control {
  font-size: 13px;
  color: #313131;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid #c2c2c2;
  border-radius: 0;
}

.touch-card .form-control.custom-select {
  background: #ffffff;
}

.touch-card .is-select label {
  color: #72A751
}

.touch-card .is-remove label {
  color: #222;
}

.section-about {
  margin-bottom: 70px;
  background-image: url(../images/bg-pattern-about.png);
  background-repeat: repeat;
  background-size: auto;
  background-position: center center;
}

.about-content {
  max-width: 615px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-content h3 {
  margin-bottom: 10px;
}

.about-image {
  height: 100%;
}

.about-image img {
  height: auto;
  width: 100%;
}

.section-touch + footer {
  padding: 130px 0 0;
}

/* Footer */
footer {
  padding: 40px 0 0;
  background-color: #A0E993;
  background-image: url("../images/bg-footer.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}

.footer-logo {
  margin-bottom: 60px;
}

.footer-link h6, .footer-contact h6, .footer-contact p:nth-child(2) {
  font-size: 15px;
  font-weight: 500;
  color: #313131;
  text-transform: uppercase;
  padding-bottom: 10px;
} 

.footer-link a,.footer-contact p, .footer-contact a  {
  font-size: 13px;
  color: #313131;
  line-height: 1.8;
} 

.footer-link ul li {
  margin-top: 15px;
}

.footer-contact  p:nth-child(2) {
  text-transform: capitalize;
}

.footer-copyright {
  padding: 16px 0;
}

.footer-copyright p {
  color: #313131;  
  font-size: 19px;
  margin-top: 235px;
}

/* Core Value */
.section-corevalue {
  padding: 40px 0;
}

.section-corevalue:before {
  content: '';
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 150px;
  height: 232px;
  background-image: url(../images/bg-left-value.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.section-corevalue:after {
  content: '';
  position: absolute;
  top: -65px;
  right: 0;
  width: 160px;
  height: 411px;
  background-image: url(../images/bg-right-value.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.corevalue-wrap {
  max-width: 610px;
  margin: 0 auto;
  position: relative;
  min-height: 650px;
  text-align: center;
}

.hexagon-wrapper {
  position: absolute;
  max-width: 180px;
  width: 100%;
  display: inline-block;
  margin: 0 15px;
  transform: rotate(90deg);
}

.hexagon {
  position: relative;
  width: 100%;
  height: 50%;
  left: auto;
  top: 25%;
  z-index: 2;
  margin: auto;
  background-color: #ffffff;
  transition: .2s cubic-bezier(.25,.46,.45,.94);
}

.hexagon:after, .hexagon:before {
  position: absolute;
  content: "";
  display: block;
  width: 70.71%;
  height: 122.46%;
  transform-origin: 0 0;
  background-color: inherit !important;
}

.hexagon:hover {  
  box-shadow: -0px 2px 20px 5px rgba(206,206,206,.7);
}

.hexagon:before {
  transform: scale(1,.579) translate(70.71136%,-70.71136%) rotate(45deg);
}

.hexagon:after {
  transform: scale(1,.579) translate(70.71136%,70.71136%) rotate(45deg);  
}

.hexagon-content {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  flex-direction: column;
  max-width: 210px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-90deg);
}

.hexagon-image {
  margin-bottom: 15px;
}

.hexagon .icon {
  -webkit-transition: .2s cubic-bezier(.25,.46,.45,.94);
  -o-transition: .2s cubic-bezier(.25,.46,.45,.94);
  transition: .2s cubic-bezier(.25,.46,.45,.94);
}

.hexagon:hover .icon {
  -webkit-transition:scale(1.1) translate(0,10px); 
  -o-transition:scale(1.1) translate(0,10px); 
  transform: scale(1.1) translate(0,10px); 
}


.hexagon-one {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 25px;
}

.hexagon-one .hexagon {
  background-color: #F3654F;  
  color: #9b4032;
}

.hexagon-two {
  right: 30px;
  top: 123px;
}

.hexagon-two .hexagon {
  background-color: #7DAFFF;
  color: #4e70a5;
}

.hexagon-three {
  top: 318px;
  right: 30px; 
}

.hexagon-three .hexagon {
  background-color: #FCB859;
  color: #BC7410
}

.hexagon-four {
  bottom: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.hexagon-four .hexagon {
  background-color: #2CC7AF;
  color: #0F7969
}

.hexagon-five {
  top: 318px;
  left: 30px;
}

.hexagon-five .hexagon {
  background-color: #AB88C4;
  color: #6B4983
}

.hexagon-six {
  left: 30px;
  top: 123px;
}

.hexagon-six .hexagon {
  background-color: #2FD286;
  color: #0F8E53
}

.hexagon-seven {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
  margin: 0 auto;
}

.hexagon-seven .hexagon:hover:before {
  box-shadow: -12px -12px 12px rgba(206,206,206,.25);
}

.hexagon-seven .hexagon:hover:after {
  box-shadow: 12px 12px 12px rgba(206,206,206,.25);
}

.hexagon-seven .hexagon {  
  background-color: #ffffff;
  color: #72A751
}

.hexagon-seven .hexagon h4 {
  font-size: 41px;
  font-family: 'Lobster', sans-serif;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #72A751;
  display: flex;
  align-items: center;
  justify-content: center;
}


.success {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #468847;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

div#form-en {
max-width: 54%;
    margin: 1.75rem auto;
	}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
section#inquiry .touch-card {
    padding: 35px 35px;
    background-color: #fff;
    
    bottom: -15px;
}
div#myModal {
    overflow: scroll;
}
@media only screen and (max-width: 780px) {
  div#form-en {
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
    margin: 1.75rem auto;
}
section#inquiry .touch-card {
    padding: 35px 35px;
    background-color: #fff;
    
    bottom: -45px;
}
}
	