/**
* Template Name: Multi
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/ 

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ed502e;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff8f40;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff8f40;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #000;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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: 10px 0 10px 30px;
  font-size: 15px;
  color: #FFFFFF;
  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: #ff9900;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ff8f40;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff8f40;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #FFF;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #FFF;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 400px;
  margin-top:80px;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

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

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ff9900;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #ff8f40;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  #hero {
    height: 50px;
	width:100%
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

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

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #0d1728;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8f40;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #000000;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ff9900;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ff8f40;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff8f40;
}

.about .content .btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 30px 30px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #fff;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #fff;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #ed502e;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #ed502e;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .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);
}

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

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.why-us .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;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

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

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

.company{
  padding: 0;
  background-color: #fff;
}

.company .content {
  padding: 60px 100px 0 100px;
  margin-top: -220px;
}

.company .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #000;
}

.company .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.company .content p {
  font-size: 15px;
  color: #000;
}

.company .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
  margin-left: -50px;
}

.company .accordion-list {
  padding: 0 100px 60px 100px;
}

.company .accordion-list ul {
  padding: 0;
  list-style: none;
}

.company .accordion-list li+li {
  margin-top: 15px;
}

.company .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.company .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #fff;
  cursor: pointer;
}

.company .accordion-list span {
  color: #ed502e;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.company .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.company .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.company .accordion-list .icon-show {
  display: none;
}

.company .accordion-list a.collapsed {
  color: #fff;
}

.company .accordion-list a.collapsed:hover {
  color: #ed502e;
}

.company .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.company .accordion-list a.collapsed .icon-close {
  display: none;
}

.company .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.company .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);
}

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

.company .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.company .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;
  animation: none;
  border-radius: 0;
}
.company .get-started-btn{
	display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  background: #ff9900;
}

.company .get-started-btn:hover{
	background: #fff;
	border: 2px solid #091426;
}
	

/* Add this at the end of your existing CSS */

/* Responsive Styles */
@media (max-width: 1200px) {
  .company .content {
    padding: 60px 50px 0 50px;
  }

  .company .content h3 {
    font-size: 28px;
  }

  .company .video-box img {
    margin-top: 50px;
    margin-right: 0;
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .company .content,
  .company .accordion-list {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 1px;
  }
}

@media (max-width: 992px) {
  .company .content {
    padding-top: 30px;
  }

  .company .content img {
    width: 25%;
    margin-top: 20px;
  }

  .company .accordion-list {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .company .content {
    padding: 40px 20px 0 20px;
  }
}

/* Add more media queries as needed for smaller screens */


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

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


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 80px 0px rgba(110, 123, 131, 0.1);
  padding: 20px 10px 0px;
  transition: all ease-in-out 0.3s;
  
}

.services .icon-box img {
  width:350px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}


.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #0b2341;
}
.services .icon-box p {
  color: #000;
  font-size:13px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #ed502e;
}

.services .icon-box:hover .icon::before {
  background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #000;
}
.services .get-started-btn{
	display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #091426;
  background: #fff;
}

.services .get-started-btn:hover{
	background: #ff9900;
	border: none;
}

.services .btn-set{
	text-align: left;
}

.services .btn{
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #091426;
  background: #091426;
  margin-top: 30px;
}

.services .btn:hover{
	background: #ff9900;
	border: none;
}
	

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.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;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size:15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  background: #ff9900;
  border: 2px solid #ff9900;
  color: #000;
  margin-left: 100px;
  margin-right:50px;
}

.cta .cta-btn:hover {
  border: 2px solid #ff8f40;
  background: #0b2341;
  color:#fff;
}

.vission {
  padding: 30px 0;
  background: #e0e0e0;
}

.vission h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.vission p {
  color: #000;
}

.vission .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ff8f40;
  color: #fff;
  margin-left: 100px;
  margin-right:50px;
}

