/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

h1 {
  font-size: 42px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 36px;
  line-height: 56px;
  font-family: "Montserrat-Regular";
  margin-top: 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h2 {
    font-size: 22px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  h2 {
    font-size: 25px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h3 {
    font-size: 17px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h5 {
    font-size: 12px;
  }
}

h6 {
  font-size: 12px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  h6 {
    font-size: 10px;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  p {
    width: auto;
  }
}

button {
  outline: none;
  border: none;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -32px !important;
  margin-top: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-sm-12,
.col-sm-6,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-9,
.col-sm-2,
.col-sm-7,
.col-sm-8, .col-sm-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 78.333333%;
    max-width: 78.333333%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
*,
::after,
::before {
  box-sizing: border-box;
}

.d-flex {
  display: flex;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .d-flex {
    display: block;
  }
}

.align-item-center {
  align-items: center;
}

.text-align-center {
  text-align: center;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease-out;
  font-family: "Montserrat";
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

a:visited {
  color: #000000;
}

a:hover {
  text-decoration: none;
  transition: 0.3s ease-in;
}

.text-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
}

.text-link:hover::after {
  width: 30%;
}

.padding-lr {
  padding: 0rem 1rem;
}

.padding-tb {
  padding: 1rem 0rem;
}

.padding-lrtb {
  padding: 5px;
}

.justify-content {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

input {
  outline: none;
  border: none;
  border-radius: 0px;
}

.desktop-block {
  display: block !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-block {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-block {
    display: none !important;
  }
}

.mobile-block {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-block {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-block {
    display: block !important;
  }
}

.desktop-flex {
  display: flex;
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .desktop-flex {
    display: none !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-flex {
    display: none !important;
  }
}

.mobile-flex {
  display: none !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 820px) and (orientation: landscape) {
  .mobile-flex {
    display: flex !important;
  }
}

.desktop-grid {
  display: grid !important;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .desktop-grid {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .desktop-grid {
    display: grid !important;
  }
}

#tab1 ul li:nth-child(4) {
  padding-top: 3.5%;
}
#tab1 ul li:nth-child(5n) {
  padding-top: 1.7%;
}
#tab1 ul li:nth-child(9), #tab1 ul li:nth-child(10) {
  width: 50%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tab1 ul li:nth-child(9), #tab1 ul li:nth-child(10) {
    width: 100%;
  }
}
#tab1 ul li:nth-child(9) textarea, #tab1 ul li:nth-child(10) textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  height: 70px;
  border-radius: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tab1 ul li:nth-child(9) textarea, #tab1 ul li:nth-child(10) textarea {
    border: 1px solid;
  }
}
#tab1 .gform_wrapper .validation_message {
  color: #ff0000;
}
#tab1 .gfield_required {
  font-size: 20px !important;
  color: #afaeae !important;
}

#tab2 ul li:nth-child(8) {
  padding-top: 5px;
}
#tab2 ul li:nth-child(9) {
  width: 100%;
}
#tab2 ul li:nth-child(9) textarea {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  height: 50px;
}
#tab2 ul li:nth-child(10) {
  width: 35%;
  padding-top: 0.55%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tab2 ul li:nth-child(10) {
    width: 100%;
  }
}
#tab2 ul li:nth-child(11) {
  width: 32%;
}
#tab2 ul li:nth-child(11) #input_3_12 {
  padding-top: 0px !important;
  margin-top: 0px !important;
}
#tab2 ul li:nth-child(12) {
  /*width: 35%;*/
  padding-top: 0%;
}
#tab2 ul li:nth-child(13), #tab2 ul li:nth-child(14), #tab2 ul li:nth-child(15) {
  width: 33.33%;
  display: inline-grid;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tab2 ul li:nth-child(13), #tab2 ul li:nth-child(14), #tab2 ul li:nth-child(15) {
    width: 100%;
  }
}
#tab2 .gform_wrapper .validation_message {
  color: #ff0000;
}
#tab2 .gfield_required {
  font-size: 20px;
  color: #afaeae;
}
#tab2 h2.gsection_title {
  color: #969696;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #tab2 h2.gsection_title {
    width: auto !important;
  }
}
#tab2 .gform_wrapper li.gfield.field_description_below + li.gsection {
  width: 100%;
}

