@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Font Family */
/* Colors */
/* Font Size */
/* Font Weight */
/* Border radius */
/* Site Max width */
/* Screen Size Responsive */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}
html::-webkit-scrollbar-thumb {
  background-color: #1F2DBE;
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 85%;
  }
}
@media only screen and (max-width: 834px) {
  html {
    font-size: 100%;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 85%;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
}

h1 {
  line-height: 1.25;
}
h1 .text1 {
  font-size: 2rem;
}
h1 .text2 {
  font-size: 1.12rem;
  font-weight: 600;
}
.section_title {
  text-align: left;
  margin: 2rem auto;
  text-transform: uppercase;
  font-size: 2rem;
}
.section_title::after {
  content: "";
  width: 100px;
  height: 5px;
  display: block;
  margin: 10px 0;
  border-radius: 8px;
  background: #1F2DBE;
}

.text {
  line-height: 1.75;
  margin-bottom: 2rem;
  text-align: left;
  font-size: 1.12rem;
}

.btn {
  padding: 10px 26px;
  color: #FFFFFF;
  font-size: 1.12rem;
  font-weight: 500;
  background: #D6006B;
  border-radius: 30px;
  border: 1px solid #D6006B;
  transition: 0.3s ease;
}
.btn:hover {
  background: #1F2DBE;
  border: 1px solid #1F2DBE;
}

section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.section_content {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
}

/* nav bar styling */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  background: #FFFFFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
header .top_bar {
  background: #1F2DBE;
}
header .top_bar .top_bar_content {
  margin: 0 auto;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .top_bar .top_bar_content .tag p {
  font-size: 0.9rem;
  color: #FFFFFF;
}
header .top_bar .top_bar_content .hotline {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
header .top_bar .top_bar_content .hotline a {
  color: #FFFFFF;
  font-size: 0.9rem;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
header .navbar .log {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
header .navbar .log .nav_logo {
  width: 75px;
}
header .navbar .log .nav_logo img {
  max-width: 100%;
}
header .navbar .log .names .company_name {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #1F2DBE;
}
header .navbar .log .names .moto {
  font-size: 0.9rem;
  font-weight: 400;
}
header .navbar .nav_menu {
  display: flex;
  gap: 2rem;
}
header .navbar .nav_menu .nav_link {
  position: relative;
  display: inline-block;
  color: #1C1C1C;
  font-size: 1.12rem;
  font-weight: 400;
  transition: 0.3s ease;
}
header .navbar .nav_menu .nav_link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background-color: #D6006B;
  transition: 0.3s;
}
header .navbar .nav_menu .nav_link:hover {
  color: #D6006B;
}
header .navbar .nav_menu .nav_link:hover::after {
  width: 100%;
}
header .navbar .nav_menu_btn {
  display: none;
  font-size: 1.5rem;
  color: #1C1C1C;
}
@media only screen and (max-width: 1200px) {
  header .navbar .nav_menu {
    gap: 5px;
  }
  header .navbar .nav_menu .nav_link {
    padding: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  header .navbar .nav_menu {
    gap: 5px;
  }
  header .navbar .nav_menu .nav_link {
    padding: 5px;
  }
}
@media screen and (max-width: 834px) {
  header .top_bar .top_bar_content {
    flex-direction: column;
  }
  header .top_bar .top_bar_content .tag p {
    text-align: center;
  }
  header .navbar {
    position: fixed;
    width: 100%;
    padding: 1rem 2rem;
    background-color: #FFFFFF;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  header .navbar .nav_menu {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    padding: 2rem;
    width: 100%;
    height: 100vh;
    transform: scaleY(0);
    transform-origin: top;
    align-items: center;
    flex-direction: column;
    transition: left 0.3s ease;
    background-color: #D6006B;
  }
  header .navbar .nav_menu .nav_link {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 10px;
  }
  header .navbar .nav_menu.open {
    transform: scaleY(1);
  }
  header .navbar .nav_menu.open .link a {
    opacity: 1;
  }
  header .navbar .nav_menu_btn {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  header .top_bar .top_bar_content {
    flex-direction: column;
  }
  header .top_bar .top_bar_content .tag p {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  header .top_bar {
    display: none;
  }
  header .navbar {
    padding: 1rem;
  }
}

/* Hero section */
.home {
  padding: 0;
}
.home .box {
  position: relative;
  min-height: 90vh;
  background-size: cover !important;
  background-position: center !important;
}
.home .box .content_box {
  position: absolute;
  bottom: 5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.home .box .content_box .content {
  width: 40%;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.home .box .content_box .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
}
.home .box .content_box .content p {
  line-height: 1.5;
  color: #FFFFFF;
  font-size: 1.12rem;
}
.home .box .content_box .content1 {
  width: 60%;
}
@media only screen and (max-width: 1200px) {
  .home .box .content_box {
    left: 5rem;
  }
}
@media only screen and (max-width: 834px) {
  .home .box .content_box {
    bottom: 3rem;
  }
  .home .box .content_box .content {
    width: 50%;
  }
  .home .box .content_box .content1 {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .home .box .content_box {
    bottom: 2rem;
    left: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .home .box .content_box .content {
    width: 80%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .home .box .content_box .content1 {
    width: 80%;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 3rem;
  color: #F5F5F5;
}

.about_section {
  background: #F5F5F5;
}
.about_section .section_content {
  margin: 5rem auto;
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  justify-content: space-between;
}
.about_section .section_content .about_image_wrapper {
  width: 50%;
}
.about_section .section_content .about_image_wrapper .about_image {
  max-width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.about_section .section_content .about_details {
  width: 50%;
}
.about_section .section_content .about_details .numbers {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}
.about_section .section_content .about_details .numbers .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
.about_section .section_content .about_details .numbers .container .nums span.num {
  font-weight: 600;
  font-size: 2rem;
}
.about_section .section_content .about_details .numbers .container .nums .mark {
  font-weight: 600;
  font-size: 2rem;
}
.about_section .section_content .about_details .numbers .container span.text1 {
  font-size: 1rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 834px) {
  .about_section .section_content {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .about_section .section_content {
    gap: 2rem;
    flex-direction: column;
  }
  .about_section .section_content .about_image_wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  .about_section .section_content .about_image_wrapper .about_image {
    width: 100%;
    height: 100%;
  }
  .about_section .section_content .about_details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about_section .section_content .about_details .numbers {
    background-color: #D6006B;
    width: 100%;
    padding: 2rem 0;
    justify-content: center;
  }
  .about_section .section_content .about_details .numbers .container {
    align-items: center;
  }
  .about_section .section_content .about_details .numbers .container .nums span.num {
    color: #FFFFFF;
  }
  .about_section .section_content .about_details .numbers .container .nums .mark {
    color: #FFFFFF;
  }
  .about_section .section_content .about_details .numbers .container span.text1 {
    color: #FFFFFF;
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .about_section .section_content .about_image_wrapper {
    height: 300px;
  }
  .about_section .section_content .about_details .text {
    text-align: center;
  }
}

.service_section {
  background: #FFFFFF;
}
.service_section .section_content {
  margin: 5rem auto;
}
.service_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.service_section .section_content .section_top .section_title {
  text-align: center;
}
.service_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.service_section .section_content .section_top .text {
  text-align: center;
}
.service_section .section_content .services {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.service_section .section_content .services .service {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #1F2DBE;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}
.service_section .section_content .services .service:hover {
  border: 1px solid #D6006B;
  background-color: #F5F5F5;
}
.service_section .section_content .services .service .service_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.service_section .section_content .services .service .service_top .service_image_box {
  width: 75px;
  height: 75px;
  overflow: hidden;
}
.service_section .section_content .services .service .service_top .service_image_box .service_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service_section .section_content .services .service .service_details ul {
  margin: 1rem 0 2rem;
}
.service_section .section_content .services .service .service_details ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #1C1C1C;
  line-height: 1.12rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
.service_section .section_content .services .service .service_details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #D6006B;
  font-size: 1.12rem;
  font-weight: 700;
}
.service_section .section_content .services .service .service_details ul li:hover {
  color: #D6006B;
}
@media only screen and (max-width: 1024px) {
  .service_section .section_content .services {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .service_section .section_content .services {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .service_section .section_content .section_top {
    width: 90%;
  }
  .service_section .section_content .services {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service_section .section_content .services .service_top .service_image_box {
    width: 50px;
    height: 50px;
    overflow: hidden;
  }
  .service_section .section_content .services .service_top .service_image_box .service_image {
    width: 100%;
    height: 100%;
  }
}
.why_choose_us {
  background: #F5F5F5;
}
.why_choose_us .section_content {
  margin: 5rem auto;
}
.why_choose_us .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.why_choose_us .section_content .section_top .section_title {
  text-align: center;
}
.why_choose_us .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.why_choose_us .section_content .section_top .text {
  text-align: center;
}
.why_choose_us .section_content .chooses {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.why_choose_us .section_content .chooses .card {
  padding: 2rem;
  border: 1px solid #1F2DBE;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.why_choose_us .section_content .chooses .card .card_image {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.why_choose_us .section_content .chooses .card .card_image .image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why_choose_us .section_content .chooses .card .desc h3 {
  line-height: 1.5;
  font-size: 1.12rem;
  color: #1C1C1C;
}
.why_choose_us .section_content .chooses .card .desc p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  margin-top: 0.5rem;
}
.why_choose_us .section_content .chooses .card:hover {
  border: 1px solid #D6006B;
  background-color: #D6006B;
}
.why_choose_us .section_content .chooses .card:hover .card_image .image {
  filter: invert(1);
}
.why_choose_us .section_content .chooses .card:hover .desc h3 {
  color: #FFFFFF;
}
.why_choose_us .section_content .chooses .card:hover .desc p {
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .why_choose_us .section_content .chooses {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .why_choose_us .section_content .chooses {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .why_choose_us .section_content .section_top {
    width: 90%;
  }
  .why_choose_us .section_content .chooses {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .why_choose_us .section_content .chooses .card {
    flex-direction: column;
    align-items: center;
  }
  .why_choose_us .section_content .chooses .card .card_image {
    width: 75px;
    height: 75px;
  }
  .why_choose_us .section_content .chooses .card .desc h3 {
    text-align: center;
  }
  .why_choose_us .section_content .chooses .card .desc p {
    text-align: center;
  }
}

.faq_section {
  background: #FFFFFF;
}
.faq_section .section_content {
  margin: 5rem auto;
}
.faq_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.faq_section .section_content .section_top .section_title {
  text-align: center;
}
.faq_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.faq_section .section_content .section_top .text {
  text-align: center;
}
.faq_section .section_content .faq_section {
  margin: 3rem 0;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
}
.faq_section .section_content .faq_section .faq_box_container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 3rem;
  width: 50%;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box {
  border: 1px solid #F5F5F5;
  border-top: none;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.faq_section .section_content .faq_section .faq_box_container .faq_box:hover {
  border-color: #1F2DBE;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question {
  display: grid;
  grid-template-columns: 1fr 30px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question h3 {
  line-height: 1.5;
  font-size: 1.12rem;
  color: #D6006B;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question .faq_box_icon {
  display: block;
  position: relative;
  height: 3px;
  width: 23px;
  margin-left: auto;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question .faq_box_icon::before, .faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question .faq_box_icon::after {
  background: #D6006B;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  transition: all ease-out 0.2s;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question .faq_box_icon::before {
  top: 0px;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question .faq_box_icon::after {
  top: 0px;
  transform: rotate(90deg);
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question.active h3 {
  color: #1F2DBE;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_question.active .faq_box_icon::after {
  background: #1F2DBE;
  transform: rotate(0deg);
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_answer {
  max-height: 0px;
  width: 90%;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box .faq_box_answer p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
.faq_section .section_content .faq_section .faq_box_container .faq_box:last-child {
  margin-bottom: 0px;
}
.faq_section .section_content .faq_section .about_image_wrapper {
  width: 50%;
}
.faq_section .section_content .faq_section .about_image_wrapper .about_image {
  max-width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media only screen and (max-width: 1024px) {
  .faq_section .section_content .faq_section {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .faq_section .section_content .faq_section {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .faq_section .section_content .section_top {
    width: 90%;
  }
  .faq_section .section_content .faq_section {
    gap: 2rem;
    flex-direction: column;
  }
  .faq_section .section_content .faq_section .faq_box_container {
    width: 100%;
  }
  .faq_section .section_content .faq_section .about_image_wrapper {
    width: 100%;
  }
}
.undertake_projects_section {
  background: #F5F5F5;
}
.undertake_projects_section .section_content {
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.undertake_projects_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.undertake_projects_section .section_content .section_top .section_title {
  text-align: center;
}
.undertake_projects_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.undertake_projects_section .section_content .section_top .text {
  text-align: center;
}
.undertake_projects_section .section_content .undertake_projects {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.undertake_projects_section .section_content .undertake_projects .project_card {
  border-radius: 8px;
  border: 1px solid #1F2DBE;
  overflow: hidden;
  transition: all 0.3s ease;
}
.undertake_projects_section .section_content .undertake_projects .project_card a {
  display: block;
}
.undertake_projects_section .section_content .undertake_projects .project_card a .thumb_image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.undertake_projects_section .section_content .undertake_projects .project_card a .thumb_image .image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: transform 0.5s ease;
}
.undertake_projects_section .section_content .undertake_projects .project_card a .project_name {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.undertake_projects_section .section_content .undertake_projects .project_card a .project_name p {
  font-size: 1rem;
  font-weight: 400;
  color: #1C1C1C;
  text-align: center;
}
.undertake_projects_section .section_content .undertake_projects .project_card:hover {
  border: 1px solid #D6006B;
  background-color: #D6006B;
}
.undertake_projects_section .section_content .undertake_projects .project_card:hover a .thumb_image .image {
  transform: scale(1.1);
}
.undertake_projects_section .section_content .undertake_projects .project_card:hover a .project_name p {
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .undertake_projects_section .section_content .undertake_projects {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .undertake_projects_section .section_content .undertake_projects {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .undertake_projects_section .section_content .section_top {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .undertake_projects_section .section_content .undertake_projects .project_card a .project_name p {
    font-weight: 600;
  }
}

.client_section {
  background: #FFFFFF;
}
.client_section .section_content {
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.client_section .section_content .section_top .section_title {
  text-align: center;
}
.client_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.client_section .section_content .section_top .text {
  text-align: center;
}
.client_section .section_content .client_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.client_section .section_content .client_logo .client {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.client_section .section_content .client_logo .client .logo_card {
  width: 100%;
  height: 100px;
  overflow: hidden;
  transition: transform 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}
.client_section .section_content .client_logo .client .logo_card .logo {
  max-width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  transition: transform 0.4s ease;
}
.client_section .section_content .client_logo .client .logo_card:hover .logo {
  transform: scale(1.05);
  /* Zoom in */
  filter: brightness(1.1);
}
.client_section .section_content .client_logo .client span {
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .client_section .section_content .section_top {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .client_section .section_content .client_logo {
    flex-direction: column;
  }
}

.contact_section {
  background: #FFFFFF;
}
.contact_section .section_content {
  margin: 5rem auto;
}
.contact_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.contact_section .section_content .section_top .section_title {
  text-align: center;
}
.contact_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.contact_section .section_content .section_top .text {
  text-align: center;
}
.contact_section .section_content .contact_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.contact_section .section_content .contact_content .contact_form_box {
  width: 100%;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #1F2DBE;
  padding: 2rem;
  border-radius: 8px;
  background-color: #F5F5F5;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group label span {
  color: red;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group input,
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group input:focus,
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group textarea:focus {
  border-color: #D6006B;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_group textarea {
  resize: none;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .submit_btn {
  width: 100%;
  background: #D6006B;
  color: white;
  font-size: 1rem;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .submit_btn:hover {
  background: #1F2DBE;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form .form_message p {
  margin-top: 10px;
  font-weight: bold;
}
.contact_section .section_content .contact_content .contact_form_box .contact_form:hover {
  border: 1px solid #D6006B;
}
.contact_section .section_content .contact_content .contact_info {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}
.contact_section .section_content .contact_content .contact_info .contact {
  border: 1px solid #D6006B;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}
.contact_section .section_content .contact_content .contact_info .contact .contact_icon {
  width: 50px;
  height: 50px;
}
.contact_section .section_content .contact_content .contact_info .contact .contact_icon i {
  font-size: 2rem;
}
.contact_section .section_content .contact_content .contact_info .contact .contact_data .contact_tital {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact_section .section_content .contact_content .contact_info .contact .contact_data .data p {
  font-size: 1rem;
  font-weight: 400;
}
.contact_section .section_content .contact_content .contact_info .contact .contact_data .data a {
  font-size: 1rem;
  font-weight: 400;
  color: #1C1C1C;
}
.contact_section .section_content .contact_content .contact_info .contact:hover {
  background-color: #D6006B;
}
.contact_section .section_content .contact_content .contact_info .contact:hover .contact_icon i {
  color: #FFFFFF;
}
.contact_section .section_content .contact_content .contact_info .contact:hover .contact_tital {
  color: #FFFFFF;
}
.contact_section .section_content .contact_content .contact_info .contact:hover .data p {
  color: #FFFFFF;
}
.contact_section .section_content .contact_content .contact_info .contact:hover .data a {
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .contact_section .section_content .contact_content {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .contact_section .section_content .contact_content {
    gap: 1rem;
  }
  .contact_section .section_content .contact_content .contact_form_box .contact_form {
    padding: 1rem;
  }
  .contact_section .section_content .contact_content .contact_form_box .contact_form .form_group {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .contact_section .section_content .section_top {
    width: 90%;
  }
  .contact_section .section_content .contact_content {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .contact_section .section_content .contact_content .contact_info {
    gap: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .contact_section .section_content .contact_content .contact_info {
    gap: 1rem;
  }
}

.map_section {
  background: #F5F5F5;
}
.map_section .section_content {
  margin: 5rem auto;
}
.map_section .section_content .map {
  width: 100%;
  height: 400px;
  border: 1px solid #D6006B;
  border-radius: 8px;
  overflow: hidden;
}
.map_section .section_content .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map_section .section_content .map:hover {
  border-color: #1F2DBE;
}

.about_us_section {
  background: #FFFFFF;
}
.about_us_section .section_content {
  margin: 5rem auto;
}
.about_us_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.about_us_section .section_content .section_top .section_title {
  text-align: center;
}
.about_us_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.about_us_section .section_content .section_top .text {
  text-align: center;
}
.about_us_section .section_content .about_us_content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.about_us_section .section_content .about_us_content .pers {
  width: 100%;
}
.about_us_section .section_content .about_us_content .images_box {
  width: 100%;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  gap: 2rem;
}
.about_us_section .section_content .about_us_content .images_box .about_us_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about_us_section .section_content .about_us_content .images_box .about_us_image .image {
  width: 100%;
  height: 225px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .about_us_section .section_content .about_us_content {
    gap: 2rem;
  }
  .about_us_section .section_content .about_us_content .images_box {
    gap: 1rem;
  }
  .about_us_section .section_content .about_us_content .images_box .about_us_image .image {
    height: 200px;
  }
}
@media only screen and (max-width: 834px) {
  .about_us_section .section_content .about_us_content {
    gap: 1rem;
  }
  .about_us_section .section_content .about_us_content .images_box .about_us_image .image {
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .about_us_section .section_content .about_us_content {
    grid-template-columns: 1fr;
  }
}
.proprietor_profile_section {
  background: #F5F5F5;
}
.proprietor_profile_section .section_content {
  margin: 5rem auto;
}
.proprietor_profile_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.proprietor_profile_section .section_content .section_top .section_title {
  text-align: center;
}
.proprietor_profile_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.proprietor_profile_section .section_content .section_top .text {
  text-align: center;
}
.proprietor_profile_section .section_content .proprietor_profile_content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.proprietor_profile_section .section_content .proprietor_profile_content .pers {
  width: 100%;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box {
  width: 100%;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  gap: 1rem;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .about_us_image {
  width: 100%;
  overflow: hidden;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .about_us_image .image {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .name h3 {
  font-size: 1.12rem;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .name span {
  font-size: 0.9rem;
  display: block;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .name a {
  font-size: 0.9rem;
  display: block;
  color: #1C1C1C;
}
.proprietor_profile_section .section_content .proprietor_profile_content .images_box .name a:hover {
  color: #1F2DBE;
}
@media only screen and (max-width: 1024px) {
  .proprietor_profile_section .section_content .proprietor_profile_content {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .proprietor_profile_section .section_content .about_us_content {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .proprietor_profile_section .section_content .proprietor_profile_content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .proprietor_profile_section .section_content .proprietor_profile_content .pers {
    order: 1;
  }
  .proprietor_profile_section .section_content .proprietor_profile_content .images_box {
    order: 2;
    flex-direction: row;
    gap: 2rem;
  }
  .proprietor_profile_section .section_content .proprietor_profile_content .images_box .about_us_image {
    max-width: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .proprietor_profile_section .section_content .proprietor_profile_content .images_box {
    flex-direction: column;
    gap: 1rem;
  }
}

.vision_mission_section {
  background: #FFFFFF;
}
.vision_mission_section .section_content {
  margin: 5rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.vision_mission_section .section_content .box {
  padding: 1rem;
}
.vision_mission_section .section_content .box .vision_mission {
  background-color: #F5F5F5;
  border: 1px solid #1F2DBE;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.vision_mission_section .section_content .box .vision_mission h3 {
  font-size: 2rem;
  text-align: center;
}
.vision_mission_section .section_content .box .vision_mission p {
  font-size: 1.12rem;
  text-align: center;
  font-style: italic;
  line-height: 1.75;
}
.vision_mission_section .section_content .box .vision_mission .image_box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vision_mission_section .section_content .box .vision_mission .image_box img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.vision_mission_section .section_content .box .vision_mission:hover {
  background-color: #D6006B;
  border-color: #D6006B;
}
.vision_mission_section .section_content .box .vision_mission:hover h3,
.vision_mission_section .section_content .box .vision_mission:hover p {
  color: #FFFFFF;
}
.vision_mission_section .section_content .box .vision_mission:hover .image_box img {
  filter: invert(1);
}
@media only screen and (max-width: 1024px) {
  .vision_mission_section .section_content {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .vision_mission_section .section_content {
    gap: 1rem;
  }
  .vision_mission_section .section_content .box .vision_mission .image_box img {
    height: 75px;
    width: 75px;
  }
}
@media only screen and (max-width: 768px) {
  .vision_mission_section .section_content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.our_service_section_1 {
  background: #FFFFFF;
}
.our_service_section_1 .section_content {
  margin: 5rem auto;
}
.our_service_section_1 .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.our_service_section_1 .section_content .section_top .section_title {
  text-align: center;
}
.our_service_section_1 .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.our_service_section_1 .section_content .section_top .text {
  text-align: center;
}
.our_service_section_1 .section_content .our_service_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.our_service_section_1 .section_content .our_service_content .pers {
  width: 100%;
}
.our_service_section_1 .section_content .our_service_content .images_box {
  width: 100%;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  gap: 1rem;
}
.our_service_section_1 .section_content .our_service_content .images_box .about_us_image {
  width: 100%;
  overflow: hidden;
}
.our_service_section_1 .section_content .our_service_content .images_box .about_us_image .image {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our_service_section_1 .section_content .our_service_content .images_box .name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.our_service_section_1 .section_content .our_service_content .images_box .name h3 {
  font-size: 1.12rem;
}
.our_service_section_1 .section_content .our_service_content .images_box .name span {
  font-size: 0.9rem;
  display: block;
}
.our_service_section_1 .section_content .our_service_content .images_box .name a {
  font-size: 0.9rem;
  display: block;
  color: #1C1C1C;
}
.our_service_section_1 .section_content .our_service_content .images_box .name a:hover {
  color: #1F2DBE;
}

.our_service_section_2 {
  background: #F5F5F5;
}
.our_service_section_2 .section_content {
  margin: 5rem auto;
}
.our_service_section_2 .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.our_service_section_2 .section_content .section_top .section_title {
  text-align: center;
}
.our_service_section_2 .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.our_service_section_2 .section_content .section_top .text {
  text-align: center;
}
.our_service_section_2 .section_content .our_service_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.our_service_section_2 .section_content .our_service_content .pers {
  width: 100%;
}
.our_service_section_2 .section_content .our_service_content .images_box {
  width: 100%;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  gap: 1rem;
}
.our_service_section_2 .section_content .our_service_content .images_box .about_us_image {
  width: 100%;
  overflow: hidden;
}
.our_service_section_2 .section_content .our_service_content .images_box .about_us_image .image {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our_service_section_2 .section_content .our_service_content .images_box .name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.our_service_section_2 .section_content .our_service_content .images_box .name h3 {
  font-size: 1.12rem;
}
.our_service_section_2 .section_content .our_service_content .images_box .name span {
  font-size: 0.9rem;
  display: block;
}
.our_service_section_2 .section_content .our_service_content .images_box .name a {
  font-size: 0.9rem;
  display: block;
  color: #1C1C1C;
}
.our_service_section_2 .section_content .our_service_content .images_box .name a:hover {
  color: #1F2DBE;
}

.projects_section {
  background: #FFFFFF;
}
.projects_section .section_content {
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projects_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.projects_section .section_content .section_top .section_title {
  text-align: center;
}
.projects_section .section_content .section_top .section_title::after {
  margin: 10px auto;
}
.projects_section .section_content .section_top .text {
  text-align: center;
}
.projects_section .section_content .projects {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.projects_section .section_content .projects .project_card {
  border-radius: 8px;
  border: 1px solid #1F2DBE;
  overflow: hidden;
  transition: all 0.3s ease;
}
.projects_section .section_content .projects .project_card a {
  display: block;
}
.projects_section .section_content .projects .project_card a .thumb_image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.projects_section .section_content .projects .project_card a .thumb_image .image {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: transform 0.5s ease;
}
.projects_section .section_content .projects .project_card a .project_name {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projects_section .section_content .projects .project_card a .project_name p {
  font-size: 1rem;
  font-weight: 400;
  color: #1C1C1C;
  text-align: center;
}
.projects_section .section_content .projects .project_card:hover {
  border: 1px solid #D6006B;
  background-color: #D6006B;
}
.projects_section .section_content .projects .project_card:hover a .thumb_image .image {
  transform: scale(1.1);
}
.projects_section .section_content .projects .project_card:hover a .project_name p {
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .projects_section .section_content .undertake_projects {
    gap: 2rem;
  }
}
@media only screen and (max-width: 834px) {
  .projects_section .section_content .undertake_projects {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .projects_section .section_content .section_top {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .projects_section .section_content .undertake_projects .project_card a .project_name p {
    font-weight: 600;
  }
}

.legal_section {
  background: #F5F5F5;
}
.legal_section .section_content {
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal_section .section_content .section_top {
  width: 60%;
  margin: 0 auto;
}
.legal_section .section_content .section_top .section_title {
  text-align: left;
}
.legal_section .section_content .section_top .section_title::after {
  margin: 10px 0;
}
.legal_section .section_content .section_top .box {
  margin: 2rem 0;
}
.legal_section .section_content .section_top .box h3 {
  line-height: 1.5;
  font-size: 1.12rem;
  color: #1C1C1C;
  margin-bottom: 0.5rem;
}
.legal_section .section_content .section_top .box .text {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.legal_section .section_content .section_top .box ul {
  margin-left: 2rem;
  list-style: square;
}
.legal_section .section_content .section_top .box ul li {
  text-align: left;
  font-size: 1rem;
}

.footer_section {
  padding: 3rem 0;
  background: #2E2E3A;
}
.footer_section .section_content h3 {
  font-size: 1.12rem;
  color: #FFFFFF;
  margin-top: 1.5rem;
}
.footer_section .section_content h3::after {
  content: "";
  width: 80px;
  height: 4px;
  display: block;
  margin: 10px 0;
  border-radius: 8px;
  background: #FFFFFF;
}
.footer_section .section_content .row1 {
  display: grid;
  grid-template-columns: minmax(300px, 2fr) minmax(300px, 1fr) minmax(300px, 1fr);
  gap: 2rem;
}
.footer_section .section_content .row1 .aboutus {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.footer_section .section_content .row1 .aboutus p {
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
  color: #FFFFFF;
  margin-top: 0.5rem;
}
.footer_section .section_content .row1 .aboutus .social_link_list a {
  color: #FFFFFF;
  transition: 0.2s ease;
}
.footer_section .section_content .row1 .aboutus .social_link_list {
  display: flex;
  gap: 25px;
}
.footer_section .section_content .row1 .aboutus .social_link_list .social_link {
  font-size: 1.5rem;
}
.footer_section .section_content .row1 .aboutus .social_link_list .social_link:hover {
  color: #D6006B;
}
.footer_section .section_content .row1 .quicklinks {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.footer_section .section_content .row1 .quicklinks ul .link {
  display: block;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
.footer_section .section_content .row1 .quicklinks ul .link a {
  color: #FFFFFF;
  transition: 0.2s ease;
}
.footer_section .section_content .row1 .quicklinks ul .link a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  margin: 3px 0;
  border-radius: 8px;
  background: #FFFFFF;
}
.footer_section .section_content .row1 .quicklinks ul .link a:hover::after {
  width: 100%;
}
.footer_section .section_content .row1 .contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.footer_section .section_content .row1 .contact .contact_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer_section .section_content .row1 .contact .contact_info .detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}
.footer_section .section_content .row1 .contact .contact_info .detail .icon {
  font-size: 1rem;
  text-align: left;
  color: #FFFFFF;
  width: 20px;
  margin-right: 1rem;
}
.footer_section .section_content .row1 .contact .contact_info .detail .info p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  color: #FFFFFF;
}
.footer_section .section_content .row1 .contact .contact_info .detail .info span {
  font-size: 1rem;
  color: #FFFFFF;
}
.footer_section .section_content .row1 .contact .contact_info .detail .info a {
  color: #FFFFFF;
  transition: 0.2s ease;
}
.footer_section .section_content .row1 .contact .contact_info .detail .info a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  margin: 3px 0;
  border-radius: 8px;
  background: #FFFFFF;
}
.footer_section .section_content .row1 .contact .contact_info .detail .info a:hover::after {
  width: 100%;
}
.footer_section .section_content .row2 {
  padding: 1rem 0;
}
.footer_section .section_content .row2 h3 {
  display: none;
}
.footer_section .section_content .row2 .policy_text {
  display: flex;
  gap: 2rem;
}
.footer_section .section_content .row2 .policy_text a {
  color: #FFFFFF;
  font-size: 1rem;
  transition: 0.2s ease;
}
.footer_section .section_content .row2 .policy_text a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  margin: 3px 0;
  border-radius: 8px;
  background: #FFFFFF;
}
.footer_section .section_content .row2 .policy_text a:hover::after {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .footer_section {
    padding: 2rem 0;
  }
  .footer_section .section_content .row1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "aboutus aboutus" "quicklinks contact";
  }
  .footer_section .section_content .row1 .aboutus {
    grid-area: aboutus;
  }
  .footer_section .section_content .row1 .quicklinks {
    grid-area: quicklinks;
    align-items: flex-start;
  }
  .footer_section .section_content .row1 .quicklinks ul .link {
    text-align: left;
  }
  .footer_section .section_content .row1 .contact {
    grid-area: contact;
  }
}
@media only screen and (max-width: 768px) {
  .footer_section {
    padding: 1rem 0;
  }
  .footer_section .section_content .row2 .policy_text {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .footer_section .section_content .row1 {
    grid-template-columns: 1fr;
    grid-template-areas: "aboutus" "quicklinks" "contact";
  }
  .footer_section .section_content .row2 h3 {
    display: block;
  }
  .footer_section .section_content .row2 .policy_text {
    margin-top: 2rem;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer1_section {
  padding: 0.5rem 0;
  background: #D6006B;
}
.footer1_section .row3 {
  background-color: #D6006B;
}
.footer1_section .row3 .copyright_text {
  color: #FFFFFF;
  font-size: 0.9rem;
  text-align: center;
}/*# sourceMappingURL=stylesheet.css.map */