:root {
  --color-white-100: hsl(206, 0%, 100%);
  --color-white-200: hsl(206, 0%, 90%);
  --color-white-300: hsl(206, 0%, 80%);
  --color-white-400: hsl(206, 0%, 65%);
  --color-white-500: hsl(206, 0%, 50%);
  --color-black-100: hsl(217, 30%, 18%);
  --color-black-200: hsl(217, 27%, 15%);
  --color-black-300: hsl(217, 27%, 12%);
  --color-black-400: hsl(217, 52%, 9%);
  --color-blue-100: hsl(215, 97%, 87%);
  --color-blue-200: hsl(215, 96%, 78%);
  --color-blue-300: hsl(215, 94%, 68%);
  --color-blue-400: hsl(215, 91%, 60%);
  --color-blue-500: hsl(215, 83%, 53%);
  --color-blue-600: hsl(215, 76%, 48%);
  --blueberry: #4579f508;
  --blueberry-2: #4579f5;
  --hawkes-blue: #e0e0ff99;
  --white: #ffffff;
  --font-size-l: 16px;
  --font-size-m: 14px;
  --font-size-s: 13px;
  --font-size-xl: 20px;
  --font-size-xxl: 48px;
 
  --font-family-montserrat: "Montserrat", Helvetica;
  --color-purple: #0D1317;
  --color-white: #f1f2f6;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:500,700,600");
/* The following line is used to measure usage of this code. You can remove it if you want. */
@import url("https://px.animaapp.com/648ccbfc090d3c754b07a85c.648ccbfdfd7022e08aa11d1f.648ccc8168662d5b70ea5cda.hcp.png");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: 'Bai Jamjuree', sans-serif !important;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: #eaedf6 !important;
  background: #0d141a url(../img/background.jpg);
  background-position: top;
  background-size: cover;
}
body.darkmode {
  color: #0d141a !important;
  background-color: #eaedf4 !important;
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sectionhome {
    margin: 0 auto;
	height: 100%;
    padding: 5rem 0 2rem;
}

.darkmode .sectionhome {
    background: var(--color-white) url(../img/bglight.png); 
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sectionfeatures {
    margin: 0 auto;
	height: 100%;
    padding: 5rem 0 0rem;
}

.darkmode .sectionfeatures {
    background: var(--color-white) url(../img/bglight2.png);
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.paragraph {
  max-width: 94%;
  height: auto;
  color: inherit;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  font-size: 40px;
  text-align: left;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}

.btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-blue-500);
  box-shadow: var(--shadow-medium);
}
.darkmode .btn-darken {
  background-color: var(--color-black-200);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.darkmode .header {
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin-right: auto;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-white-100);
}
.darkmode .brand {
  color: var(--color-blue-500);
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.darkmode .menu {
  color: var(--color-black-400);
}
.menu.is-active {
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;
  margin-top: 7rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: inherit;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
    transition: none;
	margin-right: 2em;
  }
	
  .menu-inner {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  order: -1;
  z-index: 12;
  width: 1.6rem;
  height: 1.15rem;
  margin-right: 1.25rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

@media only screen and (max-width: 48rem) {
  .separator {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2.1px;
  border: none;
  outline: none;
  opacity: 1;
  transform: rotate(0deg);
  border-radius: 1rem;
  background-color: var(--color-white-100);
  transition: 0.25s ease-in-out;
}
.darkmode .burger-line {
  background-color: var(--color-black-300);
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.switch {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 9;
  margin-left: 5rem;
  margin-right: 0.5rem;
}
.switch-light, .switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}
.switch-light {
  font-size: 1.45rem;
  visibility: visible;
  color: var(--color-white-100);
}
.darkmode .switch-light {
  font-size: 0rem;
  visibility: hidden;
}
.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--color-black-300);
}
.darkmode .switch-dark {
  font-size: 1.45rem;
  visibility: visible;
}

.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 2rem;
    background: #0a0a0ac4 url(../img/pattern.png);
    background-repeat: no-repeat;
    background-size: 60%;
	background-position-x: 3% !important;
    background-position: left;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	min-height: 100%;
}

.darkmode .banner-column {
	background: #eaedf4c4 url(../img/pattern.png);
    background-repeat: no-repeat;
	background-position-x: 3% !important;
    background-size: 60%;
    background-position: left;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.banner-image {
  display: block;
  max-width: 25rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: center;
	background: url("../img/globe2.png");
background-position: center !important;
}

.darkmode .banner-image {
	background: url("../img/globe2.png");
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 28rem;
    height: auto;
  }
  .sectiondown .banner-image {
    order: 1;
    max-width: 15rem;
    height: 15rem;
    width: 15rem;
    background-size: cover;
}
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 33rem;
    height: 33rem;
    width: 33rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.sectiondown .banner-image {
    order: 1;
    max-width: 15rem;
    height: 15rem;
    width: 15rem;
    background-size: cover;
}
	
	.darkmode .banner-image {
    max-width: 33rem;
    height: 33rem;
    width: 33rem;
    background-size: contain;
    background-repeat: no-repeat;
}
	
}
.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.5rem;
    margin-left: 10%;
    margin-bottom: 1em;
	margin-top: 1em;
}