.ginput_container_address input {
  font-size: 15px !important;
}

select[name="input_22.6"] {
  margin-top: 20px !important;
  line-height: 1em !important;
}

#tab2 .gsection_title, .message_field_distribution label, .message_field_distribution span {
  color: #eeb116 !important;
  font-weight: bolder !important;
  font-size: 14px !important;
}

.date_year_company {
  padding-top: 5px !important;
}
.date_year_company .ginput_container_date {
  margin-top: 20px !important;
}

.gchoice_3_14_11 {
  width: auto !important;
}

.no_sales_person th {
  display: none !important;
}

#tab2 .gfield_error.no_sales_person td {
  padding: 0px 4px 4px 0 !important;
}

.manufacturing_info .wrapp2 p:nth-child(1) {
  font-family: "Montserrat-Semibold" !important;
}
.manufacturing_info .wrapp3 p:nth-child(1) {
  font-family: "Montserrat-Semibold" !important;
}
.manufacturing_info .wrapp1 p {
  font-size: 16px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .manufacturing_info .wrapp1 p {
    font-size: 11px;
  }
}
.manufacturing_info .table-responsive .head {
  font-size: 16px;
  font-family: "Montserrat-Semibold";
  color: #000;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .manufacturing_info .table-responsive .head {
    font-size: 12px;
  }
}
.manufacturing_info .table-responsive table {
  margin-bottom: 0px;
}
.manufacturing_info .table-responsive table tr, .manufacturing_info .table-responsive table th, .manufacturing_info .table-responsive table td {
  border: 0px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .manufacturing_info .table-responsive table tr, .manufacturing_info .table-responsive table th, .manufacturing_info .table-responsive table td {
    border: 1px solid #e5e5e5;
  }
}
.manufacturing_info .table-responsive thead th {
  font-size: 11px;
  color: #000;
  border-bottom-width: 0px;
}
.manufacturing_info .table-responsive tbody tr:nth-child(2) {
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .manufacturing_info .table-responsive tbody tr:nth-child(2) {
    border-bottom: 0px;
  }
}
.manufacturing_info .table-responsive tbody tr:nth-child(2) td {
  padding-bottom: 15px;
}
.manufacturing_info .table-responsive tbody tr:last-child td {
  padding-bottom: 15px;
}
.manufacturing_info .table-responsive td {
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .manufacturing_info .table-responsive td {
    font-size: 12px;
  }
}

#manufacturing_plants .manufacturing_info .col-sm-4:nth-child(1) .wrapp3 {
  margin-top: 26%;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .col-sm-4:nth-child(1) .wrapp3 {
    margin-top: 0;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .col-sm-4:nth-child(2) .wrapp1 {
    margin-top: 10%;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .col-sm-4:nth-child(3) .wrapp1 {
    margin-top: 10%;
  }
}

#exports .banner {
  width: 100%;
  position: relative;
}
#exports .banner img {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #exports .banner img {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #exports .banner img {
    height: 300px;
  }
}
#exports .faq-content {
  position: absolute;
  top: 32%;
  left: 50%;
  margin-left: -100px;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #exports .faq-content {
    position: absolute;
    top: 26%;
    left: 50%;
    margin-left: -53px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #exports .faq-content {
    top: 34%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #exports .faq-content {
    top: 34%;
  }
}
#exports .faq-content h1 {
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat-Semibold";
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .corporate_cont {
    font-size: 13px;
    line-height: 24px;
  }
}
.corporate_cont p:last-child span {
  font-family: "Montserrat-Semibold";
}

#corporate_profile {
  padding: 2rem 0rem;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #corporate_profile {
    padding: 1rem 0rem;
  }
}
#corporate_profile h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #corporate_profile h2 {
    margin-bottom: 20px;
  }
}
#corporate_profile h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#corporate_profile p {
  width: auto !important;
}

