/*
 * Vendor Prefix generator
 */
/*
 * a small mixin for easy use of rem with px as fallback
 * usage: @include x-rem(font-size, 14px)
 * usage: @include x-rem(margin, 0 12px 2 1.2)
 * usage: @include x-rem(padding, 1.5 24px)
 *
 * thanks to Eric Meyer for https://github.com/ericam/susy
 * and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/
 */
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/****************** BUTTONS **************************/
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
.alert[style*=inline] {
  display: block !important;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #0d0d0d;
  font-size: 14px;
}

h1 {
  font-size: 35px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.95px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  color: #ffffff;
}

h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

p {
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 28px !important;
    line-height: 35px !important;
  }
  h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  h3 {
    font-size: 16px !important;
    line-height: 25px !important;
  }
  p {
    font-size: 14px !important;
    line-height: 25px !important;
  }
}
a {
  color: #0d0d0d;
}
a:hover {
  color: #0d0d0d;
}

img {
  max-width: 100%;
}

.social-links {
  list-style: none;
  padding: 0;
}
.social-links li {
  display: inline-block;
}

.btn-style {
  display: inline-block;
  padding: 6px 18px;
  background: transparent;
  position: relative;
  transition: 0.5s;
  border: 1px solid #ef3f37;
  border-radius: 4px;
  color: #0d0d0d;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.22px;
}
.btn-style:hover, .btn-style:focus, .btn-style:active {
  color: #ffffff;
  text-decoration: none;
  background: #ef3f37;
  border: 1px solid #ef3f37;
}
.btn-style.blue {
  border: 1px solid #2366aa;
}
.btn-style.blue:hover, .btn-style.blue:focus, .btn-style.blue:active {
  background: #2366aa;
  border: 1px solid #2366aa;
}

.btn-style.invert {
  background: #0d0d0d;
  border: 1px solid #0d0d0d;
  color: #ffffff;
}
.btn-style.invert:hover, .btn-style.invert:focus, .btn-style.invert:active {
  color: #0d0d0d;
  background: transparent;
  border: 1px solid #0d0d0d;
}

.screen-reader-response, .wpcf7-validation-errors {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #0d0d0d;
  text-shadow: 0 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 47px;
}

.wpcf7-mail-sent-ok {
  text-align: center;
  padding: 20px;
  margin: 20px auto 0;
  font-weight: 600;
  width: 100%;
  display: block;
  max-width: 100%;
  clear: both;
  margin-top: 90px;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

header {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  z-index: 999;
}
header .container .modal-btn {
  position: absolute;
  right: 30px;
  background: #fceeb7;
  padding: 10px 30px;
  border-radius: 0 0 10px 10px;
  top: 0;
}
@media screen and (max-width: 767px) {
  header {
    position: relative;
    margin-bottom: 20px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header {
    padding-top: 20px;
  }
}
header .logo {
  display: inline-block;
  margin: 20px 0 20px;
  float: left;
}
header .logo img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  header .logo {
    margin: 0;
    display: inline;
    width: 100%;
  }
  header .logo img {
    display: block;
    margin: auto;
  }
}
header nav {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: right;
  margin-top: 55px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header nav {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header nav {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  header nav {
    display: none;
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }
}
header nav .nav {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  header nav .nav {
    width: 100%;
  }
}
header nav .nav li {
  display: inline-block;
}
header nav .nav li:hover > .dropdown-menu {
  display: block;
  left: 15px;
  background: #fff;
  border: 0;
  top: 40px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header nav .nav li:hover > .dropdown-menu {
    top: 25px;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav li:hover > .dropdown-menu {
    position: relative;
    width: 100%;
    top: -11px;
    box-shadow: none;
    left: 0;
    text-align: center;
  }
}
header nav .nav li:hover > .dropdown-menu li {
  display: block;
  color: #000000;
}
header nav .nav li:hover > .dropdown-menu li.active {
  background: #fff;
}
header nav .nav li:hover > .dropdown-menu li.active a {
  background: #fff;
}
header nav .nav li:hover > .dropdown-menu li a {
  display: block;
  color: #000000;
  padding: 5px 15px;
}
@media screen and (max-width: 767px) {
  header nav .nav li {
    display: block;
    border-bottom: 1px solid #0d0d0d;
    border-top: 1px solid #0d0d0d;
    margin-bottom: -1px;
  }
}
header nav .nav li a {
  padding: 15px;
  display: block;
  line-height: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2.02px;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  header nav .nav li a {
    padding-top: 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  header nav .nav li a {
    padding: 0 6px;
  }
}
@media screen and (max-width: 767px) {
  header nav .nav li a {
    padding: 15px;
    color: #000;
  }
}
header nav .nav li a:hover, header nav .nav li a:focus, header nav .nav li a:active {
  text-decoration: underline;
  background: transparent;
}
header #mobile-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  header #mobile-menu {
    display: block;
    position: absolute;
    right: 15px;
    color: #0d0d0d;
    font-size: 35px;
    top: 75px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header #mobile-menu {
    top: 45px;
  }
}
@media screen and (max-width: 767px) {
  header #mobile-menu.active i:before {
    content: "\e014";
  }
}

/*.orange-nav {
  header nav .nav li a {
    color: $orange;
  }
}*/
footer .container {
  position: relative;
  padding: 50px 15px 30px;
}
footer .container .social-icons {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
  padding-left: 0;
}
footer .container .social-icons li {
  display: inline-block;
  font-size: 20px;
  margin: 0 10px;
}
footer .container .copy-right {
  color: #030300;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  #home-banner {
    padding-top: 125px;
    background: #bfdef8;
  }
}
@media screen and (max-width: 1199px) and (min-width: 767px) {
  #home-banner {
    padding-top: 125px;
    background: #bfdef8;
  }
}
#home-banner img {
  width: 100%;
}

