/* Template Name: Hiric
   Author: Themesbrand
   Version: 2.2.0
   File Description: Main Css file of the template
*/
/****************************************\

01.general
02.helper
03.components
04.menu
05.home
06.features
07.services
08.cta
90.pricing
10.team
11.testimonial
12.blog
13.contact
14.footer
15.authentication
16.switcher
17.responsive

*****************************************/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&family=Sarabun:wght@400;500;600;700&display=swap");
:root {
  --primary-color: #1bbc9d;  // Change to your chosen color
  --secondary-color: #ee6352;
  --background-color: #ffffff;
  --text-color: #333333;
}
button {
  color: white;
}
[data-bs-theme=dark] {
  --bs-gray-100: #141c26;
  --bs-gray-200: #151f2b;
  --bs-gray-300: #1a2532;
  --bs-gray-400: #ecf0ff;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #98a0aa;
  --bs-gray-700: #ced4da;
  --bs-gray-800: #eff2f7;
  --bs-gray-900: #f3f6f9;
  --bs-body-bg: #141c26;
  --bs-body-color: #f3f6f9;
  --bs-border-box-color: #141c26;
  --bs-header-bg: #141c26;
  --bs-header-text-color: #f3f6f9 !important;
  --bs-light-rgb: #151f2b;
  --bs-box-bg: #1a2532;
  --bs-text-color: #f3f6f9;
  --bs-white-rgb: 26, 37, 50;
  --bs-footer-bg: #151f2b;
  --bs-footer-alt-bg: #141c26;
  --bs-border-color: #1a2532;
  --bs-form-bg: #151f2b;
  --bs-dark-rgb: 236, 240, 255;
  --bs-secondary-color: #98a0aa;
  --bs-text-white-rgb: 243, 246, 249;
  --bs-form-text-color: #f3f6f9;
  --bs-icon-bg: #141c26;
}

body {
  font-family: "Rubik", sans-serif;
  overflow-x: hidden !important;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sarabun", sans-serif;
  font-weight: 600;
}

.btn,
.btn:focus,
button,
button:focus {
  outline: none !important;
}

a {
  color: #0f6771;
}

a:visited {
  color: #0f6771;
}

a:hover {
  color: color: #0f6771; /* You can choose a different shade of purple for the hover effect */
}

a:active {
  color: color: #0f6771; /* You can choose a different shade of purple for the active effect */
}

p {
  font-size: 14.4px;
  line-height: 24px;
}

.row > * {
  position: relative;
}

.section {
  padding-top: 0px;
  padding-bottom: 80px;
  position: relative;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 100px 0;
}

.vertical-content {
  display: -moz-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
}

.bg-overlay {
  background: linear-gradient(to right, #c05803, rgb(240, 109, 2));
  opacity: 0.95;
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}

.btn-rounded {
  border-radius: 30px;
}

.box-shadow {
  box-shadow: 0px 3px 6px 1px rgba(38, 107, 193, 0.08);
}

hr {
  border-top: 1px solid #e7ebf3;
}

::-moz-selection {
  background-color: #272a33;
  color: #ffffff;
}

::selection {
  background-color: #272a33;
  color: #ffffff;
}

.h1,
h1 {
  font-size: 36px;
}

.h2,
h2 {
  font-size: 30px;
}

.h3,
h3 {
  font-size: 24px;
}

.h4,
h4 {
  font-size: 18px;
}

.h5,
h5 {
  font-size: 14px;
}

.h6,
h6 {
  font-size: 12px;
}

b {
  font-weight: 500;
}

.f-10 {
  font-size: 10px;
}

.f-12 {
  font-size: 12px;
}

.f-13 {
  font-size: 13px;
}

.f-14 {
  font-size: 14px;
}

.f-15 {
  font-size: 15px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
}

.f-19 {
  font-size: 19px;
}

.f-20 {
  font-size: 20px;
}

.line-height_1_4 {
  line-height: 1.4;
}

.line-height_1_6 {
  line-height: 1.6;
}

.line-height_1_8 {
  line-height: 1.8;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0px;
  padding-bottom: 1rem;
  line-height: 1;
  font-size: 1.75rem;
  font-weight: 700;
}

.section-title-border {
  width: 50px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: #4341cc;
}

.section-subtitle {
  letter-spacing: 0.02em;
}

.svg-pattern {
  width: 100%;
  position: relative;
}

iframe {
  max-width: 100%;
}

.hover-effect {
  transition: all 0.3s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-1rem);
}

