/*@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


:root {
  --bs-primary: #007EFF;
  --bs-secodary: #2C4D9C;
  --bs-font-sans-serif: "Roboto", sans-serif !important;
  --bs-teal: #67E2DA;
  --bs-zomp: #2d9991;
  --bs-azure: #F2FCFF;
  --bs-midnight: #061733;
  --bs-charcoal: #2F2F2F;
  --bs-teal-rgba-sm: rgba(0, 204, 255, 0.2);
  --bs-teal-rgba-xs: #D9F5FF;
  --bs-midnight: #061733;
  --bs-charcoal: #2F2F2F;
  --bs-black: #061733;	
  --bs-blue: #2c4d9c;
  --bs-navy-blue: #2c4d9c;	
  --bs-white: #ffffff;
}


html {
  box-sizing: border-box;
}

html,
body {
  /* height: 100%; */
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: var(--bs-secodary);
  text-decoration: none;
  transition: 0.1s ease-in-out all;
}

a:hover {
  text-decoration: none;
  color: #3c5daa;
}

p {
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}

b {
  font-weight: 700;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-secodary);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

body {
  background-color: var(--bs-white);
  color: #2F2D3B;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  position: relative;
  font-family: "Roboto", sans-serif !important;
}

/* HEADING */

.heading-01 {
  font-size: 60px;
}

.heading-02 {
  font-size: 38px;
}

.heading-03 {
  font-size: 36px;
}

.heading-04 {
  font-size: 35px;
}

.heading-05 {
  font-size: 17px;
}

.heading-06 {
  font-size: 18px;
}

.fw-bold {
  font-weight: 400 !important;
}

.fw-extrabold {
  font-weight: 700 !important;
}

/* TEXT COLOR */

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secodary) !important;
}

.text-dark {
  color: var(--bs-midnight) !important;
}

.text-zomp {
  color: var(--bs-zomp) !important;
}

/* BACKGROUND COLOR */

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secodary) !important;
}

/* BUTTON */

.btn {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
  justify-content: center;
  min-width: 140px;
  border: 0;
  transition: 0.3s ease-in-out all;
}

.btn-primary {
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-secodary);
  --bs-btn-hover-border-color: var(--bs-secodary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-secodary);
  --bs-btn-active-border-color: var(--bs-secodary);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--bs-white);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-secondary {
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-secodary);
  --bs-btn-border-color: var(--bs-secodary);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--bs-white);
  --bs-btn-disabled-bg: var(--bs-secodary);
  --bs-btn-disabled-border-color: var(--bs-secodary);
}

.btn-info {
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-teal);
  --bs-btn-border-color: var(--bs-teal);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-zomp);
  --bs-btn-hover-border-color: var(--bs-zomp);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-zomp);
  --bs-btn-active-border-color: var(--bs-zomp);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--bs-white);
  --bs-btn-disabled-bg: var(--bs-teal);
  --bs-btn-disabled-border-color: var(--bs-teal);
}

/* FORM CONTROL */

.form-control {
  height: 52px;
  border: 0;
  background-color: var(--bs-white);
  border-radius: 52px;
  padding: 15px 30px;
  font-size: 18px;
  /*font-weight: 600;*/
  color: var(--bs-charcoal);
  box-shadow: none !important;
}

.form-control::-webkit-input-placeholder {
  color: var(--bs-charcoal);
}

.form-control::-moz-placeholder {
  color: var(--bs-charcoal);
}

.form-control:-ms-input-placeholder {
  color: var(--bs-charcoal);
}

.form-control:-moz-placeholder {
  color: var(--bs-charcoal);
}

.form-check-input {
  height: 22px;
  width: 22px;
  box-shadow: none !important;
}

.form-check {
  padding-left: 32px;
}

.form-check .form-check-input {
  margin-left: -32px;
}

.form-check-input:checked[type="checkbox"] {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='1.5' fill='%23007EFF'/%3e%3c/svg%3e")
}