.gallery {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .gallery {
    margin-top: 20px;
  }
}
.gallery img {
  display: block;
  height: 200px;
  object-fit: cover;
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .gallery img {
    margin-bottom: 15px !important;
  }
}

#about-us {
  text-align: center;
  padding: 0 0 70px;
}
@media screen and (max-width: 767px) {
  #about-us {
    padding: 0;
  }
}
#about-us h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #about-us h2 {
    margin-bottom: 15px;
  }
}
#about-us p:last-of-type {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #about-us p:last-of-type {
    margin-bottom: 15px;
  }
}

#we-offer {
  padding: 400px 0 100px;
  background: url("../img/green-slide-bg.png") no-repeat top center;
  background-size: cover;
  min-height: 924px;
  position: relative;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #we-offer {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  #we-offer {
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 767px) {
  #we-offer .col-md-3 {
    overflow: hidden;
  }
}
#we-offer:after {
  content: "";
  width: 100%;
  height: 15px;
  background: url("../img/green-dot.png");
  position: absolute;
  bottom: -15px;
  left: 0;
  z-index: 12;
}
#we-offer h2 {
  color: #ef3f37;
  font-family: "Insaniburger with Cheese";
  font-size: 40px;
  font-weight: 400;
  line-height: 47.42px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}
#we-offer .wrapper {
  background: url("../img/paper-board.png") no-repeat;
  background-size: 100%;
  min-height: 225px;
  text-align: center;
  padding-top: 73px;
}
#we-offer .wrapper span {
  display: block;
  font-family: "KG Cold Coffee";
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  text-transform: uppercase;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
#we-offer .wrapper span.black {
  color: #171717;
}
#we-offer .wrapper span.red {
  color: #ef3f37;
  font-size: 19px;
}
#we-offer .wrapper span.red.big {
  font-size: 26px;
  font-weight: 400;
  line-height: 33.05px;
  padding-top: 7px;
}
#we-offer .col-md-3:nth-of-type(1) .wrapper, #we-offer .col-md-3:nth-of-type(4) .wrapper, #we-offer .col-md-3:nth-of-type(6) .wrapper {
  -webkit-transform: rotate(12deg);
  -moz-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
  -o-transform: rotate(12deg);
  transform: rotate(12deg);
}
#we-offer .col-md-3:nth-of-type(2) .wrapper, #we-offer .col-md-3:nth-of-type(7) .wrapper, #we-offer .col-md-3:nth-of-type(8) .wrapper {
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
#we-offer .col-md-3:nth-of-type(3) .wrapper, #we-offer .col-md-3:nth-of-type(5) .wrapper {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

