/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #0e1d34;
  --color-secondary: #0e1d34;
  --black-color:#000;
  --blue-color: #0e1d34;
  --golden-color: #d29731;
  --white-color: #fff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  /*font-size: 14px;*/
}
.wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0px;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}
p {
    font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--blue-color);
  padding:0;
  font-size: 14px;
  overflow: visible;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--white-color);
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
   color: var(--white-color);
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  font-size: 12px;
}

#topbar .contact-info i a:hover {
  color: #d29731;
}

#topbar .social-links a {
  color: #65534c;
  line-height: 0;
  /* transition: 0.3s; */
  margin-left: 0;
  display: block;
  padding: 10px 12px;
  font-size: 16px;
  border-bottom: 1px solid #00000078;
}

#topbar .social-links a:hover, .dropdown a.btn:hover {
  color: #d29731;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #001973;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.06);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #000000;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(13, 66, 255, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
}

.header.sticked {
  background: rgb(255 255 255);
  /* padding: 15px 0; */
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header .logo img {
  max-height: 90px;
    margin-right: 6px;
    padding: 5px 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    color: #000;
    font-weight: 600;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--golden-color);
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: #2756ff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
    transition: 0.3s;
    /* border-radius: 4px; */
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 5px 10px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }
.navbar .dropdown ul li:hover {
    background: var(--golden-color);
}
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #fff;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }
li.dropdown ul li a {
    color: #132138;
    font-weight: 600;
}
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 0px;
    transition: all 0.5s ease-in-out;
    /* border: 1px solid #19335c; */
    background: #ddd;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
    padding: 5px;
    background: #0e1d34;
    border-radius: 5px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 20px;
  box-shadow: 0px 0px 3px 1px #00000012;
  background: #f0f0f0;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #001f8d;
  font-size: 48px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon {
  background: transparent;
}

.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-secondary);
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: #132848;
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  font-size: 32px;
  font-family: var(--font-secondary);
  color: #000;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--color-primary);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
  color: #19335c;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 66, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
}

.services .card a {
  color: #001973;
  transition: 0.3;
}

.services .card a:hover {
  color: var(--color-primary);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-size: 15px;
  text-align: center;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../images/benifits.jpg") center center;
  background-size: cover;
  padding: 60px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background:#d29731;
  border: #b3750a;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 60px;
  padding-bottom: 60px;
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #001973;
  margin-bottom: 30px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
  column-count: 2;
}

.features .features-item ul li {
  padding-bottom: 10px;
  font-weight: normal;
  color: #0e1d34;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border: 1px solid #0e1d3454;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  /* border-top-color: var(--color-primary); */
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 80px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 10px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 30px 20px 60px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-default);
  text-align: left;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
}

.faq .accordion-body {
  padding: 25px 30px 25px 60px;
  border: 0;
  background: rgba(14, 29, 52, 0.03);
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../images/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 52, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-counter .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(14, 29, 52, 0.15);
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(14, 29, 52, 0.5);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Horizontal Pricing Section
--------------------------------------------------------------*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}

.horizontal-pricing h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-secondary);
}

.horizontal-pricing h4 {
  font-size: 48px;
  color: var(--color-primary);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  text-align: center;
}

.horizontal-pricing h4 sup {
  font-size: 28px;
}

.horizontal-pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.horizontal-pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.horizontal-pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.horizontal-pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.horizontal-pricing ul .na span {
  text-decoration: line-through;
}