#india_export {
  padding: 0px;
  padding-top: 2rem;
}
#india_export h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}
#india_export h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}

#display_showrooms {
  padding: 0px;
  padding-top: 2rem;
}
#display_showrooms h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #display_showrooms h2 {
    font-size: 18px;
  }
}
#display_showrooms h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}

#our_brand {
  padding: 0rem;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
#our_brand h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}
#our_brand h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#our_brand ul {
  list-style: none;
  padding-top: 20px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our_brand ul {
    margin: 0;
    padding: 0;
  }
}
#our_brand ul li {
  list-style: none;
  display: inline;
  padding: 0 20px;
  vertical-align: middle;
  line-height: 80px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #our_brand ul li {
    width: 49%;
    margin-bottom: 30px;
    border: 1px solid #eee;
    display: inline-block;
    padding: 10px;
  }
}

.box_listing {
  background-color: #F4F4F4;
  min-height: 284px;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .box_listing {
    min-height: auto;
  }
}
.box_listing .box_listing_title {
  font-size: 16px;
  font-family: "Montserrat-Regular";
  font-weight: bold;
  margin-left: 28px;
  margin-bottom: 5px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .box_listing .box_listing_title {
    margin-left: 0px;
  }
}
.box_listing ul {
  margin: 0;
  padding: 0;
}
.box_listing ul li {
  list-style: none;
  display: flex;
}
.box_listing ul li img {
  width: auto;
  margin: 9px 0 0 0;
  height: 15%;
}
.box_listing ul li p {
  width: auto;
  display: inline-block;
  margin: 5px 0 4px 15px;
  font-size: 14px;
  /* font-weight: 100; */
  font-family: "Montserrat";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .box_listing ul li p {
    font-size: 12px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .box_listing ul li p {
    word-break: break-all;
  }
}
.box_listing ul a {
  font-family: "Montserrat";
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #corporate_form #sidebarTabsSection::after {
    display: none;
  }
}
#corporate_form .gform_wrapper table.gfield_list td, #corporate_form .gform_wrapper table.gfield_list th {
  padding: 0 4px !important;
}
#corporate_form .gfield_checkbox li input[type=checkbox]:before {
  content: "";
  background-color: transparent;
  border: 2px solid #000;
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#corporate_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #eeb116;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #corporate_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #corporate_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #corporate_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
#corporate_form .gfield_checkbox li input[type=checkbox] {
  border-bottom: 0;
}
#corporate_form ul.tab_justified {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #corporate_form ul.tab_justified {
    display: flex;
  }
}
#corporate_form ul.tab_justified li {
  width: 50%;
  text-align: center;
  display: inline-block;
  background-color: #F4F4F4;
  color: #000;
  font-family: "Montserrat-Regular";
  font-size: 17px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #corporate_form ul.tab_justified li {
    width: 100%;
    display: block;
    font-size: 12px;
  }
}
#corporate_form ul.tab_justified li.active {
  display: inline-block;
  background-color: #eeb116;
  color: #fff;
}
#corporate_form ul.tab_justified li.active::after {
  font-size: 0;
}

#global_contacts h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #global_contacts h2 {
    font-size: 20px;
  }
}
#global_contacts h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#global_contacts .content-gd .col-sm-4 {
  margin-bottom: 30px;
}
#global_contacts .content-gd .box_listing {
  min-height: auto;
  height: 100%;
}

#global_contacts ul.tab_justified {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  margin-bottom: 30px;
}
#global_contacts ul.tab_justified li {
  width: 20%;
  text-align: center;
  display: inline-block;
  background-color: #F4F4F4;
  color: #000;
  font-family: "Montserrat-Regular";
  font-size: 17px;
  border-right: 2px solid #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #global_contacts ul.tab_justified li {
    width: 100%;
    display: block;
  }
}
#global_contacts ul.tab_justified li.active {
  display: inline-block;
  background-color: #eeb116;
  color: #fff;
}
#global_contacts ul.tab_justified li.active::after {
  font-size: 0;
}