#testimonials {
  padding: 100px 0 100px;
  background: url("../img/yellow-circles-bg.png") no-repeat bottom center;
  background-size: cover;
  min-height: 910px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  #testimonials {
    padding: 50px 0 50px;
    min-height: 0;
  }
}
#testimonials:after {
  content: url("../img/abc-blocks.png");
  position: absolute;
  bottom: -77px;
  right: 50px;
  z-index: 12;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #testimonials:after {
    bottom: -133px;
    right: 9px;
  }
}
@media screen and (max-width: 767px) {
  #testimonials:after {
    display: none;
  }
}
#testimonials.page {
  padding: 200px 0 100px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #testimonials.page {
    padding: 250px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  #testimonials.page {
    padding: 50px 0 50px;
  }
}
#testimonials.page:after {
  display: none;
}
#testimonials img {
  margin: 0 auto 50px;
  display: block;
}
#testimonials h2 {
  color: #f1a329;
  font-family: "Insaniburger with Cheese";
  font-size: 40px;
  font-weight: 400;
  line-height: 47.42px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #testimonials h2 {
    margin-bottom: 50px;
  }
}
#testimonials .wrapper {
  color: #0d0d0d;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 400;
  line-height: 21.99px;
  background: #fbfffd;
  border-radius: 10px 10px 10px 0;
  padding: 30px;
  margin-bottom: 56px;
  max-width: 450px;
  position: relative;
  margin-left: 35px;
  float: left;
  margin-right: 80px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #testimonials .wrapper {
    margin-right: 35px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #testimonials .wrapper {
    max-width: 400px;
    margin-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  #testimonials .wrapper {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    border-radius: 10px 10px 10px 10px;
  }
}
#testimonials .wrapper:after {
  content: url("../img/testimonials-left-arrow.png");
  position: absolute;
  bottom: -6px;
  left: -35px;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  #testimonials .wrapper:after {
    display: none;
  }
}

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

#contact-us-form {
  padding: 100px 0 100px;
  background: url("../img/contact-bg.png") no-repeat bottom center;
  background-size: cover;
  min-height: 910px;
  position: relative;
  margin-top: -20px;
  z-index: 4;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #contact-us-form {
    padding: 50px 0 50px;
    min-height: 0;
  }
}
#contact-us-form h2 {
  color: #ef3f37;
  font-family: "Insaniburger with Cheese";
  font-size: 40px;
  font-weight: 400;
  line-height: 47.42px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #contact-us-form h2 {
    margin-bottom: 50px;
  }
}
#contact-us-form .wrapper {
  background: url("../img/form-bg.png") no-repeat top center;
  min-height: 550px;
  max-width: 908px;
  margin: auto;
  position: relative;
  padding: 65px 45px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact-us-form .wrapper {
    padding: 65px 45px 230px;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  #contact-us-form .wrapper {
    padding: 40px 5px 180px;
    background-size: auto 100%;
  }
}
#contact-us-form .wrapper:before {
  content: url("../img/girl.png");
  position: absolute;
  top: 100px;
  left: -188px;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  #contact-us-form .wrapper:before {
    display: none;
  }
}
#contact-us-form .wrapper:after {
  content: url("../img/boy.png");
  position: absolute;
  top: 100px;
  right: -181px;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  #contact-us-form .wrapper:after {
    display: none;
  }
}
#contact-us-form .wrapper .form-control {
  border: 2px solid #ff6d67;
  height: 53px;
  background: transparent;
  box-shadow: 0 0 0;
  color: #000000;
}
#contact-us-form .wrapper .form-control::-webkit-input-placeholder {
  color: #000000;
}
#contact-us-form .wrapper .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
}
#contact-us-form .wrapper .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
}
#contact-us-form .wrapper .form-control:-ms-input-placeholder {
  color: #000000;
}
#contact-us-form .wrapper textarea {
  height: auto !important;
  margin-bottom: 30px;
  min-height: 257px;
  resize: none;
}
#contact-us-form .wrapper .btn-style {
  margin-bottom: 15px;
}

#about-us-page {
  z-index: 12;
  position: relative;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #about-us-page {
    padding-top: 125px;
    background: #daf4d9;
    padding-bottom: 135px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #about-us-page {
    padding-top: 125px;
  }
  #about-us-page:before {
    content: "";
    background: #aacbe9;
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
#about-us-page img {
  width: 100%;
  position: relative;
  z-index: 99;
}
#about-us-page .text {
  max-width: 850px;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 15px;
  text-align: center;
  line-height: 21.99px;
  z-index: 999;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #about-us-page .text {
    padding: 15px;
    bottom: 0;
    padding-bottom: 50px;
    background: #daf4d9;
  }
}
@media screen and (max-width: 767px) {
  #about-us-page .text {
    position: relative;
    background: #daf4d9;
    bottom: 30px;
    padding: 15px;
    margin-bottom: -30px;
  }
}
#about-us-page .text span {
  font-family: "Montserrat Extra";
  color: #ef3f37;
}

