/* imports */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;500;600;700&family=Bebas+Neue&display=swap");
/* normalize */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

html,
body {
  font-size: 16px;
}

@media (min-width: 1024px) {
  html,
  body {
    font-size: 18px;
  }
}

body {
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background: #c5c5c5;
}

body,
input,
button {
  font-family: "Asap", sans-serif;
  font-size: 400;
}

button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* icons */
.icon {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #f5cabf;
}

.icon.ic-caret-down {
  -webkit-mask-image: url(../images/theme/ic-caret-down.svg);
          mask-image: url(../images/theme/ic-caret-down.svg);
  background-color: #76232f;
}

.icon.ic-download {
  -webkit-mask-image: url(../images/theme/ic-download.svg);
          mask-image: url(../images/theme/ic-download.svg);
}

.icon.ic-search {
  -webkit-mask-image: url(../images/theme/ic-search.svg);
          mask-image: url(../images/theme/ic-search.svg);
  background-color: #76232f;
}

.icon.ic-search-blue {
  -webkit-mask-image: url(../images/theme/search.svg);
          mask-image: url(../images/theme/search.svg);
}

.icon.ic-menu {
  -webkit-mask-image: url(../images/theme/ic-menu.svg);
          mask-image: url(../images/theme/ic-menu.svg);
  background-color: #76232f;
}

.icon.ic-whatsapp {
  -webkit-mask-image: url(../images/theme/ic-whatsapp.svg);
          mask-image: url(../images/theme/ic-whatsapp.svg);
  background-color: #fff;
}

.icon.ic-whatsapp {
  -webkit-mask-image: url(../images/theme/ic-whatsapp.svg);
          mask-image: url(../images/theme/ic-whatsapp.svg);
}

.icon.ic-next {
  -webkit-mask-image: url(../images/theme/ic-next.svg);
          mask-image: url(../images/theme/ic-next.svg);
}

.icon.ic-prev {
  -webkit-mask-image: url(../images/theme/ic-prev.svg);
          mask-image: url(../images/theme/ic-prev.svg);
}

/* header */
#header {
  position: relative;
  z-index: 999;
}

#header #hdr-default {
  position: relative;
  height: 50px;
  background-color: #f5cabf;
}

#header #hdr-default #hdr-logo a img {
  max-height: 30px;
}

#header #hdr-default #hdr-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}

#header #hdr-default #hdr-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  text-decoration: none;
}

#header #hdr-default #hdr-nav .nav-item span {
  font-family: "Bebas Neue", cursive;
  font-size: 24px;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  text-transform: uppercase;
  color: #76232f;
}

#header #hdr-default #hdr-nav .nav-item.bars .icon {
  position: relative;
  top: -2px;
  width: 32px;
  height: 32px;
  margin-left: 10px;
}

#header #hdr-default #hdr-nav .nav-item.drop .icon {
  position: relative;
  top: -2px;
  width: 12px;
  height: 12px;
  margin-left: 5px;
}

#header #hdr-default #hdr-nav .nav-item.search .icon {
  width: 30px;
  height: 30px;
}

#header #hdr-default #hdr-nav .nav-item.whatsapp {
  padding: 10px 20px;
  border-radius: 40px;
  background-color: #00ec98;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#header #hdr-default #hdr-nav .nav-item.whatsapp .icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

#header #hdr-default #hdr-nav .nav-item.whatsapp span {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

#header #hdr-default #hdr-nav .nav-item:first-child {
  margin-left: 0;
}

#header #hdr-default #hdr-nav [uk-dropdown] {
  padding: 10px 20px 20px;
  border-radius: 4px;
}

#header #hdr-default #hdr-nav .nav-subitem {
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  color: #444;
}

#header #hdr-default #hdr-nav .nav-subitem:hover {
  color: #76232f;
}

#header #hdr-home {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 110px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 202, 191, 0.9)), to(rgba(118, 35, 47, 0)));
  background: linear-gradient(rgba(245, 202, 191, 0.9) 0%, rgba(118, 35, 47, 0) 100%);
}

#header #hdr-home #hdr-logo a img {
  max-height: 30px;
}

#header #hdr-home #hdr-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
}

#header #hdr-home #hdr-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  text-decoration: none;
}

#header #hdr-home #hdr-nav .nav-item span {
  font-family: "Bebas Neue", cursive;
  font-size: 24px;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  text-transform: uppercase;
  color: #76232f;
}

#header #hdr-home #hdr-nav .nav-item.bars .icon {
  position: relative;
  top: -2px;
  width: 32px;
  height: 32px;
  margin-left: 10px;
}

#header #hdr-home #hdr-nav .nav-item.drop .icon {
  position: relative;
  top: -2px;
  width: 12px;
  height: 12px;
  margin-left: 5px;
}

#header #hdr-home #hdr-nav .nav-item.search .icon {
  width: 30px;
  height: 30px;
}

#header #hdr-home #hdr-nav .nav-item.whatsapp {
  padding: 10px 20px;
  border-radius: 40px;
  background-color: #00ec98;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#header #hdr-home #hdr-nav .nav-item.whatsapp .icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

