/*
Theme Name: fiscomm
Theme URI: https://fiscomm.rs
Author: the Predrag Slavkovic
Author URI: https://fiscomm.rs/
Description: Fiscomm
Tags: fiscomm
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fiscomm
*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  background: #022b3a;
	overflow-x:hidden !important;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

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

p, a{
   font-family: "Poppins", sans-serif;
}

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #01202C;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

#header.header-scrolled,
#header.header-inner-pages {
  background: #022B3A;
}

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

#header .logo a {
  color: #fff;
  font-weight: 500;
}

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

@media only screen and (max-width: 600px) {
  #header .container {
      
    width: 86%;
  }
	.mobile-no-flex {
		display: block !important;		
	}
	.mobile-hidden {
		display:none !important;
	}
	
}


/*--------------------------------------------------------------
# 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;
  font-weight: 500;
  color: #fff;
  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: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 6px 20px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  border: 0px solid #fff;
  font-weight: 600;
  background: #008BFF;
}

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

.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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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: #fff;
  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(40, 58, 90, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.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: #47b2e4;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: transparent;
  overflow:visible; 
}

#hero .container {
  padding-top: 30px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 255);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero #second-heading{
  color: #4CFFD5;
}

.arrow{
  max-height: 38px;
}

.btn-get-started {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #008BFF;
  margin-left: 20px;
}



#hero .btn-get-started {

  font-size: 22px;
}

#hero .btn-get-started:hover {
  background: #23789f;
  font-size: 26px;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


.section-bg {
  background-color: #f3f5fa;
}

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

.section-title h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color:#fff;
  text-align: left;
  text-transform: none;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: none;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  bottom: 0;
  left: calc(50% - 20px);
  left:0;
  width: 100px;
  background: rgb(76,255,213);
  background: linear-gradient(90deg, rgba(76,255,213,1) 0%, rgba(0,139,255,1) 100%);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
  background-color: transparent;
}
.clients-row{
  display: flex;
    justify-content: space-around;
    background-color: white;
    border-radius: 10px;
}
.clients-row figure{
 width: fit-content;
 margin: 20px;
}
.clients img {
  max-height: 60%;
  transition: all 0.4s esase-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 100%;
	max-height: 100%;
  }
}

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

.about .content p{
  color:#fff;
}

.about .content ul {
  list-style: none;
  padding: 0;
  color: #fff;
  height: 100%;
  margin-left:50px;
}

.about .content ul li {
  padding-left: 48px;
  position: relative;
  line-height: 45px;
  justify-content: center;
}

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

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
  width:35px;
  height: 35px;
}
#about-icon1{
  background-image: url("http://staging.fiscomm.rs/wp-content/uploads/2022/12/icon1.png");
  background-position: center center;
  background-size: contain;
}

#about-icon2{
  background-image: url("http://staging.fiscomm.rs/wp-content/uploads/2022/12/icon2.png");
  background-position: center center;
  background-size: contain;
}

#about-icon3{
  background-image: url("http://staging.fiscomm.rs/wp-content/uploads/2022/12/icon3.png");
  background-position: center center;
  background-size: contain;
}

#about-icon4{
  background-image: url("http://staging.fiscomm.rs/wp-content/uploads/2022/12/icon4.png");
  background-position: center center;
  background-size: contain;
}

#about-icon5{
  background-image: url("http://staging.fiscomm.rs/wp-content/uploads/2022/12/icon5.png");
  background-position: center center;
  background-size: contain;
}

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

.about .content .btn-get-started-first{
  margin-left: 0px;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #47b2e4;
  margin-left: 20px;
}

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials{
  background-color: transparent;
  display: block;
}

.testimonials .row{
  background-color: #DBEBFB;
  border-radius: 5px;
  padding: 20px;
}

.testimonials .icon-box {
  padding: 50px 20px;
  transition: all ease-in-out 0.4s;
  background: transparent;
  border: 3px solid #1F7A8C;
  border-radius: 8px;
}

.testimonials .icon-box .icon {
  margin-bottom: 10px;
}

.testimonials .icon-box .icon img {
  transition: 0.3s;
  width: 25px;
  height: auto;
}

.testimonials h5, h4{
  text-align: center;
}

.testimonials h4{
  margin-bottom: 30px;
}

.testimonials .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
  color:#066689;
  text-align: center;
}

.testimonials .icon-box:hover {
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Adventages
--------------------------------------------------------------*/
.adventages{
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.adventages .row{
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 30px;
  flex-flow: row wrap;
}

.adventages .icon-box{
  border: 3px solid #4CFFD5;
  background-color: #022C3D;
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  border-radius: 8px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.adventages .icon-box img{
  max-width: 40px;
  margin-bottom: 15px;
}

.adventages .icon-box h4{
  text-align: center;
  color:#4CFFD5;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 20px;
}

.adventages .icon-box p{
  color: #fff;
  text-align: justify;
}

.adventages-kontakt{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.adventages-kontakt img{
  transform: rotate(90deg);
  margin-bottom: 30px;
}

.adventages-kontakt a{
  margin-left: 0px;
  font-size: 22px;
  padding: 6px 60px;
}

@media (max-width: 480px) {
.adventages .row{
  margin-bottom: 0;
	}
	
	.adventages .row > div{
		margin-top: 0 !important;	
	}
	
	.adventages .icon-box{
  margin-bottom: 30px;
	}
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/

.stats{
  background-color: transparent;
}

.stats .row{
  border-bottom: 4px solid transparent;
  border-radius: 16px;
  background-color: #01202C;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding:30px 0;
  margin-bottom: 10px;
}

.stats .row::after{
  background: rgb(76,255,213);
  background: linear-gradient(90deg, rgba(76,255,213,1) 0%, rgba(0,139,255,1) 100%);
  position: absolute;
  top: 20px; bottom: -4px;
  left: 1px; right: 1px;
  content: '';
  z-index: -1;
  border-radius: 16px;
}

.stats img{
  margin-right: 15px;
  height: 100%;
}

.stats p{
  margin-bottom: 0;
}

.stats h5{
  margin-bottom: 3px;
}

.stats-item1, .stats-item2, .stats-item3{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.stats-text1, .stats-text2, .stats-text3{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-text1 h5, .stats-text1 p{
  color: #ffffff;
}

.stats-text2 h5, .stats-text2 p{
  color:#23C1EC;
}

.stats-text3 h5, .stats-text3 p{
  color:#038FFE;
}

@media (max-width: 480px) {
	.stats .stats-item1 {
		margin-bottom: 30px;
	} 
	
	.stats .stats-item2 {
		margin-bottom: 30px;
	} 

}
/*--------------------------------------------------------------
# Saradnja
--------------------------------------------------------------*/
.saradnja{
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.saradnja .row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.saradnja-item{
  align-self: stretch;
}

.saradnja .icon-box{
  background-color: #DBEBFB;
  padding: 50px 20px;
  transition: all ease-in-out 0.4s;
  border-radius: 8px;
  border-bottom: 4px solid transparent;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.saradnja .icon-box::after{
  background: rgb(76,255,213);
  background: linear-gradient(118.6deg, #1F7A8C 0%, #008BFF 100%),
linear-gradient(0deg, #DBEBFB, #DBEBFB);
  position: absolute;
  top: -3px; bottom: -3px;
  left: 9px; right: 9px;
  content: '';
  z-index: -1;
  border-radius: 16px;
}

.saradnja .icon-box p{
  color: #205372;
  text-align: center;
}

.saradnja h3{
  color: #1F7A8C;
  font-size: 22px;
  text-align: center;
  font-weight: 400;
}

.saradnja-kontakt{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.saradnja-kontakt a{
  margin-left: 0px;
  padding: 6px 60px;
  margin-top: 20px;
}

@media (max-width: 480px) {

	
	.saradnja .row > div{
		margin-bottom: 30px !important;	
	}
	
}
/*--------------------------------------------------------------
# For you
--------------------------------------------------------------*/
.foryou .row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 50px;
}

.foryou .column{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.foryou .column-left{
  justify-content: flex-start;
}

.foryou img{
  max-width: 50px;
  align-self: center;
}

.foryou p{
  color:#fff;
  margin: 0;
  text-transform: uppercase;
}

.foryou .column-right p{
  text-transform: none;
}

@media (max-width: 480px) {
.foryou .row{
	gap: 16px;
	margin-bottom: 30px
}
	
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: transparent;
}

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

#footer .footer-top .footer-contact {
  margin-bottom: 50px;
}

#footer .logo img{
  max-width: 150px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  text-align: left;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  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;
  font-size: 12px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

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

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

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: #01202C;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .copyright {
  
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}



/*--------------------------------------------------------------
# O nama
--------------------------------------------------------------*/
.onama h2{
  margin-bottom: 0px !important;
}

.onama .btn-get-started{
  margin-left: 0;
}

.onama .buttons{
  margin-top: 30px;
}

.onama p{
  color: #fff;
}

.onama .btn-learn-more{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #47b2e4;
  margin-left: 20px;
}
.hero1 .container{
  padding: 50px 0;
}
.hero1 .hero-img img {
    width: 80%;
    margin-top: 50px;
  }

#team img{
  width: 50%;
}

#team p{
  color: #fff;
}

#team h5{
  text-transform: uppercase;
  color: #4CFFD5;
}

#team .row{
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#stats h2{
  margin-bottom: 0;
}

.call h5{
  color:#fff;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  margin-top: 20px;

}

.dugmici{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.integracija .container{
  margin-top: 100px;
}

.integracija .icon-box{
  border-bottom: 4px solid transparent !important;
  border-radius: 16px;
  background-color: #01202C;
  margin-bottom: 10px;
  align-self: stretch;
  padding: 30px 50px;
}

.integracija .icon-box::after{
  background: rgb(76,255,213);
  background: linear-gradient(90deg, rgba(76,255,213,1) 0%, rgba(0,139,255,1) 100%);
  position: absolute;
  top: 6px; bottom: 6px;
  left: 12px; right: 12px;
  content: '';
  z-index: -1;
  border-radius: 16px;
}

.integracija{
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.integracija span{
  margin-left: 8px;
  text-transform: uppercase;
  font-size: 15px;
}

.integracija .row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
  flex-flow: row wrap;
  padding: 0 50px;
}

.integracija .icon-box{
  background-color: #01202C;
  padding: 50px 20px;
  transition: all ease-in-out 0.4s;
  border-radius: 8px;
  width: 100%;
}

.integracija .icon-box h4{
  text-align: center;
  color:#fff;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-size: 18px;
  padding: 0 40px;
}

.integracija .icon-box p{
  color: #fff;
}

.integracija h3{
  text-align: center;
  color:#4CFFD5;
  margin-bottom: 60px;
}
.integracija p{
  text-align: center;
  margin-bottom: 0px;
  font-size: 12px;
}

.integracija .section-title{
  margin-bottom: 30px;
}

.integracija .btn-learn-more{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #4CFFD5;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #4CFFD5;
  margin-left: 20px;
}

@media (max-width: 480px) {
	.integracija .row > div{
		margin-top: 30px !important;	
	}
}

#hero1 {
  width: 100%;
  background: transparent;
  overflow:visible;
  display: block;
  padding: 0;
  padding-top: 70px;
}

#hero1 .container {
  padding-top: 10px;
}

#hero1 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero1 h2 {
  color: rgba(255, 255, 255, 255);
  margin-bottom: 50px;
}

#hero1 #second-heading{
  color: #4CFFD5;
}

#hero1 .fnote{
  color: #4BB8DF;
  font-size: 11px;
  margin-top: 10px;
  padding-left: 10px;
}

#hero1 .fnote p{
  margin-bottom: 1px;
}