.text-white {
  color: #ffffff !important;
}


.bg-light {
  background-color: #fafbfe !important;
}

[data-bs-theme=dark] .bg-light {
  background-color: var(--bs-light-rgb) !important;
}

.btn {
  padding: 10px 22px;
  font-size: 14px;
  transition: all 0.5s;
}
.btn:focus {
  box-shadow: none;
}
.btn:hover {
  transform: translateY(-5px);
}

.btn-sm {
  padding: 8px 12px;
  font-size: 12px;
}

.shadow {
  box-shadow: 0px 3px 6px 1px rgba(38, 107, 193, 0.08) !important;
}

.bg-soft-primary {
  background-color: rgba(67, 65, 204, 0.1) !important;
}



.bg-soft-dark {
  background-color: rgba(39, 42, 51, 0.1) !important;
}

.border-dark {
  color: #272a33 !important;
}

.icon-dual-dark {
  color: #272a33;
  fill: rgba(39, 42, 51, 0.2);
}

.btn-soft-dark {
  background-color: rgba(39, 42, 51, 0.25) !important;
  color: #272a33 !important;
}
.btn-soft-dark:hover, .btn-soft-dark:focus, .btn-soft-dark:active, .btn-soft-dark.active, .btn-soft-dark.focus, .btn-soft-dark:not(:disabled):not(.disabled):active, .btn-soft-dark:not(:disabled):not(.disabled):active:focus,
.btn-soft-dark .open > .dropdown-toggle.btn-primary {
  background: #1e2027;
}

.btn-dark {
  background: #272a33;
  border-color: #272a33 !important;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active, .btn-dark.focus, .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark .open > .dropdown-toggle.btn-primary {
  background: #1e2027;
  border-color: #1e2027;
}

.btn-outline-dark {
  color: #272a33;
  border-color: #272a33;
}
.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.focus, .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark .open > .dropdown-toggle.btn-primary {
  background: #272a33;
  border-color: #272a33;
}

[data-bs-theme=dark] .btn-white:hover, [data-bs-theme=dark] .btn-white.active {
  color: #272a33;
}

.navbar-custom {
  padding: 20px 0px;
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  margin-bottom: 0px;
  transition: all 0.5s ease-in-out;
}
.navbar-custom .navbar-nav {
  margin-left: 50px;
}
.navbar-custom .navbar-nav li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  text-transform: capitalize;
  transition: all 0.5s;
  background-color: transparent !important;
  padding: 15px 0;
  margin: 0 10px;
}
.navbar-custom .navbar-nav li.active a {
  color: #ffffff;
}
.navbar-custom .logo {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  height: auto;
  font-family: "Sarabun", sans-serif;
}

.sticky-wrapper {
  position: absolute;
  width: 100%;
}

.navbar-toggler {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #272a33;
}

.navbar-custom .navbar-nav li a.active,
.navbar-custom .navbar-nav li a:hover,
.navbar-custom .navbar-nav li a:active {
  color: #ffffff;
}

.navbar-toggle {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #ffffff;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: transparent;
  border-color: #337ab7;
}

.navbar-custom .navbar-toggles {
  padding: 0.25rem 0.75rem;
  font-size: 18px;
  background: 0 0;
  border: 1px solid transparent;
  color: #ffffff;
  outline: 0;
}
.navbar-custom .navbar-toggles-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}

.menu-toggle {
  padding: 4.5px 10px !important;
}

.menu-toggle span {
  line-height: 27px;
}

.navbar-button {
  margin-left: 20px;
}

/*---Navbar-White--*/
.navbar-custom.navbar-white {
  background-color: var(--bs-header-bg) !important;
  padding: 10px 0;
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
}