.horizontal-pricing .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.horizontal-pricing .buy-btn:hover {
  background: #406aff;
  border-color: #406aff;
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .buy-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Get a Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: #f3f6fc;
  padding: 40px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-a-quote .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-a-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-a-quote .php-email-form input,
.get-a-quote .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-a-quote .php-email-form input:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-a-quote .php-email-form input {
  padding: 12px 15px;
}

.get-a-quote .php-email-form textarea {
  padding: 12px 15px;
}

.get-a-quote .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: rgba(13, 66, 255, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgb(210 151 49);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d3dff3;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #c2cbdf;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color: var(--color-secondary);
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

.hero form .btn-primary:hover {
  background-color: #2756ff;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-secondary);
  padding: 50px 0;
  color: white;
  padding-bottom: 20px;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 22px; 
  font-weight: 600;
  letter-spacing: normal;
  color: #d29731;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 24px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #d29731;
}

.footer .footer-contact p {
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .copyright {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}
div#social-links-header {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translate(0%, -55%);
    z-index: 99;
    display: block !important;
    background: #f7f7f7;
    box-shadow: 0px 0px 3px 0px #6c6868;
}
a.twitter i {
    color: #55acee;
}

a.facebook i {
    color: #3b5998;
}

#topbar .social-links a.instagram:hover {
    background: linear-gradient(to right bottom, #5559c9, #c52684, #ef6a44, #f7bc4d);
}

a.instagram i {
    color: #ef6a44;
}

a.youtube i {
    color: #b00;
}

a.telegram i {
    color: #35a9db;
}

a.instagram:hover i {
    color: #fff;
}

a.twitter:hover {
    background: #55acee;
}

div#social-links-header a:hover i {
    color: #fff;
}

a.facebook:hover {
    background: #3b5998;
}

a.youtube:hover {
    background: #bb0000;
}

a.telegram:hover {
    background: #35a9db;
}
a.whatsapp:hover {
    background: #64b161;
}
#topbar .social-links a:last-child {
    border-bottom: 0;
}
.container-cus {
    width: 90%;
    margin: 0px auto;
}

.top-menu-drodown {
    display: flex;
}
.dropdown a.btn.btn-gradient, button.btn {
    font-size: 14px;
    line-height: normal;
    padding: 6px 15px;
    margin: 0;
    border-radius: 0;
    border: 0;
    font-weight: 400;
}

button.btn.btn-secondary.dropdown-toggle.btn-ctrading {
    background: var(--golden-color);
}

button.btn.btn-secondary.dropdown-toggle.btn-leaderboard {
    background: transparent;
}

button.btn.btn-secondary.dropdown-toggle.btn-register {
    background: #3a3a3a;
}

a.btn.btn-gradient.btn-extra-small.btn-parters {
    color: #fff;
}
.top-menu-drodown .btn-check:focus+.btn, .top-menu-drodown .btn:focus, .top-menu-drodown .btn-check:active+.btn:focus, .top-menu-drodown .btn-check:checked+.btn:focus, .top-menu-drodown .btn.active:focus, .top-menu-drodown .btn.show:focus, .top-menu-drodown .btn:active:focus{
  box-shadow: none;
}
.top-menu-drodown ul.dropdown-menu {border-radius: 0;padding: 0;}

.top-menu-drodown ul.dropdown-menu a {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
}

.top-menu-drodown ul.dropdown-menu a i {
    margin-right: 3px;
}
.tickerMap {
    height: 44px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    /* background: #f0f0f0; */
}

.tickerMap iframe {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 61px;
    overflow: hidden;
    position: relative;
    left: -7px;
}

div.banner-slider .item .header-cover {
    /* background-size: cover; */
    /* height: 540px; */
    /* background-position: center; */
    /* padding: 14% 0; */
}
.tickerMap iframe body {
    margin: 0px;
}

.tickerMap iframe body {
    margin: 0px !important;
}
div.banner-slider {
    padding: 0;
}
.cover-content {
    background: #00000052;
    padding: 30px 20px;
}

.cover-content h1.cover-lg-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

p.cover-sub-heading.text-color-black.xs-mb10.mb40 {}

.cover-content .cover-sub-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.cover-content a.btn-primary {
    background: #2e2e2e;
    border: 0;
}

.cover-content a.btn {
    border-radius: 0;
    font-weight: 400;
    margin-right: 8px;
}

.cover-content a.btn-fill {
    background: #0e1d34;
    color: #fff;
    font-weight: 400;
}


.cover-content a.btn:hover {
    color: #0e1d34;
    background: var(--golden-color);
}
.text-color-black {
    color: #000 !important;
}
section.main-herobanner {
    padding: 0;
    position: relative;
}

.tickerMap {
    position: absolute;
    top: 0;
    background: #f0f0f0;
    z-index: 9;
    border-bottom: 1px solid #ddd;
}

section.main-herobanner ul.slick-dots {
    bottom: 10px;
}

.banner-slider.slides-1.header-cover-carousel {
    margin-bottom: 0;
}

.banner-slider.slides-1.header-cover-carousel .slick-dots li button:before {
    color: #0000009c;
    font-size: 15px;
    opacity: 1;
}

