/**
* Template Name: Multi - v2.2.0
* 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: #dd3333;
}

a:hover {
  color: #1e7ba6;
  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;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ec575e;
  color: #fff;
  transition: all 0.4s;
}
span.button-right-try {
    color: white;
}

.back-to-top i:hover {
  background: #f06f54;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #272727;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 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: 100%;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  transition: 0.3s;
  font-size: 1.5vw;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #DD3333;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0b2341;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ed502e;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 5px;
  background: #ec575e;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 22px;
  display: inline-block;
  font-weight: 500;
}

.get-started-btn:hover {
  background: #ef6445;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 23px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: white;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #0b2341;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ed502e;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(4, 12, 21, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #4594e1;
  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: '';
  background-color: #4594e1;
}

#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 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 100%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#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: .6;
  transition: 0.2s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ed502e;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.5vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #ec575e;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #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: white;
}
.container.aos-init.aos-animate {
    width: 90vw;
}
p.contact-form-title {
    font-size: 3vw;
    font-weight: 700;
}
.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: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
margin: 0;
font-size: 2vw;
font-weight: 600;
/* text-transform: uppercase; */
font-family: "Open Sans", Sans-serif;
color: #494d50;
}
p.content-p {
    font-family: "Open Sans", Sans-serif;
    font-size: 1.5vw;
    color: black;
}

/*--------------------------------------------------------------
# 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: #ed502e;
  line-height: 1;
}

ol#hero-carousel-indicators {
    display: none;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.row.section-two-imgbox {

}
.col-log-4 {
    width: 33%;
    text-align: center;
    padding: 2%
}
.row.section-lightbox-icon.aos-init.aos-animate {
    width: 90vw;
margin: auto;
}
p.content-h {
  text-align: center;
      margin-top: 5%;
      font-size: 2vw;
      font-weight: 600;
}
p.content-d {
    text-align: center;
    font-size: 1.5vw;
}
section.try-yourself {
    background: #f9f7f7;
}
.section-background {
    padding-top: 10%;
    padding-bottom: 10%;
    color: white;
}
.section-background p.content-h{
  font-size: 1.75vw;
}
i.icofont-computer, i.icofont-web, i.icofont-android-tablet {
    color: white;
    font-size: 8vw;
}
span.button-right-try {
    /* float: lef/t; */
    /* margin-left: 2%; */
    background: #ec575e;
    /* width: fit-content; */
    padding: 10px 20px 10px 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
p.content-d.try-section1 {
    margin-bottom: 15%;
    /* width: 90%; */
    /* margin: 20px auto; */
    margin-left: 10%;
    margin-right: 10%;
}
section.try-yourself {
    padding-bottom: 60px;
}
p.content-d.try-section {
    margin-bottom: 8%;
    /* width: 90%; */
    /* margin: 20px auto; */
    margin-left: 10%;
    margin-right: 10%;
}
.row.section-whats-you-get {
    width: 80vw;
    margin: auto;
}
section.whats-inside {
    background: #f7f5f5;
}
p.what-customer-day {
    text-align: center;
    font-size: 3vw;
    font-weight: 600;
}
section.our-clinet {
    background: #f7f5f5;
}
p.clinet-logo-img {
    text-align: center;
    margin-top: 10%;
}
img.slient-icon {
    border: solid 1px #cfb9b942;
    border-radius: 5px;
    /* padding-top: 10px; */
}
p.clints-disc {
    font-size: 1.3vw;
    width: 80vw;
    margin: auto;
    text-align: center;
}
img.whats-say-img {
    width: 100%;
    margin-top: 10%;
}
.color-red {
    padding: 0px;
    margin: auto;
    background: #ed686e;
    width: 175px;
    height: 3px;
    margin-top: -3px;
    font-size: 0px;
}
p.line-bottom-what-say {
    height: 3px;
    width: 80%;
    background: #cdcdcd;
    margin: auto;
}
.container.whats-inside-contatiner{
width: 80vw;
margin: auto;}
img.whats-inside-img {
    width: 100%;
}
p.whats-inside-text-h1 {
    font-size: 1.3vw;
    font-weight: 600;
}
p.line-bottom-text {
    width: ;
    background: #F73E0A;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    /* margin-top: -25px; */
}
p.whats-inside-text-h {
    font-size: 3vw;
    font-weight: 600;
    color: black;
}
img.icon-img-why {
    width: 3vw;
    height: 3vw;
}
p.li-text-h {
    font-size: 1.8vw;
    font-weight: 600;
}
p.li-dis {
    font-size: 1.2vw;
}
.icon-div {
    width: 10%;
}
.icon-div-disc {
    width: 90%;
}
span.button-left-try {
    color: white;
    margin-right:  2%;
    background: #ec575e;
    /* width: fit-content; */
    padding: 10px 20px 10px 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

i.icofont-computer:hover, i.icofont-web:hover, i.icofont-android-tablet:hover {
    color: #ffb716;
}
.section-background p.content-d{
  font-size: 1.25vw;
}
p.content-h.try {
    font-size: 3vw;
    color: black;
}
.col-log-4.try-section {
    margin-top: 5%;
}
p.content-d.try {
    text-align: center;
    font-size: 1.5vw;
    width: 60vw;
    margin: auto;
}
img.icon-img {
    width: 10vw;
}
.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: #ed502e;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ed502e;
}

.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: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.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;
}

.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;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(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;
  -webkit-animation: none;
  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;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ed502e;
  border-color: #ed502e;
}

.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: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.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 .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #ed502e !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# 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: 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 #ed502e;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed502e;
  border: 2px solid #ed502e;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}
p.contact-form-title {
    font-size: 3vw;
}
.contact .php-email-form {
  padding-top: 30px;
  background: #fff;
}
.form-control{
  border: 0px;
  border-radius: 0px;
}
.contact .php-email-form input, .contact .php-email-form textarea{
  border-radius: 0px;
}
input#name {
    border-bottom: solid 1px #777777a8;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.col.form-group {
    padding: 0;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
p.form-input-label {
    font-size: 16px;
}
span.star-input-form {
    color: red;
}
.col.form-group.form-row {
    padding: 0px !important;
}
.contact .php-email-form input {
    /* padding: 20px 15px; */
    border-bottom: solid 1px #777777a8;
    padding: 0px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ed502e;
}
.contact .php-email-form textarea {
    padding: 12px 15px;
    border-bottom: solid 1px #777777a8;
}
.col-lg-6.contact-card-last {
    background: #ed686e;
    color: white;
    padding-top: 5%;
    padding-left: 5%;
    font-weight: normal;
}
p.contact-form-r.a {
    padding-top: 20px;
}
p.contact-form-r.b {
    padding-top: 5px;
}
p.contact-form-right-headline {
    color: white;

}
.col-lg-1.img {
    margin-top: 5%;

}
p.contact-form-r {
    font-size: 16px;
    color: white;
    margin-top: 5%;
    font-weight: normal;
}
.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #ed686e;
      border: 0px;
      height: 60px;
      width: 60px;
      border-radius: 50%;
}
.text-center.form {
    text-align: right !important;
}
.text-center.form {
    text-align: right !important;
}
i.icofont-paper-plane {
    font-size: 40px;
    color: white;
}
span.menu-footer {
    font-size: 16px;
    color: #AFAFAF;
    font-weight: 500;
    margin-right: 20px;
}
.contact .php-email-form button[type="submit"]:hover {
  /* background: #ef6445; */
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@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: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #ed502e !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  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 #ed502e;
  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: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#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: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#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: #ef6445;
  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;
}

#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: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ef6445;
}
p.footer-menu-line {
    background: #afafaf;
    height: 2px;
    margin-top: 12px;
}
.row.menu-section-top {
    margin-bottom: -20px !important;
}
p.footer-menu-line-d {
    color: #a7a7a7;
    font-size: 16px;
}
i.icofont-facebook {
    color: white;
    background: #3b5998;
      border-radius: 50%;
    padding: 8px;
    font-size: 1.5vw;
}
i.icofont-twitter {
    color: white;
    background: #1da1f2;
      border-radius: 50%;
    padding: 8px;
    font-size: 1.5vw;
}
i.icofont-instagram {
    color: white;
    background: #923197 !important;
      border-radius: 50%;
    padding: 8px;
    font-size: 1.5vw;
}
p.footer-alignment {
    float: right;
    margin-top: 50px;
}
i.icofont-linkedin {
    color: white;
    background: #0077b5;
      border-radius: 50%;
    padding: 8px;
    font-size: 1.5vw;
}
i.icofont-youtube-play {
    color: white;
    background: #cd201f;
      border-radius: 50%;
    padding: 8px;
    font-size: 1.5vw;
}
p.inner-page-text-h {
    font-size: 40px;
    font-weight: 600;
}
input#name-inner {
  font-family: "Roboto Condensed", Sans-serif!important;
  padding: 15px 20px!important;
  border-radius: 15px!important;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
  border: 1px solid #8e98a2;
}
input#email-inner, input#phone-inner, textarea#message-inner{
  font-family: "Roboto Condensed", Sans-serif!important;
  padding: 15px 20px!important;
  border-radius: 15px!important;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
  border: 1px solid #8e98a2;
}
p.inner-page-disc {
    padding-right: 50px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}
p.features-text {
    text-align: center;
    color: #000000;
    font-family: "Raleway", Sans-serif;
    font-size: 40px;
    font-weight: 600;
}
.row.inner-page-feature-row {
    margin: auto;
    text-align: center;
    margin-top: 60px;
}
p.features-text-headline {
    padding-top: 20px;
    font-size: 24px;
    font-weight: 600;
    color: black;
}
.col-lg-4.inner-page-features.right {
    border-right: solid 2px black;
}
.bottom-line-inner-page {
    height: 2px;
    background: #0399d9;
    width: 75px;
    margin: auto;
}
a.inner-page-link {
    color: #dd3333;
}
a.inner-page-link:hover {
    color: #1e7ba6;
}
p.contact-form-title-inner {
    font-size: 30px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
}
.col-lg-4.form-background-inner {
    background: #dbdbdb;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 80px;
}
.text-center-inner.form {
    text-align: center;
}
button.sent-button-msg.inner-page {
    vz: green;
    /* font-size: 20px; */
    background-color: #67c15e!important;
    color: #fff;
    font-size: 18px;
    padding: 15px 55px;
    border-radius: 30px!important;
    border: 0px!important;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
}
span.red-text-inner:hover {
    color: #1e7ba6;
}
span.red-text-inner {
    color: #dd3333;
}

#footer .copyright {

  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

element.style {
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
@media (min-width: 1200px){
.container {
    max-width: 100vw;
    /* width:100vw; */
    padding-left: 30px;
    padding-right: 30px;
}
}
.icon-header {
  color: white;
    font-size: 25px;
    padding: 10px;
}
i.icofont-ui-call.icon-header {
    background: #007ec4;
        border-radius: 5px;
}
.social-button-to-header {
    padding-left: 10px;
    padding-top: 10px;
}
i.icofont-brand-whatsapp.icon-header {
    background: #17980e;
        border-radius: 5px;
}
i.icofont-skype.icon-header {
    background: #019cd8;
        border-radius: 5px;
}
/* @keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.2,1.2);
    }
    100% {
        transform: scale(1,1);
    }
} */
img.image-slider {
    width: 100% !important;
}
p.animate__animated.animate__zoomIn.slider-text {
    font-weight: 700;
    font-size: 3vw;
    line-height: 1;
}
#hero .carousel-container{
  font-family: 'Raleway';
}
p.about-h1 {
    padding-top: 100px;
    font-weight: 600;
    font-size: 1.5vw;
}
p.about-disc {
    text-align: justify;
}
.row.about-two {
    padding-top: 50px;
}
.col-lg-3.about-left {
    padding: 0px;
}
.col-lg-9.about-right {
    padding-left: 50px;
}
.col-lg-3.about-left1 {
    text-align: center;
}
p.text-bottom-about {
    font-size: 36px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #5b5b5b;
}
img.founder-img {
    width: 100%;
}
.row.about-two-section-img {
    padding-top: 50px;
}
.star-about {
    text-align: center;
    color: #f0ad4e;
    font-size: 28px;
}
p.about-h12 {
    font-weight: 700;
}
img.img-counter {
    padding-top: 50px;
}
.container.about-us-page {
    width: 80vw;
    margin: auto;
}
span.red-color-text-inner-page {
    color: #dd3333;
    font-size: 40px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}
p.red-color-inner-page-t {
    text-align: center;
}
.row.software-section-row {
    width: 90%;
    margin: auto;
}
p.software-section-d {
    margin-top: 30px;
}
p.red-color-inner-page-t {
    font-size: 40px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    padding-left: 50px;
    padding-right: 50px;
}
.col-lg-4.inner-page-features.right-bottom {
    border-bottom: 2px solid #E8E8E8;
    border-right: 2px solid #E8E8E8;
}
.software {
    margin-bottom: -30px !important;
    padding-top: 30px;
}
.col-lg-4.inner-page-features.software.left.right-bottom {
    margin-top: -30px;
}
.col-lg-4.inner-page-features img {
    width: auto;
    height: 100px;
}
.col-lg-4.inner-page-features.software.bottom {
    border-bottom: 2px solid #E8E8E8;
}
.col-lg-4.inner-page-features.software.left.right-bottom {
    border-right: 2px solid #E8E8E8;
    border-left: 2px solid #E8E8E8;
}
.row.inner-page-feature-row.software {
    padding: 0px;
    margin: 0px;
}
p.shedule-a-demo {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}
p.shedule-demo-des {
    text-align: center;
    font-size: 24px;
    font-family: "Raleway", sans-serif;
}
section.inner-page-bottom-contact {
    background: #dbdbdb;
}
.container.contact-form {
    width: 90vw;
}
input#name-inner-bottom, input#email-inner-bottom, input#phone-inner-bottom, textarea#message-inner-bottom {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #8e98a2;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
}
button.sent-button-msg.inner-page.bottom {
    background-color: #67c15e!important;
    color: #fff;
    font-size: 18px;
    padding: 15px 25px;
    border: 0px!important;
    border-radius: 10px!important;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    "Roboto Condensed", Sans-serif!important: ;
    float: right;
    margin-top: 20px;
}
section.inner-page-bottom-contact {
    margin-bottom: -30px;
}
span.carousel-control-prev-icon.icofont-simple-left {
    display: none;
}
span.carousel-control-next-icon.icofont-simple-right {
    display: none;
}
p.features-text-disc-screen {
    text-align: center;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.owl-dots button.owl-dot.active {
  background-color: #2B8607;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
span.red-text-inner {
    font-size: 40px;
}
span.star-input-form {
    font-size: 18px;
}
span.button-left-try {
    font-size: 18px;
}
span.button-right-try {
    font-size: 18px;
}
span {
    font-size: 40px;
    position: relative;

}
.owl-nav button:focus {
    outline: none;
}
.container.screen-shot-slider{
  width: 80%;
  margin: auto;
}
p.features-text-disc-screen {
    padding-bottom: 30px;
    font-size: 20px;
}
button.owl-prev {
    background: white !important;
    height: 50px !important;
    width: 50px;
    border-radius: 50%;
}
button.owl-prev {
    background: white !important;
    height: 50px !important;
    width: 50px;
    border-radius: 50%;
    margin-left: -25px;
}
button.owl-next{
  background: white !important;
  height: 50px !important;
  width: 50px;
  border-radius: 50%;
  margin-right: -25px;
}
button.owl-prev span {
    font-size: 40px;
    position: relative;
    top: -10px;
}
button.owl-next span {
    font-size: 40px;
    position: relative;
    top: -10px;
}
section.scree-shots {
    background: #f3f3f3;
}
section.scree-shots-logo button.owl-prev {
    display: none;
}
section.scree-shots-logo button.owl-next{
  display: none;
}
section.scree-shots-logo .owl-dots {
    display: none;
}
@media only screen and (min-device-width: 768px)  and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
	  .contact-form-right-headline {
		  font-size:28px!important;
  }
  .contact-form-r.b{
  padding-bottom:40px;
  }
  .contact-card-last{
  margin-top:50px;
  }
  p.li-dis {
    font-size: 14px;
  }
  p.content-d {
    font-size: 14px;
}
p.content-p {
    font-size: 14px;
}

p.whats-inside-text-disc {
    font-size: 14px;
}
p.clints-disc {
font-size: 14px;
}
p.content-d.try {
font-size: 14px;
}
.section-background p.content-d {
    font-size: 14px;
}
span.button-left-try {
    padding: 0.75vw;
}
span.button-left-try {
    font-size: 14px;
}
span.button-right-try {
    font-size: 14px;
}
span.button-right-try {
    padding-top: 0.75vw;
padding-bottom: 0.75vw;
padding-left:1.3vw;
padding-right: 1.5vw;
}
p.content-d.try-section1 {
margin-bottom:28%;
}
  }
@media only screen and (min-device-width: 320px) and (max-device-width: 767px)
  and (-webkit-min-device-pixel-ratio: 2) {
p.animate__animated.animate__zoomIn.slider-text {
    font-size: 18px;
}
#hero .btn-get-started {
    font-size: 14px;
}
#hero .btn-get-started {
    	padding: 10px 24px;
  }
	  .contact-form-right-headline {
		  font-size:28px!important;
  }
  .contact-form-r.b{
  padding-bottom:40px;
  }
  .contact-card-last{
  margin-top:50px;
  }
  p.li-dis {
    font-size: 14px;
  }
  p.content-d {
    font-size: 14px;
}
p.content-p {
    font-size: 14px;
}

p.whats-inside-text-disc {
    font-size: 14px;
}
p.clints-disc {
font-size: 14px;
}
p.content-d.try {
font-size: 14px;
}
.section-background p.content-d {
    font-size: 14px;
}
p.content-h.try {
font-size: 28px;
}
p.whats-inside-text-h {
font-size: 28px;
}
p.what-customer-day {
    font-size: 28px;
  }
p.whats-inside-text-h1 {
font-size: 14px;
}
p.li-text-h {
    font-size: 16px;
}
p.content-h {
    font-size: 16px;
}
}
@media only screen and (min-device-width: 766px) and (max-device-width: 1024px)
{
.social-button-to-header {
    padding-left: 15px;
}
.get-started-btn {
    margin: 0px 48px 0px 10px;
    padding: 10px 20px 10px 20px;
}
.mobile-nav-toggle i {
    color: #f8f9fa;
    font-size: 42px !important;
    margin-right: 20px !important;
}
a.get-started-btn {
    font-size: 18px;
}
p.whats-inside-text-h1 {
    font-size: 18px;
}
}
@media only screen and (min-device-width: 300px) and (max-device-width: 414px)
{
  i.icofont-navigation-menu {
    color: white;
    font-size: 42px;
}
p.about-h1 {
    font-size: 32px;
}
.col-lg-9.about-right {
    padding-left: 0;
    padding-top: 30px;
}
img.img-counter {
    padding-top: 50px;
    width: 100%;
}
p.contact-form-title {
    font-size: 20px;
        margin-left: -10px;
}
.mobile-nav-toggle {
    position: fixed;
    top: 75px;
    left: 10px;
    z-index: 9998;
    border: 0;
    background: transparent;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
img.image-slider {
    padding-top: 50px;
}
.col-lg-2.section-title p {
    font-size: 20px;
}
.row.section-lightbox-icon.aos-init.aos-animate .col-log-4 {
    width: 100%;
}
p.content-p {
    padding-bottom: 30px;
}
img.icon-img {
    width: 50%;
}
.col-log-4.try-section {
    width: 100%;
}
.col-log-4.try-section i {
    font-size: 56px;
}
.section-background p.content-h {
    font-size: 18px;
}
img.icon-img-why {
    width: 20px;
    height: 20px;
}
p.inner-page-text-h, span.red-text-inner {
    font-size: 32px;
    font-weight: 600;
}
p.inner-page-disc {
    padding-right: 0px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}
.col-lg-4.inner-page-features.right{
  border: 0px;
}
span.red-color-text-inner-page{
  font-size: 32px;
}
p.red-color-inner-page-t{
  padding-left: 0px;
  padding-right: 0px;
  font-size: 32px;
}
.col-lg-4.inner-page-features.right-bottom, .col-lg-4.inner-page-features.software.bottom, .col-lg-4.inner-page-features.software.left.right-bottom{
  border: 0px;
}
p.footer-alignment i {
    font-size: 16px;
}
p.whats-inside-text-h1 {
    font-size: 18px;
    padding-top: 5px;
}
#heroCarousel .row {
    display: flex;
    flex-direction: column-reverse;
}
#header.header-scrolled {
    padding: 5px 0px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
    margin-top: 10px;
    line-height: 1.5;
    font-size: 24px;
}
.col-lg-3.button-poker {
    padding-left: 40px;
    margin-top: -17px;
    padding-bottom: 10px;
}
.icon-header {
    color: white;
    font-size: 20px;
    padding: 10px;
}
a.get-started-btn {
  font-size: 16px;
      margin-top: 0px;
      padding: 9px 10px 9px 10px;
      margin-right: 0px;
}
.col-lg-3.logo-poker {
    padding-left: 0px;
}
}
@media only screen and (min-device-width: 767px) and (max-device-width: 1024px)
{
.col-lg-6.nav-poker {
    width: 27%;
}
.col-lg-3.logo-poker {
    width: 20%;
}
.col-lg-3.button-poker {
    width: 52%;
    padding-top: 8px;
}
.social-button-to-header {
    display: inline-flex;
}
.social-button-to-header{
  padding-left: 0px;
}
.icon-header {
    color: white;
    font-size: 25px;
    padding: 10px;
    margin-right: 3px;
}
.col-lg-6.nav-poker {
    padding-top: 10px;
}
}
@media only screen and (min-device-width: 760px) and (max-device-width: 780px)
{
.social-button-to-header{
  padding-left: 0px;
  float: right;
}}
.row.header-menu {
    width: 100vw;
    margin: 0 auto;
}
.nav-menu > ul {
    display: flex;
    float: right;
}
nav.nav-menu.d-none.d-lg-block {
    padding-top: 10px;
}
img.div-float-whatsapp {
    position: fixed;
    bottom: 25px;
    width: 200px;
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }
}
img.div-float-whatsapp {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 20px;
    margin-top: 5px;
}
img.whats-say-img {
    width: 100% !important;
    margin-top: 10%;
    height: auto !important;
}
@media only screen and (min-device-width: 1024px)
{
.drop-down ul {
    background: #272727 !important;
    color: white !important;
    padding-bottom: 0px !important;
  font-weight: bold;
}
.nav-menu .drop-down ul a{
  color: white;
  }
.nav-menu .drop-down li {
    border-bottom: 2px solid white;
}}