.fnote-kontakt{
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#hero1 .fnote a{
  padding: 6px 40px !important;
}

.arrow{
  max-height: 22px;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #008BFF;
  margin-left: 20px;
}

#hero1 .section-title{
  margin-bottom: 20px;
  padding-bottom: 0;
}

#hero1 .tabela{
  align-self: flex-start;
  border:1px solid transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

#hero1 .tabela-image{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-left: 50px;
}

#hero1 img{
  max-width: 450px;
}

#hero1 .row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#hero1 .btn-get-started:hover {
  background: #209dd8;
}

#hero1 .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero1 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero1 {
//    height: 100vh;
    text-align: center;
  }

  #hero1 .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero1 .hero-img {
    text-align: center;
  }

  #hero1 .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero1 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero1 h2 {
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero1 .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero1 .hero-img img {
    width: 80%;
  }

  #hero1 .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
	

}

	.btn-learn-more  {
	display: flex !important;
	align-items: center;
		height:100% !important;
		line-height: inherit !important;
		
		
  }

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero1-row{
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 30px 0;
  width: 100%;
}

.hero1-row p, .hero1-row h5{
  margin: 0;
}

.hero1-column{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 35px;
}

.hero1-row p{
  font-size: 12px;
}

.hero1-row h5{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.par{
 background-color: #01202C; 
}
.nepar{
  background-color: #022C3D;
}

.kalkulator .section-title{
  margin-bottom: 400px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero2 {
  width: 100%;
  height: 100vh;
  background: transparent;
  overflow:visible; 
}

#hero2 .container {
  padding-top: 30px;
}

#hero2 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero2 h2 {
  color: rgba(255, 255, 255, 255);
  margin-bottom: 50px;
}