#our-philosophy {
  background: url("../img/philosophy-bg.png") no-repeat top center;
  background-size: cover;
  min-height: 860px;
  z-index: 12;
  position: relative;
  padding: 200px 0 100px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #our-philosophy {
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  #our-philosophy {
    min-height: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#our-philosophy .laptop {
  width: 100%;
}
@media screen and (max-width: 991px) {
  #our-philosophy .laptop {
    display: none;
  }
}
#our-philosophy .text {
  max-width: 850px;
  width: 100%;
  position: absolute;
  top: 340px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 15px;
  text-align: center;
  line-height: 21.99px;
  color: #ffffff;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #our-philosophy .text {
    position: relative;
    top: 50px;
  }
  #our-philosophy .text img {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  #our-philosophy .text {
    max-width: 757px;
    top: 284px;
  }
}
@media screen and (max-width: 767px) {
  #our-philosophy .text {
    position: relative;
    top: 0;
  }
}
#our-philosophy .text img {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  #our-philosophy .text img {
    margin-bottom: 40px;
  }
}
#our-philosophy .text span {
  font-family: "Montserrat Extra";
  color: #ef3f37;
}

#curriculum {
  background: url("../img/curruculum.png") no-repeat bottom center;
  background-size: cover;
  z-index: 12;
  position: relative;
  padding: 150px 0 100px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #curriculum {
    padding: 250px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  #curriculum {
    padding: 50px 0 50px;
    background-color: #f3ddbf;
  }
}
#curriculum .text {
  max-width: 850px;
  width: 100%;
  margin: auto;
  font-size: 15px;
  text-align: center;
  line-height: 21.99px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #curriculum .text {
    margin-bottom: 15px;
  }
}
#curriculum .text img {
  margin-bottom: 40px;
}
#curriculum .text span {
  font-family: "Montserrat Extra";
  color: #ef3f37;
}
#curriculum .wrapper {
  background: url("../img/left-paper.png") no-repeat top;
  background-size: auto 100%;
  padding: 70px 60px;
  font-family: "KG Cold Coffee";
  font-size: 12px;
  font-weight: 400;
  line-height: 21.99px;
  min-height: 825px;
}
@media screen and (max-width: 767px) {
  #curriculum .wrapper {
    min-height: 0;
    padding: 0;
    background: transparent;
  }
}
#curriculum .wrapper h3 {
  color: #d93b41;
  font-family: "KG Cold Coffee";
  font-size: 20px;
  font-weight: 400;
  line-height: 26.67px;
  text-transform: uppercase;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  transform: rotate(-4deg);
  margin-bottom: 20px;
  margin-top: 0;
}
#curriculum .wrapper p {
  color: #d93b41;
  margin-bottom: 3px;
}
#curriculum .wrapper ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
#curriculum .wrapper ul li {
  list-style: none;
  position: relative;
}
#curriculum .wrapper ul li:before {
  position: absolute;
  left: -19px;
  top: 7px;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d93b41;
}
#curriculum .col-md-6:last-of-type .wrapper {
  background: url("../img/right-paper.png") no-repeat top;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  #curriculum .col-md-6:last-of-type .wrapper {
    min-height: 0;
    padding: 0;
    background: transparent;
  }
}

#contact {
  background: url("../img/contact-us-bg.png") no-repeat bottom center;
  background-size: cover;
  z-index: 12;
  position: relative;
  padding: 150px 0 100px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact {
    padding: 230px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 50px 0;
  }
}
#contact .text {
  max-width: 850px;
  width: 100%;
  margin: auto;
  font-size: 15px;
  text-align: center;
  line-height: 21.99px;
  margin-bottom: 60px;
}
#contact .text img {
  margin-bottom: 40px;
}
#contact .text span {
  font-family: "Montserrat Extra";
  color: #ef3f37;
}
#contact .contact-info .address, #contact .contact-info .hours, #contact .contact-info .phone {
  padding-left: 85px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact .contact-info .address, #contact .contact-info .hours, #contact .contact-info .phone {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact-info .address, #contact .contact-info .hours, #contact .contact-info .phone {
    margin-bottom: 30px;
  }
}
#contact .contact-info .address:before, #contact .contact-info .hours:before, #contact .contact-info .phone:before {
  content: url("../img/address.png");
  position: absolute;
  left: 0;
  top: 5px;
}
#contact .contact-info .address p span, #contact .contact-info .hours p span, #contact .contact-info .phone p span {
  color: #ef3f37;
  font-weight: 600;
  margin-bottom: 30px;
}
#contact .contact-info .address {
  margin-bottom: 80px;
}
#contact .contact-info .hours:before {
  content: url("../img/time.png");
  top: 0;
}
#contact .contact-info .phone:before {
  content: url("../img/phone.png");
  top: 0;
}
#contact .wrapper {
  background: url("../img/envelop.png") no-repeat top center;
  background-size: 100%;
  max-width: 950px;
  padding: 50px 220px 330px;
  margin: auto;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #contact .wrapper {
    padding: 50px 220px 100px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  #contact .wrapper {
    padding: 0;
    background: none;
    margin-top: 50px;
  }
}
#contact .wrapper .form-control {
  height: 52px;
  border: 2px solid #b7b7b7;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 0 0;
  color: #2366aa;
}
#contact .wrapper .form-control::-webkit-input-placeholder {
  color: #2366aa;
}
#contact .wrapper .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #2366aa;
}
#contact .wrapper .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #2366aa;
}
#contact .wrapper .form-control:-ms-input-placeholder {
  color: #2366aa;
}
#contact .wrapper .form-control:focus {
  border-color: #2366aa;
}
@media screen and (max-width: 767px) {
  #contact .wrapper form {
    padding-left: 50px;
  }
}
#contact .wrapper .wpcf7-textarea {
  height: 180px;
  resize: none;
  margin-bottom: 50px;
}
#contact .wrapper .form-group {
  position: relative;
  color: #2366aa;
}
#contact .wrapper .form-group:before {
  content: "";
  position: absolute;
  left: -50px;
  background: #2366aa;
  height: 52px;
  width: 52px;
  border-radius: 3px 0 0 3px;
}
#contact .wrapper .form-group:after {
  content: url("../img/user-icon.png");
  position: absolute;
  left: -33px;
  top: 13px;
}
#contact .wrapper .form-group:nth-of-type(3):after {
  content: url("../img/email-icon.png");
  left: -37px;
  top: 17px;
}
#contact .wrapper .form-group:nth-of-type(4):after {
  content: url("../img/phone-icon.png");
  left: -35px;
  top: 15px;
}
#contact .wrapper .form-group:nth-of-type(5):after {
  content: url("../img/location-icon.png");
  left: -35px;
  top: 8px;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
#contact .wrapper .form-group:nth-of-type(6):after {
  content: url("../img/message-icon.png");
  left: -34px;
  top: 19px;
}
#contact .wrapper .form-group:nth-last-of-type(2):before, #contact .wrapper .form-group:nth-last-of-type(2):after {
  display: none;
}

#menu-page {
  background: url("../img/menu-page-bg.png") no-repeat bottom center;
  background-size: cover;
  z-index: 12;
  position: relative;
  padding: 150px 0 100px;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #menu-page {
    padding: 250px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  #menu-page {
    padding: 50px 0;
  }
}
#menu-page img {
  display: block;
  margin: auto;
}
#menu-page img.board {
  display: none;
}
#menu-page .container {
  margin-top: 30px;
  /*
  position: absolute;
  top: 390px;
  left: 0;
  right: 0;*/
}
@media screen and (max-width: 767px) {
  #menu-page .container {
    position: relative;
    overflow-x: auto;
  }
}
#menu-page table tr:first-of-type td {
  color: #d93b41;
  font-family: "KG Cold Coffee";
  font-size: 14px;
  font-weight: 400;
  line-height: 23.99px;
  text-transform: uppercase;
}
#menu-page table tr td {
  border: 0;
  text-align: center;
  padding-bottom: 30px;
}
#menu-page table tr td:first-of-type {
  color: #d93b41;
  font-family: "KG Cold Coffee";
  font-size: 14px;
  font-weight: 400;
  line-height: 23.99px;
  text-transform: uppercase;
}
#menu-page table tr td:last-of-type {
  padding-bottom: 0;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}

#myModal .close {
  position: absolute;
  opacity: 1;
  right: -15px;
  background: #fff;
  border: 2px solid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: -15px;
}

.location #testimonials {
  min-height: 0;
}
.location iframe {
  margin-top: -15px;
  width: 100%;
  height: 300px;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: 0;
}

/*# sourceMappingURL=main.css.map */