#header #hdr-home #hdr-nav .nav-item.whatsapp span {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

#header #hdr-home #hdr-nav .nav-item:first-child {
  margin-left: 0;
}

#header #hdr-home #hdr-nav [uk-dropdown] {
  padding: 10px 20px 20px;
  border-radius: 4px;
}

#header #hdr-home #hdr-nav .nav-subitem {
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  text-transform: uppercase;
  color: #444;
}

#header #hdr-home #hdr-nav .nav-subitem:hover {
  color: #76232f;
}

@media (min-width: 768px) {
  #header #hdr-default {
    height: 100px;
  }
  #header #hdr-default #hdr-logo a img {
    max-height: 50px;
  }
  #header #hdr-default #hdr-nav {
    height: 100px;
  }
  #header #hdr-home {
    height: 180px;
  }
  #header #hdr-home #hdr-logo a img {
    max-height: 80px;
  }
  #header #hdr-home #hdr-nav {
    height: 180px;
  }
}

/* footer */
#footer {
  position: relative;
  z-index: 0;
  padding: 40px 0;
  background: #f5cabf;
}

#footer .uk-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .uk-container #ftr-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}

#footer .uk-container #ftr-info address {
  margin: 0;
  margin-top: 20px;
  text-align: center;
  color: #76232f;
}

#footer .uk-container #ftr-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  margin-top: 40px;
}

#footer .uk-container #ftr-copyright a {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 20px;
}

#footer .uk-container #ftr-copyright p {
  font-size: 12px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
  padding: 0;
  color: #76232f;
}

@media (min-width: 1024px) {
  #footer .uk-container {
    -ms-flex-line-pack: justify;
        align-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #footer .uk-container #ftr-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #footer .uk-container #ftr-info address {
    margin-left: 30px;
    text-align: left;
  }
  #footer .uk-container #ftr-copyright {
    margin-top: 0;
  }
  #footer .uk-container #ftr-copyright a {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
  #footer .uk-container #ftr-copyright p {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
}

/* page */
#page {
  position: relative;
}

#page .pag-title .label {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #page .pag-title .label {
    font-size: 18px;
  }
}

#page .pag-title .title {
  font-family: "Bebas Neue", cursive;
  font-size: 42px;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: #76232f;
}

@media (min-width: 768px) {
  #page .pag-title .title {
    font-size: 62px;
  }
}

#page .pag-title .content {
  margin: 0;
  margin-top: 10px;
  padding: 0;
}

#page .pag-brochure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}

@media (min-width: 1024px) {
  #page .pag-brochure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

#page .pag-brochure a {
  position: relative;
  z-index: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 40px;
  background-color: #444;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#page .pag-brochure a .icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

#page .pag-brochure a span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 1024px) {
  #page .pag-brochure a {
    border-radius: 40px 0 0 40px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#page .pag-brochure img {
  position: relative;
  z-index: 2;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
}

@media (min-width: 1024px) {
  #page .pag-brochure img {
    margin-left: -14px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* display */
#display .dsp-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 10px;
  border: 1px solid #f5cabf;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#display .dsp-card .dsp-card-title {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  margin-top: 10px;
  color: #444;
}

#display .dsp-card .dsp-card-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 10px;
  padding: 8px 16px;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-radius: 40px;
  background-color: #f5cabf;
}

#display .dsp-card .dsp-card-more span {
  font-family: "Asap", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1rem;
  text-transform: uppercase;
  color: #fff;
}

#display .dsp-card .dsp-card-more:hover {
  background-color: #76232f;
}

#display .dsp-more {
  padding: 14px 40px;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  border-radius: 40px;
  background-color: #76232f;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

#display .dsp-more span {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

#display .dsp-more:hover {
  background-color: #76232f;
}

.dsp-modal .dsp-modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #76232f;
}

.dsp-modal .dsp-modal-content span {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}

.dsp-modal .dsp-modal-content span.ref {
  padding-top: 10px;
  padding-bottom: 20px;
}

.dsp-modal .dsp-modal-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.dsp-modal .dsp-modal-contact a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 40px;
  background-color: #00ec98;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.dsp-modal .dsp-modal-contact a .icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.dsp-modal .dsp-modal-contact a span {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  text-transform: uppercase;
  color: #fff;
}

/* slider */
#slider {
  position: relative;
  z-index: 0;
  width: 100%;
}

#slider .sld-item {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  height: 400px;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  -ms-grid-rows: 35% minmax(0, 1fr) 100px;
      grid-template-rows: 35% minmax(0, 1fr) 100px;
}

@media (min-width: 768px) {
  #slider .sld-item {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  #slider .sld-item {
    height: calc(100vh - 50px);
  }
}

#slider .sld-item .sld-item-bg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(100vh - 50px);
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -o-object-fit: cover;
     object-fit: cover;
}

#slider .sld-item .sld-item-text {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  height: 46px;
  padding-left: 20px;
  padding-right: 30px;
  border-radius: 0 8px 8px 0;
  background-color: #f5cabf;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  justify-self: flex-start;
}

