h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
li,
figure,
body {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  h3 {
    font-size: 32px !important;
  }
  body .reports {
    padding: 40px 0;
    min-height: initial;
  }
  .reports h3 {
    font-size: 28px !important;
    text-align: center;
  }
}

a,
a:visited,
a:active,
a:focus {
  text-decoration: none !important;
}

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

.gf-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.line-green {
  width: 50px;
  height: 4px;
  background-color: #0eba56;
}

.gf-btn {
  margin-top: 30px;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  color: white;
  font-size: 14px !important;
  text-transform: uppercase !important;
  background-color: #0eba56 !important;
  padding: 0 30px !important;
  display: inline-block !important;
  max-width: 250px !important;
}

.main-header {
  height: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.main-header .gf-container .brand-logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-header .gf-container .brand-logo .brand-logo-img {
  width: 200px;
}

.main-header .gf-container .header-info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-header .gf-container .header-info .gf-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-header .gf-container .header-info .gf-info-item + .gf-info-item {
  margin-left: 20px;
}

.main-header .gf-container .header-info .gf-info-item img {
  width: 40px;
  height: 40px;
  padding-right: 10px;
}

.main-header .gf-container .header-info .gf-info-item .info-text {
  color: black;
  font-size: 14px;
  font-weight: 500;
}

.main-header .gf-container .gf-hamburger {
  width: 40px;
  height: 30px;
  -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;
  display: none;
}

.main-header .gf-container .gf-hamburger .hamb-item {
  display: block;
  width: 100%;
  height: 3px;
  background-color: black;
}

.main-header .gf-container .gf-hamburger .hamb-item + .hamb-item {
  margin-top: 8px;
}

@media screen and (max-width: 650px) {
  .main-header .gf-container {
    position: relative;
  }
  .main-header .gf-container .brand-logo .brand-logo-img {
    width: 140px;
  }
  .main-header .gf-container .header-info .docs {
    display: none;
  }
  .main-header .gf-container .header-info .gf-info-item + .gf-info-item {
    margin-left: 0;
  }
  .main-header .gf-container .header-info .gf-info-item img {
    width: 24px;
    padding-right: 4px;
  }
}

@media screen and (max-width: 360px) {
  .main-header .gf-container {
    height: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main-nav {
  -webkit-overflow-scrolling: touch;
  background-color: #f4305b;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.main-nav .gf-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-nav .gf-container .main-nav-item {
  padding: 0 20px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  display: block;
}

@media screen and (max-width: 600px) {
  .main-nav {
    overflow-y: scroll;
  }
  .main-nav .gf-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .main-nav .gf-container .main-nav-item {
    min-width: 100px;
    text-align: center;
  }
}

.section-hero {
  position: relative;
  min-height: 600px;
  background-image: url("../img/home-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.section-hero .chang-lang {
  position: absolute;
  right: 10px;
  top: 10px;
}

.section-hero .chang-lang .flag {
    width: 30px;
    display: inline-block;
}

.section-hero .chang-lang .flag img {
    width: 100%;
    height: 20px;
}

.section-hero .chang-lang .flag img {
  border: 1px solid black;
}

@media screen and (min-width: 1600px) {
  .section-hero {
    min-height: 800px;
  }
}

.home-wave {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  max-height: 120px;
}

.about {
  background-image: url("../img/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  padding: 0 0 100px 0;
  position: relative;
}

.about .middle-ill {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 104%;
  max-height: 140px;
}

.about .gf-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.about .gf-container .about-item {
  width: 90%;
  max-width: 700px;
}

.about .gf-container .about-item h2 {
  font-size: 45px;
  padding-left: 40px;
  padding-bottom: 30px;
}

.about .gf-container .about-item .about-content {
  background-color: #f9f9f9;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.about .gf-container .about-item .about-content .albion-logo {
  position: absolute;
  width: 130px;
  opacity: 0.4;
  top: 20px;
  right: 20px;
}

.about .gf-container .about-item .about-content .line-green {
  margin: 0 0 30px 0;
}

.about .gf-container .about-item .about-content .descr.hidden {
  display: none;
}

.about .gf-container .about-item .about-content .descr {
  z-index: 10;
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #3a3a3a;
}

@media screen and (min-width: 1400px) {
  .about {
    min-height: 650px;
  }
}

@media screen and (max-width: 600px) {
  .about .gf-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about .gf-container .about-item {
    width: 100%;
  }
  .about .gf-container .about-item h2 {
    text-align: center;
    padding: 0 0 30px 0;
  }
  .about .gf-container .about-item .about-content {
    padding: 30px 10px;
    text-align: center;
  }
  .about .gf-container .about-item .about-content .line-green {
    margin: 0 auto 30px auto;
  }
}

.why-choose-us {
  background-color: #f4305b;
  padding: 20px 0 150px 0;
  position: relative;
}

.why-choose-us .bio-logo-choose {
  width: 400px;
  position: absolute;
  right: 30px;
  top: -200px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.why-choose-us h3 {
  font-size: 45px;
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-us .gf-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.why-choose-us .gf-container .choose-item {
  width: 30%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  margin: 20px;
}

.why-choose-us .gf-container .choose-item .item-img {
  width: 150px;
}

.why-choose-us .gf-container .choose-item .item-heading {
  margin-top: 30px;
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .why-choose-us .bio-logo-choose {
    width: 200px;
    top: -100px;
  }
  .why-choose-us .gf-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .why-choose-us .gf-container .choose-item {
    width: 80%;
  }
}

.gallery h3 {
  font-size: 45px;
  margin: 40px 0;
  color: #f4305b;
  text-align: center;
}

.gallery #wrapper #imageSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
}

.gallery #wrapper #imageSet li {
  width: 20%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 0;
}

@media screen and (max-width: 1200px) {
  .gallery #wrapper #imageSet li {
    width: 45%;
  }
  .gallery #wrapper #imageSet li img {
    height: 350px !important;
  }
}

@media screen and (max-width: 992px) {
  .gallery #wrapper #imageSet li {
    width: 100%;
  }
  .gallery #wrapper #imageSet li img {
    height: 400px !important;
  }
}

.gallery #wrapper #imageSet li img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 250px;
  cursor: pointer;
  overflow: hidden;
}