.form-check-input:checked[type="radio"] {
  background-color: var(--bs-white);
  border-color: var(--bs-white);
}

.form-select-secondary {
  background-image: url("/wp-content/themes/coressgt/images/down-arrow.png");
  background-size: 46px;
  background-position: center right 6px;
  height: 52px;
  border: 0;
  box-shadow: none !important;
  background-color: var(--bs-azure);
  font-size: 18px;
}

/* HEADER */

.header {
  padding: 25px 0;
}

.navbar {
  --bs-navbar-active-color: var(--bs-primary);
  --bs-navbar-toggler-padding-y: 0;
  --bs-navbar-toggler-padding-x: 0;
  --bs-navbar-toggler-font-size: 1rem;
  --bs-navbar-toggler-border-radius: 0;
  --bs-navbar-toggler-focus-width: 0;
}

.navbar .navbar-brand img {
  max-width: 250px;
}

.navbar-nav .nav-link {
  color: var(--bs-secodary);
  font-size: 16px;
 /* font-weight: 600;*/
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
  margin-right: 12px;
  margin-left: 12px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.dropdown-menu {
  --bs-dropdown-min-width: 180px;
  --bs-dropdown-padding-y: 8px;
  --bs-dropdown-font-size: 16px;
  --bs-dropdown-color: var(--bs-secodary);
  --bs-dropdown-border-color: var(--bs-secodary);
  --bs-dropdown-border-radius: 4px;
  --bs-dropdown-divider-bg: var(--bs-secodary);
  --bs-dropdown-divider-margin-y: 0;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-secodary);
  --bs-dropdown-link-hover-color: var(--bs-white);
  --bs-dropdown-link-hover-bg: var(--bs-secodary);
  --bs-dropdown-link-active-color: var(--bs-white);
  --bs-dropdown-link-active-bg: var(--bs-secodary);
  --bs-dropdown-item-padding-x: 16px;
  --bs-dropdown-item-padding-y: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* HERO SECTION */

.section-hero {
  padding-top: 100px;
  background: linear-gradient(180deg, #007EFF 0%, #061733 100%);
}

.hero-content {
  text-align: center;
  color: var(--bs-white);
}

.hero-content .heading-01 {
  line-height: 1;
  color: var(--bs-white);
}

.hero-content p {
  font-size: 20px;
  margin: 32px 0;
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  display: block;
  margin: 0 auto -65px;
}

/* CLIENT SECTION */

.section-client {
  padding: 30px 0;
  background-color: var(--bs-primary);
}

.client-logo {
  margin-top: 30px;
  text-align: center;
}

/* REQUEST DEMO SECTION */

.section-request-demo {
  padding: 40px 0 0px;
}

.section-feature .row:first-child {
  margin-top: 48px;
}

.section-feature .row {
  margin-top: 60px;
}

.request-demo-content {
 /* padding-right: 48px;*/
}

.request-demo-content p {
  font-size: 20px;
}

.feature-content p {
  margin-top: 30px;
  font-size: 20px;
}

/* REQUEST FORM SECTION */

.section-request-form {
  padding: 120px 0 100px;
}

.request-form {
  position: relative;
  background-color: var(--bs-secodary);
  min-height: 670px;
  border-radius: 23px;
}

.request-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/image10.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  border-radius: 0 20px 20px 0;
}

.request-form-left {
  position: relative;
  padding: 80px 20px 20px 80px;
  color: var(--bs-white);
}

.request-form-left .heading-02 {
  color: var(--bs-white);
}

.request-form-left h6 {
  color: var(--bs-white);
  font-size: 18px;
  font-weight: normal;
  margin-top: 12px;
  margin-bottom: 20px;
}

.request-form-left .input-group {
  z-index: 1;
}

.request-form-left .input-group .form-control {
  border-radius: 52px !important;
  padding-right: 150px;
}

.request-form-left .input-group-text {
  position: absolute;
  right: 5px;
  top: 5px;
  margin: 0;
  height: 42px;
  border: 0;
  border-radius: 22px !important;
  padding: 4px 16px;
  min-width: 140px;
  text-align: center;
  justify-content: center;
  font-size: 20px;
  /*font-weight: 600;*/
  background-color: var(--bs-charcoal) !important;
  color: var(--bs-white) !important;
  z-index: 5;
}

.request-form-left form {
  padding-right: 90px;
}

.request-form-image {
  position: absolute;
  top: -100px;
  right: -25px;
}

/* BLOG SECTION */

.section-blog {
  padding: 10px 0 80px;
}

.card-blog {
  position: relative;
}

.card-blog-image {
  position: relative;
}

.card-blog-image>img,
.card-blog-image .blog_img_overlay>img {
  border-radius: 16px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-blog-content {
  padding-top: 24px;
}

.card-blog-content h6 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.4;
}

.card-blog-content p {
  font-size: 18px;
}

.card-blog-content a {
  color: var(--bs-secodary);
  font-weight: 500;	
}

.card-blog-content a:hover {
  color: var(--bs-secodary);
  text-decoration: underline;
}


.card-blog-time {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--bs-white);
  font-size: 16px;
  /*font-weight: 600;*/
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
}

.card-blog-time img {
  width: 18px;
  vertical-align: sub;
  margin-left: 16px;
  margin-right: 4px;
}

.card-blog-link {
  font-size: 14px;
  font-weight: 400;
  background-color: var(--bs-primary);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  text-transform: uppercase;
  margin-top: 20px;
}

.card-blog-link a {
  color: var(--bs-white);
  font-weight: 400;	
}

.card-blog-link a:hover {
  color: var(--bs-white);
  text-decoration: underline;
}


/* FOOTER */

.footer {
  background-color: var(--bs-midnight);
  padding: 65px 0;
}

.footer p:first-child {
  margin-top: 0;
}

.footer-left p {
  font-size: 18px;
  color: var(--bs-white);
  margin-top: 40px;
}

.footer-left p a {
  color: var(--bs-white);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer-social a img {
  width: 40px;
}

/* SECTION HERO TEXT */

/*.section-hero-text {
  padding: 72px 0;
  min-height: 526px;
  background-color: var(--bs-primary);
  text-align: center;
}*/

.section-hero-text {
  padding: 40px 0;
  min-height: 350px;
  background-color: var(--bs-primary);
  text-align: center;
}

.hero-text h1 {
  font-size: 80px;
  color: var(--bs-white);
}

.hero-text p {
  color: var(--bs-white);
  font-size: 29px;
  /*font-weight: 700;*/
  margin-top: 24px;
	line-height: 36.4px;
}

/* SECTION FEATURE LIST */

.card-feature {
  position: relative;
  background-color: var(--bs-primary);
  padding: 50px;
  border-radius: 20px;
  margin-top: 120px;
}

.card-feature-icon {
  height: 100px;
  width: 100px;
  background-color: var(--bs-cyan);
  border-radius: 8px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: -100px auto 0;
}

.card-feature-icon img {
  transform: rotate(-45deg);
  max-width: 50px;
}

.card-feature-content h6 {
  font-size: 26px;
  font-weight: 500;
  color: var(--bs-white);
  margin-bottom: 16px;
  margin-top: 36px;
}

.card-feature-content p {
  font-size: 18px;
  color: var(--bs-white);
}

/* SECTION HOW IT WORK */

.section-howwork-list {
  position: relative;
  margin-top: -50px;
  padding-bottom: 50px;
}

.card-howwork-list {
  position: relative;
  text-align: center;
  max-width: 250px;
  margin: 0 auto 72px;
}

.card-howwork-list-icon,
.howwork-item-icon {
  height: 100px;
  width: 100px;
  background-color: var(--bs-cyan);
  border-radius: 8px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 32px;
}

.card-howwork-list-icon img,
.howwork-item-icon img {
  max-width: 40px;
  transform: rotate(-45deg);
}

/* SECTION HOW WORK LIST */

.section-howwork-item {
  padding-top: 70px;
  overflow: hidden;
}

.card-howwork {
  width: 100%;
  height: 100%;
  background-color: var(--bs-azure);
  position: relative;
  margin-bottom: 100px;
}

.card-howwork:last-child {
  margin-bottom: 0;
}

.howwork-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
}

