/*
Theme Name: Genesis Block Theme
Theme URI: https://github.com/studiopress/genesis-block-theme/
Author: StudioPress
Author URI: https://www.studiopress.com/
Description: A beautifully-simple yet powerful WordPress theme that integrates perfectly with the block editor and the Genesis Blocks plugin. Start building amazing websites with blocks today! Install the Genesis Blocks plugin to add even more page-building blocks such as testimonials, sharing icons, notices, call to actions, buttons and more.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: genesis-block-theme
Domain Path: /languages/
Tags: one-column, featured-images, theme-options, custom-background, custom-colors, custom-logo, custom-menu, editor-style, translation-ready, footer-widgets, full-width-template, blog, sticky-post, threaded-comments, wide-blocks
Requires at least: 5.0
Requires PHP: 7.1
*/
/* --------------------------------------------------------------
Reset
-------------------------------------------------------------- */
/* stylelint-disable selector-list-comma-newline-after  */
:root {
  --primary: #1053f3;
  --primary-sub-page-header: #6c7cff;
  --heading: #181d36;
  --text: #24252c;
  --text-secondary: #b0b6c2;
  --border: #c0c1cc;
  --line: #1b1532;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
}

p {
  font-size: 16px;
  color: var(--text);
}

.slider-section {
  max-width: 1400px;
  margin: 64px 0;
  margin: auto;
}

