@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600,700&display=swap");

/*@import url("responsive.css");*/

* {
  padding: 0;
  margin: 0;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  /* font-family: 'Noto Sans JP', sans-serif; */
  -webkit-font-smoothing: antialiased;
}

.content {
  flex: 1 0 auto;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
}

/* @-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
} */

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}
/*
@viewport {
    width: device-width;
}
*/

:root {
  --color-primary: #213477;
  --color-mobilemenu: #131663;
  --color-secondary: #eea302;
  --color-tertiary: #fec74e;
  --color-accent: #50c776;
  --color-info: #0dcaf0;
  --color-neutral: #f0f2f4;
  --color-highlight: #814aff;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-gray: #f5f5f5;
  --color-gray-deep: #bdbdbd;
}

a {
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--color-black);
  font-family: "Open Sans", sans-serif;
}

strong {
  font-weight: 500;
}

h1 {
  font-size: 80px;
  font-weight: 700;
}

h2 {
  font-size: 50px;
  font-weight: 600;
  color: var(--color-primary);
}

p {
  line-height: 20px;
}

a {
  text-decoration: none;
  color: var(--color-black);
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: var(--color-black);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

hr {
  background-color: var(--color-gray-deep);
}

.btn {
  white-space: normal;
  cursor: pointer;
}

.btn:focus,
.btn:active {
  outline: inherit;
}

textarea:focus,
input:focus {
  color: var(--color-white);
  outline: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.theme-color {
  color: var(--color-primary);
}

/********************************************/

/*--------Main Menu---------*/

.header-area {
  padding: 0;
  background: rgba(256, 256, 256, 0);
  position: relative;
  /* left:0;
    right: 0;
    top: 0; */
  z-index: 1000;
}

.header-area .navbar {
  padding: 0.3rem 0 0.2rem 0;
  z-index: 100;
}

.logo {
  width: 100%;
}

.navbar-nav {
  padding: 10px 0;
}

.navbar-nav li {
  display: inline-block;
}

.navbar-nav li a {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin: 0 20px 0 0;
  color: var(--color-white);
}

.navbar-nav li a:hover,
.navbar-nav li a:focus,
.navbar-nav li a:active,
.user li a:hover,
.user li a:focus {
  border-radius: 50px;
  color: var(--color-secondary) !important;
}

/* .main-menu li:not(:first-child)::before{
    content: url(../img/main-menu-separetor.png);
    color: #fff;
    font-weight: 200;
    position: absolute;
    margin-top: 12px;
} */

.navbar-nav .dropdown-menu {
  border-radius: 0 0 4px 4px;
  border: 0;
  margin-top: 0;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: #aaa 0 3px 5px;
}

.overflow-y-scroll {
  max-height: 275px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.main-menu .dropdown-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  border-top: 1px solid var(--color-gray-deep);
}
.main-menu .dropdown-menu a:first-child {
  border-top: none;
}

.main-menu .dropdown-menu a:hover,
.main-menu .dropdown-menu a:focus {
  background: none;
  color: var(--color-secondary);
}

.main-menu .dropdown-item {
  padding: 0.5rem 1rem;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.btn-login {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  margin-top: 3px;
}

.btn-login a {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--color-black);
  border-radius: 25px;
  padding: 10px 24px 10px 24px;
}
.btn-login a:hover {
  color: #111;
  background: var(--color-secondary);
  border-radius: 25px;
}

/*---------Hero Area---------*/
.content {
  background: f5f5f5;
}
.hero-area {
  margin-top: -95px;
  background: url(../img/bg-hero.jpg);
  /* background-size: cover; */
  background-repeat: no-repeat;
  background-position: 45% 1%;
  z-index: 10;
}

.hero-left {
  padding: 200px 0 170px 0;
}
.hero-right {
  padding: 170px 0 110px 0;
}

.hero-left h1 {
  font-size: 80px;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 20px;
}

.hero-left p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--color-white);
  margin-top: 20px;
}

.hero-buttons {
  margin-top: 80px;
}

