.about-section-simple .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-section-simple .description {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 15px;
}
.about-section-simple .title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: 15px;
  color: var(--dark-color);
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: normal;
}
.about-section-simple .title i {
  font-style: normal;
  color: var(--green-color);
}
.about-section-simple .subtitle {
  width: 100%;
  color: var(--green-color);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
}
.about-section-simple h5 {
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
}
.about-section-simple p {
  color: var(--grey-color);
  font-size: 15px;
  line-height: 1.78;
  letter-spacing: normal;
}
.about-section-simple p:empty {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .about-section-simple .title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    font-size: 36px;
  }
  .about-section-simple h5 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section-simple .title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 32px;
  }
  .about-section-simple .description {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 10px;
  }
  .about-section-simple h5 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .about-section-simple h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .about-section-simple .title {
    font-size: 25px;
  }
  .about-section-simple h5 {
    margin-bottom: 5px;
  }
}
.about-section-classic {
  max-width: 1595px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 80px 0;
}
.about-section-classic .content-wrap {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-section-classic .inner {
  max-width: 450px;
}
.about-section-classic .subtitle {
  color: #b9a893;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
}
.about-section-classic .title {
  margin: 35px 0 0;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--dark-color);
  color: var(--dark-color);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.3;
}
.about-section-classic .blockquote {
  margin-top: 45px;
  color: var(--dark-color);
  font-size: 24px;
  font-style: italic;
}
.about-section-classic .description {
  margin-top: 15px;
  color: var(--grey-color);
  font-size: 18px;
  line-height: 1.67;
}
.about-section-classic .button {
  margin-top: 45px;
}
.about-section-classic .images-wrap {
  width: 50%;
  display: -ms-grid;
  display: grid;
  grid-gap: 80px;
  -ms-grid-columns: -webkit-calc(50% - 40px) 80px -webkit-calc(50% - 40px);
  -ms-grid-columns: calc(50% - 40px) 80px calc(50% - 40px);
  grid-template-columns: -webkit-calc(50% - 40px) -webkit-calc(50% - 40px);
  grid-template-columns: calc(50% - 40px) calc(50% - 40px);
}
.about-section-classic .img-wrap {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-section-classic .img-wrap:first-of-type {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  grid-row: 2 / 5;
}
.about-section-classic .img-wrap:nth-of-type(2) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
}
.about-section-classic .img-wrap:nth-of-type(3) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  grid-row: 3 / 6;
}