#hero2 #second-heading{
  color: #4CFFD5;
}

.arrow{
  max-height: 22px;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #008BFF;
  margin-left: 20px;
}

#hero2 .btn-get-started:hover {
  background: #209dd8;
}

#hero2 .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero2 .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero2 .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero2 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero2 h1 span{
  color:#4CFFD5;
}

#hero2 p{
  color:#fff;
}

#hero2 .naslovdva{
  color:#4CFFD5;
  margin-bottom: 20px;
}

#hero2 .btn-get-started{
  margin-left: 0px;
}

#hero2 .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #47b2e4;
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero2 {
    height: 100vh;
    text-align: center;
  }

  #hero2 .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero2 .hero-img {
    text-align: center;
  }

  #hero2 .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero2 h2 {
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero2 .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero2 .hero-img img {
    width: 80%;
  }

  #hero2 .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero3 {
  display: flex;
  width: 100%;
  height: auto !important;
  background: transparent;
  overflow:visible; 
  padding-bottom: 0;
}

#hero3 .container {
  align-self: flex-start;
  overflow: visible;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 400px 400px;
  background-position: 50% 50%;
}

.elipse1{
  position: absolute;
  float: right;
	max-width:100%;
width: 400px;
height: 430px;
background: #0084E9;
opacity: 0.3;
filter: blur(250px);
}
.elipse1-reverse{
  position: absolute;
  float: right;
  right: 0;
		max-width:100%;
width: 400px;
height: 430px;
background: #0084E9;
opacity: 0.3;
filter: blur(250px);
}

