 
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700&display=swap");
body {
  font-family: "Raleway";
  font-weight: 400;
  color: #6D7279;
  font-size: 16px;
  line-height: 1.75;
  font-style: normal;
  overflow-x: hidden;
}
body.v-card {
  height: 100vh;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #17161A;
  font-weight: 500;
}

h1 {
  font-weight: 600;
}

h2 {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h5 {
  font-size: 18px;
}

a {
  text-decoration: unset;
  color: #ffea13;
}

.btn {
  padding: 8px 22px;
  border-radius: 5px;
  color: white;
  display: inline-block;
}
.btn.btn-black {
  background-color: #17161A;
  border: 1px solid #17161A;
}
.btn.btn-black:hover {
  background-color: white;
  color: #17161A;
}
.btn.btn-blue {
  background-color: #ffea13;
  color:#000;
  font-weight: bold;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn.btn-blue:hover {
  color: white;
  scale: 1.05;
}
.btn img {
  margin-left: 5px;
}

.pt-10 {
  padding-top: 5rem;
}

@media (min-width: 992px) {
  .main-page {
    padding-left: 300px;
    padding-top: 0;
  }
}
.main-page-inner {
  width: 100%;
  min-height: 100vh;
  clear: both;
  float: left;
  position: relative;
}
.main-page section {
  margin: 0;
}

@media (min-width: 992px) {
  .middle-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
}

.vsection {
  padding-top: 68px;
  padding-bottom: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}
.vsection.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
@media (min-width: 992px) {
  .vsection .container {
    max-width: 1000px;
    padding: 0 50px;
  }
}
.vsection footer {
  position: absolute;
}

.embed-responsive-item {
  aspect-ratio: 16/9;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
/*=============================
02. Header
=============================*/
header {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
}
header .navbar {
  padding: 8px 0;
  background-color: white;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (min-width: 992px) {
  header .navbar {
    padding: 20px 0;
    background-color: transparent;
  }
}
@media (min-width: 992px) {
  header .navbar .container-fluid {
    padding: 0 50px;
  }
}
header .navbar .navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: #17161A;
  z-index: 1;
}
header .navbar .navbar-nav {
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: white;
  justify-content: center;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media (min-width: 992px) {
  header .navbar .navbar-nav {
    position: relative;
    flex-direction: row;
    gap: 40px;
    height: auto;
    width: auto;
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  header .navbar .navbar-nav {
    gap: 55px;
  }
}
header .navbar .navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #17161A;
  padding: 5px 0;
}
header .navbar .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0.05rem;
  background-color: #17161A;
  bottom: 0px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header .navbar .navbar-nav .nav-link.active:before, header .navbar .navbar-nav .nav-link:hover:before {
  width: 100%;
}
header .navbar .navbar-nav .nav-item {
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (min-width: 992px) {
  header .navbar .navbar-nav .nav-item {
    opacity: 1;
  }
}
header .navbar .navbar-nav.show {
  height: 100vh;
}
header .navbar .navbar-nav.show .nav-item {
  -webkit-transition: all 0.35s ease 0.5s;
  -moz-transition: all 0.35s ease 0.5s;
  -ms-transition: all 0.35s ease 0.5s;
  -o-transition: all 0.35s ease 0.5s;
  transition: all 0.35s ease 0.5s;
  opacity: 1;
}
header .navbar .burger-icon {
  z-index: 1;
  cursor: pointer;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header .navbar .burger-icon span {
  display: block;
  width: 6px;
  height: 0.15rem;
  background-color: #143240;
  margin-left: 0;
  border-radius: 2px;
  transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom, 0.3s ease background-color;
}
header .navbar .burger-icon span:first-child {
  width: 22px;
}
header .navbar .burger-icon span:nth-child(2) {
  width: 15px;
}
header .navbar .burger-icon span:last-child {
  width: 30px;
  margin-bottom: 0;
}
header .navbar .burger-icon.show {
  transform: rotateZ(-90deg);
}
header .navbar .burger-icon.show span {
  width: 5px;
  height: 5px;
  margin-left: 12px;
  border-radius: 4px;
}
header .navbar.on-scroll {
  background-color: white;
  padding: 10px 0;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}

/*=============================
03. Sidebar
=============================*/
.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0px;
  height: 100vh;
  padding: 30px 0;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  background-color: white;
  z-index: 10;
  border-right: 1px solid #F8F8F8;
  overflow: hidden;
}
@media (min-width: 992px) {
  .sidebar {
    width: 300px;
  }
}
.sidebar .author .image {
  margin: 0 auto 20px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.sidebar .author .name h3 {
  font-weight: 600;
  font-size: 22px;
}
.sidebar .menu .anchor-nav {
  height: 100%;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.sidebar .menu .anchor-nav li a {
  color: #6D7279;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.sidebar .menu .anchor-nav li a.active, .sidebar .menu .anchor-nav li a:hover {
  color: #17161A;
  font-weight: 500;
}
.sidebar .copyright {
  width: 100%;
  color: #1A191D;
}
.sidebar .copyright .social-media a {
  color: #17161A;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.sidebar .copyright .social-media a:hover {
  color: #ffea13;
}

/*=============================
04. Hero Banner
=============================*/
.banner {
  background-color: #F8F8F8;
}
@media (min-width: 992px) {
  .banner {
    height: 100vh;
  }
}
.banner .banner-overlay {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .banner .banner-overlay {
    padding-top: 0rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.banner .banner-overlay span {
  color: #17161A;
  display: block;
}
.banner .banner-overlay .greeting {
  font-size: 20px;
  font-weight: 500;
}
.banner .banner-overlay .job,
.banner .banner-overlay .position {
  font-weight: 400;
}
.banner .banner-overlay .job {
  font-size: 18px;
  margin-bottom: 10px;
}
.banner .banner-overlay .position {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.banner .banner-overlay .position:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  background: url("../img/icon/arrow.png");
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.banner .banner-overlay h1 {
  font-size: 60px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .banner .banner-overlay h1 {
    font-size: 76px;
  }
}
@media (max-width: 768px) {
  .banner .banner-overlay h1 {
    font-size: 50px;
  }
}
.banner .banner-overlay .resume {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 992px) {
  .banner .banner-overlay .resume {
    margin-top: 30px;
  }
}
.banner .banner-overlay .resume .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #17161A;
  border-radius: 50%;
  padding-left: 5px;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.banner .banner-overlay .resume:hover .icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.banner figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
.banner figure img {
  display: block;
  width: 85%;
  margin: auto;
  padding-top: 2rem;
}
@media (min-width: 992px) {
  .banner figure img {
    position: absolute;
    padding-top: 0rem;
    width: 100%;
  }
  .banner figure img.middle-img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .banner figure img.bottom-img {
    bottom: 0;
  }
}

/*=============================
05. About
=============================*/
.about {
  margin: 2.5rem 0;
}
@media (min-width: 992px) {
  .about {
    margin: 5rem 0;
  }
}
.about h2 {
  margin-bottom: 2rem;
  font-weight: 700;
}
.about .sub-title {
  display: inline-block;
  position: relative;
}
.about .sub-title:before {
  content: "";
  position: absolute;
  background-color: #ffea13;
  width: 50px;
  height: 3px;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about .about-overlay {
  position: relative;
  width: 100%;
}
.about .about-overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
 
  opacity: 50%;
}
.about .about-overlay .play-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background-color: white;
  animation: pulse-animation 2s infinite;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.about .about-overlay .play-btn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.about .about-overlay .about-img {
  width: 100%;
  aspect-ratio: 6/4;
  object-fit: cover;
}
.about .about-counter {
  width: 100%;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #6D7279;
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.about .about-counter:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.about .about-counter span {
  font-family: Arial;
  display: block;
}
.about .about-counter span:first-child {
  font-size: 26px;
  font-weight: 700;
}
.about .about-counter span:last-child {
  font-size: 14px;
  text-transform: uppercase;
}

/*=============================
06. Services
=============================*/
.services {
  margin: 2.5rem 0;
}
@media (min-width: 992px) {
  .services {
    margin: 5rem 0;
  }
}
.services h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.services .sub-title {
  display: inline-block;
  position: relative;
}
.services .sub-title:before {
  content: "";
  position: absolute;
  background-color: #ffea13;
  width: 50px;
  height: 3px;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.services .services-list {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 2rem;
}
@media (min-width: 992px) {
  .services .services-list {
    --bs-gutter-y: 7rem;
    --bs-gutter-x: 7rem;
  }
}
.services .services-item h5 {
  margin-bottom: 10px;
}
.services .services-item span {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.services .services-item span:before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background-color: #ffea13;
}

/*=============================
07. Portfolio
=============================*/
.portfolio {
  margin: 2.5rem 0;
}
@media (min-width: 992px) {
  .portfolio {
    margin: 5rem 0;
  }
}
.portfolio h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.portfolio .sub-title {
  display: inline-block;
  position: relative;
}
.portfolio .sub-title:before {
  content: "";
  position: absolute;
  background-color: #ffea13;
  width: 50px;
  height: 3px;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.portfolio .portfolio-list {
  --bs-gutter-y:1.5rem;
  --bs-gutter-x:1.5rem;
}
.portfolio .portfolio-item {
  display: block;
  position: relative;
  height: 100%;
}
.portfolio .portfolio-item__content {
  opacity: 0;
  padding: 25px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.portfolio .portfolio-item__content__overlay {
  position: relative;
  height: 100%;
}
.portfolio .portfolio-item__content h5 {
  color: white;
}
.portfolio .portfolio-item__content span {
  padding-right: 40px;
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: white;
  display: inline-block;
}
.portfolio .portfolio-item__content span:before {
  position: absolute;
  display: block;
  content: "";
  background-image: url("../img/icon/portfolio-arrow.svg");
  background-repeat: no-repeat;
  width: 25px;
  height: 15px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.portfolio .portfolio-item:hover .portfolio-item__content {
  opacity: 1;
}

/*=============================
08. Blog
=============================*/
.blog {
  margin: 2.5rem 0;
}
@media (min-width: 992px) {
  .blog {
    margin: 5rem 0;
  }
}
.blog h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.blog .sub-title {
  display: inline-block;
  position: relative;
}
.blog .sub-title:before {
  content: "";
  position: absolute;
  background-color: #ffea13;
  width: 50px;
  height: 3px;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-item {
  position: relative;
  display: block;
}
.blog-item .tag {
  font-size: 14px;
  color: white;
  background-color: #1A191D;
  border-radius: 100px;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 2px 15px;
  z-index: 1;
}
.blog-item figure {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 5px;
  margin: 0;
}
.blog-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog-item .blog-title {
  margin-top: 5px;
}
.blog-item .blog-title .release-date {
  color: #6D7279;
  font-size: 13px;
}
.blog-item .blog-title h3 {
  font-size: 16px;
}
.blog-item:hover figure img {
  scale: 1.1;
}

#modalBlog .modal-content .btn-close {
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -13px;
  right: -13px;
  border-radius: 100%;
  background-color: white;
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#modalBlog .modal-content .btn-close:hover {
  scale: 1.1;
}
#modalBlog .modal-body {
  padding: 40px 20px 40px 40px;
  max-height: 90vh;
}
#modalBlog .modal-body .scroll {
  padding-right: 20px;
  overflow-y: auto;
  height: calc(90vh - 80px);
}
#modalBlog .main-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 5px;
  margin: 0;
}
#modalBlog .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#modalBlog .blog-body {
  margin-top: 5px;
}
#modalBlog .blog-body .blog-info {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}
#modalBlog .blog-body h2 {
  font-size: 22px;
}
#modalBlog .blog-body .blog-content {
  margin-top: 20px;
}
#modalBlog .blog-body .blog-content h4 {
  font-size: 16px;
}

/*=============================
09. Testimonial
=============================*/
.testimonial {
  margin: 2.5rem 0;
}
@media (min-width: 992px) {
  .testimonial {
    margin: 5rem 0;
  }
}
.testimonial h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.testimonial .sub-title {
  display: inline-block;
  position: relative;
}
.testimonial .sub-title:before {
  content: "";
  position: absolute;
  background-color: #ffea13;
  width: 50px;
  height: 3px;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.testimonial-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 35px 40px;
}
.testimonial-item .testimonial-item__profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.testimonial-item .testimonial-item__profile span {
  display: block;
  line-height: 1.5;
}
.testimonial-item .testimonial-item__profile span:first-child {
  color: #070337;
  font-weight: 700;
}
.testimonial-item .testimonial-item__profile figure {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
.testimonial-item .testimonial-item__profile figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.testimonial .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #17161A;
}

/*=============================
10. Contact
=============================*/
.contact {
  padding: 5rem 0;
  background-color: #1A191D;
}
.contact .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
}
.contact .sub-title {
  color: white;
}
.contact p {
  color: white;
  margin: 0;
}

/*=============================
11. Footer
=============================*/
footer {
  background-color: #17161A;
}
footer .footer {
  padding: 5rem 0;
}
footer .footer h2 {
  color: white;
  font-weight: 800;
}
footer .footer .social-media {
  display: flex;
  gap: 1rem;
  font-weight: 500;
  color: white;
}
footer .footer .social-media a {
  color: white;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
footer .footer .social-media a:hover {
  color: #ffea13;
}
footer .footer .sub-title {
  color: #6D7279;
  margin-bottom: 20px;
}
footer .footer .footer-menu {
  list-style-type: none;
  padding: 0;
}
footer .footer .footer-menu li {
  margin-bottom: 15px;
}
footer .footer .footer-menu li a {
  color: white;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
footer .footer .footer-menu li a:hover {
  color: #ffea13;
}
footer .footer p {
  color: white;
  margin: 0;
}
footer .footer .contact-info {
  color: #ffea13;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
footer .footer .contact-info:hover {
  color: #6D7279;
}
footer .footer input {
  width: 100%;
  font-size: 14px;
  border-radius: 3px;
  color: white;
  padding: 5px 15px;
  height: 45px;
  border: transparent;
  background-color: #1A191D;
}
footer .footer input:focus-visible {
  outline: 1px solid white;
}
footer .copyright {
  border-top: 1px solid #6D7279;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 13px;
}

/*# sourceMappingURL=style.css.map */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.phone-ul a {
  color: inherit;
  text-decoration: none;
  font-weight: bolder;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 850px;
}

/* Modal Styles */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

#contactModal button {
  background-color: #ffea13;
  color: #000;
  font-weight: bold;
  padding: 10px 35px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/* Input Styles */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  color: #333;
  font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #ffea13;
  outline: none;
  background-color: #fff;
}

textarea {
  resize: vertical;
}

.success-message {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #d6e9c6;
  border-radius: 4px;
  position: sticky;
  top: 0;
  z-index: 1000;
}