/* 
Theme Name: MyWordpressTheme
Text Domain: MyWordpressTheme
Version: 1.0
Description: A presentation website for a mechanical engineer.
Tags: responsive, fancy
Author: ISG
Author URI: isg.gr 
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

html {
  display: block;
  margin: 0 !important;
}

body {
  padding: 0px 72px;
}
@media (max-width: 766px) {
  body {
    padding: 0px 36px;
  }
}

.show-backdrop {
  display: block !important;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  width: 150px;
  height: 150px;
}
.navbar .links {
  display: block;
}
@media (max-width: 699px) {
  .navbar .links {
    display: none;
  }
}
.navbar .links ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.navbar .links ul li a {
  text-decoration: none;
  color: #196ae5;
  transition: all 0.2s ease-in-out;
}
.navbar .links ul li a:hover {
  color: #0066FF;
}
.navbar .contact-btn {
  text-decoration: none;
  background-color: #0066FF;
  border: none;
  font-size: 16px;
  color: #ffffff;
  padding: 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 100;
  display: block;
  transition: all 0.2s ease-in-out;
}
.navbar .contact-btn:hover {
  background-color: #0044ab;
}
@media (max-width: 699px) {
  .navbar .contact-btn {
    display: none;
  }
}
.navbar .open-sidebar {
  background-color: #0066FF;
  border: none;
  font-size: 16px;
  color: #ffffff;
  padding: 14px 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 100;
  display: none;
  transition: all 0.2s ease-in-out;
}
.navbar .open-sidebar:hover {
  background-color: #0044ab;
}
@media (max-width: 699px) {
  .navbar .open-sidebar {
    display: block;
  }
}

.open {
  transform: translate(0px) !important;
}

.sidebar {
  position: fixed;
  z-index: 10000;
  background-color: white;
  top: 0;
  left: 0;
  height: 100vh;
  width: 200px;
  padding: 0px 24px;
  color: black;
  transform: translate(-260px, 0px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 12px;
  align-items: start;
  transition: all 0.2s ease-in-out;
}
.sidebar .close {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.sidebar .close .close-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  padding: 14px 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 100;
}
.sidebar .sidebar-links ul {
  padding: 0 !important;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar .sidebar-links ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #0066FF;
  transition: all 0.2s ease-in-out;
}
.sidebar .sidebar-links ul li a:hover {
  color: #0066FF;
}
.sidebar .contact-btn {
  text-decoration: none;
  background-color: #0066FF;
  border: none;
  font-size: 16px;
  color: #ffffff;
  padding: 16px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}
.sidebar .contact-btn:hover {
  background-color: #0044ab;
}

.hero-section-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -100;
  width: 850px;
  display: block;
}
@media (max-width: 1249px) {
  .hero-section-bg-img {
    display: none;
  }
}

.hero-section {
  margin-top: 42px;
  height: 1000px;
}
@media (max-width: 1249px) {
  .hero-section {
    height: 600px;
  }
}
.hero-section .highlighted-blue {
  color: #0066FF;
}
.hero-section .highlighted-black {
  color: #000000;
}
.hero-section .highlighted-lightblue {
  color: #B1D0FF;
}
.hero-section .hero-section-text-mobile {
  font-size: 30px;
  width: 100%;
  display: none !important;
  text-align: center;
}
@media (max-width: 766px) {
  .hero-section .hero-section-text-mobile {
    display: block !important;
  }
}
@media (max-width: 495px) {
  .hero-section .hero-section-text-mobile {
    font-size: 25px;
  }
}
.hero-section .hero-section-text {
  display: flex;
  flex-direction: row;
  color: #B1D0FF;
  font-size: 80px;
  width: 100%;
  position: relative;
}
@media (max-width: 1661px) {
  .hero-section .hero-section-text {
    font-size: 70px;
  }
}
@media (max-width: 1481px) {
  .hero-section .hero-section-text {
    font-size: 60px;
  }
}
@media (max-width: 1300px) {
  .hero-section .hero-section-text {
    font-size: 50px;
  }
}
@media (max-width: 1136px) {
  .hero-section .hero-section-text {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .hero-section .hero-section-text {
    font-size: 30px;
  }
}
@media (max-width: 766px) {
  .hero-section .hero-section-text {
    display: none !important;
  }
}
.hero-section .hero-section-text:nth-child(2) {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 18px;
}
.hero-section .hero-section-text:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-section .hero-section-text.blue {
  color: #0066FF;
}
.hero-section .hero-section-text .line {
  content: "";
  background-color: #000000;
  width: 12%;
  height: 3px;
  display: flex;
  opacity: 0.5;
}
.hero-section .hero-section-text .line.second {
  width: 22%;
}
@media (max-width: 766px) {
  .hero-section .hero-section-text .line {
    display: none;
  }
}
.hero-section .person-details {
  position: absolute;
  bottom: 250px;
  left: 42px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 1249px) {
  .hero-section .person-details {
    bottom: 350px;
  }
}
@media (max-width: 624px) {
  .hero-section .person-details {
    bottom: 200px;
  }
}
.hero-section .person-details .name {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 715px) {
  .hero-section .person-details .name {
    font-size: 26px;
  }
}
@media (max-width: 399px) {
  .hero-section .person-details .name {
    font-size: 20px;
  }
}
.hero-section .person-details .title {
  font-size: 18px;
  opacity: 0.6;
}
@media (max-width: 715px) {
  .hero-section .person-details .title {
    font-size: 14px;
  }
}
@media (max-width: 339px) {
  .hero-section .person-details .title {
    font-size: 12px;
  }
}
.hero-section .person-details::before {
  content: "";
  width: 297.5px;
  height: 196px;
  position: absolute;
  left: -42px;
  top: -60px;
  background-image: url("./assets/images/before-name-img.svg");
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 715px) {
  .hero-section .person-details::before {
    height: 100px;
    top: -20px;
  }
}
@media (max-width: 399px) {
  .hero-section .person-details::before {
    height: 80px;
    top: -20px;
  }
}

.services {
  width: 100%;
  display: flex;
  gap: 90px;
  flex-wrap: wrap;
}
@media (max-width: 1159px) {
  .services {
    justify-content: center;
  }
}
.services .item {
  width: 450px;
  min-width: 450px;
}
@media (max-width: 599px) {
  .services .item {
    width: 300px;
    min-width: 300px;
  }
}
.services .services-text .services-title {
  position: relative;
}
.services .services-text .services-title::before {
  content: "";
  position: absolute;
  background-image: url("./assets/images/services-title-bg-image.svg");
  width: 200px;
  height: 150px;
  top: 0;
  left: -24px;
  background-repeat: no-repeat;
  z-index: -1;
}
.services .services-text .services-description {
  opacity: 0.5;
}
.services .service-card {
  position: relative;
  margin-bottom: 36px;
}
.services .service-card:hover .text-wrapper .text-container {
  background-color: rgba(0, 102, 255, 0.6);
}
.services .service-card .image-container {
  height: 307px;
  width: 100%;
  position: relative;
}
@media (max-width: 599px) {
  .services .service-card .image-container {
    height: 220px;
  }
}
.services .service-card .image-container .bg-color {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-color: rgba(0, 102, 255, 0.3);
}
.services .service-card .image-container .image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.services .service-card .text-wrapper {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: -100px;
  pointer-events: all;
}
.services .service-card .text-wrapper .text-container {
  width: 70%;
  height: 200px;
  background-color: rgba(177, 208, 255, 0.6);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  justify-content: start;
  padding: 12px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.services .service-card .text-wrapper .text-container .card-divider {
  content: "";
  background-color: #ffffff;
  width: 70%;
  height: 3px;
  border-radius: 24px;
}
.services .service-card .text-wrapper .text-container .card-title, .services .service-card .text-wrapper .text-container .card-description {
  color: #ffffff;
}
.services .service-card .text-wrapper .text-container .card-title {
  height: 40px;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.front-page-projects {
  margin-top: 150px;
  margin-bottom: 250px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}
.front-page-projects .projects-carousel {
  width: 60%;
  position: relative;
}
@media (max-width: 1221px) {
  .front-page-projects .projects-carousel {
    width: 100%;
  }
}
.front-page-projects .projects-carousel .slick-next::before, .front-page-projects .projects-carousel .slick-prev::before {
  color: #B1D0FF;
  font-size: 40px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.front-page-projects .projects-carousel .slick-next:hover::before, .front-page-projects .projects-carousel .slick-prev:hover::before {
  color: #0066FF;
}
.front-page-projects .projects-carousel .slick-prev {
  margin-top: 150px;
  left: 0;
}
.front-page-projects .projects-carousel .slick-next {
  margin-top: 150px;
  margin-right: calc(100% - 40px);
}
.front-page-projects .projects-carousel .slick-list {
  height: 300px;
}
.front-page-projects .projects-carousel .slick-slide {
  height: 250px;
  margin-right: 48px;
}
.front-page-projects .projects-carousel a {
  text-decoration: none;
}
.front-page-projects .projects-carousel a .project-card {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  position: relative;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.front-page-projects .projects-carousel a .project-card * {
  color: #ffffff;
}
.front-page-projects .projects-carousel a .project-card .card-title {
  margin: 0;
}
.front-page-projects .projects-carousel a .project-card .card-divider {
  content: "";
  background-color: #ffffff;
  width: 70%;
  height: 3px;
  border-radius: 24px;
}
.front-page-projects .projects-carousel a .project-card:hover .bg {
  background-color: transparent;
}
.front-page-projects .projects-carousel a .project-card .title {
  z-index: 10;
}
.front-page-projects .projects-carousel a .project-card .bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 24px;
  height: 100%;
  background-color: rgba(0, 102, 255, 0.2);
  transition: all 0.3s ease-in-out;
}
.front-page-projects .projects-text-container {
  width: 30%;
}
@media (max-width: 1221px) {
  .front-page-projects .projects-text-container {
    width: 100%;
  }
}
.front-page-projects .projects-text-container .buttons {
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: end;
  align-items: center;
  padding: 32px;
}
.front-page-projects .projects-text-container .buttons .btn {
  border: none;
  background-color: #B1D0FF;
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  transition: all 0.3s ease-in-out;
}
.front-page-projects .projects-text-container .buttons .btn:hover {
  background-color: #0066FF;
}
.front-page-projects .projects-text-container .buttons .btn .lni {
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.faq-title {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.faq-title .lines {
  position: absolute;
  display: block;
  bottom: -800px;
  right: -80px;
  z-index: -1;
}
@media (max-width: 1419px) {
  .faq-title .lines {
    width: 650px;
  }
}
@media (max-width: 1186px) {
  .faq-title .lines {
    width: 500px;
    bottom: -900px;
  }
}
@media (max-width: 949px) {
  .faq-title .lines {
    display: none;
  }
}

.accordition {
  margin-bottom: 100px;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.accordition .faq {
  max-width: 700px;
  margin-top: 2rem;
  padding: 1rem;
  border-bottom: 2px solid #B1D0FF;
  transition: all 0.2s ease-in-out;
}
.accordition .faq.active .answer {
  max-height: 400px;
}
.accordition .faq.active .question .down {
  transform: rotate(180deg);
}
.accordition .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordition .faq .question .down {
  transition: all 0.2s ease-in-out;
  font-weight: bold;
}
.accordition .faq .answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.accordition .faq .answer p {
  padding-top: 1rem;
  line-height: 1.6;
  font-size: 1.4rem;
}

.header {
  width: calc(100% + 160px);
  transform: translate(-80px);
  margin-bottom: 150px;
  position: relative;
}
@media (max-width: 766px) {
  .header {
    width: calc(100% + 88px);
    transform: translate(-44px);
  }
}
@media (max-width: 909px) {
  .header {
    margin-bottom: 50px;
  }
}
.header .header-img {
  width: 100%;
}
.header .title-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.header .header-title {
  color: #ffffff;
}
.header .header-title.category-title {
  text-align: center;
}
@media (max-width: 989px) {
  .header .header-title.category-title {
    font-size: 16px !important;
  }
}

.projects-template-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 599px) {
  .projects-template-content {
    flex-direction: column;
  }
}
.projects-template-content .categories .categories-title {
  color: #0066FF;
}
.projects-template-content .categories ul li .category-link {
  color: black;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.projects-template-content .categories ul li .category-link:hover {
  color: #0066FF;
}

.projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 150px;
}
@media (max-width: 944px) {
  .projects {
    justify-content: center;
  }
}
.projects a {
  text-decoration: none;
}
.projects .project-card {
  width: 350px;
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  position: relative;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
@media (max-width: 999px) {
  .projects .project-card {
    width: 200px;
    height: 200px;
  }
}
.projects .project-card * {
  color: #ffffff;
}
.projects .project-card .card-title {
  margin: 0;
}
.projects .project-card .card-divider {
  content: "";
  background-color: #ffffff;
  width: 70%;
  height: 3px;
  border-radius: 24px;
}
.projects .project-card:hover .bg {
  background-color: transparent;
}
.projects .project-card .title {
  z-index: 10;
}
.projects .project-card .bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 24px;
  height: 100%;
  background-color: rgba(0, 102, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.carousel-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 699px) {
  .carousel-container {
    margin-bottom: 0px;
  }
}
.carousel-container .carousel {
  width: 1000px;
}
@media (max-width: 909px) {
  .carousel-container .carousel {
    width: 100%;
  }
}
.carousel-container .carousel .image {
  width: 100%;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 50% bottom 50%;
}
@media (max-width: 909px) {
  .carousel-container .carousel .image {
    width: 300px;
  }
}
@media (max-width: 634px) {
  .carousel-container .carousel .image {
    height: 250px;
  }
}
.carousel-container .carousel .slick-prev {
  left: -45px;
}
.carousel-container .carousel .slick-next, .carousel-container .carousel .slick-prev {
  z-index: 2;
}
.carousel-container .carousel .slick-next::before, .carousel-container .carousel .slick-prev::before {
  color: #B1D0FF;
  font-size: 40px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.carousel-container .carousel .slick-next:hover::before, .carousel-container .carousel .slick-prev:hover::before {
  color: #0066FF;
}

.text {
  width: 100%;
  margin-bottom: 150px;
}
.text .top, .text .bottom {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.text .top span, .text .bottom span {
  width: 400px;
  font-size: 20px;
}
@media (max-width: 559px) {
  .text .top span, .text .bottom span {
    width: 100%;
  }
}
.text .bottom {
  margin-top: 24px;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 150px;
}
.custom-form .form-field {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}
.custom-form .form-field:hover {
  border-color: #B1D0FF;
}
.custom-form .form-field:target {
  border-color: #0066FF !important;
}
.custom-form .form-field:focus-visible {
  border-color: #0066FF !important;
  box-shadow: 0px 0px 68px -17px rgba(0, 102, 255, 0.48);
}
.custom-form .name {
  width: 100%;
  display: flex;
  gap: 24px;
}
.custom-form .name .fname, .custom-form .name .lname {
  width: 50%;
}
.custom-form .submit-btn {
  background-color: #0066FF;
  border: none;
  color: white;
  text-transform: uppercase;
  padding: 12px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
}
.custom-form .submit-btn:hover {
  background-color: #0044ab;
}
.custom-form .submit-btn .lni {
  font-size: 24px !important;
}

.contact-container-top {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 1074px) {
  .contact-container-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-container-top .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1074px) {
  .contact-container-top .left {
    width: 100%;
  }
}
.contact-container-top .left .text {
  margin: 0;
}
.contact-container-top .right {
  width: 50%;
  padding-left: 24px;
  position: relative;
}
@media (max-width: 1074px) {
  .contact-container-top .right {
    padding-left: 0px;
    width: 100%;
  }
}
.contact-container-top .right iframe {
  width: 100%;
  height: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  gap: 100px;
}
.contact-details .title {
  text-align: center;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.055em;
}
.contact-details .items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 48px;
}
@media (max-width: 1239px) {
  .contact-details .items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-details .items .item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.contact-details .items .item .text {
  margin: 0;
}
@media (max-width: 1239px) {
  .contact-details .items .item .text h1 {
    font-size: 16px;
    font-weight: 600;
  }
}
.contact-details .items .item img {
  width: 120px;
}
@media (max-width: 1239px) {
  .contact-details .items .item img {
    width: 60px;
  }
}

.post {
  width: 100%;
  height: 100%;
  margin-bottom: 50px;
}
.post .post-thumbnail {
  background-position: 50% 40%;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
}
@media (max-width: 699px) {
  .post .post-thumbnail {
    height: 350px;
  }
}
@media (max-width: 569px) {
  .post .post-thumbnail {
    height: 300px;
  }
}
@media (max-width: 449px) {
  .post .post-thumbnail {
    height: 250px;
  }
}
@media (max-width: 349px) {
  .post .post-thumbnail {
    height: 200px;
  }
}
.post .post-title {
  text-transform: uppercase;
  position: relative;
  transform: translateX(12px);
}
.post .post-title::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: #0066FF;
  border-radius: 8px;
  left: -12px;
}
.content {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .top {
  content: "";
  width: 100%;
  background-color: #0066FF;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #ffffff;
  position: relative;
}
@media (max-width: 785px) {
  .footer .top h1 {
    font-size: 20px !important;
  }
}
@media (max-width: 553px) {
  .footer .top {
    flex-direction: column;
    gap: 8px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 12px 0;
  }
  .footer .top h1 {
    margin: 0;
    text-align: center;
  }
}
.footer .top::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 80px;
  background-color: #0066FF;
  top: 0;
  right: -80px;
}
@media (max-width: 766px) {
  .footer .top::after {
    width: 44px;
    right: -44px;
  }
}
.footer .top::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 80px;
  background-color: #0066FF;
  top: 0;
  left: -80px;
}
@media (max-width: 766px) {
  .footer .top::before {
    width: 44px;
    left: -44px;
  }
}
.footer .top .contact-btn {
  text-decoration: none;
  border: 3px solid transparent;
  padding: 16px;
  background-color: #ffffff;
  color: #0066FF;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer .top .contact-btn:hover {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.footer .middle-mobile {
  display: none;
}
@media (max-width: 629px) {
  .footer .middle-mobile {
    display: flex;
    flex-direction: column;
  }
}
.footer .middle-mobile .faq-footer {
  max-width: 700px;
  margin-top: 2rem;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.footer .middle-mobile .faq-footer.active .answer {
  max-height: 400px;
  border: 3px solid #B1D0FF;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.footer .middle-mobile .faq-footer.active .question {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.footer .middle-mobile .faq-footer.active .question .down {
  transform: rotate(180deg);
}
.footer .middle-mobile .faq-footer .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #B1D0FF;
  padding: 0.5rem 24px;
  border-radius: 8px;
}
.footer .middle-mobile .faq-footer .question .down {
  transition: all 0.2s ease-in-out;
  font-weight: bold;
}
.footer .middle-mobile .faq-footer .answer {
  max-height: 0;
  overflow: hidden;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.footer .middle-mobile .faq-footer .answer .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .middle-mobile .faq-footer .answer .links .menu {
  list-style: none;
  padding: 12px 0px !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .middle-mobile .faq-footer .answer .links a {
  font-size: 18px;
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.footer .middle-mobile .faq-footer .answer .links a .title {
  opacity: 1 !important;
  font-weight: bold;
}
.footer .middle-mobile .faq-footer .answer .links a span {
  opacity: 0.5;
}
.footer .middle-mobile .faq-footer .answer .links a:hover {
  color: #B1D0FF;
  text-decoration: underline;
}
.footer .middle-mobile .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .middle-mobile .logo-container .logo {
  width: 150px !important;
  height: 150px !important;
}
.footer .middle {
  width: 100%;
  display: flex;
}
@media (max-width: 629px) {
  .footer .middle {
    display: none;
  }
}
.footer .middle .item {
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer .middle .item .logo {
  width: 150px;
  height: 150px;
}
.footer .middle .item .link-category {
  text-align: center;
}
.footer .middle .item .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .middle .item .links .menu {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .middle .item .links a {
  font-size: 18px;
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
.footer .middle .item .links a .title {
  opacity: 1 !important;
  font-weight: bold;
}
.footer .middle .item .links a span {
  opacity: 0.5;
}
.footer .middle .item .links a:hover {
  color: #B1D0FF;
  text-decoration: underline;
}
.footer .copyright {
  width: 100%;
  text-align: center;
}
.footer .copyright .copyright-text .copyright-link {
  color: #0066FF;
  transition: all 0.2s ease-in-out;
}
.footer .copyright .copyright-text .copyright-link:hover {
  color: #0066FF;
}/*# sourceMappingURL=style.css.map */