.vission .cta-btn:hover {
  background: #ff9900;
  border: 2px solid #ff9900;
}

@media (max-width: 768px) {
  .vission {
    width: 95%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #ed502e;
}

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

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

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

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #ed502e;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

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

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #ed502e;
}

.pricing .featured .get-started-btn {
  background: #ed502e;
  color: #fff;
  border-color: #ed502e;
}

.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}

@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
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ed502e;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef6445;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #ff9900;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  text-align: left;
  margin-left: 20px;
  font-weight:500;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #ed502e;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-left: 50px;
  font-weight:800;
  }

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff9900;
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  width: 480px;
  margin-left:50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ff9900;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff8f40;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-newsletter .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size:12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  background: #ff9900;
  border: 2px solid #ff9900;
  color: #000;
  margin-left:50px;
}

.footer-newsletter .cta-btn:hover {
  border: 2px solid #ff8f40;
  background: #0b2341;
  color:#fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
  
  #footer .footer-top .footer-newsletter form {
  width: 300px;
}

.footer-newsletter strong{
	font-size:14px;
}

.company .get-started-btn {
 margin-bottom: 15px;
}

.company .content h3{
	margin-top: 25px;
}
#company. col-lg-5 align-items-stretch{
	width: 75px;
	}
  
}

.whatsapp-btn-container {
    position: fixed;
    right: 30px;
    opacity: 0;
    bottom: -150px;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 1000ms;
}

@keyframes fade-up {
    100% {
        bottom: 24px;
        opacity: 1;
    }
}

.whatsapp-btn-container .whatsapp-btn {
    font-size: 48px;
    color: #25d366;
    display: inline-block;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover {
    transform: scale(1.2);
}

.whatsapp-btn-container span {
    position: absolute;
    top: 0;
    left: 4px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #075e54;
    transform: rotateZ(20deg) translateX(10px);
    opacity: 0;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span {
    transform: rotateZ(0deg) translateX(0px);
    opacity: 1;
}

#product {
  background: #fff;
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
}

#product .footer-top {
  padding: 60px 0 30px 0;
}

#product .footer-top .footer-info {
  margin-bottom: 15px;
  background: #FFF;
  text-align: center;
  padding: 30px 20px;
}

#product .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#product .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  text-align: left;
  margin-left: 20px;
  font-weight:500;
}

#product .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#product .footer-top .social-links a:hover {
  color: #fff;
  background: #ed502e;
  text-decoration: none;
}

#product .footer-top h4 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-left: 50px;
  font-weight:800;
  }

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

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

#product .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff9900;
  font-size: 18px;
  line-height: 1;
}

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

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

#product .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#product .footer-top .footer-links ul a:hover {
  color: #ef6445;
}

#product .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  width: 480px;
  margin-left:50px;
}

#product .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#product .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ff9900;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#product .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff8f40;
}

#product .row .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size:12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left:-5px;
}

#product .row .cta-btn:hover {
  background: #0b2341;
  color:#fff;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-newsletter .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size:12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  background: #ff9900;
  border: 2px solid #ff9900;
  color: #000;
  margin-left:50px;
}

.footer-newsletter .cta-btn:hover {
  border: 2px solid #ff8f40;
  background: #0b2341;
  color:#fff;
}

.item img {
  width:255px;
  height: 255px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.item .section-title h2{
    font-size: 34px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}


.item h4 {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 18px;
  text-align:center;
  color:#000;
}
.item  p {
  color: #000;
  font-size:13px;
}

.item  h4 a {
  color: #0b2341;
}

.item .icon-box:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.item .icon-box:hover .icon {
  background: #fff;
}

.item .icon-box:hover .icon i {
  color: #ed502e;
}

.item .icon-box:hover .icon::before {
  background: #f1775d;
}

.item .icon-box:hover h4 a,
.item .icon-box:hover p {
  color: #000;
}
.item .get-started-btn{
display: inline-block;
  padding: 2px 10px 2px 10px;
  border-radius: 4px;
  color: #000;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  background: #ff9900;
  margin-left: 28%;
}

.item .get-started-btn:hover{
	background: #091426;
	 color:#fff;
	border: none;
} 
	
.productdetails .container h3{
	font-size:40px;
	text-align:center;
	font-weight:600;
	}

  .part1{
    position: absolute;
    height: 60px;  
    left: 70px;
    top: 430px;
  }
  
   .part1 .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .part1 .column1 {
    float: left;
    width: 30%;
  }
  
  .part1 .column2 {
    float: right;
    width: 40%;
    padding: 10px;
  }
  
  .part1 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part1 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part2{
    position: absolute;
    height: 60px;  
    left: 185px;
    top: 550px;
  }
  
  .part2 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part2 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part3{
    position: absolute;
    height: 60px;  
    left: 165px;
    top: 640px;
  }
  
  .part3 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part3 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part4{
    position: absolute;
    height: 60px;  
    left: 180px;
    top:727px;
  }
  
  .part4 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part4 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part5{
    position: absolute;
    height: 60px;  
    left: 180px;
    top: 800px;
  }
  
  .part5 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part5 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part6{
    position: absolute;
    height: 60px;  
    left: 130px;
    top: 880px;
  }
  
  .part6 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part6 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part7{
    position: absolute;
    height: 60px;  
    left: 95px;
    top: 960px;
  }
  
  .part7 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part7 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part8{
    position: absolute;
    height: 60px;  
    left: 70px;
    top: 1020px;
  }
  
   .part8 .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .part8 .column1 {
    float: left;
    width: 30%;
  }
  
  .part8 .column2 {
    float: right;
    width: 40%;
    padding: 10px;
  }
  
  .part8 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part8 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part9{
    position: absolute;
    height: 60px;  
    left: 645px;
    top: 1025px;
  }
  
  .part9 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part9 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part10{
    position: absolute;
    height: 60px;  
    left: 1010px;
    top: 350px;
  }
  
   .part10 .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .part10 .column1 {
    float: left;
    width: 30%;
  }
  
  .part10 .column2 {
    float: right;
    width: 40%;
    padding: 10px;
  }
  
  .part10 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part10 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part11{
    position: absolute;
    height: 60px;  
    left: 1075px;
    top: 450px;
  }
  
  .part11 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part11 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part12{
    position: absolute;
    height: 60px;  
    left: 1075px;
    top: 520px;
  }
  
  .part12 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part12 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part13{
    position: absolute;
    height: 60px;  
    left: 1075px;
    top:620px;
  }
  
  .part13 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part13 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part14{
    position: absolute;
    height: 60px;  
    left: 1010px;
    top: 700px;
  }
  
   .part14 .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .part14 .column1 {
    float: left;
    width: 30%;
  }
  
  .part14 .column2 {
    float: right;
    width: 40%;
    padding: 10px;
  }
  
  .part14 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part14 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part15{
    position: absolute;
    height: 60px;  
    left: 1075px;
    top: 820px;
  }
  
  .part15 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part15 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part16{
    position: absolute;
    height: 60px;  
    left: 1075px;
    top: 920px;
  }
  
  .part16 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part16 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }
  
  .part17{
    position: absolute;
    height: 60px;  
    left: 1075px;
    top:990px;
  }
  
  .part17 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #ff9900;
  color: #000;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part17 .cta-btn:hover {
    background: #091426;
    color: #fff;
  }

/*--------------------------------------------------------------
# Services1
--------------------------------------------------------------*/
.services1 .icon-box {
  text-align: center;
  padding: 20px 10px 0px;
  transition: all ease-in-out 0.3s;
  margin-top: 30px;
  
}

.services1 .icon-box img {
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}


.services1 .icon-box h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 24px;
  margin-top: 15px;
}
.services1 .icon-box p {
  color: #000;
  font-size:13px;
}

.services1 .icon-box h4 a {
  color: #0b2341;
  font-size: 20px;
}

.services1 .icon-box:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.services1 .icon-box:hover .icon {
  background: #fff;
}

.services1 .icon-box:hover .icon i {
  color: #ed502e;
}

.services1 .icon-box:hover .icon::before {
  background: #f1775d;
}

.services1 .icon-box:hover h4 a,
.services1 .icon-box:hover p {
  color: #000;
}
.services1 .get-started-btn{
	display: inline-block;
  padding: 5px 5px 5px 5px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #091426;
  background: #fff;
}

.services1 .get-started-btn:hover{
	background: #ff9900;
	border: none;
}

.services1 .btn-set{
	text-align: left;
}

.services1 .btn{
  display: inline-block;
  padding: 10px 10px 10px 10px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #091426;
  background: #091426;
  margin-top: 30px;
}

.services1 .btn:hover{
	background: #ff9900;
	border: none;
}

.certificates {
  margin-top: 150px;
}

.certificates .row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.certificates .column {
  width: 50%;
  height: auto;
}

.certificates img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Ensure images don't exceed their container width */
  height: auto; /* Maintain aspect ratio */
}

@media screen and (max-width: 600px) {
  .certificates .column {
    width: 100%;
  }
}


.part18{
  position: absolute;
  height: 60px;  
  left: 265px;
  top: 338px;
}

.part18 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part18 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part19{
    position: absolute;
    height: 60px;  
    left: 65px;
    top: 473px;
  }
  
  .part19 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part19 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part20{
    position: absolute;
    height: 60px;  
    left: 50px;
    top: 570px;
  }
  
  .part20 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part20 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part21{
    position: absolute;
    height: 60px;  
    left: 120px;
    top: 668px;
  }
  
  .part21 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part21 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part22{
    position: absolute;
    height: 60px;  
    left: 185px;
    top: 755px;
  }
  
  .part22 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part22 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part23{
    position: absolute;
    height: 60px;  
    left: 250px;
    top: 818px;
  }
  
  .part23 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part23 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part24{
    position: absolute;
    height: 60px;  
    left: 720px;
    top: 845px;
  }
  
  .part24 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part24 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part25{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 813px;
  }
  
  .part25 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part25 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part26{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 743px;
  }
  
  .part26 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part26 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part27{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 683px;
  }
  
  .part27 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part27 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part28{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 588px;
  }
  
  .part28 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part28 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part29{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 523px;
  }
  
  .part29 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part29 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part30{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 463px;
  }
  
  .part30 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part30 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part31{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 403px;
  }
  
  .part31 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part31 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part32{
    position: absolute;
    height: 60px;  
    left: 995px;
    top: 343px;
  }
  
  .part32 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part32 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part33{
    position: absolute;
    height: 60px;  
    left: 90px;
    top: 448px;
  }
  
  .part33 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part33 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part34{
    position: absolute;
    height: 60px;  
    left: 250px;
    top: 568px;
  }
  
  .part34 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part34 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part35{
    position: absolute;
    height: 60px;  
    left:  60px;
    top:703px;
  }
  
  .part35 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part35 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part36{
    position: absolute;
    height: 60px;  
    left: 710px;
    top:763px;
  }
  
  .part36 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part36.cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part37{
    position: absolute;
    height: 60px;  
    left: 1005px;
    top: 428px;
  }
  
  .part37 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part37 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part38{
    position: absolute;
    height: 60px;  
    left: 1005px;
    top:553px;
  }
  
  .part38 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part38 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part39{
    position: absolute;
    height: 60px;  
    left: 1005px;
    top:703px;
  }
  
  .part39 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part39 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  
  
  .part40{
    position: absolute;
    height: 60px;  
    left: 220px;
    top:1330px;
  }
  
  .part40 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part40 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part41{
    position: absolute;
    height: 60px;  
    left: 25px;
    top:1385px;
  }
  
  .part41 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part41 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part42{
    position: absolute;
    height: 60px;  
    left: 85px;
    top:1462px;
  }
  
  .part42 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part42 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part43{
    position: absolute;
    height: 60px;  
    left: 50px;
    top:1510px;
  }
  
  .part43 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part43 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part44{
    position: absolute;
    height: 60px;  
    left: 140px;
    top:1575px;
  }
  
  .part44 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part44 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  
  .part45{
    position: absolute;
    height: 60px;  
    left: 205px;
    top:1615px;
  }
  
  .part45 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part45 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part46{
    position: absolute;
    height: 60px;  
    left: 190px;
    top: 1660px;
  }
  
  .part46 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part46 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part47{
    position: absolute;
    height: 60px;  
    left: 750px;
    top: 1730px;
  }
  
  .part47 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part47 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part48{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 1660px;
  }
  
  .part48 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part48 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part49{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 1610px;
  }
  
  .part49 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part49 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part50{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 1540px;
  }
  
  .part50 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part50 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part51{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 1477px;
  }
  
  .part51 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part51 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part52{
    position: absolute;
    height: 60px;  
    left:1050px;
    top:1445px;
  }
  
  .part52 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part52 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part53{
    position: absolute;
    height: 60px;  
    left:1050px;
    top:1390px;
  }
  
  .part53 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part53 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part54{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 1350px;
  }
  
  .part54 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part54 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part55{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 1300px;
  }
  
  .part55 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part55 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part56{
    position: absolute;
    height: 60px;  
    left:710px;
    top: 1270px;
  }
  
  .part56 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part56 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part57{
    position: absolute;
    height: 60px;  
    left: 145px;
    top: 433px;
  }
  
  .part57 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part57 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part58{
    position: absolute;
    height: 60px;  
    left:190px;
    top: 528px;
  }
  
  .part58 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part58 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part59{
    position: absolute;
    height: 60px;  
    left: 30px;
    top: 613px;
  }
  
  .part59 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part59 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part60{
    position: absolute;
    height: 60px;  
    left:45px;
    top: 673px;
  }
  
  .part60 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part60 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  
  .part61{
    position: absolute;
    height: 60px;  
    left:710px;
    top: 843px;
  }
  
  .part61 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part61 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part61{
    position: absolute;
    height: 60px;  
    left:710px;
    top: 843px;
  }
  
  .part61 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part61 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part62{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 663px;
  }
  
  .part62 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part62 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part63{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 603px;
  }
  
  .part63 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part63 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  
  .part64{
    position: absolute;
    height: 60px;  
    left:1050px;
    top:528px;
  }
  
  .part64 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part64 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  
  .part65{
    position: absolute;
    height: 60px;  
    left:680px;
    top:403px;
  }
  
  .part65 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part65 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part66{
    position: absolute;
    height: 60px;  
    left:140px;
    top:778px;
  }
  
  .part66 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part66 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part67{
    position: absolute;
    height: 60px;  
    left:190px;
    top: 553px;
  }
  
  .part67 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part67 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part68{
    position: absolute;
    height: 60px;  
    left:140px;
    top: 603px;
  }
  
  .part68 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part68 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part69{
    position: absolute;
    height: 60px;  
    left:45px;
    top: 648px;
  }
  
  .part69 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part69 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part70{
    position: absolute;
    height: 60px;  
    left:760px;
    top: 788px;
  }
  
  .part70 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part70 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part71{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 608px;
  }
  
  .part71 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part71 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part72{
    position: absolute;
    height: 60px;  
    left:1050px;
    top: 533px;
  }
  
  .part72.cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part72 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part73{
    position: absolute;
    height: 60px;  
    left:740px;
    top: 448px;
  }
  
  .part73 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part73 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part74{
    position: absolute;
    height: 60px;  
    left:190px;
    top: 608px;
  }
  
  .part74 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part74 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part75{
    position: absolute;
    height: 60px;  
    left:25px;
    top: 670px;
  }
  
  .part75 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part75 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part76{
    position: absolute;
    height: 60px;  
    left:140px;
    top: 730px;
  }
  
  .part76 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part76 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part78{
    position: absolute;
    height: 60px;  
    left:145px;
    top: 804px;
  }
  
  .part78 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part78 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part79{
    position: absolute;
    height: 60px;  
    left:575px;
    top: 856px;
  }
  
  .part79 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part79 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part80{
    position: absolute;
    height: 60px;  
    left:1055px;
    top: 813px;
  }
  
  .part80 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part80 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part77{
    position: absolute;
    height: 60px;  
    left:1055px;
    top: 648px;
  }
  
  .part77 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part77 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  
  .part81{
    position: absolute;
    height: 60px;  
    left: 430px;
    top: 413px;
  }
  
  .part81 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part81 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part82{
    position: absolute;
    height: 60px;  
    left: 95px;
    top: 393px;
  }
  
  .part82 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part82 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part86{
    position: absolute;
    height: 60px;  
    left: 130px;
    top: 513px;
  }
  
  .part86 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part86 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part83{
    position: absolute;
    height: 60px;  
    left: 230px;
    top: 593px;
  }
  
  .part83 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part83 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part84{
    position: absolute;
    height: 60px;  
    left: 630px;
    top: 758px;
  }
  
  .part84 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part84 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part85{
    position: absolute;
    height: 60px;  
    left: 1050px;
    top: 623px;
  }
  
  .part85 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part85 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part87{
    position: absolute;
    height: 60px;  
    left: 1055px;
    top: 378px;
  }
  
  .part87 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part87 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part88{
    position: absolute;
    height: 60px;  
    left: 1055px;
    top: 308px;
  }
  
  .part88 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part88 .cta-btn:hover {
    background: #808080;
    color: #000;
  }
  
  .part89{
    position: absolute;
    height: 60px;  
    left: 650px;
    top: 273px;
  }
  
  .part89 .cta-btn{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 2px;
  background: #1947ba;
  color: #fff;
  margin-left: -5px;
  padding:4px 10px 4px 10px;
  margin-left: 1px;
  }
  
  .part89 .cta-btn:hover {
    background: #808080;
    color: #000;
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
  }
  
  .center .cta-btnmain{
  
    font-weight: 600;
      font-size: 18px;
      letter-spacing: 1px;
      display: inline-block;
      padding: 1px 10px;
      border-radius: 4px;
      transition: 0.5s;
      margin-top: 2px;
      background: #1947ba;
      color: #000;
      margin-left: -5px;
      padding: 4px 15px 4px 15px;
      margin-left: 1px;
      background-color: #ff9900;
  
  }
  
  .center .cta-btnmain:hover{
    background: #091426;
    color:#fff;
   border: none;
  }

  .tecnicalguide .column {
    float: left;
    width: 25%;
    padding: 10px;
    height: 300px; /* Should be removed. Only for demonstration */
  }
  
  /* Clear floats after the columns */
  .tecnicalguide .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the four columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .tecnicalguide .column {
      width: 100%;
    }
  }

  