.banner-slider.slides-1.header-cover-carousel .slick-dots li.slick-active button:before {
    
    color: #d29731;
}

.socialfloat {
    position: fixed;
    z-index: 999999;
    bottom: 10px;
    left: 10px;
}

.socialfloat a {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.socialfloat a.whatsapp {
    background-color: #64b161;
}


.socialfloat a:hover {
    box-shadow: 0px 0px 15px var(--scolor);
}

.socialfloat a i {
    font-size: 35px;
    color: #fff;
}

h3.maintitle {
    font-weight: 500;
    font-size: 32px;
    font-family: var(--font-secondary);
    color: #001973;
    margin-bottom: 50px;
    text-align: center;
}
section#featured-services {
    background: transparent;
    padding: 50px 0;
}
h3.maintitle span {
    color: #cc9a37;
}

.service-item {
    background: #fff;
    display: flex;
    align-items: center;
   min-height: 120px;
    width: 31%;
    margin: 10px;
    padding: 15px;
}

.features-item h3.maintitle {
    text-align: left;
    margin: 20px 0;
}
.features-item p.fst-italic {
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
    font-style: normal !important;
}

.fixed-head {
    position: fixed;
    z-index: 9999;
    animation: scrollsmooth 0.5s forwards;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 1px 0px 6px 1px #ccc;
    opacity: 0;
    margin-top: 0;
}

@keyframes scrollsmooth {
    0% {
        top: -100px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}
a.btn-golden.btn {
    background: #cc9a37;
    border: 0;
}

a.btn-black.btn {
    background: #4f4f4f;
    color: #fff;
    border: 0;
    margin: 0px 10px;
}
section#featured-services .pricing .pricing-item {
    padding: 30px 20px;
    background: #0e1d34;
}
.item-pricngs:nth-child(odd) .pricing-item {
    /* border-top-color: var(--color-primary); */
}

.item-pricngs:nth-child(even) .pricing-item {
    /* border-bottom: 4px solid #fff; */
    /* border-bottom-color: var(--color-primary); */
}
.iconPrice {
    position: absolute;
    right: 30px;
    bottom: 10px;
    opacity: 0.2;
}

.iconPrice i {
    font-size: 50px;
}

.featured-services .service-item:nth-child(odd) {
    border-top: 3px solid #0e1d34;
}

.featured-services .service-item:nth-child(even) {
    border-bottom: 3px solid #0e1d34;
}
.animation_start {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 18px;
    /*background: #d29731;*/
    color: var(--color-primary);
    width: 20px;
    height: 20px;
    opacity: 0;
    text-align: center;
    /* border-radius: 60px; */
}
.active-serives .service-item-2 .animation_start{
   bottom: -12px;
  top: unset;
}
.active-serives .service-item-2 .animation_start, .active-serives .service-item-3 .animation_start{
  opacity: 0;
   left: 0px;
}
.active-serives.visible-section .service-item-1 {
  animation: itemSection 2s ease-in-out forwards;
}
.active-serives.visible-section .service-item-2 {
  animation: itemSectiontwo 2s 2.1s ease-in-out forwards; 
}
.active-serives.visible-section .service-item-3 {
  animation: itemSectionthird 2s 4.2s ease-in-out forwards;
}
.active-serives.visible-section .service-item-1 .animation_start{
  animation: itemFirst 2s linear forwards;
}
.active-serives.visible-section .service-item-2 .animation_start{
  animation: itemSecond 2s 2.1s linear forwards; 
}
.active-serives.visible-section .service-item-3 .animation_start{
  animation: itemthird 2s 4.2s linear forwards;
}
@keyframes itemSection{
  0%{
   background: #fff;
  }
  40%{
   background: #d29731;
  }
  80%{
   background: #d29731;
  }
  100%{
   background: #fff;
  }
}
@keyframes itemSectiontwo{
   0%{
   background: #fff;
  }
  40%{
   background: #d29731;
  }
  80%{
   background: #d29731;
  }
  100%{
   background: #fff;
  }
}
@keyframes itemSectionthird{
   0%{
   background: #fff;
  }
  40%{
   background: #d29731;
  }
  80%{
   background: #d29731;
  }
  100%{
   background: #fff;
  }
}