.slider-header {
  margin: 46px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.slider-header h4 {
  font-size: 24px;
  font-weight: normal;
  color: var(--text);
}

.slider-header h3 {
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 12px;
}

@media only screen and (max-width: 820px) {
  .slider-header h4 {
    font-size: 18px;
  }

  .slider-header h3 {
    font-size: 32px;
  }
}

.slider-header p {
  text-align: center;
}

.slider {
  padding: 0 56px;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.slider-indicator {
  display: flex;
  position: absolute;
  flex-direction: column;
  top: 228px;
  width: 22px;
}

.slider-indicator.left {
  left: 0;
}

.slider-indicator.right {
  right: 12px;
  align-items: end;
}

.slider-indicator .indicator-item {
  margin: 4px;
  transition: 0.5s ease-in-out;
  width: 14px;
  height: 6px;
  border-radius: 10px;
  background-color: #181d36;
}

.slider .slider-content {
  display: flex;
  flex-direction: column;
  transition: 0.5s ease-in-out;
}

.slider-item {
  display: flex;
  gap: 24px;
  margin: 56px 0;
}

.slider-item .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

@media only screen and (max-width: 820px) {
  .slider-item {
    flex-direction: column;
  }
}

.slider-item h4 {
  font-size: 32px;
  font-weight: normal;
}

.slider-item .image-frame {
  padding: 56px 82px;
  background-color: #f6f6f6;
  border-radius: 16px;
}

.slider-image {
  max-width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.primary-btn {
  padding: 12px 24px;
  text-decoration: 4px;
  background: var(--primary);
  border-radius: 4px;
  width: fit-content;
  color: whitesmoke;
}

.secondary-btn {
  padding: 12px 24px;
  text-decoration: 4px;
  border-radius: 4px;
  border: 1px solid var(--border);
  width: fit-content;
  color: var(--text);
}

.fields-section {
  width: 100%;
  border-color: var(--line);
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
}

.fields-section .section-content {
  max-width: 1400px;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 64px 0;
  padding: 0 16px;
}

.section-content .left-col {
  flex-basis: 240px;
  font-size: 36px;
  margin-top: 24px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .fields-section .section-content {
    flex-direction: column;
  }

  .section-content .left-col {
    flex-basis: auto;
    font-size: 28px;
    padding: 0 24px;
  }
}

.section-content .right-col {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 1080px) {
  .section-content .right-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 720px) {
  .section-content .right-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 600px) {
  .section-content .right-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.field-item {
  margin: 32px 24px;
}

.field-item .title {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: normal;
}

.projects-section {
  width: 100%;
  background-color: #19358f;
  display: flex;
  justify-content: center;
  color: whitesmoke;
  padding: 64px 0;
}

.projects-section h3,
.projects-section h5 {
  color: whitesmoke;
}

.projects-section .section-content {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  width: 100%;
  margin: 52px 0;
  gap: 12px;
  padding: 0 16px;
}

.projects-section h4 {
  font-size: 24px;
  font-weight: normal;
  color: whitesmoke;
}

.product-title {
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 24px;
}

.product-slider .slider-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product {
  min-width: 360px;
  border: 1px solid;
  border-color: var(--border);
  min-height: 600px;
}

.product-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-name {
  font-size: 28px;
  color: whitesmoke;
}

.product-description {
  font-size: 16px;
  color: rgb(186, 186, 186);
  min-height: 72px;
}

.product-category {
  font-size: 20px;
  color: whitesmoke;
  margin-top: 12px;
}

:root {
  --swiper-wrapper-transition-timing-function: linear !important;
}

.container {
  max-width: 1280px;
  padding: 52px 16px;
  margin: auto;
}

.global-partnership-section .header-section {
  max-width: 525px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}

.global-partnership-section .header-section .title {
  font-size: 40px;
}

.global-partnership-section .header-section .description {
  margin-top: 30px;
  font-size: 14px;
  filter: blur(0px);
  color: rgba(20, 35, 87, 0.6);
}

.w-fit {
  width: fit-content;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.relative {
  position: relative;
}

@media only screen and (max-width: 600px) {
  .global-partnership-section .header-section .title {
    font-size: 24px;
  }
}

.jvectormap-container {
  width: inherit;
  height: inherit;
}

.jvectormap-label {
  position: absolute;
  display: none;
  border: solid 1px #cdcdcd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #292929;
  color: white;
  font-size: smaller;
  padding: 3px;
}

.jvectormap-zoomin,
.jvectormap-zoomout {
  position: absolute;
  left: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #292929;
  padding: 3px;
  color: white;
  width: 10px;
  height: 10px;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
}

.jvectormap-zoomin {
  display: none;
}

.jvectormap-zoomout {
  display: none;
}

#map-partner {
  width: 100%;
  height: 100%;
}

.our-partner-item {
  filter: grayscale(1);
}

.our-partner-item:hover {
  filter: grayscale(0);
}

.our-partner-section::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  right: 0px;
  top: 0;
  z-index: 10;
  filter: blur(30px);
  background: linear-gradient(90deg, #f9f9f9 0%, #ffffff 100%);
}

.our-partner-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  left: 0px;
  top: 0;
  z-index: 10;
  filter: blur(30px);
  background: linear-gradient(90deg, #f9f9f9 0%, #ffffff 100%);
}

.our-clients-feedback .feeback-item {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  flex: 1 0 0;
  border-radius: 6px;
  background: #ece7e750;
  height: 500px;
  min-width: 300px;
}
.text-subtle {
  color: #b4b4b4 !important;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(181, 181, 181);
}

.contact-btn {
  display: flex;
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  color: #000000;
  background-color: #ffffff;
  height: 48px;
}
.contact-btn.scroll-down,
.contact-btn.btn-contact-us {
  color: #ffffff;
  background-color: rgb(0, 66, 224);
  transform: translateY(0);
}
/******** header css ********/

.navbar-scroll-down {
  background-color: #ffffff;
  color: #000000 !important;
}

.navbar-scroll-down .navbar-item {
  color: #000000 !important;
}

.navbar-item.navbar-item-contact-us {
  color: #19368f !important;
}

#header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  transition: transform 0.5s ease-in-out;
}
#header .header-navbar {
  display: none;
  padding: 0 3rem;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

#header .header-navbar .header-navbar-wrapper {
  display: flex;
  flex: 1 1 0%;
  align-items: center;
}
#header .header-navbar .header-navbar-wrapper > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  height: 100px;
}
#header .header-navbar .header-navbar-wrapper > ul > li {
  height: 100%;
  margin-left: 1.5rem;
  color: white;
}
#header .header-navbar .header-navbar-wrapper > ul > li:first-child {
  margin-left: 0;
}
#header .header-navbar .header-navbar-wrapper > ul .navbar-item {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 100%;
}
/* navbar mobile css */
.navbar-mobile {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 0 1rem;
  color: white;
}

.navbar-mobile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}

.menu-mobile {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  width: 100%;
  background: #ffffff;
  overflow: auto;
  color: #000000;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.menu-mobile .navbar-mobile-wrapper {
  padding: 0;
}

.navbar-mobile .navbar-mobile-wrapper .menu-btn {
  padding: 0.5rem;
}
.navbar-mobile .mobile-items-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.navbar-mobile .mobile-items-wrapper ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 32px;
  line-height: 130%;
  font-weight: 500;
}

/* responsive */
@media (min-width: 640px) {
  /* sm */
}
@media (min-width: 768px) {
  /* md */
}
@media (min-width: 1024px) {
  /* lg */
  #header .header-navbar {
    display: flex;
  }
  .navbar-mobile {
    display: none;
  }
}
@media (min-width: 1280px) {
  /* xl */
  #header .header-navbar .header-navbar-wrapper > ul > li {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1536px) {
  /* 2xl */
}

/******** header css ********/