.elipse2-reverse{
  position: absolute;
width: 400px;
height: 430px;
background: #4CFFD5;
opacity: 0.3;
filter: blur(250px);
  right: 0;
}

.elipse2-reverse-sm{
  position: absolute;
width: 5600px;
		max-width:100%;
height: 220px;
background: #4CFFD5;
opacity: 0.3;
filter: blur(250px);
  right: 0;
}

.elipse2{
position: absolute;
width: 400px;
	max-width:100%;
z-index: -1;
height: 430px;
background: #4CFFD5;
opacity: 0.3;
filter: blur(250px);
}

.elipse3{
  position: absolute;
width: 400px;
	max-width:100%;

height: 430px;
background: #257F96;
opacity: 0.4;
filter: blur(250px);
}

.elipse3-reverse{
  position: absolute;
width: 400px;
  right: 0;
	max-width:100%;
height: 430px;
background: #257F96;
opacity: 0.4;
filter: blur(250px);
}
#hero3 .row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

#hero3 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero3 h2 {
  color: rgba(255, 255, 255, 255);
  margin-bottom: -50px;
}

#hero3 #second-heading{
  color: #4CFFD5;
}

.arrow{
  max-height: 22px;
}

#hero3 .img-fluid{
  max-width: 80%;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #008BFF;
  margin-left: 20px;
}

#hero3 .btn-get-started:hover {
  background: #209dd8;
}

#hero3 .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero3 .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero3 .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero3 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero3 h1 span{
  color:#4CFFD5;
}

#hero3 p{
  color:#fff;
}

#hero3 .naslovdva{
  color:#4CFFD5;
  margin-bottom: 20px;
}

#hero3 .btn-get-started{
  margin-left: 0px;
}

#hero3 .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #47b2e4;
  margin-left: 20px;
}

  #hero3 .hero-img {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }

  .hero3-img-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }

  #hero3 .hero-img img {
    max-width: 500px;
  }

@media (max-width: 991px) {
  #hero2 {
    height: 100vh;
    text-align: center;
  }

  #hero3 .animated {
    -webkit-animation: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  #hero3 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero3 h2 {
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero3 .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero3 .hero-img img {
    width: 80%;
  }

  #hero3 .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero3 {
  width: 100%;
  background: transparent;
  overflow:visible; 
}

#hero3 .container {
  /* padding-top: 30px; */
}

#hero3 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero3 h2 {
  color: rgba(255, 255, 255, 255);
  margin-bottom: -50px;
}

#hero3 #second-heading{
  color: #4CFFD5;
}

.arrow{
  max-height: 22px;
}

.btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #008BFF;
  margin-left: 20px;
}

#hero3 .btn-get-started:hover {
  background: #209dd8;
}

#hero3 .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero3 .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero3 .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero3 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero3 h1 span{
  color:#4CFFD5;
}

#hero3 p{
  color:#fff;
}

#hero3 .naslovdva{
  color:#4CFFD5;
  margin-bottom: 20px;
}

#hero3 .btn-get-started{
  margin-left: 0px;
}

#hero3 .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #47b2e4;
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero2 {
    height: 100vh;
    text-align: center;
  }

  #hero3 .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero3 .hero-img {
    text-align: center;
  }

  #hero3 .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero3 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero3 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero3 .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero3 .hero-img img {
    width: 80%;
  }

  #hero3 .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero4 .eclipse1{
  position: absolute;
  width: 300px;
  height: 460px;
  left: -33px;
  top: 500px;
  background: #0084E9;
  opacity: 0.3;
  filter: blur(250px);
}

.hero4{
  padding-top:0;
  position: relative;
}

/* Menu */
li.current-menu-item a{
  color: #47b2e4 !important;
}



section {
  margin-top: 60px;
}
section:first-of-type{
  margin-top: 150px;
}

#integracija {
	margin-top: 0;
}

#hero2 {
	margin-top: 0;
}


#testimonials {
  margin-top: 60px;
}

#clients {
  margin-top: 75px;
}



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

.hero5 .row{
  border:3px solid #4CFFD5;
  border-radius: 8px;
  padding:70px 70px;
}

@media (max-width: 480px) {
.hero5 .row{
  padding: 30px;
	}
	
}

.hero5 .section-title{
  margin-bottom: 60px;
}

.hero5 .smallh{
  color:#64D5F7 !important;
}

