body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #404143;
}

.mainWrapper {
  font-size: 1rem;
  overflow: hidden;
}

html {
  font-size: 14px;
}

.wrapper {
  width: 1200px;
  margin: auto;
}

@media (max-width: 1200px) {
  .wrapper {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

a {
  text-decoration: none;
  color: initial;
}

a:hover, a:active, a:visited, a:link {
  text-decoration: none;
  color: initial;
}

.dropdown {
  width: 250px;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
  background-color: #f7f7f7;
  text-align: left;
  z-index: 20;
  padding: 0;
  font-size: 14px;
  border-radius: 4px;
}

.dropdown li {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem;
}

.dropdown li a {
  color: #fff !important;
}

.dropdown li:hover {
  cursor: pointer;
  border-radius: 4px;
}

.dropdown li:hover a {
  color: #fff !important;
}

.dropdown:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

.dropdownParent {
  color: #000;
  position: relative;
}

.dropdownParent:hover {
  color: #f9ba21;
}

.dropdownParent:hover .dropdown {
  visibility: visible;
  opacity: 1;
  display: block;
}

.subpageSection {
  padding-top: 140px;
  padding-bottom: 1rem;
  background-color: #fafdff;
  color: #000;
  min-height: 400px;
}

@media (max-width: 1050px) {
  .subpageSection {
    padding-top: 120px;
  }
}

.subpageSection a {
  color: #000;
}

.subpageSection .subpageHeader {
  margin-bottom: 1.5rem;
}

@media (max-width: 1050px) {
  .subpageSection .subpageHeader {
    text-align: center;
  }
}

.subpageSection .subpageHeader h1 {
  font-size: 2rem;
  font-weight: bold;
}

.subpageSection .subpageHeader .subpageDate {
  font-size: 1rem;
}

.subpageSection .subpageContent {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: justify;
}

.subpageSection .subpageImage {
  float: left;
  max-width: 50%;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 1050px) {
  .subpageSection .subpageImage {
    width: 70%;
    max-width: initial;
    float: none;
    padding-right: 0;
    display: block;
    margin: auto;
    text-align: center;
  }
}

.subpageSection .subpageImage img {
  max-width: 100%;
}

.subpageSection .galleryContent {
  margin-top: 2rem;
  text-align: justify;
}

.subpageSection .galleryContent .galleryHeader {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.subpageSection .galleryContent .photosContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subpageSection .galleryContent .photosContainer .photo {
  width: 23%;
  margin-bottom: 1rem;
  margin-right: 1%;
  margin-left: 1%;
  height: 180px;
  overflow-y: hidden;
  border: 1px solid #635c5c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.subpageSection .galleryContent .photosContainer .photo:hover {
  opacity: 0.9;
  cursor: pointer;
}

.subpageSection .galleryContent .photosContainer .photo img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 180px;
}

@media (max-width: 800px) {
  .subpageSection .galleryContent .photosContainer .photo {
    width: 48%;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .subpageSection .galleryContent .photosContainer .photo {
    width: 100%;
    height: 400px;
  }
}

.subpageSection .projectsContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0;
}

.subpageSection .projectsContainer .article {
  margin-bottom: 1rem;
}

.contactContent .alertError {
  text-align: center;
  background-color: #d42323;
  color: #fff;
  position: fixed;
  top: 120px;
  z-index: 100;
  padding: 2rem;
  border-radius: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contactContent .alertError:hover {
  cursor: pointer;
  background-color: #c72020;
}

.contactContent .alertError p {
  margin-bottom: 0;
}

.contactContent .alertSuccess {
  text-align: center;
  background-color: #38ac21;
  color: #fff;
  position: fixed;
  top: 120px;
  z-index: 100;
  padding: 2rem;
  border-radius: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contactContent .alertSuccess:hover {
  cursor: pointer;
  background-color: #2f941b;
}

.contactContent .alertSuccess p {
  margin-bottom: 0;
}

.contactContent .contactFormSmallBox {
  width: 30%;
  display: inline-block;
  vertical-align: top;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 800px) {
  .contactContent .contactFormSmallBox {
    width: 100%;
    margin-bottom: 0;
  }
}

.contactContent .contactFormSmallBox input {
  padding: 0.5rem;
  width: 90%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 1rem;
}

@media (max-width: 800px) {
  .contactContent .contactFormSmallBox input {
    width: 100%;
  }
}

.contactContent .captcha {
  text-align: right;
  float: right;
}

@media (max-width: 800px) {
  .contactContent .captcha {
    float: none;
  }
}

.contactContent .contactFormBigBox {
  width: 70%;
  display: inline-block;
  vertical-align: top;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 800px) {
  .contactContent .contactFormBigBox {
    width: 100%;
    margin-top: 0;
  }
}

.contactContent .contactFormBigBox textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contactContent .contactFormBigBox .btnContainer {
  text-align: right;
}

@media (max-width: 800px) {
  .contactContent .contactFormBigBox .btnContainer {
    text-align: center;
  }
}

.contactContent .contactFormBigBox .btnContainer .btn {
  padding: 1rem 4rem;
  color: #fff;
  background-color: #f9ba21;
  text-transform: uppercase;
  border: none;
  margin-top: 1rem;
}

.contactContent .contactFormBigBox .btnContainer .btn:hover {
  background-color: #ebad1e;
  color: #fff;
  cursor: pointer;
}

.contactContent .contactFormLabel {
  font-size: 1.25rem;
  color: #000;
}

.contactContent input {
  color: #000;
}

.contactContent textarea {
  color: #000;
  resize: none;
}

.contactContent .rodo {
  font-size: 0.8rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.fbContainer {
  position: fixed;
  top: 34%;
  left: -250px;
  z-index: 50;
  width: 250px;
  -webkit-transition: left 0.25s ease-in-out;
  transition: left 0.25s ease-in-out;
  background-color: #fff;
  min-height: 200px;
}

.fbContainer .fb-page {
  width: 100% !important;
}

.fbContainer .fbLogoContainer {
  position: relative;
}

.fbContainer .fbLogoContainer .fbLogo {
  position: absolute;
  right: -36px;
  width: 36px;
  height: 36px;
}

.fbContainer .fbLogoContainer .fbLogo:hover {
  cursor: pointer;
}

.fbContainer .fbLogoContainer .fbLogo img {
  width: 100%;
}

.modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  display: none;
  text-align: center;
}

.modal .modalClose {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 1010;
}

.modal .modalClose:hover {
  cursor: pointer;
}

.modal .modalPrev {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 1010;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.modal .modalPrev:hover {
  cursor: pointer;
}

.modal .modalNext {
  margin: 0;
  position: absolute;
  top: 50%;
  right: 2rem;
  z-index: 1010;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.modal .modalNext:hover {
  cursor: pointer;
}

.modal .modalContainer {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal .modalContainer img {
  max-width: 90vw;
  max-height: 90vh;
  display: none;
}

.paginationLinks {
  text-align: center;
}

.paginationLinks .pagination > .active > span {
  background-color: #292b8a;
  border-color: #292b8a;
}

.paginationLinks .pagination > li > a {
  color: #292b8a;
}

.paginationContainer {
  text-align: center;
  margin-top: 1rem;
  width: 100%;
  display: block;
}

.paginationContainer .paginationElement {
  display: inline-block;
  width: 36px;
  height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 6px;
  margin: 0 4px;
  margin-bottom: 4px;
  background-color: #4a4ce4;
  border-radius: 2px;
  color: #fff;
}

.paginationContainer .paginationElement:hover {
  background-color: #2f31a1;
  cursor: pointer;
}

.paginationContainer .paginationMore {
  display: inline-block;
}

.paginationContainer .paginationActive {
  background-color: #292b8a;
}

.confirmBox {
  padding: 1rem;
  background-color: #d8791b;
  color: #fff;
  position: fixed;
  left: 0;
  bottom: -100%;
  right: 0;
  z-index: 3;
  opacity: 0;
  -webkit-transition: bottom 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition: bottom 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.confirmBox .confirmText {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  display: inline-block;
  width: 85%;
  padding-top: 0.5rem;
}

@media (max-width: 1050px) {
  .confirmBox .confirmText {
    padding-top: 0;
    width: 100%;
  }
}

.confirmBox .confirmBtn {
  margin-left: 5%;
  width: 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  display: inline-block;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
}

@media (max-width: 1050px) {
  .confirmBox .confirmBtn {
    width: 160px;
    float: right;
    display: block;
    margin-left: 0;
    margin-top: 12px;
  }
}

.confirmBox .confirmBtn:hover {
  background-color: #bebebe;
  cursor: pointer;
}

.headerSection {
  background-color: #fff;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.315);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.315);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.headerSection .pageLogo {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
}

@media (max-width: 1200px) {
  .headerSection .pageLogo {
    padding-bottom: 25px;
  }
}

.headerSection .pageLogo img {
  max-width: 100%;
}

.headerSection .navigation {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: right;
  float: right;
}

.headerSection .navigation .navLink {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px 20px 30px 20px;
  border-bottom: 5px solid #fff;
}

@media (max-width: 1200px) {
  .headerSection .navigation .navLink {
    display: none;
  }
}

.headerSection .navigation .navLink a {
  color: #404143;
}

.headerSection .navigation .navLink a:hover {
  color: #f9ba21;
}

.headerSection .navigation .navActive {
  border-color: #f9ba21;
}

.headerSection .navigation .navActive a {
  color: #f9ba21 !important;
}

.headerSection .navigation .languages {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.headerSection .navigation .languages .flag {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
  margin-left: 4px;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid #fff;
}

.headerSection .navigation .languages .flag:hover {
  border-color: #f8c449;
}

.headerSection .navigation .languages .active {
  border: 2px solid #f9ba21;
}

.sliderSection {
  margin-top: 90px;
}

@media (max-width: 1200px) {
  .sliderSection {
    margin-top: 80px;
  }
}

.sliderSection .carousel .carousel-inner {
  height: 700px;
}

@media (max-width: 1050px) {
  .sliderSection .carousel .carousel-inner {
    height: 600px;
  }
}

@media (max-width: 600px) {
  .sliderSection .carousel .carousel-inner {
    height: 500px;
  }
}

.sliderSection .carousel .carousel-inner .item {
  height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1050px) {
  .sliderSection .carousel .carousel-inner .item {
    height: 600px;
  }
}

@media (max-width: 600px) {
  .sliderSection .carousel .carousel-inner .item {
    height: 500px;
  }
}

.sliderSection .carousel .carousel-inner .sliderContent {
  padding-top: 130px;
}

@media (max-width: 600px) {
  .sliderSection .carousel .carousel-inner .sliderContent {
    padding-top: 60px;
  }
}

.sliderSection .carousel .carousel-inner .sliderContent .sliderHeader {
  color: #fff;
  font-size: 5rem;
  font-weight: bolder;
}

@media (max-width: 1200px) {
  .sliderSection .carousel .carousel-inner .sliderContent .sliderHeader {
    font-size: 3rem;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .sliderSection .carousel .carousel-inner .sliderContent .sliderHeader {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .sliderSection .carousel .carousel-inner .sliderContent .sliderHeader {
    font-size: 1.5rem;
  }
}

.sliderSection .carousel .carousel-inner .sliderContent .sliderSubheader {
  color: #fff;
  font-size: 1.9rem;
  margin-top: 1rem;
}

@media (max-width: 1200px) {
  .sliderSection .carousel .carousel-inner .sliderContent .sliderSubheader {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .sliderSection .carousel .carousel-inner .sliderContent .sliderSubheader {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .sliderSection .carousel .carousel-inner .sliderContent .sliderSubheader {
    font-size: 1.25rem;
  }
}

.sliderSection .carousel .carousel-inner .sliderContent .seeMoreBtn {
  max-width: 100%;
}

@media (max-width: 1200px) {
  .sliderSection .carousel .carousel-inner .sliderContent .seeMoreBtn {
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 3rem;
  }
}

.seeMoreBtn {
  margin-top: 50px;
  padding: 20px 40px;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  background-color: #f9ba21;
  -webkit-box-shadow: 0 0 15px 5px #f8be3581;
          box-shadow: 0 0 15px 5px #f8be3581;
  /* inner white */
}

@media (max-width: 1050px) {
  .seeMoreBtn {
    margin-top: 20px;
  }
}

.homeSection {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

@media (max-width: 1200px) {
  .homeSection {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

.homeSection .halfBox {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}

@media (max-width: 1200px) {
  .homeSection .halfBox {
    width: 100%;
  }
}

.homeSection .homeBackground {
  position: absolute;
  left: -12%;
  top: -20%;
  z-index: -1;
}

.homeSection .homeBackground img {
  max-width: 700px;
}

@media (max-width: 1200px) {
  .homeSection .homeBackground {
    display: none;
  }
}

.homeSection .homeTitle {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: initial;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  padding-bottom: 2rem;
}

@media (max-width: 1200px) {
  .homeSection .homeTitle {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
    display: block;
    text-align: center;
  }
}

.homeSection .homeTitle h1 {
  font-weight: bold;
  font-size: 5rem;
}

@media (max-width: 1200px) {
  .homeSection .homeTitle h1 {
    font-size: 2.5rem;
  }
}

.homeSection .homeImage {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 100px;
  padding-right: 60px;
}

@media (max-width: 1200px) {
  .homeSection .homeImage {
    display: none;
  }
}

.homeSection .homeImage img {
  max-width: 320px;
}

.homeSection .homeContent {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: justify;
  color: #9f9f9f;
}

@media (max-width: 1200px) {
  .homeSection .homeContent {
    display: block;
  }
}

@media (max-width: 1200px) {
  .homeSection .homeContent .seeMoreBtn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 300px;
    max-width: 100%;
    margin-top: 3rem;
  }
}

.bannerSection {
  padding-bottom: 100px;
}

.bannerSection .banners {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1050px;
}

@media (max-width: 1200px) {
  .bannerSection .banners {
    width: 100%;
  }
}

.bannerSection .banners .bannersFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bannerSection .banners .bannersFlex .bannerContainer {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 49%;
  height: 350px;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 100% 100%;
  transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}

.bannerSection .banners .bannersFlex .bannerContainer:hover {
  background-size: 150% 150%;
}

@media (max-width: 800px) {
  .bannerSection .banners .bannersFlex .bannerContainer {
    width: 100%;
  }
}

.bannerSection .banners .bannersFlex .bannerContainer a {
  color: white;
}

.bannerSection .banners .bannersFlex .bannerContainer .bannerOverlay {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.bannerSection .banners .bannersFlex .bannerContainer .bannerOverlay img {
  width: 100%;
}

.bannerSection .banners .bannersFlex .bannerContainer .bannerTitle {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60%;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 800px) {
  .bannerSection .banners .bannersFlex .bannerContainer .bannerTitle {
    display: block;
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 2.5rem;
  }
}

.bannerSection .banners .bannersFlex .bannerContainer .bannerLink {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40%;
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

@media (max-width: 800px) {
  .bannerSection .banners .bannersFlex .bannerContainer .bannerLink {
    display: block;
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
  }
}

.bannerSection .banners .bannersFlex .bannerContainer .bannerLink a {
  color: #fff;
}

.bannerSection .banners .bannersFlex .bannerContainer .bannerLink a:hover {
  color: #f9ba21;
  text-decoration: underline;
}

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

.bannerSection .bannerSectionTitle {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 150px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: initial;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  padding-bottom: 20%;
  font-size: 5rem;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .bannerSection .bannerSectionTitle {
    display: none;
  }
}

.bannerSection .bannerSectionTitleMobile {
  font-weight: bold;
  display: none;
  text-align: center;
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .bannerSection .bannerSectionTitleMobile {
    display: block;
  }
}

.footerSection {
  background-color: #f2f2f2;
  padding-top: 45px;
  padding-bottom: 45px;
}

.footerSection .footerLogo {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}

@media (max-width: 1200px) {
  .footerSection .footerLogo {
    width: 100%;
    text-align: center;
  }
}

.footerSection .footerLogo img {
  max-width: 90%;
}

.footerSection .footerLogo .footerLogoText {
  color: #9f9f9f;
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.25rem;
  padding-top: 2px;
  margin-top: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid #f9ba21;
}

@media (max-width: 1200px) {
  .footerSection .footerLogo .footerLogoText {
    width: 100%;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

.footerSection .contactContainer {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  text-align: right;
}

@media (max-width: 1200px) {
  .footerSection .contactContainer {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.footerSection .contactContainer .contact {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 100px;
  text-align: left;
}

@media (max-width: 1200px) {
  .footerSection .contactContainer .contact {
    width: 100%;
    display: block;
    text-align: center;
    margin-left: 0;
  }
}

.footerSection .contactContainer .contact .contactHeader {
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .footerSection .contactContainer .contact .contactHeader {
    margin-top: 1rem;
    margin-bottom: 12px;
  }
}

.footerSection .contactContainer .contact .contactInfo .contactImage {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1200px) {
  .footerSection .contactContainer .contact .contactInfo .contactImage {
    display: none;
  }
}

.footerSection .contactContainer .contact .contactInfo .contactImage img {
  margin-right: 8px;
}

.footerSection .contactContainer .contact .contactInfo .contactText {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #9f9f9f;
  margin-bottom: 1rem;
}

.hamburgerIcon {
  width: 30px;
  height: 30px;
  display: none;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 29px;
  margin-left: 4px;
}

@media (max-width: 1200px) {
  .hamburgerIcon {
    display: inline-block;
  }
}

.hamburgerIcon img {
  width: 100%;
}

.mobileMenu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 110;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 1rem;
  overflow-y: auto;
  right: -100%;
  -webkit-transition: right 0.25s ease-in-out;
  transition: right 0.25s ease-in-out;
  display: none;
  text-align: right;
}

@media (max-width: 1200px) {
  .mobileMenu {
    display: block;
  }
}

.mobileMenu .closeContainer {
  background-color: #f9ba21;
  padding: 1rem;
  text-align: right;
}

.mobileMenu .closeContainer .closeMenuIcon {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.mobileMenu .closeContainer .closeMenuIcon img {
  width: 100%;
}

.mobileMenu .navigation {
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
}

.mobileMenu .navigation .dropdownParent {
  position: static;
  color: #000;
}

.mobileMenu .navigation .dropdownChild {
  margin-top: 1rem;
  margin-right: 1.5rem;
  list-style-type: none;
}

.mobileMenu .navigation .navLink {
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 0;
}

.mobileMenu .navigation .navLink a {
  color: black;
}
/*# sourceMappingURL=style.css.map */