#manufacturing_plants h2 {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 40px;
}
#manufacturing_plants h2::after {
  content: "";
  display: block;
  width: 15%;
  height: 2px;
  background: #eeb116;
  transition: width 0.3s;
  margin-top: 5px;
}
#manufacturing_plants .manufacturing_info {
  background-color: #FCF6DC;
  padding: 30px;
  text-align: center;
}
#manufacturing_plants .manufacturing_info p {
  margin-bottom: 0rem;
}
#manufacturing_plants .manufacturing_info p.bold_text {
  font-family: "Montserrat-Semibold";
}
#manufacturing_plants .manufacturing_info .wrapp1 {
  overflow: hidden;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .wrapp1 {
    margin-bottom: 0;
  }
}
#manufacturing_plants .manufacturing_info .wrapp1 p {
  font-family: "Montserrat-Semibold";
}
#manufacturing_plants .manufacturing_info .wrapp2 {
  overflow: hidden;
}
#manufacturing_plants .manufacturing_info .wrapp2 p {
  font-size: 15px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .wrapp2 p {
    font-size: 13px;
  }
}
#manufacturing_plants .manufacturing_info .wrapp3 {
  margin-top: 50px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .wrapp3 {
    margin-top: 0;
  }
}
#manufacturing_plants .manufacturing_info .wrapp3 span {
  font-family: "Montserrat-Semibold";
}
#manufacturing_plants .manufacturing_info .wrapp3 p {
  font-size: 15px;
  font-family: "Montserrat-Regular";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #manufacturing_plants .manufacturing_info .wrapp3 p {
    font-size: 13px;
  }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  #enquiry_form body .gform_wrapper ul li.gfield {
    display: block !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #enquiry_form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    width: 100%;
  }
}
#enquiry_form .gfield_checkbox li input[type=checkbox] {
  border-bottom: 0 !important;
}
#enquiry_form .gfield_checkbox li input[type=checkbox]:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}
#enquiry_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 16px;
  border: solid #eeb116;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background: #fff;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #enquiry_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 568px) {
  #enquiry_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
    top: 5px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 768px) {
  #enquiry_form .gfield_checkbox li input[type=checkbox]:checked + label:after {
    top: -2px;
  }
}
#enquiry_form .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, #enquiry_form .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
  font-size: 12px !important;
}

/*
.gform_wrapper .top_label li.gfield.gf_right_half{
	vertical-align: baseline!important;
	padding-top: 0!important;
    margin: 0;
}
*/
#gform_wrapper_2 .top_label li.gfield.gf_left_half {
  padding-right: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #gform_wrapper_2 .top_label li.gfield.gf_left_half {
    padding-right: 0px;
  }
}
#gform_wrapper_2 ul.gform_fields li.gfield {
  padding-right: 30px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #gform_wrapper_2 ul.gform_fields li.gfield {
    padding-right: 0px;
  }
}
#gform_wrapper_2 .top_label li.gfield.gf_left_half, #gform_wrapper_2 .gform_wrapper .top_label li.gfield.gf_right_half {
  vertical-align: baseline;
}
#gform_wrapper_2 .top_label li.gfield.gf_right_half {
  padding-right: 0px;
}
#gform_wrapper_2 #field_2_11 {
  padding-right: 0px;
}
#gform_wrapper_2 #field_2_19 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
#gform_wrapper_2 ::-moz-placeholder {
  color: #969696;
  font-size: 14px;
}
#gform_wrapper_2 ::placeholder {
  color: #969696;
  font-size: 14px;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #gform_wrapper_2 ::-moz-placeholder {
    font-size: 12px;
  }
  #gform_wrapper_2 ::placeholder {
    font-size: 12px;
  }
}
#gform_wrapper_2 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding-left: 0px;
}
#gform_wrapper_2 #gform_confirmation_message_2 {
  text-align: center;
  margin-top: 30px;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #gform_wrapper_2 ul.gform_fields li.gfield.gfield_error + li.gfield.gfield_error {
    margin-top: 0px;
  }
}