@keyframes itemFirst{
  0%{
    left: 0;
    opacity: 1;
  }
  99%{
  left: 100%;  
  opacity: 1;
  }
  100%{
  opacity: 0;
  }
}
@keyframes itemSecond{
  0%{
    left: 0;
    opacity: 1;
  }
  99%{
  left: 100%;  
  opacity: 1;
  }
  100%{
  opacity: 0;
  }
}
@keyframes itemthird{
  0%{
    left: 0;
    opacity: 1;
  }
  99%{
  left: 100%;  
  opacity: 1;
  }
  100%{
  opacity: 0;
  }
}
.features .features-item ul.noncols {
    column-count: auto;
}

.features .features-item ul.noncols i {
    font-size: 50px;
    color: var(--color-primary);
}
.features .features-item ul.noncols p {
    margin: 0;
    font-weight: 600;
}

.features .features-item ul.noncols li {
    margin-top: 30px;
}
.features .features-item ul.noncols .flexdiv {
    display: flex;
    align-items: center;
}

.features .features-item ul.noncols .flexdiv h5 {
    margin: 0;
    margin-right: 10px;
    color: var(--golden-color);
}

.features .features-item ul.noncols li a.cta-btn {
    /*border: 1px solid #0e1d34;*/
    background: #fff;
    color: #0e1d34;
    font-size: 14px;
    padding: 5px 10px;
    display: inline-block;
    margin: 10px 0 4px 0;
    font-weight: 800;
}
/*.features .features-item ul.noncols li.Windows-color h5, 
.features .features-item ul.noncols li.android-color h5,
.features .features-item ul.noncols li.ios-color h5{
  color: #000;
}*/
.features .features-item ul.noncols li.Windows-color i, .features .features-item ul.noncols li.Windows-color h5 {
    color: #0074cd !important;
}
.features .features-item ul.noncols li.Windows-color a {
    background: #0074cd !important;
    color: #fff;

}
.features .features-item ul.noncols li.android-color i, .features .features-item ul.noncols li.android-color h5 {
    color: #9fc037 !important;
}
.features .features-item ul.noncols li.android-color a {
    background: #9fc037 !important;
    color: #fff;
}
.features .features-item ul.noncols li.ios-color i, .features .features-item ul.noncols li.ios-color h5{
    color: #000 !important;
}
.features .features-item ul.noncols li.ios-color a {
    background: #000 !important;
    color: #fff;
}
.features .features-item ul.noncols li a .bi-download {
    color: #fff !important;
    font-size: 18px;
    margin-right: 5px;
    font-weight: bold;
}
.features .features-item ul.noncols li a.cta-btn:hover {
    background: #0e1d34 !important;
}

div#fxmarketsgrade .pricing-item {
    padding: 20px 20px;
}

div#fxmarketsgrade .pricing-item h3 {
    color: var(--golden-color);
    margin-bottom: 10px;
}

div#fxmarketsgrade .pricing-item h2 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}
section#pricing.fxmarketsgrade {
    padding: 60px 0;
    background: #0e1d34;
}

section#pricing.fxmarketsgrade h3.maintitle {
    color: #fff;
}

div#fxmarketsgrade .pricing-item i {
    position: absolute;
    right: 10px;
    bottom: 0;
    font-size: 48px;
    opacity: 0.5;
}

div#fxmarketsgrade .pricing-item {
    position: relative;
}
div#market_Resources ul {
    padding: 0;
    color: #fff;
    text-align: center;
}

div#market_Resources .item-pricngs {
    padding: 0;
    border: 0;
    text-align: center;
}

div#market_Resources .item-pricngs .pricing-item {
    border: 0;
    box-shadow: none;
    padding: 30px 30px;
    background: transparent;
}

div#market_Resources .item-pricngs:nth-child(odd) {
    background: #f0f0f0 !important;
}

div#market_Resources .item-pricngs:nth-child(even) {
    background: #0e1d34;
}

div#market_Resources .item-pricngs:nth-child(even) h3 {
    color: #fff;
}

div#market_Resources ul li {
    text-align: center;
    width: 100%;
    display: block;
    color: #000;
    font-weight: 500;
    padding-bottom: 0;
}
div#forex_about_page div#market_Resources .item-pricngs .pricing-item ul li {color: #fff;font-weight: 400;}