.navbar-custom.navbar-white .navbar-nav li a,
.navbar-custom.navbar-white .navbar-brand,
.navbar-white .navbar-toggle {
  color: var(--bs-header-text-color) !important;
}

/*---NAVBAR LIGHT--*/
.navbar-light .navbar-nav li a {
  color: rgba(255, 255, 255, 0.5) !important;
}
.navbar-light .navbar-nav li.active a,
.navbar-light .navbar-nav li:hover,
.navbar-light .navbar-nav li:active {
  color: #ffffff !important;
}
.navbar-light .navbar-toggler {
  border: none;
}

/*---NAVBAR STICKY--*/
.nav-sticky.navbar-custom {
  margin-top: 0px;
  padding: 10px 0px;
  box-shadow: 0px 3px 10px 0px rgba(38, 107, 193, 0.08);
}
.nav-sticky.navbar-custom.sticky-dark {
  background-color: #272a33;
}
.nav-sticky .navbar-nav li.active a {
  color: #ffffff !important;
}

.nav-sticky.navbar-custom .navbar-nav li a.active,
.nav-sticky.navbar-custom .navbar-nav li a:hover,
.nav-sticky.navbar-custom .navbar-nav li a:active {
  color: #ffffff;
}

.nav-sticky.navbar-custom .navbar-toggles {
  padding: 0.25rem 0.75rem;
  border: 1px solid transparent;
  outline: 0;
}

.nav-sticky .navbar-nav {
  margin-top: 0px;
}

.nav-sticky .navbar-custom {
  margin-top: 0px;
  padding: 10px 0px;
  background-color: #272a33;
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
}

[data-bs-theme=dark] .nav-sticky.navbar-custom.sticky-dark {
  background-color: #141c26;
}

.bg-home {
  background: url("../images/bg-home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-title {
  font-size: 46px;
  line-height: 64px;
  color: white;
}

.home-small-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}

.play-btn {
  border: 2px solid;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: block;
  font-size: 30px;
  margin-right: auto;
  margin-left: auto;
  line-height: 56px;
  margin-top: 10px;
  text-align: center;
}

.play-shadow {
  border-radius: 50%;
  border: 1px solid transparent;
  width: 82px;
  height: 82px;
  margin: 20px auto 0px auto;
}

.home-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ------------- Demo 1 bg-pattern ------------- */
.home-half {
  padding-bottom: 150px;
  padding-top: 220px;
}

.bg-pattern-effect {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.bg-pattern-effect img {
  max-width: 100%;
}

/* Ensure the image scales with the parent container */
.responsive-img {
  max-width: 80%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ------- Demo 2 wave animation --------- */
.wave-effect {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 150px;
  overflow: hidden;
}

.shape-one {
  z-index: 15;
  opacity: 0.5;
}

.shape-two {
  z-index: 10;
  opacity: 0.75;
}

.shape-three {
  z-index: 5;
}

.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}

.waves-shape {
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wave-one {
  background-size: 50% 100px;
  bottom: -40px;
}

.wave-anim .wave-one {
  animation: move-wave 3s;
  -webkit-animation: move-wave 3s;
  animation-delay: 1s;
}

.wave-two {
  background-image: url("../images/wave-shape/wave2.png");
  background-size: 50% 120px;
}

.wave-anim .wave-two {
  animation: move_wave 10s linear infinite;
}

.wave-three {
  background-image: url("../images/wave-shape/wave3.png");
  background-size: 50% 100px;
}

.wave-anim .wave-three {
  animation: move_wave 15s linear infinite;
}

@keyframes move_wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
[data-bs-theme=dark] .shape-one {
  opacity: 0.5;
  z-index: 5;
}
[data-bs-theme=dark] .shape-two {
  opacity: 0.6;
  z-index: 10;
}
[data-bs-theme=dark] .shape-three {
  opacity: 1;
  z-index: 15;
}
[data-bs-theme=dark] .wave-one path {
  fill: #18222e;
  stroke: #18222e;
}
[data-bs-theme=dark] .wave-two {
  background-image: url("../images/wave-shape/wave-dark2.png");
}
[data-bs-theme=dark] .wave-three {
  background-image: url("../images/wave-shape/wave-dark3.png");
}

/*-------Demo 3 Rgistartion form ------*/
.home-registration {
  padding-top: 190px;
}

.home-registration-form .form-heading {
  margin-bottom: 25px;
}

.home-registration-form {
  padding: 15px 32px 32px 32px;
  border-radius: 3px;
  box-shadow: 0px 0px 3px 0px #000000;
}

.home-subtitle-width-100 {
  max-width: 100%;
}

.small-text {
  font-size: 14px;
}

/*----Demo 4 Dashboard image ----*/
.home-cell-bottom {
  display: table-cell;
  vertical-align: bottom;
}

.home-padding-t-150 {
  padding-top: 150px;
}

/*---Demo 6 Subscribe -----*/
.subscribe-form input {
  padding: 15px 20px;
  width: 100%;
  font-size: 17px;
  color: var(--bs-form-text-color);
  border: none;
  outline: none !important;
  padding-right: 180px;
  padding-left: 30px;
  background-color: var(--bs-form-bg);
  border-radius: 30px;
}

.subscribe-form button {
  position: absolute;
  text-transform: uppercase;
  top: 6px;
  right: 8px;
  outline: none !important;
  border-radius: 30px;
  font-size: 16px;
  padding: 9px 30px;
}

.subscribe-form form {
  position: relative;
  max-width: 600px;
  margin: 0px auto;
}

/*----Demo 8 Home with video --------*/
.frame-border {
  border: 9px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px 5px 5px 5px;
}

/*---Demo 9 Animated ---*/
.slidero {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
}

.features-box h3 {
  margin-bottom: 25px;
  margin-top: 0;
  line-height: 36px;
}
.features-box .features-item-list li {
  position: relative;
  line-height: 24px;
  font-size: 15px;
  padding: 7px 0 7px 20px;
}
.features-box .features-item-list li:before {
  content: "";
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 14px;
}

.features-img {
  max-width: 500px;
  margin: 0 0 0 auto;
}

[dir=rtl] .features-box .features-item-list li:before {
  right: 0;
}
[dir=rtl] .features-box .features-item-list li {
  padding: 7px 14px 7px 20px;
}

.services-box {
  padding: 15px 20px;
}
.services-box i {
  font-size: 32px;
  margin-bottom: 15px;
}

.bg-web-desc {
  background: url("../images/img-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-get-start {
  background: url("../images/img-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pricing-box {
  padding: 50px 40px 50px 40px;
  border: 1px solid var(--bs-border-box-color);
  border-radius: 8px;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1) !important;
  background-color: var(--bs-body-bg);
  position: relative;
}
.pricing-box h4 {
  font-size: 15px;
}
.pricing-box h1 {
  font-size: 36px;
  padding-top: 5px;
}

.pricing-border {
  width: 100%;
  height: 1px;
  margin-top: 35px;
  background-color: #ecf0f5;
}

.price-active {
  box-shadow: 0 0rem 4rem rgba(0, 0, 0, 0.1) !important;
}

.plan-features p {
  padding-top: 5px;
}

.ribbon-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}
.ribbon-box span {
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: #3fa7d6;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  position: absolute;
  top: 19px;
  left: -21px;
}
.ribbon-box span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.ribbon-box span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

[dir=rtl] .ribbon-box span {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 19px;
  right: -22px;
}
[dir=rtl] .ribbon-box {
  right: 0;
  top: 0;
}

.about-title {
  max-width: 800px;
}
.about-title h2 {
  line-height: 42px;
}
.about-title p {
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
}

.team-box {
  border-bottom: 1px solid var(--bs-border-color);
}
.team-box .team-name {
  font-size: 16px;
  padding-top: 20px;
  margin-bottom: 7px;
}
.team-box .team-designation {
  font-size: 13px;
  color: #a8aeb4;
}

.testimonial-decs {
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1) !important;
}
.testimonial-decs img {
  height: 68px;
  width: 68px;
}
.testimonial-decs .testi-icon i {
  position: absolute;
  top: 0;
  right: 0;
  color: #f4f4f4;
}
.testimonial-decs p {
  line-height: 24px;
  font-style: italic;
}

.blog-box .blog-title {
  color: var(--bs-body-color);
  transition: all 0.5s;
}
.blog-box .blog-title:hover {
  color: #4341cc;
}
.blog-box .read-btn {
  font-size: 15px;
  color: #4341cc;
}
.blog-box .read-btn:hover {
  color: var(--bs-header-text-color) !important;
}

textarea.form-control {
  height: auto !important;
}

.form-control {
  margin-bottom: 20px;
  box-shadow: none !important;
  height: 50px;
  padding-left: 20px;
  font-size: 14px;
  background-color: var(--bs-form-bg);
  border-color: var(--bs-border-color);
}
.form-control:focus {
  border-color: #ccc;
}

textarea.form-control {
  height: auto;
  padding-top: 13.5px;
}

.alert-warning {
  padding: 10px;
}

.contact-social {
  padding: 20px 0px;
}
.contact-social .social-icon {
  border: 3px solid #dadcdf;
  border-radius: 50%;
  color: #dadcdf;
  width: 48px;
  height: 48px;
  display: block;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
}
.contact-social .contact-title {
  font-size: 20px;
}

#success_page {
  background-color: rgba(27, 188, 157, 0.25);
  padding: 10px 20px;
  border-radius: 4px;
}

[data-bs-theme=dark] .form-control:focus {
  border-color: var(--bs-border-color);
  background-color: var(--bs-form-bg);
}

[dir=rtl] [type=email],
[dir=rtl] [type=number],
[dir=rtl] [type=tel],
[dir=rtl] [type=url] {
  direction: rtl;
}

.footer {
  padding: 50px 0;
  background-color: var(--bs-footer-bg);
}
.footer h4 {
  color: #ffffff;
}
.footer .footer-list li a {
  color: #98a0aa;
  padding-top: 8px;
  display: inline-block;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.footer .footer-list li a:hover {
  color: #dce6f3;
}
.footer .footer-logo {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  height: auto;
  font-family: "Sarabun", sans-serif;
}
.footer p {
  color: #98a0aa;
}

.subscribe {
  position: relative;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}
.subscribe input {
  height: 40px;
  background-color: var(--bs-footer-alt-bg);
  box-shadow: none !important;
  border: none;
  padding-right: 50px;
  color: #ffffff !important;
}
.subscribe input::-moz-placeholder {
  color: #666e77 !important;
}
.subscribe input::placeholder {
  color: #666e77 !important;
}
.subscribe input:focus {
  background-color: var(--bs-footer-alt-bg) !important;
}
.subscribe .submit {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  width: 50px;
  line-height: 45px;
  text-align: center;
  color: #acacac !important;
}

.footer-alt {
  padding: 15px 0;
  background-color: var(--bs-footer-alt-bg);
}
.footer-alt .copy-rights {
  margin-bottom: 0;
  line-height: 36px;
}
.footer-alt p {
  color: #98a0aa !important;
}

.social-icon {
  border: 2px solid #40434e;
  border-radius: 50%;
  color: #6b707d !important;
  width: 36px;
  height: 36px;
  display: block;
  font-size: 15px;
  line-height: 32px;
  text-align: center;
}

.bg-account-pages {
  background: linear-gradient(to right, #363795, #005c97);
  opacity: 0.9;
}

.account-home-btn {
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 1;
}

.account-pages-logo {
  letter-spacing: 2px;
}

.account-card form .form-control {
  height: 45px;
}

.account-card form label {
  font-size: 15px;
  margin-bottom: 10px;
}

.account-card .alert {
  font-size: 14px;
}

#style-switcher div h3 {
  font-size: 16px;
  margin: 8px 3px 12px;
}

#style-switcher {
  background: none repeat scroll 0 0 white;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
  left: -189px;
  position: fixed;
  top: 158px;
  width: 189px;
  z-index: 9999;
  padding: 10px 5px;
}

#style-switcher div {
  padding: 5px 10px;
}

#style-switcher .bottom {
  background: none repeat scroll 0 0 #ffffff;
  color: #272a33;
  padding: 0;
}