.btn-explore {
  background: var(--color-white);
  color: #000;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  padding: 12px 36px;
}
.btn-explore:hover {
  background: var(--color-secondary);
  color: #222;
}
.btn-explore-arrow {
  background: var(--color-white);
  color: #000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  padding: 11px 11px 5px 11px;
}
.btn-explore-arrow:hover {
  background: var(--color-secondary);
  color: #222;
}

.btn:focus,
.btn:active {
  outline: none;
}
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}

.section-padding {
  padding-top: 120px;
}

.about-content {
  max-width: 1400px;
}

.about-content {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
}

/*---------Product Slider Section---------*/

.section-copy {
  font-size: 24px;
  line-height: 30px;
}

.slide-item {
  display: flex;
  flex-direction: row;
}

.slide-item > .row {
  border-radius: 25px;
  background: var(--color-white);
}

.slide-body {
  padding: 30px;
}
.slide-title {
  font-size: 40px;
}
.slide-text {
  font-size: 20px;
  line-height: 28px;
}
.btn-slide a {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
}
.btn-slide a:hover {
  font-size: 20px;
  color: var(--color-secondary);
}

.slider-img-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  height: 100%;
  border-radius: 25px;
  background: linear-gradient(
    325deg,
    rgba(17, 15, 127, 1) 0%,
    rgba(42, 62, 140, 1) 51%,
    rgba(79, 80, 192, 1) 100%
  );
}

[data-action="start"],
[data-action="stop"] {
  display: none;
}

.tns-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  margin-right: 6px;
  background: var(--color-gray-deep);
  border: none;
  outline: none;
}

.tns-outer [aria-controls]:active,
.tns-outer [data-action]:active {
  background: var(--color-secondary);
}

/*------------- Video Modal Section--------------*/

.video-wrapper {
  width: 100%;
  margin-top: 200px;
}
.video-wrapper p {
  max-width: 450px;
  font-size: 18px;
}

.partner-section {
  margin-top: 700px;
}

.blog-section {
  margin-top: 700px;
}

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

.partner-card {
  width: 14%;
  margin: 15px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 0 10px #ccc;
  min-height: 170px;
  transition: all 0.1s ease-in-out 0s;
}
.partner-card:hover {
  opacity: 0.9;
  box-shadow: 0 0 10px #888;
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transition: all 0.1s ease-in-out 0s;
}
.partner-card h4 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 5px;
  font-weight: 500;
  color: #000;
}

/*---------Testimonial---------*/

.testimonial-item {
  display: flex;
  flex-direction: row;
}
.testimonial-item > .row {
  background: var(--color-white);
  border-radius: 25px;
}
.img-testimonial {
  border-radius: 25px;
}
.testimonial-body {
  padding: 30px;
}
.quote-comma {
  font-size: 80px;
  font-weight: 500;
  padding: 30px 0 0 0;
}
.testimonial-text {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
}

/*---------Blog---------*/

.card {
  border-radius: 25px;
  border-bottom: 4px solid var(--color-primary);
}
.card-img-top {
  border-radius: 25px 25px 0 0;
}
.card-body {
  padding: 30px;
}
.card-text {
  font-size: 20px;
  line-height: 28px;
}
.btn-card {
  font-size: 22px;
  color: var(--color-primary);
}
.btn-card:hover {
  color: var(--color-secondary);
}
.all-blog-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.btn-all-blogs {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  padding: 12px 30px;
}
.btn-all-blogs:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
/*---------Footer---------*/

footer {
  margin-top: 140px;
  background-color: var(--color-mobilemenu);
  padding: 5em 0 4.5em 0;
}

.footer-logo {
  margin-bottom: 1rem;
  margin-top: -15px;
  width: 40%;
}
.footer-quote {
  font-size: 18px;
  line-height: 28px;
}

footer h3 {
  color: var(--color-white) !important;
  text-transform: uppercase;
}

footer h5 {
  color: var(--color-white) !important;
  text-transform: uppercase;
}

footer p {
  color: var(--color-white) !important;
  padding: 20px 0 0 0;
}