div#market_Resources .item-pricngs:nth-child(even) ul li {
    color: #fff;
}
section#featured-services-adv {
    padding-bottom: 0;
    padding-top: 40px;
}
.widthwral-item img.width100 {
    width: 80%;
}
.widthwral-item {
    padding: 10px;
}

.widthwral-sldier .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0e1c51;
    font-size: 13px;
}

.widthwral-sldier ul.slick-dots {
    margin: 10px;
    bottom: -40px;
}

section#withdrawl-id {
    padding-bottom: 20px;
    padding-top: 40px;
}
section#withdrawl-id h3.maintitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 26px;
    color: #001973;
}
a.cta-btn i.bi-caret-right-square {
    font-size: 22px;
    margin-right: 10px;
}


.footer-contact a {
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-contact p strong {
    font-weight: 500;
    color: #fff;
}
div#fxmarketsgrade {
    justify-content: center;
}
section#features.bg-blue {
    background: #0e1d34;
}

section.bg-blue h3.maintitle, section.bg-blue p, section.bg-blue ul li, section.bg-blue ul li i {
    color: #fff !important;
}
.dropdown a i {
    font-size: 12px;
    margin-right: 5px;
}
.dropdown a.btn {
    color: #fff;
}

.dropdown a.btn.btn-Login {
    border-right: 1px solid #ddd;
}
.copyMenu.footer-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyMenu.footer-links ul li {
    padding: 0;
}

.copyMenu.footer-links ul li a {
    padding: 0px 15px;
    border-right: 1px solid #fff;
}

.copyMenu.footer-links {
    margin-top: 0;
    margin-bottom: 0;
}
.copyMenu.footer-links ul li a {
    border-right: 1px solid #fff;
}

.copyMenu.footer-links ul li:last-child a {
    border: 0;
}

.footer-contact a:hover {
    color: #d29731;
}
.footer .social-links a:hover {
    background: #fff;
    color: #000 !important;
}

.footer .social-links a:hover i {
    color: #000;
}
section#featured-services .pricing .pricing-item p, section#featured-services .pricing .pricing-item i {
    color: #fff;
}

section#featured-services .pricing .pricing-item h3 {
    color: #d29731;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

section#featured-services .pricing .pricing-item p {
    font-size: 14px;
    line-height: 26px;
}
.footer .footer-info p a {
    color: rgba(255, 255, 255, 0.6);
}

.footer .footer-info p strong {
    font-weight: 400;
}

.footer .footer-info p a:hover {
    color: #d29731;
}
.risk_warning p a {
    color: var(--golden-color);
}
.risk_warning p strong {
    font-weight: 600;
}
.risk_warning p strong {
    font-weight: 600;
    color: #fff;
}

.risk_warning {
    background: #00000038;
    padding: 10px;
}

.risk_warning p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}section.cspadd {
    padding: 40px;
}
h3.colorPrimes {
    color: #0e1d34;
    margin-bottom: 20px;
}
div#forex_about_page div#market_Resources .item-pricngs {margin: 10px;width: 23%;padding: 0px 20px;background: #0e1d34 !important;border: 1px solid #0e1d3454;border-radius: 5px;box-shadow: 0 3px 20px -2px rgb(108 117 125 / 15%);}

div#forex_about_page div#market_Resources .item-pricngs .pricing-item {
    padding: 20px 0px;
}
div#forex_about_page div#market_Resources {
    justify-content: space-around;
}

div#forex_about_page div#market_Resources .item-pricngs .pricing-item h3 {
    color: #d29731;
    margin-bottom: 5px;
}
div#forex_about_page div#market_Resources .item-pricngs .pricing-item .iconPrice {
    bottom: 8px;
    right: 10px;
    color: #fff;
}
/*section#why_forex {
    background: linear-gradient(45deg, #0e0b0ba1, #0e0b0ba1), url(../images/about3_new.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding: 40px;
}*/

#why_forex ul.fxx-columnteo li {
    margin: 9px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    /* border: 1px solid #ddd; */
    padding: 10px;
    width: 48%;
    background: #0000008a;
    box-shadow: 0px 0px 3px 0px #d29731;
}

ul.fxx-columnteo {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

#why_forex ul.fxx-columnteo h5 {
    font-weight: 500;
    font-size: 18px;
    color: var(--golden-color);
}