/*------------------------------------------------------------------
    FEATURES
-------------------------------------------------------------------*/

/* General styles */
#features {
  text-align: center;
}

.customwidget h1 {
  font-size: 44px;
  color: #ffffff;
  padding: 15px 0 25px;
  margin: 0;
  line-height: 1 !important;
  font-weight: 500;
}

.customwidget ul {
  padding: 0;
  display: block;
  margin-bottom: 30px;
}



.customwidget li i {
  margin-right: 5px;
}

.customwidget li {
  color: #ffffff;
  margin-right: 10px;
}

.img-center img {
  width: 100%; /* Make the image fill its container */
  max-width: 100%; /* Ensure the image doesn't exceed its natural size */
  height: auto; /* Maintain the image's aspect ratio */
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.customwidget p {
  font-style: italic;
  font-size: 18px;
  padding: 0 0 10px;
}

.img-center img {
  width: 100%;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.img-center {
  margin: auto;
}
@media (min-width: 768px) {
  .customwidget {
      text-align: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .customwidget .text-section {
      flex: 1; /* Make the text section take up remaining space */
      padding-right: 30px;
      text-align: left; /* Align text to the left */
  }

  .customwidget .img-section {
      flex: 1; /* Make the image section take up remaining space */
  }

}

/* Responsive styles for smaller screens */
@media (max-width: 767px) {
  .customwidget h1 {
      font-size: 30px; /* Adjust font size for smaller screens */
  }

  .img-center img {
      margin: 0; /* Remove the negative margin */
  }
}

#features li p {
  margin-bottom: 0;
  padding-bottom: 0;
font-size:12px;
  color: #000;
}

#features li {
  display: table;
  width: 100%;
  margin: 30px 0;
  cursor: pointer;
-webkit-box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
border-radius: 10px 0px 10px 0px;
transition: all 1s ease-in-out;
  background-color: #D3D3D3;
}

#features li:hover {
transform: scale(1.07);
transition: all 1s ease-in-out;
z-index: 1000;
}

