/* ===================
fonts
====================== */

@media (max-width: 991px)
{
	.innercontent 
	{
		padding-top: 100px;
	}
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Titillium+Web:wght@400;600;700;900&display=swap');


/* ===================
general css
====================== */

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

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #757F95;
  line-height: 1.8;
}

a {
  color: #031F4B;
  display: inline-block;
}

a, a:active, a:focus, a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}
.innercontent li {
  list-style: disc;
}
h1, h2, h3, h4, h5, h6 {
  color: #031F4B;
  margin: 0px;
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
  background: #fff;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}

.loader {
  width: 40px;
  height: 40px;
  position: relative;
  top: calc(50% - 30px);
  left: calc(50% - 20px);
}

.loader-box-1, .loader-box-2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF0000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader-bounce 2.0s infinite ease-in-out;
}

.loader-box-2 {
  animation-delay: -1.0s;
}

@keyframes loader-bounce {
  0%, 100% {
    transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
  }
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: #EFF2F5;
}


/* ===================
site title css
====================== */

.site-heading {
  margin-bottom: 50px;
}

.site-title-tagline {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: #FF0000;
  position: relative;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 48px;
  color: #031F4B;
  margin-top: 5px;
  margin-bottom: 0;
}

.site-title span{
  color: #FF0000;
}

.site-heading p {
  font-size: 16px;
}


@media all and (max-width: 767px) {
  .site-title {
    font-size: 35px;
  }
}



/* ===================
margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

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

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 7px 8px 7px 18px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  overflow: hidden;
  border: none;
  background: #088b6c;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.theme-btn:hover {
  color: #fff;
  background: #031F4B;
}

.theme-btn i{
  height: 36px;
  width: 36px;
  line-height: 36px;
  color: #088b6c;
  background: #fff;
  margin-left: 12px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.theme-btn:hover i{
  color: #031F4B;
}

.theme-btn2{
  color: #fff;
  background: #031F4B;
}

.theme-btn2 i{
  color: #031F4B;
  background: #fff;
}

.theme-btn2:hover{
  background: #FF0000;
}

.theme-btn2:hover i{
  color: #FF0000;
}



/* ===================
container
====================== */

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1185px;
  }
}




/* ===================
scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background: #FF0000;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all .5s ease-in-out;
}

/* ===================
header top css
====================== */

.header-top {
  padding: 10px 0;
  position: relative;
  background: #00361c;
  z-index: 1;
}