#why_forex ul.fxx-columnteo p {
    font-weight: 400;
}

#why_forex ul.fxx-columnteo li i {
    color: #fff;
}
.services .card a.stretched-links {
    cursor: default;
}
section#why_forex .card-img img {
    height: 218px;
    width: 100%;
    object-fit: cover;
}
section#featuresTrade {
    padding: 0;
}
section#featuresTrade.bg-blue h3.maintitle {
    color: #000 !important;
    margin-top: 0;
}
section#featuresTrade .features-item p.fst-italic, section#featuresTrade .features-item ul li, section#featuresTrade .features-item ul li i {
    color: #000 !important;
}
section#featuresTrade .ps10 {
    padding: 50px 50px;
}
h2.colorAnimtion {
    color: #fff;
    animation: colorChange 0.5s ease-in-out infinite alternate-reverse;
}
@keyframes colorChange{
  0%{
    color: #fff;
  }
  100%{
    color: #d29731;
  }
}
section#call-to-action.call-to-action.withdrawalsBanner {
    background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url(../images/benifitsWith.jpg) center center;
}

.promotionPagesf.aos-init.aos-animate {
    text-align: center;
}
.promotionPages {
    text-align: center;
    margin: 60px auto 20px;
    position: relative;
}

.promotionPages a {
    display: block;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    background: #000;
    padding: 10px 15px;
    color: #fff;
}

.promotionPages a:hover {
    background: #d29731;
}
div#fxmarketsgrade.flexPosts {
    display: flex;
    align-items: center;
    background: #0e1d34;
    flex-wrap: wrap;
}

div#fxmarketsgrade.flexPosts .pricing-item h3 {
    margin-bottom: 0;
    font-size: 20px;
}

div#fxmarketsgrade.flexPosts .pricing-item {
    text-align: center;
    margin: 0px 20px;
    position: relative;
    padding: 20px 0px;
}

div#fxmarketsgrade.flexPosts .pricing-item h1 {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    margin: 5px 0;
}

div#fxmarketsgrade.flexPosts .pricing-item h2 {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}

div#fxmarketsgrade.flexPosts .pricing-item:after {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 1px;
    height: 60%;
    background: #d2973173;
}
div#fxmarketsgrade.flexPosts .widthSames {
    width: 20%;
}
div#fxmarketsgrade.flexPosts .widthSames:last-child .pricing-item:after {
    display: none;
}
h5.colorGolder {
    color: var(--golden-color);
}
section.SectionTable {
    padding: 0px 0;
    width: 90%;
    margin: 0px auto;
}
section.SectionTable th, section.SectionTable td {
    font-size: 14px;
    text-align: center;
}

section.SectionTable th {
    background: #0e1d34;
    color: #fff !important;
    font-weight: 500;
}


.calculator-container-main.aos-init.aos-animate {
    width: 40%;
    border: 1px solid #ddd;
    margin: 0px auto;
    padding: 0;
    box-shadow: 0px 0px 4px 2px #ddd;
}

.container-clean {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0px auto;
    /* background: #0e1d34; */
}

.container-clean .input-container {
    width: 50%;
    text-align: center;
    color: #fff;
    border-left: 1px solid #fff;
}

.container-clean .input-container p {
    margin: 0;
}

.container-clean .input-container:first-child {
    border: 0;
}

.container-clean .input-container:hover {
    background: #2c2c2c;
    cursor: pointer;
}

.input-container .switch-indicator {
    padding: 8px 10px;
}
.switch-indicator.switch-indicator-active {
    background: #d29833;
    color: #fff;
}

.switch-indicator-active:not(switch-indicator-active) {
    background: #fff;
}

.switch-indicator:not(switch-indicator-active) {
    background: #f3f4f4;
    color: #0e1d34;
}

.container-clean .input-container div.switch-indicator:hover {
    background: #0e1d34;
    color: #fff;
}
.containerForCasl {
    padding: 20px;
}

.containerForCasl .calculator-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;:;
}

.containerForCasl .calculator-container .input-container {
    display: block;
    width: 47%;
    margin-bottom: 10px;
}

.containerForCasl .calculator-container .input-container p {
    margin-bottom: 8px;
}

