/*
*********************
::::::::::::: CSS table of contents :::::::::::::

1. General styles
2. Header navigation

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

/* 1. General styles */
body{
  font-family: 'Poppins', sans-serif;
  color: #83868c;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}
html {
  color: #83868c;
  font-size: 17px;
  line-height: 1.5;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
.hidden {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " ("attr(href) ")";
  }
  abbr[title]:after {
    content: " ("attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.btn {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
h1,h2,h3,h4,h5,h6{
  color: #001244;
  font-family: 'Nunito', sans-serif;
}
/**
 * 2. Header navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 5;
}
.header-navigation {
  text-align: center;
  flex-grow: 1;
  padding: 0 20px;
}
.header-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-navigation a:hover {
  text-decoration: none;
}
.header-navigation>ul {
  padding-left: 0;
  margin-bottom: 0;
  display: inline-block;
  float: right;
}
.header-navigation>ul>li {
  display: inline-block;
  list-style: none;
  font-size: 15px;
  position: relative;
}
.header-navigation>ul>li>a {
  color: #fff;
  display: block;
  padding: 15px 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}
.header-navigation>ul>li:hover>a,
.header-navigation>ul>li.active a {
  color: #006DFE;
}
.header-navigation .has-dropdown {
  position: relative;
}
.header-navigation ul>.has-dropdown>a::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  padding-left: 10px;
  font-weight: 100;
  font-size: 15px;
  vertical-align: bottom;
}
.header-navigation ul>.has-dropdown ul>li.has-dropdown>a::after {
  content: "\f0da";
  font-family: "Font Awesome 5 Pro";
  padding-left: 10px;
  font-weight: 100;
  font-size: 15px;
  vertical-align: bottom;
  text-align: right;
  float: right;
  color: #8a929a;
}
.header-navigation ul ul {
  background: #fff;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  transition: all .3s ease 0s;
  width: 280px;
  z-index: 99999 !important;
  text-align: left;
  visibility: hidden;
  -webkit-box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, .09);
  -moz-box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, .09);
  box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, .09);
}
.header-navigation ul>li:hover>ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}
.header-navigation ul>li>ul>li ul {
  background: #fff;
  left: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  transition: all .3s ease 0s;
  width: 220px;
  z-index: 99999 !important;
  text-align: left;
  visibility: hidden;
  -webkit-box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, .09);
  -moz-box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, .09);
  box-shadow: 0px 7px 7px 0px rgba(48, 51, 50, .09);
}
.header-navigation ul>li:last-child>ul,
.header-navigation ul>li:nth-last-child(2)>ul,
.header-navigation ul>li:nth-last-child(3)>ul {
  right: 0;
  left: auto;
}
.header-navigation ul>li:last-child>ul>li ul,
.header-navigation ul>li:nth-last-child(2)>ul>li ul,
.header-navigation ul>li:nth-last-child(3)>ul>li ul {
  right: 100%;
  left: auto;
  top: 0;
}
.header-navigation ul>li>ul>li:hover>ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}
.header-navigation .has-dropdown ul li {
  position: relative;
  border-bottom: 1px solid #ddd;
}
.header-navigation .has-dropdown ul li a {
  display: block;
  padding: 9px 15px;
  color: #2b2b2b;
  font-size: 16px;
}
.header-navigation .has-dropdown ul li a .label {
  background: #006DFE;
  font-size: 12px;
  margin-left: 7px;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  text-align: right;
}
.header-navigation .has-dropdown ul li:hover>a,
.header-navigation .has-dropdown ul li a:hover {
  color: #006DFE;
  background: transparent;
}
.header-navigation .has-dropdown.overflow-element ul {
  left: auto;
  right: 100%;
  transform: translateY(-20px);
}
.header-navigation .has-dropdown.overflow-element>ul {
  left: auto;
  right: 0;
}
.meanmenu-reveal {
  top: -52px !important;
  color: #fff !important;
  z-index: 99999999999999999999;
  text-indent: 0 !important;
  font-size: 32px !important;
}
.menu-item i {
  float: right;
  line-height: 24px;
  margin-left: 10px;
}
.menu-item-btn>a,
.menu-item-btn>a:visited {
  background: #006DFE;
  color: #fff !important;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.menu-item-btn>a:hover {
  background: #000;
}

/* End navigation menu  */
.home-one-hero {
  position: relative;
  padding: 250px 0 250px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-color: #001244;
  overflow: hidden;
}
.home-one-hero::after{
  content: '';
  position: absolute;
  bottom: -10px;
  left: -5px;
  right: -5px;
  width: calc( 100% + 10px);
  height: 220px;
  background: url(../img/header-one-bottom-shape.svg) no-repeat center bottom;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.hero-rotate-icon {
  position: absolute;
  max-width: 180px;
  left: 10px;
  top: 10%;
}
.cta-animation img, .hero-rotate-icon img {
  -webkit-animation-name: rotate-360;
  animation-name: rotate-360;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes rotate-360 {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}
.hero-one-img{
  position: relative;
  z-index: 2;
}
.hero-one-img::before {
  position: absolute;
  content: "";
  right: 50px;
  top: 0;
  width: 80%;
  height: 80%;
  background: #fff;
  border-radius: 55% 35% 48% 30% / 40% 40% 70% 6%;
  will-change: border-radius, transform, opacity;
  animation: heroShape 6s linear infinite;
  display: block;
  z-index: -1;
  opacity: 1;
}
@keyframes heroShape {
  0%,
  100% {
      border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
      transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  35% {
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
      transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }
  50% {
      transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  65% {
      border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
      transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}
.intro-heading {
  display: inline-block;
  background: #4F87FB;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-bottom: 25px;
}
.white-text {
  color: #fff;
}
.hero-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #fff;
}
.hero-btn-1,
.hero-btn-1:visited {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.hero-btn-1:hover {
  background-color: #fff;
  color: #001244;
}
.pl-xl-45 {
  padding-left: 45px;
}
.lg-pr-45 {
  padding-right: 45px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-45 {
  margin-bottom: 45px;
}
.ptb-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}
.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.pt-60{
  padding-top: 60px;
}
.pad-30 {
  padding: 30px;
}
.pad-45 {
  padding: 30px;
}
.pb-120 {
  padding-bottom: 120px;
}
.hero-btn-block {
  position: relative;
}
.video-play-button {
  color: #4F87FB;
  font-size: 30px;
  padding-left: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
  left: 30px;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}
.video-play-button.theme:before,
.video-play-button.theme:after {
  background: #4F87FB repeat scroll 0 0;
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-play-button i {
  display: block;
  position: relative;
  z-index: 3;
  color: #4F87FB;
}
.video-play-button.theme i {
  color: #ffffff;
}
.video-play-button:hover {
  text-decoration: none;
}
.hero-video-col {
  position: relative;
}
.hero-btn-col {
  margin-left: 150px;
}
.sec-pad {
  padding: 120px 0;
}
.intro-animated-icon {
  -webkit-animation: rotate-icon 15s linear infinite alternate-reverse;
  animation: rotate-icon 15s linear infinite alternate-reverse;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  text-align: center;
}
@-webkit-keyframes rotate-icon {
  0% {
    -webkit-transform: scale(0.5) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    -webkit-transform: scale(1) rotate(360deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.7) rotate(720deg);
    opacity: 0.7;
  }
  75% {
    -webkit-transform: scale(0.3) rotate(360deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(0.1) rotate(0deg);
    opacity: 0.1;
  }
}
@keyframes rotate-icon {
  0% {
    -webkit-transform: scale(0.3) rotate(0deg);
    transform: scale(0.3) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    -webkit-transform: scale(0.5) rotate(360deg);
    transform: scale(0.75) rotate(360deg);
    opacity: 0.25;
  }
  50% {
    -webkit-transform: scale(1) rotate(720deg);
    transform: scale(1) rotate(720deg);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.75) rotate(360deg);
    transform: scale(0.75) rotate(360deg);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(0.5) rotate(0deg);
    transform: scale(0.5) rotate(0deg);
    opacity: 0.5;
  }
}
@-moz-keyframes rotate-icon {
  0% {
    -moz-transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
  25% {
    -moz-transform: scale(1) rotate(360deg);
    opacity: 1;
  }
  50% {
    -moz-transform: scale(0.3) rotate(720deg);
    opacity: 0;
  }
  100% {
    -moz-transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
}
.box-shadow {
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}
.transmission-block {
  text-align: center;
  background: #fff;
  padding: 35px;
}
.transmission-block:hover .transmission-heading {
  color: #4f87fb;
}
.transmission-block::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/tranmission-bg.svg) no-repeat center center;
  opacity: 0.5;
  background-size: 80px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.transmission-block:hover::after {
  background-size: 100px;
  opacity: 0.4;
  -webkit-animation: rotate-icon 15s linear infinite alternate-reverse;
  animation: rotate-icon 15s linear infinite alternate-reverse;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}
.transmission-block .inner-icon {
  margin-bottom: 15px;
}
.conter-block {
  position: relative;
  text-align: center;
}
.transmission-heading {
  font-size: 20px;
}
.counter-icon {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: #4f87fb;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 24px;
  text-align: left;
  padding: 0px 10px;
}
.counter-number {
  font-size: 40px;
  font-weight: 700;
  color: #001244;
}
.conter-heading {
  font-size: 24px;
  font-weight: 500;
}
.light-bg {
  background: #EEF1F8;
}
.dark-bg {
  background: #001244;
}
blockquote {
  background: #4f87fb;
  padding: 30px 30px 30px 45px;
  border-left: 3px solid #000;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
}
.cta-btn {
  color: #fff;
  background: #4f87fb;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 45px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.cta-btn:hover {
  background: #000;
  color: #fff;
}
.cta-icon {
  display: inline-block;
  font-size: 32px;
  line-height: 1;
  padding: 0px;
}
.cta-content {
  padding-left: 10px;
  text-align: left;
}
.cta-sontact {
  display: block;
}
.cta-title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}
.cta-container {
  position: relative;
  z-index: 3;
}
.cta-container::before {
  content: '';
  position: absolute;
  background: url(../img/dots.svg) no-repeat;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
.cta-container::after {
  content: '';
  position: absolute;
  background: url(../img/dots-2.svg) no-repeat right bottom;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
.section-heading {
  margin-bottom: 20px;
  font-weight: 700;
}
.symptoms-icon {
  margin-bottom: 15px;
}
.symptoms-heading {
  font-size: 20px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.sumptoms-block:hover .symptoms-heading {
  color: #4f87fb;
}
.sumptoms-block,
.symptoms-content {
  position: relative;
  z-index: 2;
}
.sumptoms-block::before {
  content: '';
  position: absolute;
  background: url(../img/symptoms-bg.svg) no-repeat top right;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.sumptoms-block:hover::before {
  width: 60%;
  opacity: 0.05;
}
.btn-default,
.btn-default:visited {
  background: #4f87fb;
  color: #fff;
  padding: 10px 45px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.btn-default:hover {
  background: #001244;
  color: #fff;
}
.prevension-icon {
  max-width: 80px;
}
.prevension-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
}
.prevension-content::before {
  content: '';
  position: absolute;
  border-top: 2px dotted #4f87fb;
  left: calc(100% + 25px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  z-index: 1;
}
.prevension-content::after {
  content: '\f2f7';
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  left: calc(100% + 5px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 20px;
  font-size: 20px;
  z-index: 1;
  color: #4f87fb;
  line-height: 1;
}
.prevension-content {
  padding-left: 20px;
  position: relative;
}
.prevension-block {
  position: relative;
  overflow: hidden;
}
.prevension-block {
  margin-bottom: 30px;
}
.prevension-content-reverse {
  position: relative;
  padding-right: 20px;
}
.prevension-content-reverse::before {
  content: '';
  position: absolute;
  border-top: 2px dotted #4f87fb;
  right: calc(100% + 25px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  z-index: 1;
}
.prevension-content-reverse::after {
  content: '\f2f7';
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  right: calc(100% + 5px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 20px;
  font-size: 20px;
  z-index: 1;
  color: #4f87fb;
  line-height: 1;
}
.world-statistics {
  background: #001244;
  color: #fff;
}
.corona-updates {
  color: #fff;
}
.corona-updates td {
  vertical-align: middle;
}
.faq-section {
  background: url(../img/faq-illustration.svg) no-repeat;
}
.faq-wrap:last-child {
  margin-bottom: 30px;
}
.accordion {
  padding-left: 0;
  margin: 0;
  padding: 0;
}
.accordion p {
  font-size: 16px;
  display: none;
  padding: 20px 45px 15px 20px;
  margin-bottom: 0;
  color: #686868;
}
.accordion a {
  color: #001244;
  font-size: 17px;
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 600;
  padding: 15px 0 15px 18px;
  border: 1px solid #E5E5E5;
}
.accordion a:hover {
  color: #333333;
}
.accordion a:after {
  position: absolute;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  content: "\f055";
  top: 10px;
  color: #4F87FB;
  font-size: 25px;
  font-weight: 300;
}
.accordion li {
  position: relative;
  list-style-type: none;
  margin-bottom: 30px;
}
.accordion li:first-child {
  border-top: 0;
}
.accordion li:last-child {
  margin-bottom: 0;
}
.accordion li a.active {
  color: #ffffff;
  background-color: #4F87FB;
  border: 1px solid #4F87FB;
}
.accordion li a.active:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f056";
  font-size: 25px;
  color: #ffffff;
}
#contact input,
textarea,
select {
  width: 100%;
  margin: 0;
  padding: 5px;
  color: #A1A1A1;
  background: #fff;
  border: 1px solid #D9D9D9;
  margin-bottom: 30px;
  min-height: 50px;
}
#contact input:focus,
textarea:focus,
select:focus {
  border: 1px solid #999;
  background-color: #fff;
  color: #333;
}
#contact input.submit {
  width: 100%;
  cursor: pointer;
  border: 1px solid #4F87FB;
  background: #4F87FB;
  color: #fff;
}
#contact input.submit:hover {
  background: #444;
}
#contact input[type="submit"][disabled] {
  background: #888;
}
#message {
  margin: 0;
  padding: 0;
}
.error_message {
  display: block;
  height: 22px;
  line-height: 22px;
  background: #FBE3E4 url('../img/error.gif') no-repeat 10px center;
  padding: 3px 10px 3px 35px;
  color: #8a1f11;
  border: 1px solid #FBC2C4;
  -webkit-border-radius: 5px;
}
.loader {
  padding: 0 10px;
}
#contact #success_page h1 {
  background: url('../img/success.gif') left no-repeat;
  padding-left: 22px;
}
.post-thumbnail {
  position: relative;
}
.post-category {}
.post-category a {
  background: #4F87FB;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.post-sm-details .post-title {
  font-size: 18px;
}
.post-list-block .post-item {
  margin-bottom: 30px;
}
.sticky-post-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px;
  width: 100%;
  height: 100%;
}
.sticky-post-title a,
.sticky-post-title a:visited {
  color: #fff;
}
.post-title a,
.post-title a:visited {
  color: #4F87FB;
}
.post-sm-details .post-details {
  color: #686868;
}
@media (min-width: 768px) {
  .container-full-left {
    margin-right: -webkit-calc((100% - 1140px)/2);
    margin-right: calc((100% - 1140px)/2);
  }
  .container-full-right {
    margin-left: -webkit-calc((100% - 1140px)/2);
    margin-left: calc((100% - 1140px)/2);
  }
  .container-full-right{
    padding-left: 15px;
    padding-right: 15px;
  }
}
.container-full-left {
  background: #001244;
}
.reviews-slide {
  color: #fff;
}
.reviews-block {
  position: relative;
  color: #fff;
}
.quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: #4f87fb;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 24px;
  text-align: left;
  padding: 0px 10px;
}
.reviews-slider {
  padding: 60px;
}
.reviewer-img {
  max-width: 80px;
}
.reviewer-details {
  padding-left: 15px;
}
.reviewer-name {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.reviewer-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7;
  font-style: italic;
}
.reviewer-meta {
  position: relative;
  padding-left: 90px;
}
.reviewer-meta::before {
  content: '';
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}
.active .reviewer-meta::before {
  width: 80px;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.reviews-slider .owl-dots .owl-dot.active span,
.reviews-slider .owl-dots .owl-dot:hover span {
  background: #4F87FB;
  width: 40px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
button:focus {
  outline: 0px dotted;
  outline: 0px auto -webkit-focus-ring-color;
}
.reviews-slider .owl-nav {
  margin-top: 30px;
}
.reviews-slider .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}
.site-footer {
  padding: 60px 0;
  background: #fff;
}
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-flexbox !important;
  display: flex !important;
}
.footer-social ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer-social ul li a,
.footer-social ul li a:visited {
  color: #001244;
}
.contact-icon i {
  background: #4F87FB;
  color: #fff;
  font-size: 18px;
  padding: 10px;
}
.contact-text {
  padding-left: 10px;
}
.contact-block {
  margin-bottom: 15px;
}
.footer-widget-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 15px;
}
.footer-menu a,
.footer-menu a:visited {
  color: #686868;
}
.copyright-text {
  font-style: italic;
  margin-top: 20px;
}
.scroll-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #4F87FB;
  font-size: 28px;
  line-height: 1;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
}
.scroll-top:hover {
  cursor: pointer;
  background: #001244;
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .mt-xs-30 {
    margin-top: 30px;
  }
  .home-one-hero {
    padding: 150px 0 300px;
  }
  .section-heading {
    font-size: 1.2rem;
  }
  .pt-xs-0 {
    padding-top: 0px !important;
  }
  .reviews-slider {
    padding: 45px 15px;
  }
  .container-full-right{
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page-header {
  padding: 150px 0;
  color: #fff;
  background: url(../img/page-header.jpg) no-repeat top center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001244;
  opacity: 0.85;
}
.page-header .breadcrumb {
  background-color: transparent;
  text-align: center;
  color: #E2E2E2;
}
.page-header .breadcrumb a {
  color: #E2E2E2;
}
.page-header .breadcrumb-item.active {
  color: #fff;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #E2E2E2;
}
.single-post-thumbnail {
  margin: 30px auto;
}
.single-post-block {
  border-bottom: 5px solid #001244;
}