/******** banner css ********/
#banner {
  background-image: url(https://slidechef.net/wp-content/uploads/2023/11/TECHNOLOGY-BACKGROUND.jpg);
  background-size: cover;
  background-position: center;
  margin-top: -100px;
}
#banner .banner-wrapper {
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 90vh;
  max-width: 1400px;
  margin: 100px auto 0;
  position: relative;
  z-index: 20;
}
#banner .banner-wrapper .banner-title {
  font-size: 32px;
  line-height: 130%;
  max-width: 900px;
  color: #ffffff;
}
#banner .banner-wrapper .banner-description {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 800px;
  color: var(--text-secondary);
}
/* responsive */
@media (min-width: 640px) {
  /* sm */
  #banner .banner-wrapper {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  /* md */
}
@media (min-width: 1024px) {
  /* lg */
  #banner {
    margin-top: 0;
  }
  #banner .banner-wrapper {
    padding: 0 3rem;
  }

  #banner .banner-wrapper .banner-title {
    font-size: 62px;
    line-height: 84px;
  }
  #banner .banner-wrapper .banner-description {
    font-size: 1.25rem;
    line-height: 150%;
  }
}
@media (min-width: 1280px) {
  /* xl */
}
@media (min-width: 1536px) {
  /* 2xl */
}
/******** banner css ********/

/******** footer css ********/
#footer {
  background-image: url(https://www.var-meta.com/images/footer/bg-footer.png);
  background-size: cover;
  position: relative;
  width: 100%;
}
#footer .footer-wrapper {
  display: flex;
  padding: 4rem 1rem;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
#footer .footer-wrapper .company-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .footer-wrapper .company-info .info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 438px;
}
#footer .footer-wrapper .company-info .info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: flex-start;
  align-items: stretch;
}
#footer .footer-wrapper .company-info .info .info-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #ffffff;
}
#footer .footer-wrapper .company-info .info .info-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-secondary);
  max-width: 400px;
}

#footer .footer-wrapper .footer-navbar-wapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  column-gap: 2.5rem;
  row-gap: 3rem;
  width: 100%;
  max-width: 750px;
  order: -1;
}
#footer .footer-wrapper .footer-navbar-wapper .navbar {
  display: flex;
  flex: 1 1 0%;
  column-gap: 2.5rem;
  row-gap: 3rem;
  width: 100%;
}
#footer .footer-wrapper .footer-navbar-wapper .navbar-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
#footer .footer-wrapper .footer-navbar-wapper .navbar-col .navbar-title {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #ffffff;
}
#footer .footer-wrapper .footer-navbar-wapper .navbar-col .navbar-link {
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}
#footer .footer-wrapper .footer-navbar-wapper .navbar-col .navbar-link:hover {
  color: #ffffff;
}
#footer .footer-wrapper .footer-navbar-wapper .navbar.right {
  text-align: left;
}
/* responsive */
@media (min-width: 640px) {
  /* sm */
}
@media (min-width: 768px) {
  /* md */
}
@media (min-width: 1024px) {
  /* lg */
  #footer .footer-wrapper {
    padding: 4rem 3rem;
  }
  #footer .footer-wrapper .company-info .info .info-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  #footer .footer-wrapper .company-info .info .info-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #footer .footer-wrapper .footer-navbar-wapper {
    flex-direction: row;
    order: 0;
  }
  #footer .footer-wrapper .footer-navbar-wapper .navbar.left {
    max-width: 600px;
  }
  #footer
    .footer-wrapper
    .footer-navbar-wapper
    .navbar.left
    .navbar-col:first-child {
    max-width: 105px;
  }

  #footer .footer-wrapper .footer-navbar-wapper .navbar-col .navbar-title {
    font-size: 1.125rem;
    line-height: 150%;
  }
  #footer .footer-wrapper .footer-navbar-wapper .navbar-col .navbar-link {
    font-size: 1.125rem;
    line-height: 150%;
  }
}
@media (min-width: 1280px) {
  /* xl */
  #footer .footer-wrapper .company-info {
    flex-direction: row;
  }
}
@media (min-width: 1536px) {
  /* 2xl */
}
/******** footer css ********/

/******** contact css ********/

.calendly-inline-widget {
  height: 900px;
}

