* {
  padding: 0px;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  color: #0D1942;
}

h1 {
  font-size: 3rem;
}

img {
  width: 100%;
}

p {
  color: #716f96;
}

a {
  text-decoration: none;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: #716f96;
}

.btn {
  border-radius: 20px;
  width: 100%;
  text-align: center;
  background: #716f96;
  padding: 8px 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  color: #fff !important;
}

.primary_btn {
  background: #e57e5f;
}

.secondary_btn {
  background: #203f4c;
}

a:hover,
.submit_btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.8s all ease;
  transition: 0.8s all ease;
}

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

.hero_wrap {
  width: 100%;
  background: #fff6f3;
  border-radius: 10% 10% 50% 50% / 0% 0% 8% 8%;
  padding-bottom: 50px;
}

.hero_wrap.other_line {
  border-radius: 10% 10% 50% 50% / 0% 0% 28% 28%;
}

.hero_wrap .hero {
  max-width: 1300px;
  width: 100%;
  min-height: 200px;
  margin: auto;
  padding: 20px 50px;
}

.hero_wrap .hero .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero_wrap .hero .header .logo img {
  max-width: 125px;
  width: 100%;
}

.hero_wrap .hero .header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
}

.hero_wrap .hero .header .nav li {
  position: relative;
}

.hero_wrap .hero .header .nav li a {
  color: #e57e5f;
}

.hero_wrap .hero .header .nav li .dropdown {
  display: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 48px 71px -13px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 48px 71px -13px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  padding: 0px 0px;
  position: absolute;
  list-style: none;
  top: 20px;
  left: -10px;
  z-index: 999;
  border-bottom: 1px solid #DBDCE0;
  border-radius: 8.00219px;
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
}

.hero_wrap .hero .header .nav li .dropdown li {
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10;
}

.hero_wrap .hero .header .nav li .dropdown li a {
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
  text-align: right;
  width: 160px;
  border-bottom: 1px solid #DBDCE0;
  border-radius: 8.00219px;
  padding: 17px 30px;
  color: #0d1942;
}

.hero_wrap .hero .header .nav li:hover > ul {
  display: initial;
}

.hero_wrap .hero .oth_hero_inner {
  padding-top: 60px;
  max-width: 700px;
  width: 100%;
  margin: auto;
}

.hero_wrap .hero .oth_hero_inner .direction {
  text-align: center;
  margin: 20px 0px;
  cursor: pointer;
}

.hero_wrap .hero .hero_inner {
  padding: 50px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero_wrap .hero .hero_inner .hero_text {
  max-width: 550px;
  width: 100%;
}

.hero_wrap .hero .hero_inner .hero_text > * {
  margin: 20px;
}

.hero_wrap .hero .hero_inner .hero_text form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px 20px;
  background: #fff;
  border-radius: 40px;
  -webkit-box-shadow: 0px 26px 46px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 26px 46px 0px rgba(0, 0, 0, 0.1);
}

.hero_wrap .hero .hero_inner .hero_text form .submit_btn {
  background: #4D646D;
}

.hero_wrap .hero .hero_inner .hero_text input {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border: none;
}

.hero_wrap .hero .hero_inner .hero_text input:focus {
  outline: none;
}

.hero_wrap .hero .hero_inner .hero_text ::-webkit-input-placeholder {
  color: #b5b4ba;
}

.hero_wrap .hero .hero_inner .hero_text :-ms-input-placeholder {
  color: #b5b4ba;
}

.hero_wrap .hero .hero_inner .hero_text ::-ms-input-placeholder {
  color: #b5b4ba;
}

.hero_wrap .hero .hero_inner .hero_text ::placeholder {
  color: #b5b4ba;
}

.hero_wrap .hero .hero_inner .hero_text .submit_btn {
  text-align: center;
  background: #e57e5f;
  padding: 17px 40px;
  outline: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 40px;
  max-width: 160px;
  width: 100%;
  color: white;
}