@media only screen and (max-width: 1600px) {
  .about-section-classic {
    max-width: 1170px;
  }
}
@media only screen and (max-width: 1200px) {
  .about-section-classic {
    max-width: 1050px;
  }
  .about-section-classic .title {
    padding-bottom: 30px;
    font-size: 40px;
  }
  .about-section-classic .blockquote {
    margin-top: 30px;
  }
  .about-section-classic .button {
    margin-top: 30px;
  }
  .about-section-classic .images-wrap {
    grid-gap: 40px;
    -ms-grid-columns: -webkit-calc(50% - 20px) 40px -webkit-calc(50% - 20px);
    -ms-grid-columns: calc(50% - 20px) 40px calc(50% - 20px);
    grid-template-columns: -webkit-calc(50% - 20px) -webkit-calc(50% - 20px);
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  }
}
@media only screen and (max-width: 1024px) {
  .about-section-classic {
    max-width: 100%;
    padding: 40px 30px;
  }
  .about-section-classic .title {
    margin: 25px 0 0;
    font-size: 35px;
  }
  .about-section-classic .blockquote {
    font-size: 22px;
  }
  .about-section-classic .inner {
    max-width: 350px;
  }
  .about-section-classic .images-wrap {
    grid-gap: 20px;
    -ms-grid-columns: -webkit-calc(50% - 10px) 20px -webkit-calc(50% - 10px);
    -ms-grid-columns: calc(50% - 10px) 20px calc(50% - 10px);
    grid-template-columns: -webkit-calc(50% - 10px) -webkit-calc(50% - 10px);
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .about-section-classic .title {
    font-size: 28px;
    padding-bottom: 20px;
  }
  .about-section-classic .blockquote {
    margin-top: 20px;
  }
  .about-section-classic .description {
    font-size: 16px;
  }
  .about-section-classic .blockquote {
    font-size: 20px;
  }
  .about-section-classic .button {
    margin-top: 20px;
  }
  .about-section-classic .inner {
    max-width: 100%;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .about-section-classic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 15px;
  }
  .about-section-classic::before {
    content: none;
  }
  .about-section-classic .content-wrap,
  .about-section-classic .images-wrap {
    width: 100%;
  }
  .about-section-classic .images-wrap {
    display: block;
  }
  .about-section-classic .content-wrap {
    margin-top: 20px;
  }
  .about-section-classic .img-wrap {
    min-height: 250px;
    margin-bottom: 15px;
  }
  .about-section-classic .subtitle {
    letter-spacing: 1px;
  }
  .about-section-classic .title {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .about-section-classic .blockquote {
    font-size: 18px;
  }
}
.about-section-classic-simple {
  max-width: 1595px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  padding-bottom: 100px;
}
.about-section-classic-simple .content-wrap {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-section-classic-simple .inner {
  max-width: 400px;
  padding: 5vw 0;
  margin: 0 auto;
}
.about-section-classic-simple .subtitle {
  color: #b9a893;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
}
.about-section-classic-simple .title {
  margin: 35px 0 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
.about-section-classic-simple .blockquote {
  margin-top: 45px;
  color: var(--dark-color);
  font-size: 24px;
  font-style: italic;
}
.about-section-classic-simple .description {
  margin-top: 15px;
  color: var(--grey-color);
  font-size: 15px;
  line-height: 1.67;
}
.about-section-classic-simple .button {
  margin-top: 30px;
}
.about-section-classic-simple .images-wrap {
  width: 50%;
  display: -ms-grid;
  display: grid;
  grid-gap: 80px;
  -ms-grid-columns: -webkit-calc(50% - 40px) 80px -webkit-calc(50% - 40px);
  -ms-grid-columns: calc(50% - 40px) 80px calc(50% - 40px);
  grid-template-columns: -webkit-calc(50% - 40px) -webkit-calc(50% - 40px);
  grid-template-columns: calc(45% - 40px) calc(55% - 40px);
}
.about-section-classic-simple .img-wrap {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-section-classic-simple .img-wrap:first-of-type {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 8;
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  grid-row: 1 / 6;
  margin-top: -110px;
  margin-left: 75px;
}
.about-section-classic-simple .img-wrap:nth-of-type(2) {
  -ms-grid-column: 2;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 6;
  margin-left: -4vw;
  min-width: 280px;
}
.about-section-classic-simple .img-wrap:nth-of-type(3) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  grid-row: 3 / 6;
}

@media only screen and (max-width: 1600px) {
  .about-section-classic {
    max-width: 1170px;
  }
}
@media only screen and (max-width: 1200px) {
  .about-section-classic {
    max-width: 1050px;
  }
  .about-section-classic .title {
    padding-bottom: 30px;
    font-size: 40px;
  }
  .about-section-classic .blockquote {
    margin-top: 30px;
  }
  .about-section-classic .button {
    margin-top: 30px;
  }
  .about-section-classic .images-wrap {
    grid-gap: 40px;
    -ms-grid-columns: -webkit-calc(50% - 20px) 40px -webkit-calc(50% - 20px);
    -ms-grid-columns: calc(50% - 20px) 40px calc(50% - 20px);
    grid-template-columns: -webkit-calc(50% - 20px) -webkit-calc(50% - 20px);
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  }
}
@media only screen and (max-width: 1024px) {
  .about-section-classic {
    max-width: 100%;
    padding: 40px 30px;
  }
  .about-section-classic .title {
    margin: 25px 0 0;
    font-size: 35px;
  }
  .about-section-classic .blockquote {
    font-size: 22px;
  }
  .about-section-classic .inner {
    max-width: 350px;
  }
  .about-section-classic .images-wrap {
    grid-gap: 20px;
    -ms-grid-columns: -webkit-calc(50% - 10px) 20px -webkit-calc(50% - 10px);
    -ms-grid-columns: calc(50% - 10px) 20px calc(50% - 10px);
    grid-template-columns: -webkit-calc(50% - 10px) -webkit-calc(50% - 10px);
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  }

  .about-section-classic-simple {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section-classic-simple .inner {
    margin-left: 15px;
  }
  .about-section-classic-simple .title {
    margin-top: 0px;
    padding-bottom: 0px;
  }
  .about-section-classic-simple .button {
    margin-top: 20px;
  }
  .about-section-classic-simple .img-wrap:first-of-type {
    margin-top: -70px;
    margin-left: 50px;
  }
  .about-section-classic-simple .img-wrap:nth-of-type(2) {
    margin-left: 0px;
    min-width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .about-section-classic-simple {
    padding-bottom: 0px;
  }
  .about-section-classic-simple .content-wrap {
    width: 100%;
    margin-bottom: 80px;
  }
  .about-section-classic-simple .inner {
    max-width: 100%;
    padding-right: 20px;
  }
  .about-section-classic-simple .img-wrap:first-of-type {
    grid-column: 1 / 8;
    grid-row: 1 / 8;
    margin-left: 20%;
  }
  .about-section-classic-simple .img-wrap:nth-of-type(2) {
    grid-column: 1 / 3;
    grid-row: 1 / 8;
    margin-right: 20%;
  }
  .about-section-classic-simple .title {
    font-size: 26px;
  }
  .about-section-classic .title {
    font-size: 28px;
    padding-bottom: 20px;
  }
  .about-section-classic .blockquote {
    margin-top: 20px;
  }
  .about-section-classic .description {
    font-size: 16px;
  }
  .about-section-classic .blockquote {
    font-size: 20px;
  }
  .about-section-classic .button {
    margin-top: 20px;
  }
  .about-section-classic .inner {
    max-width: 100%;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .about-section-classic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 15px;
  }
  .about-section-classic-simple .img-wrap:first-of-type {
    margin-top: -45px;
    grid-row: 1 / 6;
  }
  .about-section-classic-simple .img-wrap:nth-of-type(2) {
    grid-row: 1 / 6;
  }
  .about-section-classic::before {
    content: none;
  }
  .about-section-classic .content-wrap,
  .about-section-classic .images-wrap {
    width: 100%;
  }
  .about-section-classic .images-wrap {
    display: block;
  }
  .about-section-classic .content-wrap {
    margin-top: 20px;
  }
  .about-section-classic .img-wrap {
    min-height: 250px;
    margin-bottom: 15px;
  }
  .about-section-classic .subtitle {
    letter-spacing: 1px;
  }
  .about-section-classic .title {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .about-section-classic .blockquote {
    font-size: 18px;
  }
}
/*
@media only screen and (max-width: 768px) {
  .about-section-classic {
	&-simple {
	  .img-wrap {
		&:first-of-type {

		  grid-row: 1 / 6;
		}

		&:nth-of-type(2) {

		  grid-row: 1 / 6;
		}
	  }
	}
  }
}*/
.about-section-classic-history .content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px 15px;
}
.about-section-classic-history .content .title {
  max-width: 40%;
  flex: 1 0 40%;
  padding: 5px 35px;
  text-align: center;
}
.about-section-classic-history .content .title .years {
  position: relative;
  display: inline-block;
}
.about-section-classic-history .content .title .years span {
  color: var(--dark-color);
  font-size: 30px;
  font-weight: normal;
  line-height: 1.4;
  padding: 5px 45px;
  margin: 0;
  border-radius: 50px;
  transition: background-color 0.4s ease;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about-section-classic-history .content .title .years span {
    padding: 5px 30px;
  }
}
@media (max-width: 576px) {
  .about-section-classic-history .content .title .years span {
    font-size: 22px;
  }
}
.about-section-classic-history .content .title .years::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 150%;
  top: -25%;
  left: 0;
  border-radius: 50px;
  background-color: transparent;
  transition: background-color 0.4s ease;
}
@media (max-width: 991px) {
  .about-section-classic-history .content {
    display: block;
  }
  .about-section-classic-history .content .title {
    max-width: 100%;
  }
}
.about-section-classic-history .content .text {
  flex: 1 0 60%;
}
.about-section-classic-history .content .text p {
  color: var(--grey-color);
  font-size: 15px;
  font-weight: normal;
  line-height: 1.73;
  padding: 13px 5px 75px 55px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .about-section-classic-history .content .text p {
    padding: 13px 5px 25px 55px;
  }
}
.about-section-classic-history .content .text p::before {
  content: '';
  background: url("../images/double-tick-indicator.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 20px;
  left: -16px;
  width: 45px;
  height: 25px;
}
.about-section-classic-history .content .text p:after {
  content: '';
  width: 2px;
  height: calc(100% - 85px);
  background: #369879;
  opacity: 0.25;
  left: 0;
  bottom: 0;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .about-section-classic-history .content .text p:after {
    display: none;
  }
}
@media (max-width: 575px) {
  .about-section-classic-history .content {
    display: block;
  }
  .about-section-classic-history .content .title {
    max-width: 100%;
  }
  .about-section-classic-history .content .text p {
    padding: 13px 5px 25px 55px;
  }
}
.about-section-classic-history .content:hover .title .years span {
  color: white;
  font-weight: bold;
}
.about-section-classic-history .content:hover .title .years::before {
  background: var(--yellow-color);
}
.about-section-classic-history > div:last-child .text p::after {
  display: none;
}

/*# sourceMappingURL=about.min.css.map */