.containerForCasl .calculator-container .input-container .input-box input {
    border: 1px solid #ddd;
    padding: 5px;
    background: #dddddd38;
    width: 100%;
    color: #000 !important;
    border-radius: 5px;
}

button#calculate-button {
    margin: 20px auto 0px auto;
    display: block;
    background: #0e1d34;
    color: #fff;
    padding: 4px 30px;
    border-radius: 30px;
}

.containerForCasl .calculator-container .input-container:last-child {
    width: 100%;
}

button#calculate-button:hover {
    background: #000;
}
section#calculator {
    padding: 0;
    margin-bottom: 60px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
div#result-popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.max_loss {
    width: 50%;
}

.max_loss {
    width: 50%;
    padding: 10px;
    background: #3b3b3b;
}

div#result-popup hr {
    display: none;
}
.selection-input-dropdown {
    padding: 0;
    height: auto;
    line-height: 0;
}
.max_profit {
    padding: 10px;
    background: #d29731;
    width: 50%;
}

div#result-popup h2 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

div#result-popup h1 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}
.navbar .dropdown ul li a.active {
    color: #fff;
    background: var(--golden-color);
}
.trust_list ul {
    list-style: none;
    padding: 0;
}

.trust_list ul li {background: #dddddd47;padding: 10px;margin: 25px 0;border-left: 6px solid #d29731;}
div.banner-slider .item .header-cover img {
    width: 100%;
}
section#calculator {
    width: 90%;
    margin: 0px auto;
    box-shadow: 0px 0px 4px 2px #ddd;
    padding: 10px 0px;
    margin-bottom: 20px;
}
iframe tr.fxst-dateRow td {
    text-align: center;
    background: #0e1d34;
    color: #fff;
}
section#pricing {
    padding: 0;
}
#pricing thead tr {
    height: 100px;
}

section#calculator.nobrode {
    box-shadow: none;
}

.bgPrice3 {
    background: #0e1d34;
}

tr.bg-white td {
    background: #fce48e85;
}

section#pricing td {
    padding: 10px;
}
section#pricing p {
    margin: 0;
    color: #0e1d34;
    font-weight: 600;
}

.bgPrice3 .plan_price.textCenter {
    color: #fff;
}

#pricing thead tr th {
    border-bottom: 1px solid ffffff5e !important;
}
tr.bg-blue td {
    color: #fff;
}
section#pricing h5 {
    color: #d29731;
}

/*#pricing thead tr.border-2 {
    background: #dddddd3d;
}
#pricing thead tr.border-2.nobg {
    background: transparent;
}*/
.bgPrice3 tr.bg-blue {
    border-top: 1px solid #ffffff5e;
}

.plan_price.textCenter {
    padding: 4px;
}

.col-md-3.p-0.pb-4.pr-1.bgPrice4 {
    padding-right: 0 !important;
}


section#pricing .bgarounds {
    margin: 2px 0;
    box-shadow: 0px 0px 4px 2px #ddd;
}

.col-lg-3.d-none.d-lg-block.pl-md-1.text-14.text-xl-16.bgPrice0 {
    padding-left: 0px;
}

.col-md-3.p-0.pb-4.pr-1.bgPrice4 {
    padding-right: 12px !important;
}
tr.bg-white, tr.bg-gray-light {
    border-top: 1px solid transparent;
}
section#pricing .coloricon {
    color: #d29731;
}

section#pricing .bgPrice0 tr td:nth-child(1) {color: #0e1d34;font-weight: 500;border-right: 1px solid #ddd;}
a.btn.btn-cstm {
    background: #d29731;
    padding: 5px 15px;
    color: #fff;
    font-size: 14px;
}

.col-md-3.p-0.pb-4.pr-1 {
    padding-bottom: 0px !important;
}

a.btn.btn-cstm:hover {
    background: #000;
}
div#accTypeDetails .item-pricngs {
    /* padding: 0; */
    /* margin-top: 0; */
    border-radius: 0 !important;
}

div#accTypeDetails .item-pricngs .pricing-item {
    border-radius: 0;
    box-shadow: none !important;
    /* border: 0; */
    padding: 30px 10px;
}
div#accTypeDetails .item-pricngs:nth-child(odd) .pricing-item {
    background: #00000005;
}