.howwork-item-icon {
  margin: -50px 0 0 20px;
}

.howwork-item-content {
  flex: 1 1 0;
  padding: 30px 0 70px;
  position: relative;
}

.howwork-item-content p {
  font-size: 24px;
  margin-top: 32px;
}

/* SECTION FAQ */

.section-faq {
  padding-top: 50px;
}

.accordion {
  --bs-accordion-color: var(--bs-midnight);
  --bs-accordion-bg: var(--bs-teal-rgba-sm);
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 16px;
  --bs-accordion-btn-padding-y: 16px;
  --bs-accordion-btn-color: var(--bs-midnight);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300ccff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 24px;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2300ccff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 32px;
  --bs-accordion-body-padding-y: 32px;
  --bs-accordion-active-color: var(--bs-midnight);
  --bs-accordion-active-bg: var(--bs-teal-rgba-sm);
}

.accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.accordion-button {
  font-size: 20px;
  font-weight: 500;
}

.accordion-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--bs-teal-rgba-xs);
}

.accordion-body p {
  font-size: 20px;
}

/* SECTION RESOURCE */

.section-resource {
  padding-top: 80px;
}

.section-resource .form-label {
  font-size: 18px;
}

.resource-topic {
  background-color: var(--bs-azure);
  border-radius: 15px;
  padding: 24px 16px;
  margin-top: 16px;
}

.resource-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.resource-topic-list a {
  color: var(--bs-white);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--bs-primary);
  padding: 10px 16px;
  border-radius: 8px;
  border: 0px;
}

.resource-topic-list a:hover {
  text-decoration: underline;
}

/* SECTION ABOUT */

.section-about {
  padding: 120px 0 64px;
}

.about-image {
  position: relative;
  max-width: 535px;
  margin-bottom: 24px;
}

.about-image-logo {
  position: absolute;
  top: -50px;
  left: -40px;
  height: 124px;
  width: 124px;
  background-color: var(--bs-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-text {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  background-color: var(--bs-primary);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  /*padding: 40px 20px;*/
  font-size: 32px;
  color: var(--bs-white);
  text-align: center;
  line-height: 1.4;
  font-weight: 300;
}

.about-image-text a {
  display: block;
  font-weight: 700;
}

.about-content {
  display: flex;
  flex-direction: column;
  /*gap: 24px;*/
  font-size: 20px;
}

/*  SECTION GET IN TOUCH */

.section-get-touch {
  padding: 90px 0;
}

.get-touch-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  max-width: 640px;
  align-items: flex-start;
}

/* SECTION JOB */

.section-job {
  padding: 40px 0 20px;
}

/* SECTION TEAMS */

.section-teams {
  padding: 50px 0;
}

.teams-image {
  max-width: 300px;
  position: relative;
}

.teams-image img {
  border-radius: 16px;
}

.teams-content {
  max-width: 540px;
  margin-left: 40px;
}

.teams-content h6 {
  font-size: 24px;
  color: var(--bs-midnight);
  margin-bottom: 8px;
}

.teams-content a {
  font-size: 20px;
  font-weight: 600;
  color: var(--bs-navy-blue);
}

.teams-content a:not(:last-child):hover {
  text-decoration: underline;
}

.teams-content p {
  font-size: 18px;
 /* font-weight: 600;*/
  margin-bottom: 12px;
  margin-top: 12px;
}

.teams-content a img {
  width: 36px;
}

/* SECTION CONTACT */

.section-white {
  padding: 40px 0;
  text-align: center;
}

.contact-text h2 {
  font-size: 48px;
  color: var(--bs-blue);
}

.contact-text p {
  color: var(--bs-black);
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 24px;
	 margin-bottom: 24px;
}

/* BLOG DETAILS */

.section-hero-blog-text {
    padding: 72px 0;
    min-height: 120px;
    background-color: var(--bs-primary);
    text-align: center;
}

.section-hero-blog-text .hero-text h1 {
    font-size: 30px;
    color: var(--bs-white);
}

.section-blog-detail {
  padding: 40px 0;
}

.blog-detail-time .card-blog-time {
  background-color: var(--bs-midnight);
  color: var(--bs-white);
}

.blog-detail-time .card-blog-time img {
  filter: brightness(0) invert(1);
}

.blog-detail-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.blog-detail-category .card-blog-link {
  margin-top: 0;
}

.blog-detail-image {
  margin-bottom: 32px;
  margin-top: 32px;
}



.blog-detail-image img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.blog-detail-content p {
  font-size: 24px;
  color: var(--bs-midnight);
  line-height: 1.4;
  margin-bottom: 24px;
}

.blog-detail-content .alignleft {
  float: left;
  margin: 16px 16px 16px 0;
  height: auto;
  max-width: 100%;
}

.blog-detail-content .alignright {
  float: right;
  margin: 16px 0 16px 16px;
  height: auto;
  max-width: 100%;
}

/* SECTION JOB DETAILS */

.section-hero-job-text {
    padding: 72px 0;
    min-height: 120px;
    background-color: var(--bs-primary);
    text-align: center;
}

.section-hero-job-text .hero-text h1 {
    font-size: 30px;
    color: var(--bs-white);
}

.section-job-detail {
  padding: 40px 0;
}

.job-detail-content p {
 font-size: 20px;
 margin-top: 24px;
}

.job-detail-terms p {
  font-size: 18px;
  margin-bottom: 20px;
}

.job-detail-terms .form-check-label {
  font-size: 18px;
}

/* SECTION STATIC PAGES */

.section-hero-static-text {
    padding: 40px 0;
    min-height: 100px;
    background-color: var(--bs-primary);
    text-align: center;
}

.section-hero-static-text .hero-text h1 {
    font-size: 72px;
    color: var(--bs-white);
	/*text-transform: uppercase;*/
}
.section-white-static {
  padding: 72px 0;
  text-align: left;
}

.section-white-static h2 {
  font-size: 32px;
  font-weight: 500;	
  color: var(--bs-navy-blue);
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: left;
}

.section-white-static p {
    margin-bottom: 15px !important;
    position: relative;
  }  

.footer-logo {
  max-width: 300px;
  margin-bottom: 30px;
	text-align: right;
}
/* SECTION REQUEST DEMO */

.request-demo-content p {
  margin-top: 20px;
}

.request-demo-content ul {
  display: flex;
}

.card-demo-content {
  position: relative;
  text-align: center;
  max-width: 200px;
  margin: 12px auto 0;
}

.card-demo-content-image {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  border-radius: 6px;
  margin: 0 auto;
}

.card-demo-content p {
  color: var(--bs-secodary);
  font-weight: 700;
}
/* Newsletter */

.newsletter {
  background-color: var(--bs-secodary);
  padding: 65px 0;
}

.newsletter p:first-child {
  margin-top: 0;
}

.newsletter-left h3 {
  color: var(--bs-white);
  margin-top: 5px;
}

.newsletter-left p {
  font-size: 18px;
  color: var(--bs-white);
  margin-top: 10px;
}

.fnewsletter-left p a {
  color: var(--bs-white);
  text-decoration: underline;
}