.header-top::before{
  content: "";
  position: absolute;
  background: #009063;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 420px;
  height: 101%;
  right: 0;
  top: 0;
  z-index: -1;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-contact ul li a {
  color: #fff;
  font-weight: 400;
}

.header-top-contact ul li a i {
  margin-right: 10px;
  color: #009063;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #009063;
  font-size: 16px;
  background: #fff;
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.header-top-social a:hover {
  background: #031F4B;
  color: #fff;
}

.header-top-account a {
  color: #fff;
  margin-right: 20px;
}

.header-top-account a i {
  margin-right: 8px;
}

@media all and (max-width: 1199px) {
  .header-top-account {
    display: none;
  }
  .header-top::before{
    width: 270px;
  }
  .header-top::after{
    width: 260px;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}

/* ===================
nav menu css
====================== */

.main {
  margin-top: 0rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 33px 0 33px 0;
    font-size: 16px;
    font-weight: 600;
    color: #031F4B;
    text-transform: uppercase;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 15px;
    border: none;
    left: -15px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 0 50px 0 rgb(32 32 32 / 15%);
  }

  .navbar .nav-item .dropdown-menu::before{
    content: "\f0d8";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    top: -50px;
    left: 20px;
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    color: #031F4B;
    position: relative;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #009063;
    padding-left: 25px;
  }

  .navbar .nav-item .nav-link {
    position: relative;
    z-index: 1;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #009063;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
  }

  .header-nav-search a {
    color: #1F242E;
    font-size: 18px;
    padding: 5px;
  }

  .header-nav-search a:hover {
    color: #009063;
  }

  .navbar .header-btn {
    padding-top: 8px;
  }

  .header-phone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 18px;
  }

  .header-phone-icon{
    width: 45px;
    height: 45px;
    background: #009063;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
  }

  .header-phone-content span{
    color: #fff;
  }

  .header-phone-content a{
    color: #fff;
  }

}

/*bootstrap menu*/

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.navbar.fixed-top {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar.fixed-top .nav-item .nav-link::before {
  color: #031F4B;
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler {
  font-size: 3.5rem;
  padding: 0;
  margin: 0;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand img {
  width: 160px;
}

/* dropdown toggler */

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: 1.5px;
  font-family: 'Font Awesome 5 Pro';
  content: "\f067";
  font-weight: 600;
  border: none;
  font-size: 11px;
}

.dropdown-toggle:hover::after {
  content: "\f068";
}

/* mobile menu */

.mobile-menu-right {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1199px) {
  .navbar .header-btn {
    display: none;
  }
  .navbar .header-btn {
    display: none;
  }
  .header-phone {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    position: fixed;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 180px;
  }

  .navbar-collapse {
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: #031F4B;
    font-weight: 700;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link:hover {
    color: #009063 !important;
  }

  .navbar-toggler{
    border: none;
  }

  .navbar-toggler-icon {
    font-size: 32px;
    color: #031F4B;
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 10px;
    background: transparent;
  }

  .navbar .dropdown-menu {
    border-radius: 10px;
  }
  .navbar.fixed-top .navbar-toggler-icon {
    color: #031F4B;
  }

  .header-nav-right {
    display: none;
  }
}






/* ===================
feature css 
====================== */

.feature-item{
  padding: 20px 20px 20px 20px;
  background: #031F4B;
  position: relative;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.feature-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  position: relative;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.feature-icon::before{
  content: "";
  position: absolute;
  transform: skew(8deg);
  background: #009063;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  z-index: -1;
}

.feature-icon i{
  font-size: 40px;
  color: #fff;
}

.feature-content p{
  margin-top: 10px;
  color: #fff;
}

.feature-content h4 a{
  color: #fff;
  font-size: 25px;
}

.feature-item.active,
.feature-item:hover{
  background: #009063;
}

.feature-item.active .feature-icon::before,
.feature-item:hover .feature-icon::before{
  background: #031F4B;
}

/* ===================
auth css 
====================== */

.login-form {
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form .login-header {
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: #009063;
  margin-bottom: 5px;
  font-weight: 600;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 40px;
}

.login-form .login-footer a {
  color: #009063;
  transition: .5s;
}

.login-form .login-footer a:hover {
  color: #031F4B;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: #031F4B;
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control:focus {
  border-color: #FF0000;
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .forgot-pass {
  color: #FF0000;
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color: #031F4B;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: #FF0000;
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: #FF0000;
}

.form-check-input:checked {
  background-color: #FF0000;
  border-color: #FF0000;
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}

/* ===================
contact us css 
====================== */

.contact-wrapper {
  padding: 50px 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  position: relative;
}

.contact-form {
  padding: 0 40px;
}

.contact-form-header {
  margin-bottom: 30px;
  color: #031F4B;
}

.contact-form-header h2 {
  color: #031F4B;
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: #FF0000;
}

.contact-map{
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.contact-info-icon i {
  font-size: 25px;
  color: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 10px;
  text-align: center;
  background: #FF0000;
}

.contact-info h5 {
  color: #031F4B;
  margin-bottom: 5px;
}

.contact-info p {
  color: #031F4B;
}

@media all and (max-width: 991px) {

  .contact-wrapper{
    padding: 50px 20px;
  }

  .contact-form {
    padding: 0px;
  }

  .contact-info{
    padding: 0px;
    margin-top: 50px;
  }
}




/* ===================
footer css 
====================== */

.footer-area {
  background: #00361c;
  background-image: url(../img/shape/01.png);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 170px;
  margin-bottom: 20px;
}

.copyright {
  padding: 20px 0;
  background: #001d0f;
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: #f5faff;
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: #FF0000;
}

.copyright .copyright-text {
  color: #f5faff;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #FF0000;
  font-weight: 500;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 15px;
  height: 3px;
  background-color: #FF0000;
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 35px;
  height: 3px;
  background-color: #FF0000;
  bottom: 0;
  left: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-list li a i{
  margin-right: 5px;
  color: #FF0000;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #FF0000;
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social li a i {
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: #FF0000;
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #fff;
  color: #FF0000;
}

.footer-newsletter .subscribe-form .form-control {
  border: 2px solid #e8e8e8;
  height: 55px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  box-shadow: none;
  background-color: transparent;
}

.footer-newsletter .subscribe-form .form-control::placeholder {
  color: #F2F3F5;
  opacity: 1;
}

.footer-newsletter .subscribe-form .theme-btn {
  margin-top: 20px;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #f5faff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: #f5faff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 12px;
  height: 30px;
  font-size: 18px;
  margin-right: 15px;
  border-radius: 5px;
  line-height: 31px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #FF0000;
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  position: relative;
  z-index: 1;
}

.fun-facts-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 65%;
  background-image: url(../assets/img/fun-facts-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.fun-facts-area .section-title span {
  color: #ffffff;
}

.fun-facts-area .section-title h2 {
  color: #ffffff;
}

.fun-facts-area.bg-color::before {
  background-image: url(../img/fun-facts-bg-2.jpg);
}

.fun-facts-area.bg-color .single-fun-fact {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.fun-facts-area.bg-color .single-fun-fact .icon {
  margin-bottom: 20px;
}

.fun-facts-area.bg-color .single-fun-fact .icon i {
  font-size: 80px;
  color: #4ed198;
  line-height: 1;
}

.fun-facts-area.bg-color .single-fun-fact h3 {
  color: #4ed198;
  margin-top: 0;
}

.fun-facts-area.bg-color .single-fun-fact h3::before {
  display: none;
}

.fun-facts-area.bg-ffffff::before {
  background-image: url(../img/fun-facts-bg.jpg);
}

.fun-facts-area.bg-ffffff .single-fun-fact {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.fun-facts-area.bg-ffffff .single-fun-fact .icon {
  margin-bottom: 20px;
}

.fun-facts-area.bg-ffffff .single-fun-fact .icon i {
  font-size: 80px;
  color: #00361c;
  line-height: 1;
}

.fun-facts-area.bg-ffffff .single-fun-fact h3 {
  color: #00361c;
  margin-top: 0;
}

.fun-facts-area.bg-ffffff .single-fun-fact h3::before {
  display: none;
}

.fun-facts-inner {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 50px 50px 20px 50px;
}

.single-fun-fact {
  margin-bottom: 30px;
  text-align: center;
}

.single-fun-fact h3 {
  margin-bottom: 5px;
  line-height: 1;
  font-size: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #00361c;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.single-fun-fact h3::before {
  position: absolute;
  content: "";
  height: 90px;
  width: 90px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fee7e9), color-stop(#fdedf2), color-stop(#fcf3f9), color-stop(#fcf9fd), to(#ffffff));
  background: linear-gradient(to bottom, #fee7e9, #fdedf2, #fcf3f9, #fcf9fd, #ffffff);
  left: 0;
  right: 0;
  margin: auto;
  top: -10px;
  z-index: -1;
  border-radius: 50px;
}

.single-fun-fact p {
  font-size: 22px;
  font-weight: 600;
  color: #09101f;
  position: relative;
  z-index: 1;
}


/*================================================
Services Area CSS
=================================================*/
.services-area {
  position: relative;
  z-index: 1;
}

.services-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 65%;
  background-image: url(../img/services-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.services-area.bg-ffffff::before {
  display: none;
}

.services-area.bg-ffffff .single-services-item .icon::before {
  background-color: #ecefff;
}

.services-area.bg-ffffff .single-services-item .icon i {
  color: #4865ff;
}

.services-area.bg-ffffff .single-services-item:hover {
  border: 1px solid #4865ff;
  background-color: #4865ff;
}

.services-area.bg-ffffff .single-services-item:hover .icon::before {
  background-color: #6d84ff;
}

.services-area.bg-ffffff .single-services-item:hover .icon i {
  color: #ffffff;
}

.services-area.bg-ffffff .services-slider.owl-theme .owl-nav [class*=owl-] {
  color: #4865ff;
}

.services-area.bg-ffffff .services-slider.owl-theme .owl-nav [class*=owl-]:hover, .services-area.bg-ffffff .services-slider.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: #4865ff;
}

.services-area.bg-ffffff .section-title span {
  color: #4865ff;
}

.services-area.bg-transparent {
  border-top: 1px solid #eeeeee;
}

.services-area.bg-transparent::before {
  display: none;
}

.single-services-item {
  position: relative;
  z-index: 1;
  padding: 35px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 30px;
  border-radius: 5px;
}

.single-services-item .icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.single-services-item .icon::before {
  position: absolute;
  content: "";
  height: 60px;
  width: 60px;
  background-color: #fee7e9;
  left: 0;
  top: -10px;
  z-index: -1;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item .icon i {
  font-size: 60px;
  color: #00361c;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item h3 {
  font-size: 25px;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
}

.single-services-item p {
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item .learn-btn {
  font-size: 16px;
  color: #09101f;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item:hover {
  border: 1px solid #00361c;
  background-color: #00361c;
}

.single-services-item:hover .learn-btn {
  letter-spacing: 1px;
  color: #ffffff;
}

.single-services-item:hover h3 a {
  color: #ffffff;
}

.single-services-item:hover p {
  color: #ffffff;
}

.single-services-item:hover .icon::before {
  background-color: #f54255;
}

.single-services-item:hover .icon i {
  color: #ffffff;
}

.services-slider.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 0;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  margin: 0;
  outline: 0;
  width: 45px;
  height: 45px;
  line-height: 52px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  color: #00361c;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.services-slider.owl-theme .owl-nav [class*=owl-]:hover, .services-slider.owl-theme .owl-nav [class*=owl-]:focus {
  background-color: #00361c;
}

.services-slider.owl-theme .owl-nav [class*=owl-]:hover i, .services-slider.owl-theme .owl-nav [class*=owl-]:focus i {
  color: #ffffff;
}

.services-slider.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.services-slider.owl-theme .owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: bold;
}

.services-slider.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
  left: -20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-slider.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -20px;
}

/*================================================
Credit Card Area CSS
=================================================*/
.credit-card-area.bg-ffffff .row {
  background-color: #047a41;
  padding: 30px 100px;
  border-radius: 25px;
  margin-bottom:10px;
}

.credit-card-content span {
  color: #ffffff;
  font-weight: 600;
}

.credit-card-content h3 {
  font-size: 38px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}

.credit-card-content p {
  margin-bottom: 0;
  color: #ffffff;
}

.credit-card-content .credit-card-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 15px;
}

.credit-card-content .credit-card-features li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-top: 10px;
  padding-left: 30px;
  padding-right: 0;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.credit-card-content .credit-card-features li i {
  color: #ffffff;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.credit-card-image-slider.owl-theme .owl-nav {
  margin-top: 20px;
}

.credit-card-image-slider.owl-theme .owl-nav [class*=owl-] {
  background-color: transparent;
  margin: 0 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.credit-card-image-slider.owl-theme .owl-nav [class*=owl-]:hover i, .credit-card-image-slider.owl-theme .owl-nav [class*=owl-]:focus i {
  color: #fb7756;
}

.credit-card-image-slider.owl-theme .owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.news a{color:#fff;}