.address {
  font-size: 18px;
}
footer a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: block;
  padding: 10px 0;
}
footer a:hover {
  color: #fae820;
}
.social-footer > a > img {
  opacity: 0.8;
}
.social-footer a img:hover {
  opacity: 1;
}
.footer-contact {
  display: flex;
  height: 60px;
  align-items: center;
}

.copyright {
  background: var(--color-mobilemenu);
  color: var(--color-white);
  font-weight: 300;
  padding: 10px 0 25px 0;
  border-top: 1px solid #303394;
}
.copyright-right a:hover {
  color: #d8e666;
}

/*---------Footer End---------*/

/*-------------Other Page Header --------------*/

.page-header {
  margin-top: -95px;
  background: url(../img/bg-page.jpg);
  /* background-size: cover; */
  background-repeat: no-repeat;
  background-position: 75% 20%;
  z-index: 10;
}
.page-title {
  color: var(--color-white);
  padding: 150px 0 20px 0;
  font-size: 55px;
}
.page-copy {
  color: var(--color-white);
  padding-bottom: 100px;
  font-size: 20px;
  line-height: 26px;
}
.page-short-description {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
}
.page-paragraph {
  font-size: 18px;
  line-height: 24px;
}
.page-button-wrapper {
  margin-top: 40px;
}
.btn-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
}
.btn-text:hover {
  font-size: 20px;
  color: var(--color-secondary);
}
.section-bullet ul li {
  margin-left: 24px;
}
.section-bullet ul li::before {
  content: url(../img/icon-check.png);
  color: #fff;
  font-weight: 200;
  position: absolute;
  margin-left: -24px;
}
.product-img-wrapper {
  display: flex;
  justify-content: center;
  padding: 15% 0 15% 0;
  border-radius: 25px;
  background: linear-gradient(
    325deg,
    rgba(17, 15, 127, 1) 0%,
    rgba(42, 62, 140, 1) 51%,
    rgba(79, 80, 192, 1) 100%
  );
}
.img-product {
  width: 50%;
}
.product-copy {
  font-size: 20px;
  line-height: 26px;
}

/*-------------Sticky NAV--------------*/

.top-menu {
  width: 100%;
  z-index: 1;
  transition: all ease-out 0.4s;
  -webkit-transition: all ease-out 0.4s;
}

.top-menu.slideDownScaleReversedIn {
  background-color: var(--color-mobilemenu) !important;
  border-bottom: 1px solid #222577;
  z-index: 999;
  transition: all ease-out 0.4s;
  -webkit-transition: all ease-out 0.4s;
  position: fixed !important;
  margin-top: 0;
  padding-top: 0;
}

.top-menu.slideDownScaleReversedIn a {
  color: var(--color-white);
}
.top-menu.slideDownScaleReversedIn .btn-login a {
  color: var(--color-black) !important;
}
.top-menu.slideDownScaleReversedIn .btn-login a:hover {
  color: var(--color-black);
  background: var(--color-secondary);
}

.header-wrap.slideDownScaleReversedIn .navbar-brand img {
  display: block;
}

.slideDownScaleReversedIn {
  animation-play-state: running;
  animation-name: slideDownScaleReversedIn;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-delay: 0s;
  -webkit-animation-play-state: running;
  -webkit-animation-name: slideDownScaleReversedIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
}
@keyframes slideDownScaleReversedIn {
  0% {
    opacity: 0;
    transform: translateY(-170%) scale(1.5);
  }
}
@-webkit-keyframes slideDownScaleReversedIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-170%) scale(1.5);
  }
}
.slideDownScaleReversedOut {
  transition: all ease-out 0.4s;
  -webkit-transition: all ease-out 0.4s;
  animation-play-state: paused;
  animation-name: slideDownScaleReversedOut;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-delay: 4s;
  -webkit-animation-play-state: paused;
  -webkit-animation-name: slideDownScaleReversedOut;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 4s;
}
@keyframes slideDownScaleReversedOut {
  100% {
    opacity: 1;
    transform: translateY(-100%) scale(1);
  }
}
@-webkit-keyframes slideDownScaleReversedOut {
  100% {
    opacity: 0;
    -webkit-transform: translateY() scale(1.5);
  }
}

/*--------------Sticky NAV End---------------*/