.hero_wrap .hero .hero_inner .hero_img {
  text-align: center;
  position: relative;
}

.hero_wrap .hero .hero_inner .hero_img .ellipse {
  background: #FCEAE4;
  border-radius: 50%;
  position: relative;
  width: 350px;
  height: 350px;
}

.hero_wrap .hero .hero_inner .hero_img .ellipse img {
  width: 400px;
  position: relative;
  top: 30px;
  left: -20px;
}

section {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 50px 75px;
}

section .section_head * {
  text-align: center;
  padding: 50px;
}

section .section_head h2 {
  font-size: 2rem;
}

.reverse_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.neg_margin {
  margin-top: -140px;
}

.projects .project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 40px 10px;
}

.projects .project * {
  width: 100%;
}

.projects .project .project_img {
  max-width: 400px;
}

.projects .project .project_img img {
  width: 100%;
}

.projects .project .project_text {
  background: #FFFFFF;
  -webkit-box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
          box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
  border-radius: 20px;
  padding: 30px 50px;
  position: absolute;
  max-width: 600px;
}

.projects .project .project_text.tr {
  right: 0;
}

.projects .project .project_text.lr {
  left: 0;
}

.projects .project .project_text > * {
  margin: 15px 0px;
}

.projects .project .project_text .info-btns {
  padding: 10px 0px;
}

.projects .project .project_text .info-btns > * {
  margin: 10px 2px;
}

.services .section_inner {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding-top: 20px;
  gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.services .section_inner .service {
  background: #FFFFFF;
  -webkit-box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
          box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
  border-radius: 20px;
  text-align: center;
  max-width: 300px;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.services .section_inner .service > * {
  margin: 10px 0px;
}

.services .section_inner .service h4 {
  line-height: 136%;
  /* or 35px */
  max-width: 200px;
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #0D1942;
}

.services .section_inner .service a {
  color: #e57e5f;
  font-family: 'Outfit', sans-serif;
}

p {
  line-height: 24px;
}

.Partners .section_inner .partner_div {
  background: #FFFFFF;
  -webkit-box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
          box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  max-width: 860px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px auto;
  padding: 40px 100px;
}

.Partners .section_inner .partner_div .partner_img {
  width: 450px;
}

.Partners .section_inner .partner_div .partner_img img {
  max-width: 450px;
  width: 100%;
}

.Partners .section_inner .partner_div .partner_text > * {
  margin: 20px 0px;
}

.Partners .section_inner .partner_div .partner_text p {
  line-height: 26px;
}

.Partners .section_inner .partner_div .partner_text .visit-btn a {
  background: #4D646D;
  color: #fff;
  padding: 10px 25px;
  max-width: 250px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
}

.contact .section_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
  -webkit-box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
          box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
  border-radius: 20px;
  padding: 50px 100px;
}

.contact .section_inner .contact_form .input_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.contact .section_inner .contact_form .input_wrap.sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contact .section_inner .contact_form .input_wrap.sub .submit_btn {
  max-width: 200px;
  width: 100%;
  font-size: 20px;
  background: #e57e5f;
  color: #fff;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.contact .section_inner .contact_form .input_wrap * {
  width: 100%;
  margin: 10px;
}

.contact .section_inner .contact_form .input_wrap input,
.contact .section_inner .contact_form .input_wrap textarea {
  background: #FFFFFF;
  border: 1.3337px solid #F3D1BF;
  border-radius: 8.00219px;
  color: rgba(57, 20, 0, 0.64);
  padding: 20px 10px;
  font-weight: 100;
  font-family: 'Outfit', sans-serif;
}

.map_cover {
  background: url(../img/map.jpg);
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.contact_info {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.contact_info * {
  width: 100%;
}

.contact_info .info_col {
  padding: 30px 20px;
}

.contact_info .info_col * {
  margin: 5px;
}

.contact_info .info_col .post {
  font-family: 'Epilogue', sans-serif;
  color: #e57e5f;
  font-weight: 400;
  font-size: 12px;
  line-height: 43px;
  text-transform: uppercase;
}

.contact_info .info_col.one {
  border: 1.3337px solid #F3D1BF;
  border-radius: 8.00219px 0px 0px 8.00219px;
}

.contact_info .info_col.sec {
  border-top: 1.3337px solid #F3D1BF;
  border-bottom: 1.3337px solid #F3D1BF;
  background: #FFF6F3;
  text-align: center;
}

.contact_info .info_col.tri {
  border: 1.3337px solid #F3D1BF;
  border-radius: 0px 8.00219px 8.00219px 0px;
}

.faq_section {
  max-width: 870px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 8px;
}

.faq_section .section_inner .accordion-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  background: #fff;
  border: 1px solid #F3D1BF;
  -webkit-box-shadow: 0px 19px 47px rgba(139, 72, 52, 0.09);
          box-shadow: 0px 19px 47px rgba(139, 72, 52, 0.09);
  border-radius: 20px;
  padding: 25px 40px;
  margin: 20px 10px;
}

.faq_section .section_inner .accordion-item .item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0.2em;
          column-gap: 0.2em;
}

.faq_section .section_inner .accordion-item .item-header .item-question {
  text-transform: capitalize;
}

.faq_section .section_inner .accordion-item .item-header .item-icon {
  cursor: pointer;
}

.faq_section .section_inner .accordion-item .item-header .item-icon img {
  -webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.1, 1);
  transition: all 0.25s cubic-bezier(0.5, 0, 0.1, 1);
  width: 16px;
}