#slider .sld-item .sld-item-text h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 31px;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  color: #fff;
}

@media (min-width: 1024px) {
  #slider .sld-item .sld-item-text {
    height: 90px;
    padding-left: 40px;
  }
  #slider .sld-item .sld-item-text::before {
    right: -28px;
    width: 66.5px;
    height: 66.5px;
  }
  #slider .sld-item .sld-item-text h2 {
    font-size: 52px;
  }
}

@media (min-width: 1440px) {
  #slider .sld-item .sld-item-text {
    padding-left: calc(50% - 600px);
  }
}

#slider .sld-item .sld-item-img {
  position: relative;
  z-index: 4;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-columns: 1fr 1280px 1fr;
      grid-template-columns: 1fr 1280px 1fr;
}

#slider .sld-item .sld-item-img img {
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  max-height: 100%;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  justify-self: flex-end;
}

#slider .sld-nav {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10%;
  left: 0;
  width: 100%;
}

#slider .sld-nav li a {
  width: 22px;
  height: 22px;
  border: 4px solid transparent;
  background-color: #fff;
}

#slider .sld-nav li.uk-active a {
  width: 30px;
  height: 30px;
  border-color: #76232f;
}

@media (min-width: 768px) {
  #slider .sld-nav {
    bottom: 25%;
  }
}

/* about */
#about {
  position: relative;
  z-index: 999;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

#about #abt-body {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  background-color: #fff;
  grid-column: 2/-1;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
}

#about #abt-body .abt-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 40px;
  background-color: #00ec98;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#about #abt-body .abt-contact .icon {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

#about #abt-body .abt-contact span {
  font-family: "Asap", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  text-transform: uppercase;
  color: #fff;
}

#about #abt-body > div:nth-child(1) {
  padding: 15px;
  grid-column: 1/-1;
}

#about #abt-body > div:nth-child(2) {
  position: relative;
  height: 100%;
  grid-column: 2/-1;
}

#about #abt-body > div:nth-child(2) img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1024px) {
  #about {
    margin-top: -100px;
    -ms-grid-columns: 1fr 960px 1fr;
        grid-template-columns: 1fr 960px 1fr;
  }
  #about #abt-body {
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
  }
  #about #abt-body .abt-contact {
    margin-top: 15px;
  }
  #about #abt-body > div:nth-child(1) {
    padding: 50px 15px 50px 50px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  #about #abt-body > div:nth-child(2) {
    display: block;
  }
}

@media (min-width: 1440px) {
  #about {
    -ms-grid-columns: 1fr 1200px 1fr;
        grid-template-columns: 1fr 1200px 1fr;
  }
  #about #abt-body {
    -ms-grid-columns: 45% 55%;
        grid-template-columns: 45% 55%;
  }
  #about #abt-body > div:nth-child(1) {
    padding: 70px 25px 70px 70px;
  }
}

#search .uk-modal-dialog {
  background-color: transparent;
}

#search .uk-close {
  font-size: 30px;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

#search form {
  position: relative;
  background-color: transparent;
}

#search .uk-form-large {
  font-family: "Asap", sans-serif;
  font-size: 24px;
  height: 80px !important;
  padding-right: 10px !important;
  padding-left: 54px !important;
  color: #76232f;
  border: none;
  border-radius: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#search .uk-form-large::-webkit-input-placeholder {
  font-family: "Asap", sans-serif;
  font-size: 24px;
  color: rgba(118, 35, 47, 0.5);
}

#search .uk-form-large:-ms-input-placeholder {
  font-family: "Asap", sans-serif;
  font-size: 24px;
  color: rgba(118, 35, 47, 0.5);
}

#search .uk-form-large::-ms-input-placeholder {
  font-family: "Asap", sans-serif;
  font-size: 24px;
  color: rgba(118, 35, 47, 0.5);
}

#search .uk-form-large::placeholder {
  font-family: "Asap", sans-serif;
  font-size: 24px;
  color: rgba(118, 35, 47, 0.5);
}

#search .uk-form-large::-ms-clear, #search .uk-form-large::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

#search .uk-form-large::-webkit-search-decoration, #search .uk-form-large::-webkit-search-cancel-button, #search .uk-form-large::-webkit-search-results-button, #search .uk-form-large::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

#search .icon.ic-search-blue {
  position: absolute;
  left: 20px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  #search .uk-form-large {
    font-size: 32px;
    font-weight: 600;
    height: 100px !important;
    padding-right: 20px !important;
    padding-left: 70px !important;
  }
  #search .uk-form-large::-webkit-input-placeholder {
    font-size: 32px;
    font-weight: 600;
  }
  #search .uk-form-large:-ms-input-placeholder {
    font-size: 32px;
    font-weight: 600;
  }
  #search .uk-form-large::-ms-input-placeholder {
    font-size: 32px;
    font-weight: 600;
  }
  #search .uk-form-large::placeholder {
    font-size: 32px;
    font-weight: 600;
  }
  #search .icon.ic-search-blue {
    width: 40px;
    height: 40px;
  }
}