#lightbox {
  z-index: 11;
}

@media screen and (max-width: 992px) {
  #lightbox {
    display: none !important;
  }
}

#lightbox #slideshow {
  overflow: hidden;
}

#lightbox #slideshow ul li img {
  width: 100%;
  height: auto;
}

#lightbox .owl-carousel {
  height: 1000px;
  overflow: hidden;
}

#lightbox .owl-carousel img {
  -o-object-fit: cover;
  object-fit: cover;
}

.reports {
  padding: 60px 0;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reports .gf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reports .line-green {
  margin: 30px auto;
}

.reports h3 {
  color: #f4305b;
  font-size: 35px;
  text-align: center;
}

.reports-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.report-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.report-item span {
  font-size: 16px;
  color: #000;
}

.section-map iframe {
  border: none;
  width: 100%;
  height: 400px;
}

.contact-us {
  padding: 60px 0 60px 0;
  background-color: #fff;
  margin-top: -5px;
}

.contact-us h3 {
  color: #f4305b;
  font-size: 45px;
  text-align: center;
}

.contact-us .line-green {
  margin: 30px auto;
}

.contact-us .gf-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-us .gf-container .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 45%;
}

.contact-us .gf-container .contact-content .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  color: black;
  font-weight: 500;
  font-size: 14px;
}

.contact-us .gf-container .contact-content .contact-item img {
  width: 40px;
  padding-right: 10px;
}

.contact-us .gf-container .form-wrap {
  width: 50%;
}

.contact-us .gf-container .form-wrap form {
  width: 100%;
}

.contact-us .gf-container .form-wrap input {
  height: 50px;
  width: 100%;
  display: inline-block;
}

.contact-us .gf-container .form-wrap textarea {
  height: 200px;
  width: 100%;
  resize: none;
}

.contact-us .gf-container .form-wrap textarea,
.contact-us .gf-container .form-wrap input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
  background-color: #fff;
  margin-top: 20px;
  -webkit-box-shadow: 1px 2px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  font-size: 16px;
  color: black;
}

.contact-us .gf-container .form-wrap textarea::-webkit-input-placeholder,
.contact-us .gf-container .form-wrap input::-webkit-input-placeholder {
  color: #666666;
}

.contact-us .gf-container .form-wrap textarea:-ms-input-placeholder,
.contact-us .gf-container .form-wrap input:-ms-input-placeholder {
  color: #666666;
}

.contact-us .gf-container .form-wrap textarea::-ms-input-placeholder,
.contact-us .gf-container .form-wrap input::-ms-input-placeholder {
  color: #666666;
}

.contact-us .gf-container .form-wrap textarea::placeholder,
.contact-us .gf-container .form-wrap input::placeholder {
  color: #666666;
}

.contact-us .gf-container .form-wrap textarea:focus,
.contact-us .gf-container .form-wrap input:focus {
  outline: none;
}

.contact-us .gf-container .form-wrap .gf-btn {
  margin-top: 30px !important;
  color: white !important;
}

@media screen and (max-width: 767px) {
  .contact-us .gf-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-us .gf-container .contact-content {
    width: 100%;
  }
  .contact-us .gf-container .form-wrap {
    width: 100%;
    margin-top: 40px;
  }
}

.footer {
  margin-top: -4px;
  background-color: #fff;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

@media screen and (max-width: 767px) {
  .footer .gf-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer .gf-container .footer-info {
    margin-top: 40px;
    width: 300px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer .gf-container .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .gf-container .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer .gf-container .footer-info .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  color: #f4305b;
}

.footer .gf-container .footer-info .contact-item img {
  padding-right: 10px;
}