#gform_wrapper_3 .top_label li.gfield.gf_left_half {
  padding-right: 30px;
}
#gform_wrapper_3 .top_label li.gfield.gf_right_half {
  padding-right: 0px;
}
#gform_wrapper_3 ::-moz-placeholder {
  color: #969696;
  font-size: 14px;
}
#gform_wrapper_3 ::placeholder {
  color: #969696;
  font-size: 14px;
}
#gform_wrapper_3 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 0px;
  margin: 0px;
}
#gform_wrapper_3 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder {
  opacity: 0;
}
#gform_wrapper_3 input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder {
  opacity: 0;
}
#gform_wrapper_3 .clear-multi {
  align-items: center;
  justify-content: space-evenly;
}
#gform_wrapper_3 #field_3_13 .gfield_label, #gform_wrapper_3 #field_3_14 .gfield_label, #gform_wrapper_3 #field_3_15 .gfield_label {
  font-size: 16px;
  color: #eeb116;
  font-family: "Montserrat-Regular";
}
#gform_wrapper_3 #field_3_26 .gsection_title, #gform_wrapper_3 #field_3_28 .gsection_title {
  color: #eeb116;
  font-size: 16px;
  font-family: "Montserrat-Regular";
}
#gform_wrapper_3 #field_3_20 label {
  color: #eeb116;
  font-size: 16px;
  font-family: "Montserrat-Regular";
  line-height: 25px;
  margin-bottom: 15px;
}
#gform_wrapper_3 .gchoice_3_14_11 {
  display: flex;
  align-items: center;
}
#gform_wrapper_3 .gsection {
  margin: 0;
  border-bottom: 0px;
}

#gform_confirmation_message_3, #gform_confirmation_message_2 {
  text-align: center;
  margin-top: 30px;
  font-family: "Montserrat-Semibold";
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  #gform_confirmation_message_3, #gform_confirmation_message_2 {
    font-size: 13px;
  }
}

.address_country {
  font-size: 14px !important;
}

#corporate_form #sidebarTabsSection::after {
  display: none !important;
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
  #gform_fields_2 li, #gform_fields_3 li {
    width: 100%;
  }
  #gform_wrapper_3 .clear-multi {
    justify-content: left;
  }
  #gform_wrapper_3 .top_label li.gfield.gf_left_half {
    padding-right: 0;
  }
  #field_3_34, #field_3_35 {
    width: 47% !important;
    margin-right: 7.5px;
  }
  #field_3_31, #field_3_32, #field_3_37, #field_3_39, #field_3_36, #field_3_38 {
    width: 47% !important;
    margin-right: 7.5px;
  }
  #field_3_48, #field_3_50, #field_3_51, #field_3_53, #field_3_45, #field_3_54, #field_3_58 {
    width: 22% !important;
    margin-right: 0.5em;
    vertical-align: top;
    text-align: center;
  }
  #field_3_25, #field_3_47, #field_3_57, #field_3_60, #field_3_62, #field_3_46, #field_3_56, #field_3_59, #field_3_63 {
    width: 22% !important;
    margin-right: 0.5em;
    vertical-align: top;
  }
  #field_3_25 tr, #field_3_62 tr, #field_3_63 tr {
    border: 0;
    margin: 0;
    padding: 0;
  }
  #field_3_25 tr input, #field_3_62 tr input, #field_3_63 tr input {
    width: 100%;
  }
  #tab2 ul li:nth-child(11) {
    width: 100%;
  }
}
@media only screen and (max-width: 761px), (min-device-width: 768px) and (max-device-width: 1023px) {
  #field_3_25 tr, #field_3_62 tr, #field_3_63 tr {
    border: 0;
    margin: 0;
    padding: 0;
  }
  #field_3_25 tr input, #field_3_62 tr input, #field_3_63 tr input {
    width: 100%;
  }
}/*# sourceMappingURL=export.css.map */