div#accTypeDetails .item-pricngs:nth-child(odd) .pricing-item h3, div#accTypeDetails .item-pricngs:nth-child(odd) .pricing-item i {color: #0e1d34;}

div#accTypeDetails .item-pricngs:nth-child(even) .pricing-item h3, div#accTypeDetails .item-pricngs:nth-child(even) .pricing-item i {
    color: #0e1d34;
}

div#accTypeDetails .item-pricngs:nth-child(even) .pricing-item {
    background: #d297310f;
}
section#featured-services.active-serives {
    /* padding-bottom: 0; */
}
div#accTypeDetails .item-pricngs .pricing-item .iconPrice {
    position: unset;
    margin: 0px auto;
    display: block;
    width: 100%;
    text-align: center;
}

/*flip Card*/
.flip-card {
  background-color: transparent;
  width: 32%;
  height: 200px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 40px 20px;
}

.flip-card-front {
  background-color: #fff;
  color: black;
}

.flip-card-back {
  background-color: #0e1d34;
  color: white;
  transform: rotateY(180deg);
}
.form_card_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.flip-card-front *, .flip-card-back * {
    width: 100%;
}
.flip-card-front h1 {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0px auto 10px auto;
    border: 1px solid #ddd;
    line-height: 55px;
    background: #0e1d34;
    color: #fff;
    border-radius: 50px;
    outline: #d29731 solid 3px;
    font-size: 30px;
}

.flip-card-front h2 {
    font-size: 23px;
    line-height: 28px;
    color: #0e1d34;
    margin-top: 20px;
}
.flip-card-back h2 {
    font-size: 24px;
    color: var(--golden-color);
}
.flip-card-back p {
    font-size: 14px;
    margin-top: 15px;
}
#about.detailspos .pricing-item {
    padding: 30px 30px;
    border: 0;
    box-shadow: 0 3px 12px -1px rgb(0 0 0 / 23%);
    text-align: center;
    border-top: 6px solid #d29731;
    border-bottom: 6px solid #0e1d34;
}
#about.detailspos .pricing-item h3 {
    padding-bottom: 10px;
}

#about.detailspos .pricing-item:hover {
    background: #dddddd36;
}
table.methods-description-table.table-bordered.text-center.table.table-style4 {}

table.methods-description-table th {
    background: #0e1d34;
    color: #fff !important;
    padding: 12px;
    font-weight: 500;
}

table.methods-description-table th h6 {margin: 0;}
table.methods-description-table.table-bordered tr td:nth-child(1) {
    background: #f2f2f2;
}
.mb60 {
    margin-bottom: 25px;
}

div#accordionExample table tbody tr:first-child td {
    color: #fff !important;
    background: #0e1d34 !important;
}

.accordion-header h5 button {
    padding: 14px;
    text-align: left;
    font-size: 18px;
    display: block;
}

.accordion-button:not(.collapsed),.accordion-button:hover {
    background: #d29731 !important;
    color: #fff;
}

.accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

.accordion-header button {
    background: #d2973117 !important;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
}.accordion-button::after {
    position: absolute;
    right: 14px;
    font-size: 30px;
    top: 15px;
    color: #000;
    font-weight: 800;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5);
}
.flexs {
    display: flex;
    align-items: center;
    /* justify-content: normal; */
    margin-bottom: 10px;
}

section#featuresTrade .hiw-feature-content .single-hiw-feature p {
    color: #000 !important;
}


.single-hiw-feature i {
    margin-right: 20px;
    font-size: 30px;
    background: #0e1d34;
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 20px;
    display: block;
    /* border-radius: 50px; */
    line-height: 40px;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.single-hiw-feature {
    margin-bottom: 13px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 13px;
}

.single-hiw-feature:last-child {
    border-bottom: 0;
}
section#featuresTrade .ps10.csmp {
    padding: 20px 50px 0px 40px;
    margin: 0;
}
section#featured-services.active-serives.mtopo {
    padding-top: 0;
}
section#featured-services .pricing .pricing-item h3.mgtopsd {
    margin-bottom: 10px;
}
section.bg-blue#featuresTrade  p.colorBlack {
    color: #000 !important;
}
.col-md-11.mg-auto.text-center {
    margin: 20px auto 0px auto;
}
img.promotioPic {
    width: 80%;
}
div.error, div.errordiv {
    color: red;
    font-size: 14px;
}