.submit-btn {
  background-color: blue;
  display: flex;
  gap: 0.5rem;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.submit-btn.disabled {
  background-color: #6c7cff;
  pointer-events: none;
}
.error-message {
  padding-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #ef4444;
}
input.error {
  background-color: #ffa6a6 !important;
  color: #d33c3c !important;
}
input.error::placeholder {
  color: #ef4444 !important;
}
.contact-wrapper {
  display: flex;
  border-top-width: 1px;
  margin: 200px auto 0;
  width: 100%;
  max-width: 1400px;
  flex-direction: column-reverse;
}
.contact-wrapper .left-section {
  margin-left: 1rem;
  margin-right: 1rem;
}
.contact-wrapper .right-section {
  width: 100%;
  padding: 2rem 0;
}
.contact-wrapper .right-section .contact-form-wrapper {
  padding: 0 1rem;
  flex: 1 1 0%;
  width: 100%;
}
#contact-form .form-group {
  display: flex;
  padding-bottom: 1.5rem;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: stretch;
  width: 100%;
}

#contact-form .form-group span {
  position: relative;
  width: 100%;
  color: #5477a8;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  max-width: 192px;
}
#contact-form .form-group input,
#contact-form .form-group textarea {
  width: 100%;
  display: flex;
  padding: 0.75rem;
  background-color: #e5f2ff;
  color: #465f83;
  border-radius: 4px;
}
#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
  outline: none;
}

#contact-form .form-group textarea::placeholder,
#contact-form .form-group input::placeholder {
  color: #5c80b3;
}

.contact-wrapper .contact-title {
  font-size: 32px;
  line-height: 130%;
  font-weight: 500;
  padding-bottom: 1.5rem;
  color: #121775;
  text-transform: capitalize;
}

.contact-wrapper .subtitle {
  color: gray;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* responsive */
@media (min-width: 640px) {
  /* sm */
  #contact-form .form-group {
    flex-direction: row;
    align-items: start;
  }
}
@media (min-width: 768px) {
  /* md */
}
@media (min-width: 1024px) {
  /* lg */
  .contact-wrapper {
    margin: 100px auto 0;
  }
  .contact-wrapper .right-section {
    padding: 70px 0;
  }
  .contact-wrapper .right-section .contact-form-wrapper {
    padding: 0 1.5rem;
  }
  .contact-wrapper .contact-title {
    font-size: 3rem;
    line-height: 120%;
  }
  .contact-wrapper .subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #contact-form .form-group span {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 1280px) {
  /* xl */
  .calendly-inline-widget {
    height: 100%;
  }
  .contact-wrapper {
    flex-direction: row;
  }
  .contact-wrapper .left-section {
    margin-left: 0;
    margin-right: 1.25rem;
    border-right-width: 1px;
    border-left-width: 0;
    padding-top: 70px;
    padding-left: 1.5rem;
    width: 100%;
    max-width: 430px;
  }
  .contact-wrapper .right-section {
    padding: 70px 0 160px;
  }
}
@media (min-width: 1536px) {
  /* 2xl */
}

/******** contact css ********/

/* Posts */
.post-content {
  max-width: 1400px;
  margin: auto;
  padding: 24px 3rem;
}

.post-content .entry-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
}

.wp-block-heading {
  font-size: 28px;
  margin-top: 32px;
}

.post-content .entry-byline {
  display: none;
}

.post-content #comments {
  display: none;
}

.post-content .meta-list {
  display: none;
}

.post-content .post-navigation {
  display: none;
}

.post-content p,
.post-content li {
  margin: 12px 0;
}

.post-content img {
  margin: auto;
  margin-top: 46px;
  margin-bottom: 46px;
  border-radius: 16px;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #fff;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(20px);
  z-index: 9999;
  border-left: 4px solid;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast.success {
  border-color: #4caf50;
  background: #aaffad;
}
.toast.success .message {
  color: #4caf50;
}
.toast.success .toast-icon {
  color: #4caf50;
}
.toast.error {
  border-color: #f44336;
  background: #ffc3bf;
}
.toast.error .message {
  color: #f44336;
}
.toast.error .toast-icon {
  color: #f44336;
}

/******** swiper css ********/
.swiper-pagination {
  position: unset;
}
.swiper-button-disabled {
  pointer-events: unset !important;
}
/******** swiper css ********/

.description {
  color: var(--text-secondary);
}

/******** chatbot css ********/

#chatbot-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 10px;
  background-color: #96a8ff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

#chatbot-window {
  opacity: 1;
  position: fixed;
  bottom: 40px;
  right: 120px;
  width: 600px;
  height: 800px;
  border-radius: 16px;
  padding: 10px;
  background-color: #ffffff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: opacity 0.2s ease-in-out;
}

#chatbot-window.hidden {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 1600px) {
  #chatbot-window {
    height: 600px;
    width: 500px;
  }
}

@media only screen and (max-width: 600px) {
  #chatbot-button {
    bottom: 24px;
    right: 24px;
  }

  #chatbot-window {
    height: 600px;
    left: 24px;
    width: calc(100% - 48px);
    bottom: 100px;
  }
}