.separator {
    background: url(../img/separator.jpg);
    height: 1.5rem;
    width: 2px;
    margin-right: 2rem;
    display: inline-flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: row;
}

.darkmode .separator {
	background: #6585dc;
}

/* Scrollbar styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
background: #0D1317;
border-radius: 10px;
}

::-webkit-scrollbar-track {
background: #0D1317;
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #2361f1;  
}

::-webkit-scrollbar-thumb:hover {
background: #2361f1;  
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #111111;
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
#loader {
    display: flex;
    position: relative;
    z-index: 99999;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#loader img {
    height: 300px;
    width: 300px;
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* #Progress
================================================== */

.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\e84b';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--grey);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\e84b';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--grey);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
body.light .progress-wrap {
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
}
body.light .progress-wrap::after {
	color: var(--black-blue);
}
body.light .progress-wrap svg.progress-circle path {
	stroke: var(--black-blue);
}

.circle {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--black-blue-light-3);
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	animation: border-transform 10s linear infinite alternate forwards;
}
.circle:hover {
	box-shadow: 0 8px 8px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
}
.circle:before {
	position: absolute;
	font-family: 'unicons';
	content: '\eac1';
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	height: 40px;
	opacity: 1;
	color: var(--grey);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.circle:after {
	position: absolute;
	font-family: 'unicons';
	content: '\eb8f';
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	width: 100%;
	height: 40px;
	color: var(--yellow);
	opacity: 0;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}


nav a.active {
    color: #2667ff;
}

.primary-btn {
    display: inline-block;
    font-size: 15px;
    font-family: "Play", sans-serif;
    font-weight: 700;
    padding: 14px 32px 12px;
    color: #2361f1;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
	transition: 0.5s;
	margin-right: 5%;
}

.darkmode .primary-btn {
	color: #6585dc;
}

.darkmode .primary-btn:before {
	border-left: 2px solid #6585dc;
    border-top: 2px solid #6585dc;
}
.darkmode .primary-btn:after {
	border-right: 2px solid #6585dc;
    border-bottom: 2px solid #6585dc;
}

.primary-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-left: 2px solid #2361f1;
    border-top: 2px solid #2361f1;
    content: "";
    z-index: -1;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}
.primary-btn:after {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 30px;
    width: 30px;
    border-right: 2px solid #2361f1;
    border-bottom: 2px solid #2361f1;
    content: "";
    z-index: -1;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}
.primary-btn:hover:after {
    height: 100%;
    width: 100%;
}
.primary-btn:hover:before {
    height: 100%;
    width: 100%;
}