#style-switcher .bottom a.settings {
  background: none repeat scroll 0 0 var(--bs-footer-alt-bg);
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.08);
  display: block;
  height: 41px;
  position: fixed;
  left: 0;
  top: 155px;
  width: 40px;
  padding: 3px;
}

#style-switcher .bottom a {
  text-decoration: none;
}

#style-switcher .bottom a.settings i {
  margin-left: 4px;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
}

#style-switcher.show {
  left: 0;
}

#style-switcher.show .bottom a.settings {
  left: 192px;
  top: 158px;
  right: auto;
}

#style-switcher .bottom a {
  text-decoration: none;
}

ul.pattern {
  list-style: none outside none;
  margin: 0 0 0px;
  overflow: hidden;
  padding: 0;
  border-radius: 0px;
}

ul.pattern li {
  float: left;
  margin: 2px;
}

ul.pattern li a {
  cursor: pointer;
  display: block;
  height: 35px;
  width: 35px;
  border-radius: 30% 70% 64% 36%/30% 42% 58% 70%;
  margin: 5px;
}


.mode-btn {
  position: fixed;
  right: -45px;
  left: 0px;
  top: 105px;
  z-index: 1021;
  color: #fff;
  width: 40px;
  height: 41px;
  line-height: 43px;
  background-color: var(--bs-footer-alt-bg);
  font-size: 21px;
  text-align: center;
  border-radius: 0;
}
.mode-btn .mode-light {
  display: block;
}
.mode-btn .mode-dark {
  display: none;
}

[data-bs-theme=dark] .mode-light {
  display: none;
}
[data-bs-theme=dark] .mode-dark {
  display: block;
  color: #ffffff;
}
[data-bs-theme=dark] #style-switcher {
  background-color: var(--bs-icon-bg);
  border: transparent;
}
[data-bs-theme=dark] #style-switcher div h3 {
  font-size: 16px;
  margin: 8px 3px 12px;
  color: var(--bs-body-color);
}

[dir=rtl] .mode-btn {
  right: 0px;
}
[dir=rtl] #style-switcher {
  right: -189px;
  left: auto;
  top: 155px;
  position: fixed;
}
[dir=rtl] #style-switcher.show {
  right: 0;
}
[dir=rtl] #style-switcher .bottom a.settings {
  background: none repeat scroll 0 0 var(--bs-footer-alt-bg);
  display: block;
  height: 41px;
  position: fixed;
  right: 0;
  top: 155px;
  width: 40px;
  padding: 3px;
}
[dir=rtl] #style-switcher.show .bottom a.settings {
  right: 192px;
}
[dir=rtl] #style-switcher .bottom a.settings i {
  margin-right: 5px;
}

@media (min-width: 200px) and (max-width: 1024px) {
  .navbar-custom {
    margin-top: 0px;
    padding: 10px 0px !important;
    box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
    background: #272a33;
  }
  .navbar-custom .navbar-nav {
    margin-left: 0px;
  }
  .navbar-custom .navbar-nav li.active {
    border-color: transparent;
  }
  .navbar-custom .navbar-nav li a {
    transition: all 0.4s;
    margin: 0px;
    color: rgba(255, 255, 255, 0.6) !important;
  }
  .navbar-custom > .container {
    width: 90%;
  }
  .navbar-white .navbar-toggler {
    color: #272a33 !important;
  }
  .navbar-button {
    margin-top: 15px;
    margin-left: 0px;
  }
  .navbar-custom .navbar-nav li.active a,
  .navbar-custom .navbar-nav li a:hover,
  .navbar-custom .navbar-nav li a:active {
    color: #ffffff !important;
  }
  .navbar-toggler {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #ffffff;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .home-half {
    padding-bottom: 150px;
    padding-top: 150px;
  }
  .home-half .home-title {
    font-size: 32px;
    line-height: 48px;
  }
  .team-box {
    margin-top: 45px;
  }
  .pricing-box {
    margin-top: 30px;
  }
  .float-left.pull-none {
    float: none !important;
    text-align: center;
  }
  .float-right.pull-none {
    float: none !important;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}/*# sourceMappingURL=style.css.map */