/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@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');


body {
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  background-color: #141B30;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1 {
  line-height: 72px;
  margin: 0;
  margin-bottom: 20px
}

h2:first-child {
  margin-top: 0
}

div>span+h2 {
  margin-top: 0
}

div>span+h3 {
  margin-top: 0
}

h2 {
  margin: 0;
  margin-bottom: 20px;
  line-height: 54px;
}

h2 span {
  color: #28f0b4
}

h3:first-child {
  margin-top: 0
}

h3 {
  margin: 0;
  margin-bottom: 30px;
  line-height: 44px;
}

h4 {
  line-height: 36px;
  margin: 0;
  margin-bottom: 20px
}

h5 {
  margin: 0;
  margin-bottom: 20px
}

h6 {
  margin: 0 0 12px
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
}

a {
  
  text-decoration: none
}

p:last-child {
    margin-bottom: 0;
}



.page-center {
  margin: 0 auto;
  max-width: 1200px;
}

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

.sb {
  justify-content: space-between
}

.jc {
   justify-content: center;
}

.tc {
  text-align: center
}

.tr {
  text-align: right
}

.ac {
  align-items: center
}

.dnd-column:has(.sec-full) {
  padding: 0;
}


.white-font h1,
.white-font h2,
.white-font h3,
.white-font h4,
.white-font h5,
.white-font h6,
.white-font p {
    color: #ffff;
}



/***** Button *****/
.ngc-button a {
    align-items: center;
    border: 1px solid #64707d;
    border-radius: 12px;
    color: #fcfcfc;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    justify-content: center;
    overflow: hidden;
    padding: 10px 32px;
    position: relative;
    transition: all .3s ease-in-out;
}

.ngc-button a:hover {
    border: 1px solid #00A991 !important;
}

.btn-icon_normal {
/*     position: absolute;
    top: 0;
    left: 32px; */
    height: 100%;
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
}

.btn-ico_hover {
    display: flex;
    align-items: center;
/*     position: absolute;
    top: 100%; 
    left: 32px; */
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    opacity: 0;
}

.ngc-button a:hover .btn-icon_normal {
    transform: translateY(-130%); /* Move the original icon out of view */
}

.ngc-button a:hover .btn-ico_hover {
    transform: translateY(-100%); /* Move the hover icon into view */
    opacity: 1;
}

/* Use the :hover pseudo-class to trigger a permanent state change */
.ngc-button a:focus-within .btn-icon_normal,
.ngc-button a:focus-within .btn-ico_hover,
.ngc-button a:active .btn-icon_normal,
.ngc-button a:active .btn-ico_hover {
    transform: translateY(-100%);
    opacity: 1;
}

.ngc-button a:focus-within .btn-icon_normal {
    display: none; /* Hide the original icon */
}

.ngc-button a:focus-within .btn-ico_hover {
    display: block; /* Ensure the hover icon is visible */
    opacity: 1;
    transform: translateY(0);
}

