/* =========================================================
   WELCOME ADVANCE SECTION
========================================================= */

.welcome_advance_section {
  width: 100%;
  padding: 70px 0 65px;
  background: #ffffff;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.welcome_advance_section .welcome_advance_content {
  padding-right: 35px;
}

.welcome_advance_section .welcome_advance_content h2 {
  margin: 0 0 22px;
  color: #0101dd;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
}

.welcome_advance_section .welcome_advance_content p {
  margin-bottom: 14px;

  color: #111111;

  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.welcome_advance_section .welcome_advance_content strong {
  font-weight: 700;
}

.welcome_advance_section .welcome_advance_content u {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* =========================================================
   LIST
========================================================= */

.welcome_advance_section .welcome_advance_content ul {
  margin: 8px 0 15px;
  padding-left: 20px;
}

.welcome_advance_section .welcome_advance_content li {
  margin-bottom: 7px;

  color: #111111;

  font-size: 16px;
  line-height: 1.4;
}

/* =========================================================
   BUTTON
========================================================= */

.welcome_advance_section .welcome_advance_btn_wrapper {
  margin-top: 20px;
  text-align: center;
}

.welcome_advance_btn {
  display: inline-flex;

  width: 205px;
  min-height: 40px;

  align-items: center;
  justify-content: center;

  padding: 10px 25px;

  background: #000000;
  color: #ffffff;

  border-radius: 4px;

  font-size: 11px;
  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;
}

.welcome_advance_btn:hover {
  background: #0799e5;
  color: #ffffff;

  transform: translateY(-2px);
}

/* =========================================================
   IMAGE COLLAGE
========================================================= */

.welcome_advance_section .welcome_advance_images {
  position: relative;

  width: 100%;
  height: 400px;

  margin-top: 0;
}

/* =========================================================
   COMMON IMAGE
========================================================= */

.welcome_advance_section .advance_image {
  position: absolute;

  overflow: hidden;

  background: #eeeeee;
}

.welcome_advance_section .advance_image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.welcome_advance_section .advance_image:hover img {
  transform: scale(1.04);
}

/* =========================================================
   TOP IMAGE
========================================================= */

.welcome_advance_section .advance_image_1 {
  top: 0;
  right: 0;

  width: 400px;
  height: 230px;
}

/* =========================================================
   MIDDLE IMAGE
========================================================= */

.welcome_advance_section .advance_image_2 {
  top: 50%;
  left: 50px;
  width: 400px;
  height: 230px;
  z-index: 2;
}

/* =========================================================
   BOTTOM IMAGE
========================================================= */

.welcome_advance_section .advance_image_3 {
  right: 0;
  bottom: -60%;

  width: 400px;
  height: 230px;

  z-index: 1;
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .welcome_advance_section .welcome_advance_content h2 {
    font-size: 32px;
  }

  .welcome_advance_section .advance_image_2 {
    left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .welcome_advance_section {
    padding: 55px 0;
  }

  .welcome_advance_section .welcome_advance_content {
    padding-right: 0;
  }

  .welcome_advance_section .welcome_advance_content h2 {
    font-size: 28px;
  }

  .welcome_advance_section .welcome_advance_content p,
  .welcome_advance_section .welcome_advance_content li {
    font-size: 15px;
  }

  .welcome_advance_section .welcome_advance_images {
    height: 350px;
  }

  .welcome_advance_section .advance_image_1 {
    width: 210px;
    height: 140px;
  }

  .welcome_advance_section .advance_image_2 {
    width: 235px;
    height: 140px;
    top: 35%;
  }

  .welcome_advance_section .advance_image_3 {
    width: 210px;
    height: 140px;
    bottom: 0;
  }

  .welcome_advance_section .welcome_advance_btn_wrapper {
    margin-top: 55px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (min-width: 481px) and (max-width: 767px) {
  .welcome_advance_section {
    padding: 45px 0;
  }

  .welcome_advance_section .welcome_advance_content {
    padding-right: 0;
  }

  .welcome_advance_section .welcome_advance_content h2 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .welcome_advance_section .welcome_advance_content p,
  .welcome_advance_section .welcome_advance_content li {
    font-size: 15px;
  }

  .welcome_advance_section .welcome_advance_content {
    padding-right: 0;
    margin-top: 20px;
  }

  .welcome_advance_section .welcome_advance_btn_wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .welcome_advance_section .welcome_advance_images {
    height: 350px;
  }

  .welcome_advance_section .advance_image_1 {
    width: 58%;
    height: 150px;
  }

  .welcome_advance_section .advance_image_2 {
    top: 100px;
    width: 65%;
    height: 150px;
  }

  .welcome_advance_section .advance_image_3 {
    width: 58%;
    height: 150px;
    bottom: 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (min-width: 0px) and (max-width: 480px) {
  .welcome_advance_section .welcome_advance_images {
    height: 290px;
  }

  .welcome_advance_section .advance_image_1 {
    width: 60%;
    height: 110px;
  }

  .welcome_advance_section .advance_image_2 {
    top: 82px;

    width: 68%;
    height: 115px;
  }

  .welcome_advance_section .advance_image_3 {
    width: 60%;
    height: 110px;
    bottom: 0;
  }

  .welcome_advance_section .welcome_advance_btn {
    width: 190px;
  }

  .welcome_advance_section .welcome_advance_content {
    padding-right: 0;
  }

  .welcome_advance_section .welcome_advance_content h2 {
    margin: 20px 0;
    font-size: 23px;
    text-align: center;
  }

  .welcome_advance_section .welcome_advance_content p,
  .welcome_advance_section .welcome_advance_content li {
    font-size: 15px;
    text-align: justify;
  }
}