.primary-btn:hover {
    color: #eaedf6;
    position: relative;
    z-index: 1;
	transition: 0.5s;
    border-radius: 5px;
}

.darkmode .primary-btn:hover {
    color: #2361f1;
}

.brand img {
	display: inline-flex;
	position: relative;
  width: 50px;
  margin-right: 1vh;
  vertical-align: middle;
}

.headerbuttons {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: stretch;
    justify-content: flex-start;
}

.menu-link:hover {
	color: #2667ff;
	transition: 0.5s;
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: 0.5s;
}

.sticky-nav.active {
  background-color: #0f0f0f;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: 0.5s;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 40px;
  padding-left: 15px;
}

.darkmode .sticky-nav.active {
    background-color: #eaedf6;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transition: 0.5s;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-right: 40px;
    padding-left: 15px;
}

.services{
	width:100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}
.s-heading {
    display: flex !important;
    width: 100% !important;
    flex-direction: row;
    justify-content: center;
}


.s-heading h1 {
    color: #eaedf6;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0px;
    margin-bottom: 5%;
}

.darkmode .s-heading h1 {
	color: #0d141a;
}

.s-heading p{
	color: rgba(87,105,117,0.60);
	font-size: 1rem;
	margin: 5px;
}
.s-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box {
  flex-basis: calc(33.33% - 20px);
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .s-box {
    flex-basis: calc(33.33% - 20px);
  }
  .pricing-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    flex-direction: column;
}
.pricing-card {
  flex-basis: calc(100%) !important;
    max-width: calc(100%) !important;
}
.banner-image {
  max-width: 18rem;
  height: 18rem;
  width: 18rem;
  background-size: cover;
}
.headerbuttons {
  margin-bottom: 20px;
}
.inverted .row {

  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
}