.btn-icon {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.ngc-primary a {
/*     border-radius: 16px; */
    border: 1px solid transparent !important;
    background: linear-gradient(#141b30, #141b30) padding-box, linear-gradient(45deg, #076ED2, #AD33E7) border-box !important;
}

/***** Button *****/








/***** Left Button *****/


.ngc-button-left a {
    align-items: center;
    border: 1px solid #64707d;
    border-radius: 12px;
    color: #fcfcfc;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    justify-content: center;
    overflow: hidden;
    padding: 10px 32px;
    position: relative;
    transition: all .3s ease-in-out;
    padding-right: 42px;
}

.ngc-button-left a:hover {
    border: 1px solid #00A991;
}

.leftbtn-icon_normal {
    height: 100%;
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
    transform: translateX(0); /* Start at normal position */
}

/* .btn-ico_hover {
    display: flex;
    align-items: center;
    height: 100%;
    transform: translateX(-100%); 
    transition: transform 0.4s ease-in-out;
    opacity: 0; 
} */

.ngc-button-left a:hover .leftbtn-icon_normal {
    transform: translateX(130%); /* Move the original icon out of view to the right */
}

.ngc-button-left a:hover .btn-ico_hover {
    transform: translateX(0); /* Move the hover icon into view from the left */
    opacity: 1; /* Make the hover icon visible */
}

/* Focus and active states */
.ngc-button-left a:focus-within .leftbtn-icon_normal,
.ngc-button-left a:focus-within .btn-ico_hover,
.ngc-button-left a:active .leftbtn-icon_normal,
.ngc-button-left a:active .btn-ico_hover {
    transform: translateX(0);
    opacity: 1;
}

.ngc-button-left a:focus-within .leftbtn-icon_normal {
    display: none; /* Hide the original icon */
}

.ngc-button-left a:focus-within .btn-ico_hover {
    display: block; /* Ensure the hover icon is visible */
    opacity: 1;
    transform: translateX(0); /* Set to the original position */
}

.leftbtn-icon {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    overflow: hidden;
}





.ngc-medium .leftbtn-icon {
    width: 32px;
    height: 32px;
}

.ngc-small .leftbtn-icon {
    width: 24px;
    height: 24px;
}



/***** Left Button *****/




.ngc_top h2 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 16px;
}

.ngc_top h2 span {
    background: linear-gradient(91deg, #076ed2 38.7%, #ad33e7 87.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.ngc_top p {
    color: #828F9B;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

.ngc_top {
    max-width: 785px;
    margin: 0px auto;
    margin-bottom: 120px;
}

.page-center-sm {
    max-width: 994px;
}




.ngc_text h2 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 16px;
}

.ngc_text h2 span {
    background: linear-gradient(91deg, #076ed2 38.7%, #ad33e7 87.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.ngc_text h1 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 16px;
}

.ngc_text h1 span {
    background: linear-gradient(91deg, #076ed2 38.7%, #ad33e7 87.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ngc_text p {
    color: #8F96A3;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
}

.ngc-large a {
    border-radius: 20px;
    padding: 11px 40px;
    padding-right: 50px;
}

.ngc-medium .btn-icon {
    width: 32px;
    height: 32px;
}

.ngc-medium a {
    padding: 11px 32px;
    border-radius: 16px;
    padding-right: 42px;NexGen - Product Hero

}

.ngc-small .btn-icon {
    width: 24px;
    height: 24px;
}



/**** Form ****/

.ngc-form form .hs-form-field>label {
    color: #FCFCFC;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    font-family: Fira Sans, sans-serif;
    margin-bottom: 16px;
}


.ngc-form form .hs-form-field .input>input {
    background-color: transparent;
    border: 1px solid #64707d;
    border-radius: 12px;
    padding: 16px 20px !important;
    color: #D2D6DB;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    font-family: Fira Sans, sans-serif;
}


.ngc-form form .hs-form-field .input>textarea {
    background-color: transparent;
    border: 1px solid #64707d;
    border-radius: 12px;
    padding: 16px 20px !important;
    color: #D2D6DB;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    font-family: Fira Sans, sans-serif;
    width: 100% !important;
    vertical-align: middle;
        min-height: 134px;
}


.ngc-form form .hs-form-field .input>textarea:focus-visible {
    border: 1px solid #0AF !important;
    outline: 0;
}



.ngc-form form .hs-form-field .hs-fieldtype-intl-phone input {
    background-color: transparent;
    border: 1px solid #64707d;
    border-radius: 12px;
    padding: 16px 20px !important;
    color: #D2D6DB;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    font-family: Fira Sans, sans-serif;
}

.ngc-form form .hs-form-field .hs-fieldtype-intl-phone input:focus-visible {
    border: 1px solid #0AF !important;
    outline: 0;
}






.ngc-form form .hs-form-field .hs-fieldtype-intl-phone select {
    background-color: transparent;
    border: 1px solid #64707d;
    border-radius: 12px;
    padding: 16px 20px !important;
    color: #D2D6DB;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    font-family: Fira Sans, sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(https://26282475.fs1.hubspotusercontent-eu1.net/hubfs/26282475/nexgencloud_2024/book-a-call/select.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center right 20px;
    width: 100%;
}

.ngc-form form .hs-form-field .hs-fieldtype-intl-phone select:focus-visible {
    border: 1px solid #0AF !important;
    outline: 0;
}



.ngc-form form .hs-form-field .input>select {
    background-color: transparent;
    border: 1px solid #64707d;
    border-radius: 12px;
    padding: 16px 20px;
    color: #D2D6DB;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    font-family: Fira Sans, sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(https://26282475.fs1.hubspotusercontent-eu1.net/hubfs/26282475/nexgencloud_2024/book-a-call/select.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center right 20px;
    width: 100%;
  
}


.ngc-form form .hs-form-field .input>select option {
    background-color: #141b30; /* Background for dropdown options */
    color: #fff; /* Text color */
}

/* Optional: Add hover and focus effects on options */
.ngc-form form .hs-form-field .input>select option:hover {
    background-color: #141b30;
}




.ngc-form form .hs-form-field .input>select:focus-visible {
    border: 1px solid #0AF !important;
    outline: 0;
}


.ngc-form form .hs-form-field .input ::-ms-input-placeholder { /* Edge 12-18 */
  color: #40474F;
}

.ngc-form form .hs-form-field .input {
    margin: 0px !important;
}

.ngc-form form .hs-form-field .input ::placeholder {
   color: #40474F;
}

.ngc-form form .hs-form-field .input>input:focus-visible {
    border: 1px solid #0AF !important;
    outline: 0;
}

.ngc-form form .hs-form-field .hs-error-msgs label.hs-error-msg.hs-main-font-element {
    color: #FFB74D;
    font-family: Fira Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}


.ngc-form form .hs-form-field span.hs-form-required {
    color: #7D41C8;
    margin-left: 4px;
}

.ngc-form form .hs-form-field {
    margin-bottom: 60px;
}

.ngc-form form fieldset.form-columns-2 .hs-form-field {
    margin-bottom: 60px;
    width: calc(50% - 20px);
}

.ngc-form form fieldset.form-columns-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ngc-form form fieldset.form-columns-2 .hs-form-field .input {
    margin: 0;
}




/* Custom Input */
ul.inputs-list.multi-container li.hs-form-radio label {
  position: relative;
}

ul.inputs-list.multi-container li.hs-form-radio label span {
    display: inline-block;
    margin-left: 40px;
    margin-right: 16px;
    color: #A4ADB6;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    font-family: Fira Sans, sans-serif;
}

ul.inputs-list.multi-container li.hs-form-radio label input:checked+span {
    color: #19c39a;
}


/* Hide the original radio select */
ul.inputs-list.multi-container li.hs-form-radio label input {
  height: 24px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
/* Add new radio select */
ul.inputs-list.multi-container li.hs-form-radio label span:before {
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    width: 24px;
    border-radius: 6px;
    border: 1px solid #64707D;
}
/* Style new checked item */
ul.inputs-list.multi-container li.hs-form-radio label span:after {
    border: 7px solid #19C39A;
    border-radius: 50%;
    content: "";
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 5px;
    transition: opacity .2s ease-in-out;
    border-radius: 3px;
}

/* Show when checked */
 ul.inputs-list.multi-container li.hs-form-radio label input:checked + span::after {
  opacity: 1;
}
/* Style when focused */
/* ul.inputs-list.multi-container li.hs-form-radio label input:focus + span::after {
  box-shadow: 0 0 0 3px #4D90FE;
  outline: 3px solid transparent;
}
 */

.ngc-form form .hs-fieldtype-radio ul.inputs-list.multi-container li.hs-form-radio {
    width: 33.3%;
    margin: 0;
    margin-bottom: 32px;
}


.ngc-form form .hs-fieldtype-radio>label {
    margin-bottom: 32px;
}

.ngc-form form .hs-fieldtype-radio ul.inputs-list.multi-container {
    display: flex;
    flex-wrap: wrap;
}


.ngc-form form .hs-richtext p {
    color: #64707d;
    font-family: Fira Sans, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 0px;
}

.ngc-form form .legal-consent-container .hs-richtext {
    margin-bottom: 0;
    max-width: 700px;
}

.ngc-form form .hs-richtext p a {
    color: #19C39A;
}


.ngc-form form .hs-form-booleancheckbox label.hs-form-booleancheckbox-display p {
    color: #d2d6db;
    font-family: Fira Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 0px !important;
}

.ngc-form form .hs-form-booleancheckbox {
    margin: 0;
}


.ngc-form form .hs_submit.hs-submit {
    padding-top: 32px;
}

.ngc-form form input.hs-button {
    background: linear-gradient(#141b30, #141b30) padding-box, linear-gradient(45deg, #076ed2, #ad33e7) border-box;
    border: 1px solid transparent;
    border-radius:16px;
    color: #fff;
    font-family: Fira Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    padding: 18px 32px;
    transition: all .3s ease-in-out;
    width: 100%;
}

.ngc-form form input.hs-button:hover {
    border: 1px solid #00A991;
    background: #141B30;
}

.ngc-form form .hs_error_rollup {
    display: none;
}






.ngc-form form .hs-fieldtype-file .input {
  margin-top: 10px;
}

/* Custom styling for the file input field */
.ngc-form form .hs-fieldtype-file input[type="file"] {

}

/* Hide the default file input style */
.ngc-form form .hs-fieldtype-file input[type="file"]::file-selector-button {
  display: none;
}



@media not all and (min-resolution: 0.001dpcm) { 
  @supports (-webkit-appearance: none) {
    .ngc-form form .hs-fieldtype-file input[type="file"]::file-selector-button {
      display: block !important; /* Show only in Safari */
    }
  }
}

/* Custom button styling */
.ngc-form form .custom-file-upload {
  display: block;
  width: auto;
  padding: 10px;
  margin-top: 10px;
  background-color: #3949ab;  /* Button color */
  color: #fff;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.ngc-form form .hs-fieldtype-file .input input {
    border: 1px dashed #64707d !important;
    background-image: url(https://26282475.fs1.hubspotusercontent-eu1.net/hubfs/26282475/nexgencloud_2024/ai-supercloud/file-upload.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center right 20px;
}

.ngc-form form .hs-form-field .input .invalid.error {
    border-color: #ffb74d !important;
}

.ngc-form form .hs-fieldtype-file .input input:focus-visible {
    border: 1px dashed #0AF !important;
    outline: 0;
}

.ngc-form form .hs-fieldtype-file .hs-error-msgs + .input input {
  /* Styles to apply to the input when there's an error */
    border-color: #ffb74d !important;
}


.ngc-form form .hs-fieldtype-file .error-input {
  border: 2px solid red;
}










/* Custom Input */
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox {
  margin: 16px 0;
}
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label {
  position: relative;
}
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label span {
display: inline-block;
  margin-left: 40px; /* Width of the new radio select and any additional spacing on the left */
  margin-right: 16px; /* Additional spacing on the right */
}
/* Hide the original checkbox */
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label input {
  height: 24px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
/* Add new checkbox */
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label span::before {
/*   border: 2px solid;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
  border-radius: 4px; */
  
    border: 1px solid #64707d;
    border-radius: 6px;
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    width: 24px;
  
  
}
/* Style new checked item */
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label span::after {
  content: "";
  border: 4px solid;
  border-left: 0;
  border-top: 0;
  height: 16px;
  left: 8px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  transition: opacity 0.2s ease-in-out;
  width: 8px;
}
/* Show when checked */
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label input:checked + span::after {
  opacity: 1;
}
/* Style when focused */
.ngc-form form ul.inputs-list.multi-container li.hs-form-checkbox label input:focus + span::after {
  outline: 3px solid transparent; /* For Windows high contrast mode. */
}


/*** Legal consent starts ****/


.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox {
    margin: 0px;
    margin-bottom: 16px;
}

.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label {
  position: relative;
}

.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label span {
    display: inline-block;
    margin-left: 35px !important;
    margin-right: 0;
    margin-top: -3px !important;
}





.ngc-form form .hs-form-booleancheckbox label.hs-form-booleancheckbox-display span {
    color: #d2d6db;
    font-family: Fira Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 0px !important;
}




/* Hide the original checkbox */
.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label input {
  height: 24px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
/* Add new checkbox */
.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label span::before {
    border: 1px solid #64707d;
    border-radius: 6px;
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    width: 24px;
}
/* Style new checked item */
.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label span::after {
    border: 7px solid #19c39a;
    border-radius: 50%;
    border-radius: 3px;
    content: "";
    left: 5px;
    opacity: 0;
    position: absolute;
    top: 5px;
    transition: opacity .2s ease-in-out;
}
/* Show when checked */
.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label input:checked + span::after {
  opacity: 1;
}
/* Style when focused */
.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label input:focus + span::after {
  outline: 3px solid transparent; /* For Windows high contrast mode. */
}

.ngc-form form .hs-form-field ul.inputs-list li.hs-form-booleancheckbox label input:checked+span p {
    color: #19c39a;
}

.ngc-form .submitted-message {
    color: #fcfcfc;
    font-family: Fira Sans, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}


/*** Legal consent starts ****/




.ngc-form form option:disabled {
    color: #f00 !important;
}



/* Style for the entire select when it contains disabled options */
.ngc-form form select.disabled-option {
  color: red !important; /* Change color for select with disabled options */
}

/* Optionally, style the disabled options (though not always effective) */
.ngc-form form select option:disabled {
  color: red; /* Might not work in all browsers */
}

.ngc-form form .hs-form-booleancheckbox label.hs-form-booleancheckbox-display p a {
    color: #19c39a;
}


/**** Form ****/





/**** Form Message Starts ****/

.ngc-form-success_msg_box {
    border-radius: 20px;
    border: 1px solid #40474F;
    background: #141B30;
    padding: 32px;
    max-width: 824px;
    margin: 0px auto;
}

/**** Form Message Ends ****/

/*********** Responsive code ***************/

/************** ipad ***************/

@media (max-width: 1200px) {

  .page-center {
      padding: 0px 20px;
  }


}


@media (max-width: 1024px) {

  p {
    font-size: 18px;
    line-height: 26px;
  }

  .ngc_top {
      margin: 0 auto 80px;
      max-width: 785px;
  }

}

/************** ipad nd tab ***************/
@media only screen and (min-width:768px) and (max-width: 1024px) {}

/************** iphone roatate***************/
@media (max-width: 767px) {

  h1 {
      font-size: 54px;
      line-height: 62px;
  }
  
  
  h2 {
      font-size: 40px;
      line-height: 52px;
  }
  
  
  .ngc_top {
      margin: 0 auto 60px;
  }

  
  .ngc_top p {
      font-size: 18px;
      line-height: 28px;
  }
  
  
  
  .ngc-form form fieldset.form-columns-2 .hs-form-field {
      width: calc(50% - 10px);
  }
  

  .ngc-form form .hs-fieldtype-radio ul.inputs-list.multi-container li.hs-form-radio {
      margin: 0 0 32px;
      width: 50%;
  }


  .ngc-form form .hs-input.hs-fieldtype-intl-phone {
      width: 100% !important;
  }
  
  
}



@media (max-width: 640px) { 

  .ngc-form form .hs-form-field .input>input, .ngc-form form .hs-form-field .input>textarea {
      width: 100% !important;
  }

  
    .ngc-form form fieldset.form-columns-2 .hs-form-field {
        margin-bottom: 40px;
    }
  
  .ngc-form form .hs-form-field .input>select {
      width: 100% !important;
  }
  
  
    .ngc-form form .hs-fieldtype-radio ul.inputs-list.multi-container li.hs-form-radio {
        margin: 0 0 32px;
        width: 100%;
    }
  
  
  .ngc-form form .hs-fieldtype-radio ul.inputs-list.multi-container li.hs-form-radio:last-child {
      margin-bottom: 0 !important;
  }


  .ngc-form form .hs-form-field .input>select {
      background-position: center right 10px;
  }
  
  .ngc-form form .hs-form-field .input>select {
      padding-right: 30px;
  }
  
  .ngc-form form .hs-form-field .hs-fieldtype-intl-phone select {
      background-position: center right 10px;
  }

  .ngc-form form .hs-form-field .hs-fieldtype-intl-phone select {
      background-position: center right 10px;
      padding-right: 30px;
  }
  
  .ngc-form form .hs-richtext p {
      font-size: 12px;
  }
  

  .ngc-form form .hs-fieldtype-intl-phone {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  
  .ngc-form form .input .hs-fieldtype-intl-phone select.hs-input {
      width: 32% !important;
  }
  
  
  .ngc-form form .input .hs-fieldtype-intl-phone input.hs-input {
      width: 64% !important;
  }

  .ngc-form form .hs-input.hs-fieldtype-intl-phone:after {
    content:none;
  }
  
  
  .ngc-form form fieldset.form-columns-2 .hs-form-field {
      width: 100%;
  }

}

/************** iphone ***************/
@media (max-width: 479px) {


  
  

  h1 {
      font-size: 40px;
      line-height: 52px;
  }

  h2 {
      font-size: 36px;
      line-height: 44px;
  }
  
  
  h3 {
      font-size: 28px;
      line-height: 36px;
  }

  
  

}