.faq_section .section_inner .accordion-item .item-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #716f96;
}

.faq_section .section_inner .accordion-item .item-content > * {
  margin: 10px 0px;
}

.faq_section .section_inner .accordion-item .item-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.faq_section .section_inner .accordion-item .item-content .video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.faq_section .section_inner .accordion-item .item-content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq_section .section_inner .active .item-icon img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq_section .section_inner .active .item-question {
  margin-bottom: 10px;
}

footer {
  width: 100%;
  background: #fff6f3;
  border-radius: 50% 50% 0% 0% / 18% 18% 25% 25%;
}

footer .footer_inner {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding: 20px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_inner * {
  width: 100%;
  margin: 20px 2px;
}

footer .footer_inner .footer_left .logo img {
  max-width: 180px;
  width: 100px;
}

footer .footer_inner .footer_left .socials a {
  width: 100%;
}

footer .footer_inner .footer_left .socials a img {
  max-width: 40px;
  width: 100%;
}

footer .footer_inner .footer_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer_inner .footer_right .footer_col ul {
  list-style: none;
}

footer .footer_inner .footer_right .footer_col .mail_link {
  color: #e57e5f;
}

@media (max-width: 768px) {
  section {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    padding: 30px 40px;
  }
  section .section_head * {
    text-align: center;
    padding: 50px;
  }
  section .section_head h2 {
    font-size: 2rem;
  }
  .hero_wrap .hero {
    padding: 30px;
  }
  .hero_wrap .hero .header .nav {
    display: none;
  }
  .hero_wrap .hero .hero_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero_wrap .hero .hero_inner .hero_text {
    max-width: 550px;
    width: 100%;
  }
  .hero_wrap .hero .hero_inner .hero_text > * {
    margin: 20px 0px;
  }
  .projects .project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projects .project .project_img {
    max-width: 90%;
  }
  .projects .project .project_img img {
    width: 100%;
  }
  .projects .project .project_text {
    background: #FFFFFF;
    -webkit-box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
            box-shadow: 0px -5px 0px #E9AC97, 30px 24px 54px rgba(139, 72, 52, 0.13);
    border-radius: 20px;
    padding: 10px 20px;
    position: relative;
    width: 90%;
    margin: 10px 0px;
  }
  .projects .project.reverse_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .services .section_inner {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    padding-top: 50px;
  }
  .services .section_inner .service {
    max-width: 250px;
    min-height: 250px;
  }
  .Partners .section_inner .partner_div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
    gap: 10px;
  }
  .Partners .section_inner .partner_div .partner_img {
    width: 200px;
  }
  .Partners .section_inner .partner_div .partner_img img {
    max-width: 200px;
    width: 100%;
  }
  .contact .section_inner {
    padding: 10px;
  }
  .map_cover {
    background: url(../img/map.jpg);
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
  }
  .contact_info {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  footer .footer_inner {
    padding: 30px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer_inner * {
    width: 100%;
    margin: 10px 0px;
  }
  footer .footer_inner .footer_right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 95%;
  }
  h1 {
    font-size: 2rem;
  }
  section {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    padding: 30px 20px;
  }
  section .section_head * {
    text-align: center;
    padding: 50px;
  }
  section .section_head h2 {
    font-size: 2rem;
  }
  .hero_wrap .hero {
    padding: 30px;
  }
  .hero_wrap .hero .header .nav {
    display: none;
  }
  .hero_wrap .hero .hero_inner .hero_text {
    max-width: 100%;
    width: 100%;
  }
  .hero_wrap .hero .hero_inner .hero_text > * {
    margin: 20px 0px;
  }
  .hero_wrap .hero .hero_inner .hero_text form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero_wrap .hero .hero_inner .hero_text form input {
    padding: 20px;
  }
  .hero_wrap .hero .hero_inner .hero_img .ellipse {
    width: 100%;
    height: 100%;
  }
  .hero_wrap .hero .hero_inner .hero_img .ellipse img {
    width: 100%;
    height: 100%;
  }
  .projects .project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projects .project .project_text {
    padding: 10px 15px;
  }
  .projects .project .project_text .info-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services .section_inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .services .section_inner .service {
    max-width: 250px;
    min-height: 250px;
  }
  .faq_section .section_inner .accordion-item {
    padding: 15px 20px;
  }
  .contact .section_inner .input_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .section_inner .input_wrap.sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .contact .section_inner .input_wrap.sub .submit_btn {
    padding: 12px;
  }
  .Partners .section_inner .partner_div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
    gap: 10px;
  }
  .Partners .section_inner .partner_div .partner_img {
    width: 200px;
  }
  .Partners .section_inner .partner_div .partner_img img {
    max-width: 200px;
    width: 100%;
  }
  .contact .section_inner {
    padding: 10px;
  }
  .map_cover {
    background: url(../img/map.jpg);
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
  }
  .contact_info {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
  footer .footer_inner {
    padding: 30px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer_inner * {
    width: 100%;
    margin: 10px 0px;
  }
  footer .footer_inner .footer_right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#brand a {
  color: #09c372;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 25px;
  height: 3px;
  background-color: #203f4c;
  margin: 6px 0;
  right: 25px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 9999;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  padding: 10px;
  padding-top: 60px;
  z-index: 999;
  border-left: 40px solid #FFF6F3;
}

.mobile-menu {
  display: none;
  min-height: 100vh;
  background: #fff;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  list-style: none;
}

.mobile-menu .link-div {
  border-bottom: 1px solid #E7E8EC;
  margin: 5px 20px;
  padding-bottom: 10px;
}

.mobile-menu .link-div h3 {
  color: #e57e5f;
  text-transform: uppercase;
  padding: 20px 10px;
}

.mobile-menu .link-div .sub_menu {
  margin-left: 50px;
  list-style: none;
}

.mobile-menu .link_btn {
  padding: 40px;
  padding-bottom: 20px;
  text-align: center;
}

.mobile-menu .link_btn a {
  width: 100%;
}

.mobile-menu li {
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  header nav {
    display: none;
  }
  #hamburger-icon {
    display: block;
  }
}

@media only screen and (max-width: 400px) {
  .hero_wrap .hero .hero_inner .hero_text form .submit_btn {
    max-width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */