@font-face {
  font-family: 'Roboto';
  src: url("./Roboto-Regular.ttf");
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Medium';
  src: url("./Roboto-Medium.ttf");
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Light';
  src: url("./Roboto-Light.ttf");
  font-style: normal;
}

body {
  padding: 50px;
  font: 14px "Roboto", Helvetica, Arial, sans-serif;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 0px;
  padding-top: 62px;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h2, h3 {
  font-family: 'Roboto-Light';

}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

.site-content .header-wrapper {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.head-links {
  display: flex;
  align-items: center;
}

.header-head {
  display: flex;
  justify-content: space-between;
  padding: 5px 35px;
  background-color: #0e6544;
  color: white;
  font-size: 35px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
}

.header-head ul {
  display: flex;
  list-style-type: none;
}

.header-head ul li {
  margin-left: 15px;
  font-size: 18px;
}

.header-head ul a {
  color: white;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

.header-head ul a:hover {
  color: #ff6464;
}



.header-body {
  flex-grow: 1;
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-body .header-body-block {
  background-color: #000000d4;
  height: 100%;
  width: 100%;
  padding: 15px;
  align-items: center;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 25px;
  text-align: center;
}

.header-body-block h1 {
  font-size: 40px;
  max-width: 70%;
  font-weight: 100;
}

.header-body-block h1 span {
  color: white;
  background-color: #1c533e;
  padding: 0px 5px;
  font-size: 50px;
}

.header-body-block h5 {
  font-size: 30px;
  max-width: 70%;
  font-family: 'Roboto-Light', sans-serif;
  font-weight: 100;
  text-align: center;
  margin-top: 25px;
}

.site-content-body {
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}


.site-content-body h2 {
  font-size: 40px;
  font-weight: 100;
}

.advantage-row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
  flex-direction: column;
}

.advantage-row .advantage-item {
  position: relative;
  border: 1px solid #00000012;
  border-radius: 5px;
  font-size: 30px;
  padding: 10px 10px 10px 50px;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  font-family: 'Roboto-Light';
  margin-bottom: 50px;
  border-radius: 16px;
  width: 574px;
}

.advantage-item .icon-wrapper {
  text-align: center;
  position: absolute;
  left: -40px;
  top: -23px;
  background-color: #44b388;
  width: 70px;
  height: 70px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  box-shadow: rgb(239, 240, 240) 0px 0px 0px 1px;
}


/* checbox */
.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  text-align: left;
  margin-bottom: 10px;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
  background-color: #2b795b;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 9px;
  height: 13px;
  border: solid white;
  border-width: 0 4px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.product-icon {
  display: flex;
  align-items: center;
  font-size: 25px;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  font-family: 'Roboto-Light';
}

.product-icon img {
  height: 100px;
  margin-bottom: 25px ;
}



.accordion-wrapper {
  padding: 0px 150px;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}


.accordion-wrapper  .ui-accor {
  width: 100%;
  max-width: 700px;
}


.accordion-wrapper  .ui-accor  h3 {
  padding: 13px 16px;
  font-family: 'Roboto-Light';
  font-size: 22px;
  background-color: #eff9f4;
  border: 1px solid #92bba6;
  color: black;
  border-radius: 16px;
  margin-bottom: 7px;
}

.accordion-wrapper  .ui-accor  h3.sub-title{
  padding: 5px 20px;
  font-family: 'Roboto-Light';
  font-size: 18px;
  background-color: #fdfffe;
  border: 1px solid #92bba6;
  color: black;
  border-radius: 8px;
}


.ui-icon, .ui-widget-content .ui-icon {
  background-image: url(images/ui-icons_444444_256x240.png) !important;
}

.accordion-wrapper .ui-icon {
  margin-right: 25px;
}

#accordion ul {
  list-style: none
}

.feedback-form-wrapper {
  display: flex;
  padding: 20px 100px;
  justify-content: center;
  width: 100%;
}

.feedback-form-wrapper  .feedback-form {
  max-width: 700px;
  width: 100%;
  background-color: #eff9f4;
  border: 1px solid #92bba6;
  border-radius: 3px;
  padding: 20px;
  border-radius: 16px;
  position: relative;

}


.feedback-form .feedback-row{
  margin-bottom: 20px;
  display: flex;
  font-size: 18px;
  justify-content: center;
}

.feedback-form .feedback-row .field-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0px 15px;
  font-family: 'Roboto-Light';
}



.field-wrapper textarea {
  resize: none;
  height: 150px;
  padding: 10px;
  border-radius: 8px;
  outline: 0px;
  transition: all .3s cubic-bezier(0.67, 0.17, 0.40, 0.83);
  border: 1px solid #4c7a5c;
}

.field-wrapper textarea:focus {
  border: 1px solid #ff9b63;
}

.field-wrapper input {
  padding: 10px;
  border-radius: 8px;
  outline: 0px;
  transition: all .3s cubic-bezier(0.67, 0.17, 0.40, 0.83);
  border: 1px solid #4c7a5c;
}

.field-wrapper input:focus {
  border: 1px solid #ff9b63;

}


.send-request {
  width: 300px;
  height: 40px;
  background: #1e8d33;
  border-radius: 6px;
  transition: all .3s cubic-bezier(0.67, 0.17, 0.40, 0.83);
  color: whitesmoke;
  outline: 0;
  border: 1px solid white;
  cursor: pointer;
}

.send-request:hover {
  background: #0d651e;
}

hr {
  width: 100%;
  margin-top: 50px;
  /* background-color: azure; */
  border-color: white;
}

.selected-wrapper {
  font-size: 18px;
  margin-bottom: 15px;
}

.selected-wrapper ul {
  list-style: auto;
  font-family: 'Roboto-Light';
}

.ui-accordion .ui-accordion-content {
  border-radius: 16px;
}

footer {
    width: 100%;
    color: white;
    background-color: #396645;
    text-align: center;
    padding: 10px;
    font-family: 'Roboto-Light';
    margin-top: 25px;
    font-size: 16px;
}

footer a {
  color: white;
}

.error {
  margin-top: 5px;
  font-size: 14px;
  color: #f90000;
  display: none;
}

.result {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2fff5db;
  font-size: 25px;
  text-align: center;
  padding: 15px;
}