@media (max-width: 768px) {
  .s-box {
    flex-basis: calc(50% - 20px);
  }
  .banner-image {
    max-width: 18rem;
    height: 18rem;
    width: 18rem;
    background-size: cover;
  }
  .headerbuttons {
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {
  .s-box {
    flex-basis: 100%;
  }
}

.s-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  width: calc(33.33% - 40px);
  padding: 20px 25px;
  height: 400px;
  background: #0d141959;
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  border: 1px solid #00000026;
  transition: 0.3s;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.darkmode .s-box {
	background: transparent;
}

@media (max-width: 992px) {
  .s-box {
    width: calc(33.33% - 40px);
  }
  
}

@media (max-width: 768px) {
  .s-box {
    width: calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .s-box {
    width: 100%;
  }
}

.s-box:hover {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: 0.3s;
}

.darkmode .s-box:hover {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: 0.3s;
}

.darkmode .s-box {
	border: 1px solid #00000026;
}
.s-box img{
	height: 75px;
}
.s-box h1{
	color:#576975;
	letter-spacing: 1px;
	font-size: 1.5rem;
	margin-bottom: 8px;
	margin-top: 5%;
	
}
.s-box p{
	color: rgba(87,105,117,0.90);
	text-align: center;
	margin-top: 10%;
}

.bar{
	width: 100px;
	height: 6px;
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translateX(-50%);
	background-color:#2361f1; 
	border-radius: 0px 0px 10px 10px;
	display: none;
	animation: bar 0.5s;
}
.s-box:hover{
	transition: all ease 0.3s;
}
.s-box:hover .bar{
	display: block;
}
@keyframes bar{
	0%{
		width:0px;
	}
	100%{
		width:100px;
	}
}
@media(max-width:1050px){
	.s-box-container{
		flex-wrap: wrap;
		
	}	
	.services{
		height: auto;
	}
	.s-heading{
		margin: 15px;
	}
	.s-box{
		flex-grow: 1;
	}
	
}

/* Default styles */

.index {
  align-items: center;
  display: flex;
  align-content: center;
  justify-content: center;
}

.index .overlap-group1 {
  align-items: center;
  background-color: #0d1419c4;
  gap: 133px;
  height: 744px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.index .cta {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  min-height: 420px;
  width: 445px;
}

.index .label {
  align-items: flex-start;
  background-color: var(--blueberry);
  border-radius: 12px;
  display: flex;
  height: 24px;
  justify-content: flex-end;
  margin-left: 24px;
  min-width: 95px;
  padding: 0 5px;
}

.index .caption {
  font-weight: 600;
  letter-spacing: 1.00px;
  line-height: 24px;
  white-space: nowrap;
}

.index .headline-1 {
  align-self: flex-end;
  letter-spacing: -2.00px;
  line-height: 48px;
  margin-right: -16px;
  margin-top: 24px;
  min-height: 96px;
  width: 437px;
}

.index .subhead {
  align-self: flex-end;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 36px;
  margin-right: -24px;
  margin-top: 48px;
  min-height: 108px;
  width: 445px;
}

.index .overlap-group {
  align-items: flex-start;
  background-image: url(https://anima-uploads.s3.amazonaws.com/projects/648ccc8168662d5b70ea5cda/releases/648cccaf99d0ec1b8c284c70/img/00designl-surface-4@2x.png);
  background-size: 100% 100%;
  height: 96px;
  margin-left: 1px;
  margin-top: 24px;
  min-width: 199px;
  padding: 20px 45px;
}

.index .text-1 {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.index .feature_-container {
  align-self: flex-end;
  height: 648px;
  position: relative;
  width: 588px;
}

.index .feature_03 {
  align-items: flex-start;
  background-image: url("../img/service.png");
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  left: 285px;
  min-height: 332px;
  padding: 40px;
  position: absolute;
  top: 316px;
  width: 303px;
}

.index .badge {
  align-items: flex-start;
  padding: 23px 29px;
}

.index .shape {
  height: 49px;
  width: 38px;
}

.index .text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 116px;
  width: 207px;
}

.index .headline {
  font-weight: 600;
  letter-spacing: -0.40px;
  line-height: 28px;
  white-space: nowrap;
}

.index .body {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  min-height: 72px;
  width: 207px;
}

.index .feature_02 {
  align-items: flex-start;
  background-image: url("../img/service.png");
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  left: 0;
  min-height: 332px;
  padding: 40px;
  position: absolute;
  top: 316px;
  width: 303px;
}

.index .badge-1 {
  align-items: flex-start;
  padding: 21px 27px;
}

.index .shape-1 {
  height: 52px;
  width: 41px;
}

.index .feature_01 {
  align-items: flex-start;
  background-image: url("../img/service.png");
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  left: 285px;
  min-height: 332px;
  padding: 40px;
  position: absolute;
  top: 0;
  width: 303px;
}

.index .badge-2 {
  align-items: flex-start;
  padding: 22px 30px;
}

.index .shape-2 {
  height: 51px;
  width: 36px;
}

.index .feature_00 {
  align-items: flex-start;
  background-image: url("../img/service.png");
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  left: 0;
  min-height: 332px;
  padding: 40px;
  position: absolute;
  top: 0;
  width: 303px;
}

.index .badge-3 {
  align-items: center;
  padding: 0 24px;
}

.index .shape-3 {
  height: 44px;
  width: 48px;
}

.index .badge-4 {
  background-color: var(--blueberry);
  border-radius: 48px;
  display: flex;
  height: 96px;
  min-width: 96px;
}

.index .overlap {
  display: flex;
  justify-content: flex-end;
}

.montserrat-semi-bold-white-20px {
  color: var(--white);
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-xl);
  font-style: normal;
  font-weight: 600;
}

.montserrat-medium-hawkes-blue-14px {
  color: var(--hawkes-blue);
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-m);
  font-style: normal;
  font-weight: 500;
}

.montserrat-semi-bold-blueberry-13px {
  color: var(--blueberry-2);
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-s);
  font-style: normal;
  font-weight: 600;
}

.montserrat-bold-white-48px {
  color: var(--white);
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-xxl);
  font-style: normal;
  font-weight: 700;
}

.montserrat-medium-white-36px {
  color: var(--white);
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-l);
  font-style: normal;
  font-weight: 500;
}