.hero6 .container{
  padding-top:0 !important;
  margin-top: 0 !important;
}

.hero6 .section-title{
  margin-bottom: 80px;
}

.info-testimonials .arrow{
  margin:0 20px;
}

.reg-icon{
  max-height: 60px;
}

@media (max-width: 480px) {
.reg-icon{
  display: none;
}
}

.hero6 span{
  color: #4CFFD5;
}

.tab1{
  margin-left: 80px;
}

@media (max-width: 480px) {
	#hero3 > div > div.row > * {
		flex-shrink: unset;
	}
}

.tab2{
  margin-left:160px;
}

.hero6 .line1{
  margin-bottom: 50px;
}

.hero6 .line2{
  margin-top: 50px;
}

.hero6 .line3{
  margin-top: 50px;
}

.stats1 .stats-item1{
  justify-content: flex-start;
  padding-left: 50px;
}

.stats1 .stats-item1 img{
  max-height: 40px;
}

.hero7 .section-title{
  margin-bottom: 70px;
}

.hero7 .container{
  padding-top:0 !important;
  margin-top: 0 !important;
}

/*--------------------------------------------------------------
# accordion-list
--------------------------------------------------------------*/

.why-us .container{
  position: relative;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.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: #022C3D;
  border-radius: 4px;
}

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

.why-us .accordion-list a::after {
  background: linear-gradient(90deg, rgba(76,255,213,1) 0%, rgba(0,139,255,1) 100%);
  position: absolute;
  bottom: 0;
	height: 1px;
  left: 0px; right: 0px;
  content: '';
  z-index: 1;
}

.why-us .accordion-list span {
  color: #47b2e4;
  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;
  color:#fff;
}

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

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

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

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

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

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

@media (max-width: 1024px) {

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

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

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

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

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

.why-us .hero-background .elipse1{
width: 769px !important;
height: 718px !important;
left: 700px !important;
top: 0px !important;
}

.why-us .hero-background .elipse2{
width: 731px !important;
height: 705px !important;
left: 1000px !important;
top: 160px !important;
}

.why-us .hero-background .elipse3{
width: 769px !important;
height: 718px !important;
left: 800px !important;
top: 400px !important;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.hero8 .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: transparent;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.hero8 .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.hero8 .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #022B3A;
}

.hero8 .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #022B3A;
}

.hero8 .info .email p {
  padding-top: 5px;
}

.hero8 .info .social-links {
  padding-left: 60px;
}

.hero8 .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.hero8 .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.hero8 .info .email:hover i,
.hero8 .info .address:hover i,
.hero8 .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.hero8 .php-email-form {
  width: 100%;
  padding: 30px;
  background: transparent;
  padding-top: 20px;
}

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

.hero8 .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

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

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

.hero8 .php-email-form .form-group {
  margin-bottom: 20px;
}

.hero8 .php-email-form label {
  padding-bottom: 8px;
}

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

.hero8 .php-email-form input:focus,
.hero8 .php-email-form textarea:focus {
  border-color: #47b2e4;
}

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

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

.hero8 .php-email-form button[type=submit] {
  transition: 0.4s;
}

.hero8 .php-email-form button[type=submit]:hover {
}

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

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

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

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

.hero8 .section-title{
  margin-bottom: 70px;
}

.hero8 p{
  color:#022B3A !important;
  padding: 40px 30px 0px 30px;
  font-weight: 600;
}

.hero8 label{
  color:#022B3A;
}

.hero8 .form-section{
  background: #DBEBFB;
  border-radius: 8px;
}

.send-btn button{
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #008BFF;
  border:0;
}

.getstarted_menu{
  margin-left: 50px;
}

.getstarted_menu a,
.getstarted_menu a:focus {
  padding: 6px 20px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  border: 0px solid #fff;
  font-weight: 600;
  background: #008BFF;
}

.getstarted_menu a,
.getstarted_menu a:focus {
  margin: 15px;
  color: #fff;
}