.features-left,
.features-right {
padding: 0 1px;

}

.features-right li:last-child,
.features-left li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0 !important;
}

.features-right li i,
.features-left li i {
  width: 60px;
  height: 60px;
  line-height: 68px;
  display: table;
  border-radius: 25px 0px 25px 0px;
  font-size: 26px;
color: #ffffff;
  background-color: #43C6AC;
  margin: 0 auto 22px;
  position: relative;
  text-align: center;
  z-index: 55;
  transition: .4s;
  padding: 0;
}

.features-right li i:hover,
.features-left li i:hover {
background: #393939;
}

#features i img {
  display: table;
  margin: 10px auto;
width: 45px;
height:45px;
}

.features-left li i:before,
.features-right li i:before {
  text-align: center;
}

.features-right li i .ico-current,
.features-left li i .ico-current {
  opacity: 1;
  transition: .4s;
  visibility: visible;
}

.features-right li i .ico-hover,
.features-left li i .ico-hover {
  opacity: 0;
  transition: .4s;
  visibility: hidden;
  top: 19px;
}

.features-right li:hover .ico-current,
.features-left li:hover .ico-current {
  opacity: 0;
  transition: .4s;
  visibility: hidden;
}

.features-right li:hover .ico-hover,
.features-left li:hover .ico-hover {
  opacity: 1;
  transition: .4s;
  visibility: visible;
}

.features-right i {
  float: left;
}

.fr-inner {
  margin-left: 90px;
  margin-top: 5px;

}

.features-left i {
  float: right;
}

.fl-inner {
  text-align: left;
  margin-left: 20px;
margin-top: 5px;
}

#features h4 {
  text-transform: inherit;
  margin: 0;
  font-size: 14px;
color: #000;
}

#features h1{
  color: #e87000;
  text-align: center;
}
}

.productdetails .container h3{
	font-size:40px;
	text-align:center;
	font-weight:600;
	}
  .showroom {
    text-align: center;
    align-items: center;
}

.showroom .row {
    text-align: center;
    align-items: center;
    margin-left: 15px;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.showroom .column {
    width: 100%; /* Take up full width on small screens */
    padding: 10px;
    box-sizing: border-box; /* Include padding in the width calculation */
}

/* Adjust the width of columns for medium-sized screens */
@media (min-width: 768px) {
    .showroom .column {
        width: 50%; /* Take up half the width on medium screens */
    }
}

/* Adjust the width of columns for large screens */
@media (min-width: 1024px) {
    .showroom .column {
        width: 33.33%; /* Take up one-third of the width on large screens */
    }
}