.montserrat-medium-white-24px {
  color: var(--white);
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-m);
  font-style: normal;
  font-weight: 500;
}

/* Media Queries */

@media (max-width: 768px) {
  .index .overlap-group1 {
    flex-direction: column;
    height: auto;
    gap: 40px;
    padding: 20px;
  }
  
  .index .cta {
    width: 100%;
    min-height: auto;
    align-items: center;
  }
  
  .index .headline-1,
  .index .subhead {
    align-self: center;
    margin-right: 0;
  }
  
  .index .overlap-group {
    width: 100%;
    margin-top: 0;
  }
  
  .index .feature_-container {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .index .feature_03,
  .index .feature_02,
  .index .feature_01,
  .index .feature_00 {
    position: static;
    width: 100%;
    min-height: auto;
    padding: 20px;
    margin: 0;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .index .badge,
  .index .badge-1,
  .index .badge-2,
  .index .badge-3,
  .index .badge-4 {
    padding: 10px;
  }
  
  .index .shape,
  .index .shape-1,
  .index .shape-2,
  .index .shape-3 {
    height: 30px;
    width: 24px;
  }
}

.services .container {
    padding: 2em;
	background: #0a0a0ac4;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position-x: 3% !important;
    background-position: left;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.darkmode .services .container {
	background: #eaedf4c4;
	background-repeat: no-repeat;
    background-size: 60%;
    background-position-x: 3% !important;
    background-position: left;
}

a {
    text-decoration: none !important;
}
.card {
    background-color: #00000030 !important;
}

.darkmode .card {
    background-color: #ffffff30 !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: inherit !important;
    margin-bottom: inherit !important;
    margin-top: inherit !important;
}

.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
}

.pricing-card {
    flex-basis: calc(33.33% - 40px);
    max-width: calc(33.33% - 40px);
    margin: 10px;
    padding: 20px;
    background-color: #0a0a0ac4;
    text-align: center;
    border-radius: 0.375rem;
    border-bottom: 1px solid #0d6efd;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .pricing-card {
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 960px) {
        .pricing-card {
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
    }

@media (max-width: 480px) {
  .pricing-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #1f3dff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Bai Jamjuree Regular';
}

.switch2 {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 20px;
  margin-top: 20px;
}

.switch2 input[type="checkbox"] {
  display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff1f;
    transition: 0.4s;
    border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #2361d6;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #1f3dff;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Additional styling for the toggle switch */
.switch2 {
    margin-left: 10px;
    margin-right: 10px;
}

.slider:before {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.switcher {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing .container {
    padding: 2em;
    background: #0a0a0ac4;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position-x: 3% !important;
    background-position: left;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pricing {
	  margin: 0 auto;
    height: 100%;
    padding: 2rem 0 2rem;
}
.switcher .switcher-label.residential {
  color: #2361f1; /* Color for Residential when switcher is off */
}

.switcher .switcher-label.datacenter {
  color: #6e6e6e; /* Color for Datacenter when switcher is off */
}

.switcher .switch2 input:checked ~ .slider:before {
  background-color: #eaedf6; /* Background color for switcher ON state */
}

.switcher .switch2 input:checked ~ .switcher-label.residential {
  color: #6e6e6e; /* Color for Residential when switcher is on */
}

.switcher .switch2 input:checked ~ .switcher-label.datacenter {
  color: #2361f1; /* Color for Datacenter when switcher is on */
}

.darkmode .pricing {
    background: var(--color-white) url(../img/bglight4.png);
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.darkmode .pricing .container {
	background: #eaedf4c4;
	background-repeat: no-repeat;
    background-size: 60%;
    background-position-x: 3% !important;
    background-position: left;
}

.darkmode .pricing-card {
	background-color: #ffffff75 !important;
}

.darkmode .switcher .switcher-label.datacenter {
	color: #0d141a; 
}

.darkmode .slider {
	background-color: #00000033;
}

.pricing-card ul {
	padding-left: 0 !important;
}

.buttonbuy {
    cursor: pointer !important;
    background: #1f3dff !important;
    border-radius: 10px !important;
    border: 2px solid #1f3dff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: 0.5s !important;
    color: #eaedf6 !important;
	font-family: 'Bai Jamjuree', sans-serif !important;
}
.buttonbuy:hover {
    cursor: pointer;
    color: #1f3dff !important;
    background: #e5e5e5 !important;
    border: 2px solid #1f3dff !important;
    letter-spacing: 2px !important;
    transition: 0.7s !important;
}

.darkmode .buttonbuy:hover {
    cursor: pointer;
    color: #eaedf6 !important;
    background: #1f3dff !important;
    border: 2px solid #1f3dff !important;
    letter-spacing: 2px !important;
    transition: 0.7s !important;
}

.darkmode .buttonbuy {
    cursor: pointer !important;
    background: transparent !important;
    border-radius: 10px !important;
    border: 2px solid #1f3dff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: 0.5s !important;
    color: #1f3dff !important;
	font-family: 'Bai Jamjuree', sans-serif !important;
}
@font-face {
    font-family: 'Bai Jamjuree Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Regular'), url('/fonts/BaiJamjuree-Regular.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Italic'), url('/fonts/BaiJamjuree-Italic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Bold'), url('/fonts/BaiJamjuree-Bold.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Bold Italic'), url('/fonts/BaiJamjuree-BoldItalic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree ExtraLight Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree ExtraLight Regular'), url('/fonts/BaiJamjuree-ExtraLight.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Light Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Light Regular'), url('/fonts/BaiJamjuree-Light.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Medium Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Medium Regular'), url('/fonts/BaiJamjuree-Medium.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree SemiBold Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree SemiBold Regular'), url('/fonts/BaiJamjuree-SemiBold.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree ExtraLight Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree ExtraLight Italic'), url('/fonts/BaiJamjuree-ExtraLightItalic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Light Italic'), url('/fonts/BaiJamjuree-LightItalic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree Medium Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree Medium Italic'), url('/fonts/BaiJamjuree-MediumItalic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Bai Jamjuree SemiBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Bai Jamjuree SemiBold Italic'), url('/fonts/BaiJamjuree-SemiBoldItalic.woff') format('woff');
    }

    @font-face {
      font-family: 'Titillium-Web-Light';
      src:url('/fonts/Titillium-Web-Light.ttf.woff') format('woff'),
          url('/fonts/Titillium-Web-Light.ttf.svg#Titillium-Web-Light') format('svg'),
          url('/fonts/Titillium-Web-Light.ttf.eot'),
          url('/fonts/Titillium-Web-Light.ttf.eot?#iefix') format('embedded-opentype'); 
      font-weight: normal;
      font-style: normal;
  }

.pricing-card h2 {
	background: #00000033;
    width: 100%;
    height: 50px;
    line-height: 1.4;
    border-radius: 10px;
	border-left: 1px solid #1f3dff54;
    border-right: 1px solid #1f3dff54;
}

.darkmode .pricing-card h2 {
	background: #ffffff5c;
}

.buttonhome {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-primary3 {
    color: #fff;
    background-color: #1f3dff;
    border-color: #0d6efd;
    margin-right: 1em;
}
.btn-outline-light {
    color: #f8f9fa;
    border-color: #1b3dff;
	display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	transition: 0.5s;
}
.btn-outline-light:hover {
    color: #1f3dff;
    background-color: #e5e5e5;
    border-color: #1f3dff;
	transition: 0.5s;
}

.darkmode .btn-outline-light {
    color: #1f3dff;
    background-color: #e5e5e5;
    border-color: #1f3dff;		
	transition: 0.5s;
}

.darkmode .btn-outline-light:hover {
    color: #eaedf6 !important;
    background: #1f3dff !important;
    border: 1px solid #1f3dff !important;
	transition: 0.5s;
}

.pricing-card h3 {
	color: #3954ff !important;
}

.card {
	height: 100% !important;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.pricing-card ul {
    text-align: left;
}

.faq {
    padding: 2rem 0 0rem;
    margin: 0 auto;
    height: 100%;
}

.darkmode .faq {
    background: var(--color-white) url(../img/bglight2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq .section-title {
    margin-top: 5%;
    margin-bottom: 5%;
    color: #eaedf6;
}

.faq .section-title h2 {
    margin-bottom: 22px;
}

.faq .accordion .cards {
    border: none;
    margin-bottom: 30px;
    background: #00000040;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.faq .accordion .cards:not(:first-of-type) .cards-header:first-child {
    border-radius: 10px;
}

.faq .accordion .cards .cards-header {
    border: none;
    border-radius: 10px;
    padding: 0;
}

.faq .accordion .cards .cards-header h5 {
    padding: 0;
}

.faq .accordion .cards .cards-header h5 buttons {
  font-size: 14px;
  text-decoration: none;
  padding: 0 30px 0 70px;
  display: block;
  width: 100%;
  color: #eaedf6;
  text-align: left;
  border-bottom: 1px solid #3954ff;
  -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
  border-radius: 10px;
  position: relative;
}
buttons p {
  white-space: normal;
  margin-top: 1em;
}

.faq .accordion .cards .cards-header h5 buttons:after {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    color: #1f3dff;
    text-align: center;
    border: 1px solid #1f3dff;
    border-radius: 50%;
    line-height: 100%;
    content: '\f067';
    font-size: 10px;
    line-height: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.faq .accordion .cards .cards-header h5 buttons.collapsed {
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid rgb(57 84 255);
}

.faq .accordion .cards .cards-header h5 buttons[aria-expanded="true"]:after {
    content: '\f068';
    color: #fff;
    background-image: -webkit-linear-gradient(-180deg, #1221a7 0%, #1f3dff 30%, #354ff9 100%);
}

.faq .accordion .cards .cards-body {
    -webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 0 0 10px 10px;
    padding-top: 0;
    margin-top: -6px;
    padding-left: 72px;
    padding-right: 70px;
    padding-bottom: 23px;
    color: #eaedf6bf;
    line-height: 30px;
}

.faq .container {
    padding: 2em;
    background: #0a0a0ac4;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position-x: 3% !important;
    background-position: left;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.footer-section {
    position: relative;
    background: #0b131c;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -1px;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px !important;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #1f3dff;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #1f3dff;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
    background: #0f0f0f;
    padding: 25px 0;
    border-top: 1px solid #1f3dff1c;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #1f3dff;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #0f2aff;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.darkmode .faq .container {
    background: #eaedf4c4;
}

.darkmode .faq .accordion .cards {
    background: #ffffff75 !important;
}

.darkmode .faq .accordion .cards .cards-header h5 buttons {
    color: #0d141a;
}

.darkmode .faq .accordion .cards .cards-body {
    color: #0d141a;
}

.darkmode .faq .section-title {
    color: #0d141a;
}

.darkmode .copyright-area {
    background: #e7ebf4;
}

.darkmode .copyright-text p {
    color: #0d141a;
}

.darkmode .footer-menu li a {
    color: #0d141a;
}

.darkmode .footer-menu li:hover a {
    color: #0f2aff;
}

.card-body img {
  width: 50px;
}

.videoplayer {
  width: 100% !important;
}

.sectiondown {
  margin-bottom: 5rem;
}
