/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
	font-family: "Open-Sans";
	src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format('ttf'),
	url("../fonts/OpenSans/OpenSans-Regular.woff") format('woff');
	font-display: swap;
}

@font-face {
	font-family: "RedHat";
	src: url("../fonts/RedHat/RedHatDisplay-Regular.ttf") format('ttf'),
	url("../fonts/RedHat/RedHatDisplay-Regular.otf") format('otf'),
	url("../fonts/RedHat/RedHatDisplay-Regular.woff") format('woff');
	font-display: swap;
}

@font-face {
	font-family: "RedHat-Bold";
	src: url("../fonts/RedHat/RedHatDisplay-Bold.ttf") format('ttf'),
	url("../fonts/RedHat/RedHatDisplay-Bold.otf") format('otf'),
	url("../fonts/RedHat/RedHatDisplay-Bold.woff") format('woff');
	font-display: swap;
}

body {
  font-family: "Open-Sans";
  color: #757575;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: #4D4D4F;
  cursor: pointer;
}

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


h1 small{
    font-size: 34px;
    display: inline-block;
    width: 100%;
	font-family: "RedHat";
	line-height: 44px;
	color: #4D4D4F;
}

h1 span {
    width: 100%;
    display: inline-block;
    font-size: 58px;
    font-family: "RedHat-Bold";
    margin-bottom: 0px;
    line-height: 65px;
	color: #31C3E3;
}

h2{
    font-size: 50px!important;
    line-height: 60px;
	margin-bottom: 20px;
	color: #4D4D4F;
	font-family: "RedHat-Bold";
}

h3{
	font-family: "RedHat-Bold";
	font-size: 32px;
	line-height: 42px;
	margin-bottom: 5px;
	color: #4D4D4F;
}

h4{
	font-size: 25px !important;
	font-family: "RedHat";
	margin-bottom: 10px;
	color: #4D4D4F;
}

h5{
	font-size: 26px !important;
	font-family: "RedHat-Bold";
	margin-bottom: 10px;
	color: #4D4D4F;
}

h6{
	font-size: 18px !important;
	font-family: "RedHat-Bold";
	margin-bottom: 5px;
	color: #4D4D4F;
}

p {
    line-height: 30px;
}

small {
    font-size: 16px;
	display: inline-block;
}

img.resize {
    width: calc(100% - 0px);
}


/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/
.txtblue{
	color:#31C3E3;
}

.txtorange{
	color:#FFB45C;
}

.txtgreen{
	color: #4CD6B0;
}

.txtwhite {
    color: #fff !important;
}

.lightblue2 {
    background-color: #f6faff !important;
}

.lightgreen2 {
    background-color: #f1fcee;
}

.bluebg {
    background-color: #30c3e3;
}

.lightgreenbox{
	padding: 30px 25px;
    border-radius: 10px;
    margin-bottom: 0px;
    height: 100%;
	background-color: #f1fcee;
}

.bordergreybox{
	padding: 30px 25px;
    border-radius: 10px;
    margin-bottom: 0px;
    height: 100%;
	background-color: #ffffff;
    border: 2px solid #f3f4f4;
}

.greybox {
    background: #fbfbfb;
    padding: 30px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-image: url(/img/blue-cicle.png);
    background-position: center top;
    background-size: 95px;
    background-repeat: no-repeat;
}


/*--------------------------------------------------------------
# Width Margin Padding
--------------------------------------------------------------*/
.mt-30 {
    margin-top: 30px;
}

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

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

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

.pt-190{
	padding-top: 190px
}

.p-15 {
    padding: 0 15px;
}

.mw-1280{
	max-width: 1280px;
    margin: 0 auto;
}

.mw-1180{
	max-width: 1180px;
    margin: 0 auto;
}

.mw-1105{
	max-width: 1105px;
    margin: 0 auto;
}


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

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

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

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

/*--------------------------------------------------------------
# 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 #31C3E3;
  border-top-color: #bfe0fd;
  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);
  }
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 60px;
  padding: 0;
  font-size: 17px;
  transition: all 0.5s;
  overflow: hidden;
  color: #FFB45C;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -60px;
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  color: #FFB45C;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: #FFB45C;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: #f1a40a;
}

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

#header.header-scrolled {
  background: #f3f4f4;
  top: 0;
  height: 50px;
  padding-top: 0;
}

#header.header-scrolled .navbar a{
	font-size: 16px;
}

#header .logo a {
  color: #fff;
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !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>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 15px 8px 15px;
  font-weight: 300;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  color: grey;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar>ul>li>a:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #FFB45C;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding:10px 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 8px;
  box-shadow: 1px 1px 2px #dddddd;
}

.navbar .dropdown ul li {
  min-width: 200px;
  /* padding: 10px; */
}

.navbar .dropdown ul a {
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  color: #4D4D4F;
  line-height: 35px;
}

.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: #FFB45C;
  font-weight: bold;
}


.navbar .dropdown ul a.active {
    color: #FFB45C;
    font-weight: bold;
}

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

nav#navbar li ul li a::before {
    content: "\F28A";
    font-family: bootstrap-icons !important;
    color: #31C3E3;
    font-size: 8px;
    font-weight: bold;
	margin-right: 5px;
}

nav#navbar a.nav-link {
    transition: none;
}

ul.sigmenu li a {
    text-align: left;
    display: inline-block;
}

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

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


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

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

@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: #fff;
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile a i{
	font-size: 20px;
}

.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>ul>li {
  padding: 0;
  margin-bottom: 20px !important;
}

.navbar-mobile>ul>li a.btn-demo {
    background-color: #ffb45c;
    color: #ffffff;
}
  
.navbar-mobile>ul>li a.btn-login,
.navbar-mobile>ul>li a.btn-language  {
    border: none;
    color: #4D4D4F;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
  color: #4D4D4F;
  font-weight: bold;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #FFB45C;
  font-weight: bold;
}

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

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: none;
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px 10px 35px;
  font-size: 16px;
  line-height: 16px;
}

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

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

.navbar-mobile ul.megamenu{
	margin: 0;
	padding: 0;
}

.navbar-mobile .dropdown ul.siglemenu {
    padding: 0;
    margin: 0;
}

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


/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/
#banner h2 {
    font-size: 35px !important;
    line-height: 45px;
    margin-bottom: 30px;
    color: #000;
    font-family: "RedHat";
}

#banner.home {
	width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 99;
    transition: 0.3s;
	text-shadow: 2px 2px 30px #ffffff;
}

#banner:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#banner .carousel-container {
  display: block;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
}


#banner .carousel-control-prev,
#banner .carousel-control-next {
  width: 10%;
}

#banner .carousel-control-next-icon,
#banner .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 1;
  width: auto;
  height: auto;
  padding: 0px;
}

#bannerCarousel {
    margin-bottom: 50px;
}

#bannerCarousel h1{
    width: 100%;
    display: inline-block;
    font-size: 65px;
    font-family: "RedHat-Bold";
    margin-bottom: 15px;
    line-height: 65px;
    color: #31C3E3;
    border-bottom: none;
    height: auto;
}

.queue h3 {
    color: #4CD6B0;
    font-size: 20px;
    float: left;
    padding: 0 10px;
}

.queue {
    justify-content: center;
    width: 100%;
    display: flex;
    text-align: center;
}

	

@media (min-width: 1024px) {

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

@media (max-width: 768px) {
	#banner h2 {
		font-size: 26px !important;
	}
	
	#banner .pt-190 {
		padding-top: 0;
	}
  
}

@media (max-width: 768px),
(max-height: 320px) {
  #banner {
    padding: 100px 0 0 0;
  }
  
  #banner.indus5{
    height: auto;
    padding: 20px 0;
  }

  .banner-inner h2{
    font-size: 26px !important;
  }
  
  #banner h2{
	margin-left: 0;
    width: 100%;
	font-size: 20px !important;
  }
  
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0;
  overflow: hidden;
}

#s1 {
    background-color: #31C3E3;
    padding: 100px 0 0 0;
}

#s1 h2{
	color: #fff;
	margin-bottom: 50px;
}

#s2 {
    margin-top: -81px;
    position: relative;
}

#s2 .container {
    background-color: #f0f5ff;
    border-radius: 20px;
    padding: 30px 30px 20px 30px;
    margin-bottom: 50px;
    border: 1px solid #f7f7f7;
	box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

#s3 {
    padding: 80px 0 40px 0;
}

#s3 h3 {
    font-size: 26px !important;
    line-height: 26px !important;
	margin-bottom: 10px;
	margin-top: 10px;
}


/*--------------------------------------------------------------
# Key Features
--------------------------------------------------------------*/
#s4 {
    padding: 80px 0 0px 0;
}

#s4 h3 {
    font-family: "RedHat-Bold";
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 5px;
	margin-top: 10px;
    color: #4D4D4F;
}

.sofeature {
    margin-bottom: 25px;
}

.sofeature-icon  {
    width: 55px;
    color: #000;
    float: left;
    text-align: left;
    margin-top: 0;
}

.sofeature-box {
    padding-left: 55px;
}

.sofeature-box h3 {
    font-size: 20px;
    line-height: 20px;
}

.home #s4 .swiper-slide .greybox {
    height: 235px;
}

#s5 {
    padding: 80px 0;
	background-color: #fbfbfb;
}

#s5 nav{
	margin-top: 20px;
}

#s5 .nav-link {
    color: #4D4D4F;
    font-weight: bold;
    font-family: "RedHat";
	font-size: 20px;
	padding: 15px;
}

#s5 .nav-link.active,
#s5 .nav-link:hover {
    color: #31c3e3;
	background-color: transparent;
	border: 1px solid transparent;
}

#s5 .tab-content{
    padding: 30px 0;
}

#s5 img {
    border-radius: 20px;
	box-shadow: 2px 4px 10px #e5e5e5;
}

#s6 {
    padding: 80px 0 30px 0;
}

.smodel1 {
    padding: 20px 30px;
    height: 100%;
}

.smodel2 {
    padding: 20px 30px;
    height: 100%;
}

.smodel1-header {
    margin-bottom: 10px;
}

.smodel1-header h3 {
    font-size: 24px;
}

.smodel1a {
    margin-bottom: 5px;
}

.smodel1a i {
    font-size: 22px;
    color: #31C3E3;
}

.smodel1 ul li.socheck::before {
    content: "\F633";
    font-family: bootstrap-icons !important;
    color: #32c3e5;
    font-weight: bold;
    font-size: 20px;
    margin-right: 5px;
    float: left;
    vertical-align: top;
}

.smodel1 ul li.soclose::before {
     content: "\F62A";
     font-family: bootstrap-icons !important;
     color: #e0004c;
     font-weight: bold;
    font-size: 20px;
    margin-right: 5px;
    float: left;
    vertical-align: top;
}

.smodel1 ul{
    list-style: none;
    padding: 0;
    margin: 0;
	Width:100%;
}

.smodel1 ul li{
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
	Width:100%;
    display: inline-block;
	line-height: 22px;
}

.smodel1 ul li span {
    display: grid;
    font-size: 16px;
}

#s7 {
    padding: 80px 0;
}

#s8 {
    padding: 80px 0 120px 0;
    color: #fff;
}

.sofeature-icon {
    width: 45px;
    color: #000;
    float: left;
    text-align: left;
    margin-top: -5px;
}

.sofeature-box {
    padding-left: 45px;
}

.sofeature-icon i {
    font-size: 30px;
    color: #31C3E3;
	margin-top: -5px;
}


#s9 {
    padding: 60px 0 80px 0;
	background-color: #fff;
	background-image: url(../img/contactus-bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

#s9 h2{
	margin-bottom: 5px;
}

#s9 h3 {
	font-size: 26px;
    line-height: 32px;
    margin-bottom: 0px;
	font-family: "RedHat-bold";
	color: #30c3e3;
}

.comp-address h5{
	margin-bottom: 5px;
}

.comp-address span small {
    font-size: 14px;
}

.comp-address i {
    display: inline-block;
    text-align: center;

}

.comp-address .sofeature-box,.mcomp-address1a{
    font-size: 16px;
}

.box {
	font-size: 20px;
}

.box a {
    width: auto;
	display: inline-block;
}

.box a:hover {
	font-weight: bold;
	color: #30c3e3;
}

.box small {
    margin-bottom: 0px;
	font-family: "RedHat";
	font-size: 16px;
}


.social-icon {
    margin-top: 40px;
}

.social-icon a:hover{
	opacity: 0.4;
}

.social-icon img {
    box-shadow: none !important;
    border-radius: 0px !important;
    margin-right: 10px;
}

#specialist {
    background-color: #f0f5ff;
	padding: 80px 0;
}

button#submitform {
    width: 100%;
    background-color: #ffb45c;
    color: #000;
    line-height: 40px;
    outline: none;
    border: 0;
    font-weight: bold;
	border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

button#submitform:hover{
	background-color: #4D4D4F;
	color: #fff;
}

form {
	max-width: 540px;
	margin: 30px 0;
}

form .form-control {
	border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	line-height: 30px;
}

.enquiry {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.enquiry form {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-item {
    margin: 10px 20px;
    padding: 0 20px;
    border-bottom: 0;
    border-radius: 5px;
	border: 2px solid #f3f3f3 !important;
}
.faq .accordion-header {
    font-family: "RedHat";
}
.faq .accordion {
    --bs-accordion-bg: transparent;
	padding: 0;
}

.faq .accordion-button:not(.collapsed) {
    color: #30c3e3;
    background-color: transparent;
    outline: none;
    border: none;
    box-shadow: none;
}

.faq .accordion-button {
    padding: 15px 0;
    font-size: 20px;
	line-height: 28px;
    
}

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

.faq .accordion-button[aria-expanded="true"]{
	color: #30c3e3;
	font-family: "RedHat-Bold";
}

.faq .accordion-button[aria-expanded="true"]::after{
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.faq .accordion-button::before {
    content: "\f505";
    font-family: bootstrap-icons !important;
    font-size: 22px;
    margin-right: 10px;
}

.faq .accordion-body {
    padding: 0px 30px;
	display: inline-block;
}

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

.faq ul li:before {
    content: '\F270';
    font-family: "bootstrap-icons";
    color: #31C3E3;
    font-size: 26px;
	line-height: 26px;
    margin-right: 10px;
    float: left;
    margin-top: 0;
    margin-left: 2px;
}

.faq .sw-inner ul li{
    margin-bottom: 25px;
    padding-right: 30px;
}

.faq .sw-inner ul li span h6{
	font-size: 18px !important;
}

.sw-inner ul li span {
    display: table;
}


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

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

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

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 6px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  margin-right: 2rem;
  padding: 1rem;
  padding-right: 2rem;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #bebebe !important;;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #bebebe !important;;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #bebebe !important;;
}
:-moz-placeholder { /* Firefox 18- */
  color: #bebebe !important;;
}
::placeholder {
    color: #bebebe !important;;
}


/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar a.btn-demo {
    background-color: #ffb45c;
    color: #ffffff;
    border-radius: 30px;
    padding: 2px 20px;
    line-height: 30px;
    font-weight: bold;
}

.navbar a.btn-demo:hover, .navbar a.btn-demo:focus{
    border-bottom: none;
    background-color: #4D4D4F;
    color: #fff;
    border-radius: 30px;
    padding: 5px 20px;
    line-height: 30px;
}

.navbar>ul>li>a.btn-demo:before,
.navbar>ul>li>a.btn-login:before,
.navbar>ul>li>a.btn-language:before{
    background-color: transparent;
    color: #4D4D4F;
}

.navbar a.btn-login,.navbar a.btn-language {
    color: #fff !important;
    border-radius: 30px;
    padding: 2px 20px;
    line-height: 30px;
	background-color: #31C3E3;
	font-family: "RedHat-Bold";
}

.navbar a.btn-login:hover, .navbar a.btn-login:focus,
.navbar a.btn-language:hover, .navbar a.btn-language:focus{
    background-color: #4D4D4F;
    color: #fff;
    border-radius: 30px;
    padding: 2px 20px;
    line-height: 30px;
}

.navbar ul.language li a::before {
    display: none;
}

/*--------------------------------------------------------------
# button
--------------------------------------------------------------*/
.btn-seedemo {
    background-color: #4D4D4F;
    color: #fff;
    border-radius: 30px;
	font-size: 15px;
    padding: 10px 25px;
}

.btn-seedemo:hover,.btn-learnmore:hover,.btn-darkbrd:hover {
    background-color: #FFB45C;
    color: #4D4D4F;
}

.btn-learnmore{
    border: 1px solid #4D4D4F;
	border-radius: 30px;
	margin-left: 10px;
	font-size: 15px;
    padding: 8px 20px;
}

.btn-darkbrd {
    border: 1px solid #4D4D4F;
	border-radius: 30px;
	font-size: 18px;
    padding: 10px 30px;
	box-shadow: 2px 3px 8px #e4e4e4;
}

#banner .btn-darkbrd {
	margin-right: 0px;
    margin-top: 30px;
}

.btn-whitebrd {
    border-radius: 30px;
    font-size: 15px;
    padding:10px 30px;
    color: #000;
    background-color: #fff;
}

.btn-whitebrd:hover,.btn-whitebrd:focus{
	background-color: #ffe38f;
    color: #000;
}

.btn-xs-border{
	font-size: 13px;
    padding: 7px 10px;
	border: 1px solid #4D4D4F;
}

button i {
    margin-left: 5px;
}

.btn,.btn:hover,.btn:focus {
    font-weight: 600; 
}

.btn-talk {
    border: 1px solid #000;
    border-radius: 30px;
    padding: 10px 35px;
    margin-top: 48px;
    float: right;
}
.btn-talk:hover,.btn-talk:focus{
	background-color: #000;
    color: #fff;
}


/*--------------------------------------------------------------
# Home Industries
--------------------------------------------------------------*/
.submenu {
    background: #f3f4f4 !important;
    box-shadow: 1px 1px 15px #cacaca;
	transition: all 0.5s;
	top: 50px !important;
    padding: 0 0 5px !important;
	font-size: 16px;
	width: 100%;
}

#navbar-page {
	background: #fff;
    top: 50px;
    position: fixed;
    z-index: 99;
	padding: 10px;
	width: 100%;
}

#navbar-page ul{
	padding: 0;
	margin: 0;
}

#navbar-page li {
    border-bottom: none;
    padding: 5px 20px;
	float: left;
}

#navbar-page a {
    color: grey;
    border-bottom: none;
}

#navbar-page a.active{
    color: #FFB45C;
    font-weight: bold;
}

#navbar-page a:hover {
    color: #FFB45C;
}

#navbar-page ul {
    justify-content: center;
    margin: 0 auto;
	display: flex;
    list-style: none;
}

#indus i,#solution i {
    padding-bottom: 6px;
}

#industries small {
    color: #31C3E3;
}

#industries .swiper-slide {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px #eeeeee;
	border: 1px solid #f5f5f5;
}

#industries .swiper-slide img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

#industries .info{
	padding: 30px 20px 20px 20px;
}

.industries-slider {
    padding: 0 0 60px 0;
}

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

#industries .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFB45C;
}

#industries p {
    min-height: 275px;
}

.indus5-inner1 i {
    float: left;
    margin-right: 10px;
    padding-bottom: 0 !important;
    font-size: 30px;
}


/*--------------------------------------------------------------
# Text
--------------------------------------------------------------*/
.text-right {
    text-align: right;
}

.indexz {
	z-index:0px;
}

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

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


/*--------------------------------------------------------------
# Text box align
--------------------------------------------------------------*/
.aligncenter{
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    width: 100%;
	height: 100%;
}

.alignbottom{
	align-items: self-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    width: 100%;
    height: 100%;
	margin: 0 auto;
}


/*--------------------------------------------------------------
# Megamenu
--------------------------------------------------------------*/
ul.megamenu li,ul.siglemenu li{
    width: 50%;
    float: left;
}

ul.megamenu,ul.siglemenu {
    width: 470px;
}

ul.megamenu li a img,
ul.siglemenu li a img  {
    width: 15px;
	margin-right: 5px;
}

ul.megamenu li a,ul.megamenu li a:focus,
ul.siglemenu li a,ul.siglemenu li a:focus{
	display: block;
}

ul.sigmenu li a,
ul.sigmenu li a:focus,
ul.sigmenu li a:hover {
    text-align: left;
	width: 100%;
	display: block;
}


/*--------------------------------------------------------------
# Language
--------------------------------------------------------------*/
ul.language img {
    width: 25px;
    margin-right: 10px;
	border-radius: 25px;
    box-shadow: 1px 1px 5px #8b8b8b;
}

ul.language li a,ul.language li a:focus {
    display: block;
}

.navbar .dropdown ul.language {
    right: 0;
    left: unset;
}

/*--------------------------------------------------------------
# Sticky - icon
--------------------------------------------------------------*/
.icon-bar {
    position: fixed;
    top: 98%;
    -webkit-transform: translateY(-98%);
    -ms-transform: translateY(-98%);
    transform: translateY(-98%);
    right: 0;
    z-index: 111;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 0 10px 10px 5px;
    transition: all .3s ease;
    color: #fff;
    font-size: 20px
}

.icon-bar a:hover {
    opacity: .8
}

.icon-bar button {
    padding: 0 10px 0 5px;
}

.btn-footermail button:focus,.btn-footermail button:active,.btn-footermail,.btn-footermail button {
    border: 0!important
}

.btn-footermail ul li a {
    color: #000;
    text-align: left;
    font-size: 15px;
    padding: 5px 15px;
}

.btn-footermail ul.dropdown-menu {
    background: #ffb45c;
    border: 0;
    border-radius: 8px;
    box-shadow: 1px 1px 2px #ddd;
    padding: 0
}

.btn-footermail ul li a:hover,.btn-footermail ul li a:active,.btn-footermail ul li a:focus,.btn-footermail .dropdown-item.active,.btn-footermail .dropdown-item:active {
    color: #fff;
    font-weight: 700;
    background-color: transparent
}

.btn-footermail ul li a::before {
    content: "\F28A";
    font-family: bootstrap-icons!important;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    margin-right: 10px
}


/*--------------------------------------------------------------
# Checkbox
--------------------------------------------------------------*/
.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: rgb(96 96 96 / 50%);
    background-color: #19212b
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff
}

.custom-control-input:disabled~.custom-control-label {
    color: #6c757d
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative;
    vertical-align: top;
}

.custom-control-label::before {
    position: absolute;
    top: 3px;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
	width:  25px;;
    height:  25px;
}

.custom-control-label::after {
    position: absolute;
    top: 4px;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
	width: 25px;
    height: 25px;
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #19212b;
    background-color: #19212b
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
   /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")*/
	background-image:url(../images/bootstrap/checkbox_indeterminate.svg);
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgb(96 96 96 / 50%)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-checkbox label {
    margin: 0;
}

.custom-control label span {
    margin-left: 12px;
    display: inline-block;
}


/*--------------------------------------------------------------
# Circle
--------------------------------------------------------------*/
.cletop-right{
	background-image: url(/img/cletop.png);
    background-repeat: no-repeat;
    background-position: right top;
}

.cletop-left{
	background-image: url(/img/cletop.png);
    background-repeat: no-repeat;
    background-position: left top;
}

.clebtm-left{
	background-image: url(/img/clebtm.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.clebtm-right{
	background-image: url(/img/clebtm.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.clebtmgrey-left{
	background-image: url(/img/clebtmgrey.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.clebtmgrey-right{
	background-image: url(/img/clebtmgrey.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.circlebg {
    background-image: url(/img/sample/bg1.png);
    background-repeat: repeat;
    background-position: center center;
    background-size: contain;
}


/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/
.thankyou h2 {
    font-size: 55px !important;
    line-height: 65px;
    color: #4D4D4F;
    margin: 20px 0;
    font-family: "RedHat-Bold";
}

.thankyou h3 {
    font-size: 30px !important;
    line-height: 30px;
    font-weight: normal;
    font-family: "Open-Sans";
}

.thankyou button {
    background-color: #31c3e3;
    border-radius: 30px;
	color: #fff;
}

.thankyou button:hover{
    background-color: #4D4D4F;
    border-radius: 30px;
	color: #fff;
}


/*--------------------------------------------------------------
# Privacy
--------------------------------------------------------------*/
.privacy h2 {
    font-weight: bold;
    color: #1a1a1a;
	margin-bottom: 10px;
	font-size: 28px !important;
	line-height: 38px;
}

.privacy h3 {
    font-weight: bold;
    color: #212121;
	margin-bottom: 10px;
	font-size: 20px !important;
	line-height: 28px;
	font-family: "RedHat";
    letter-spacing: 0px;
}

.privacy p {
    line-height: 26px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer#footer {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #4D4D4F;
	background-color: #fbfbfb;
}

footer#footer .copyright .link {
    visibility: hidden;
}


/*--------------------------------------------------------------
# Google Recaptcha
--------------------------------------------------------------*/
.grecaptcha-badge {
    right: -285px !important;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 1920px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1600px;
	}
	
}
/*End 1920*/


@media (min-width:1801px)and (max-width:1919px)  {
	#bannerCarousel h1 {
		font-size: 55px;
		line-height: 65px;
	}

}
/*End 1801 - 1919*/


@media (max-width: 1600px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1280px;
	}
	#home #ensolution .nav-tabs button {
		width: 360px;
	}
}


@media (max-width: 1366px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1280px;
		padding-left: 15px;
		padding-right: 15px;
	}

}


@media (min-width:1201px)and (max-width:1365px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1180px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.mw-1280{
		max-width: 1080px;
	}
	
	#sec2 nav button {
		font-size: 14px;
	}
	
	

}
/*End 1920*/


@media (min-width:1201px)and (max-width:1800px)  {
	body,table{
		font-size: 16px !important;
	}
	p {
		line-height: 22px;
	}

	/*header*/
	#header.header-scrolled .navbar>ul>li {
		padding: 0px 0 0px 24px;
	}

	#header.header-scrolled .navbar>ul>li .btn-demo {
		font-size: 14px;
		padding: 0px 15px;
	}

	#navbar-page a, .navbar a{
		font-size: 14px;
	}
	h1 span{
		font-size: 46px !important;
		line-height: 50px;
	}
	h1 small {
		font-size: 32px !important;
		line-height: 36px;
	}
	
	h2{
		font-size: 34px !important;
		line-height: 44px;
	}
	h3{
		font-size: 18px !important;
		line-height: 22px;
	}
	h4,.queue #so6 h3{
		font-size: 22px!important;
	}
	
	h5{
		font-size: 20px!important;
	}
	
	/*Banner*/
	#bannerCarousel h1 {
		font-size: 52px !important;
		line-height: 55px !important;
	}
	
}
/*End 1280 - 1800*/


@media (min-width:1025px)and (max-width:1366px)  {
	/*Banner*/
	#bannerCarousel h1 {
		font-size: 42px !important;
		line-height: 42px !important;
	}
	#banner h2 {
		font-size: 18px !important;
		line-height: 25px;
	}

}
/*End 1201 - 1366*/


@media (max-width: 1024px){
	h3 {
		font-size: 21px !important;
		line-height: 26px;
	}
	h5{
		font-size: 22px !important;
	}
	h6{
		font-size: 20px !important;
	}
	
	.d-xs-none{
		display:none !important;
	}
	
	ul.megamenu {
		width: auto;
	}
	
	/*Top banner*/
	h1 {
		font-size: 38px;
		line-height: 44px;
	}
	h2 {
		font-size: 35px !important;
		line-height: 40px;
	}
	
	/*banner*/
	#bannerCarousel h1{
		font-size: 45px !important;
		line-height: 45px;
	}
	#banner h2 {
		font-size: 18px !important;
		line-height: 25px;
	}
	

}
/*End 1024*/


@media (min-width:769px)and (max-width:1023px){
	h2{
		font-size: 35px !important;
		line-height: 40px;
	}
	h3{
		font-size: 20px !important;
		line-height: 26px;
	}
	h5{
		font-size: 22px !important;
	}
	h6{
		font-size: 20px !important;
	}
	
	/*Banner*/
	#bannerCarousel h1 {
		font-size: 36px !important;
		line-height: 36px;
	}
	
	/*Menu*/
	.navbar .dropdown ul{
		border: none;
	}

	

}
/*End 769 - 1023*/


@media (max-width: 768px){
	h1{
		font-size: 34px !important;
		line-height: 40px;
	}
	h2{
		font-size: 32px !important;
		line-height: 32px;
	}
	h3{
		font-size: 20px !important;
		line-height: 26px;
	}
	h4{
		font-size: 24px !important;
	}
	h5{
		font-size: 22px !important;
	}
	h6{
		font-size: 20px !important;
	}
	
	.d-xs-none{
		display:none !important;
	}
	
	/*banner*/
	#bannerCarousel h1{
		font-size: 30px !important;
		line-height: 34px;
	}
	#banner h2 {
		font-size: 18px !important;
		line-height: 25px;
	}
	#banner .queue h3 i {
		width: 100%;
		display: inline-block;
		font-size: 23px;
		margin-bottom: 5px;
	}
	
	/*Megamenu*/
	ul.megamenu {
		width: 100%;
	}
	.navbar .dropdown ul{
		border: none;
	}
	



}
/*End 768*/


@media (max-width: 768px), screen and (min-height: 1024px){
	#bannerCarousel h1{
		font-size: 30px !important;
		line-height: 34px;
	}
	#banner h2 {
		font-size: 18px !important;
		line-height: 25px;
	}
}
/*End 768 - height 1100px*/


@media (min-width:426px)and (max-width:767px){
	/*banner*/
	#bannerCarousel h1{
		font-size: 24px !important;
		line-height: 34px;
	}
	#banner h2 {
		font-size: 18px !important;
		line-height: 25px;
	}
	
}
/*End 426- - 767*/

@media (min-width:320px)and (max-width:1200px)  {
	body,p,.fsize-20 {
		font-size: 15px;
		line-height: 22px;
	}
	
	.mpt-30{
		padding-top: 30px;
	}
	.mpt-60{
		padding-top: 60px;
	}
	.mpt-80{
		padding-top: 80px;
	}
	.mpb30{
		padding-bottom: 30px;
	}
	.mpb60{
		padding-bottom: 60px !important;
	}
	.mpbt30{
		padding: 30px 0;
	}
	.mpl-0{
		padding-left:0;
	}
	.mfloat-none button{
		float: none !important;
	}
	.btn-talk {
		margin-top: 0;
	}
	
	.mmw-600{
		max-width: 600px;
		margin: 0 auto;
	}
	.mmw-450 {
		max-width: 450px;
		margin: 0 auto;
	}
	#banner .queue h3 {
		font-size: 16px !important;
		line-height: 18px !important;
	}
	
	/*Home*/
	.home .sofeature-icon i {
		font-size: 25px;
		margin-top: 4px;
		margin-left: 5px;
	}

}
/*End 320 - 1200*/


@media (min-width:320px)and (max-width:1023px){
	/*width*/
	.mmw-400{
		max-width: 400px;
		margin: 0 auto;
	}
	.mmw-600{
		max-width: 600px;
		margin: 0 auto;
	}
	.mmt-30{
		margin-top: 30px;
	}
	.p-25 {
		padding: 0 0 20px 0;
	}
	
	ul li{
		margin-bottom: 2px !important;
		font-size: 14px !important;
	}
	
	ul li span{
		display: block !important;
	}
	
	nav#navbar ul li span {
		display: unset !important;
	}

	/*Submenu*/
	#navbar-page {
		display: flex;
		width: 100%;
		overflow-x: scroll;
		white-space: nowrap;
	}

	/*FAQ*/
	.faq .sw-inner ul li {
		margin-bottom: 20px !important;
	}
	
	/*Home*/
	#s5 .nav {
		list-style: none;
		padding: 0;
		margin: 0;
		width: 100%;
		display: inline-flex;
		overflow-x: scroll;
		white-space: nowrap;
		flex-wrap: nowrap;
		overflow-y: hidden;
	}

	
}
/*End 320 - 1023*/


@media (min-width:320px)and (max-width:1000px){
	.mtxt-center{
		text-align: center;
		width: 100%;
	}
}
/*End 320 - 1000*/


@media (min-width:320px)and (max-width:767px){
	h1{
		font-size: 26px !important;
		line-height: 30px;
	}
	h2{
		font-size: 26px !important;
		line-height: 30px;
	}
	h3,#s3 h3{
		font-size: 20px !important;
		line-height: 24px;
	}
	h4{
		font-size: 21px !important;
	}
	h5{
		font-size: 20px !important;
	}
	h6{
		font-size: 19px !important;
	}
	
	/*Width*/
	.mw-50{
		width:50%;
	}
	
	/*Padding*/
	.p-15 {
		padding: 0;
	}
	
	/*Header*/
	#header .logo {
		margin-left: 10px;
	}
	#header .logo img{
		height: 45px;
		width: 140px !important;
	}
	.navbar .dropdown ul{
		border: none;
	}	
	#banner .queue h3 i {
		width: 100%;
		display: inline-block;
		font-size: 23px;
		margin-bottom: 5px;
	}
	
	/*cookie*/
	#pjAcceptCookieBar .pjAcceptCookieBarShell form {
		display: inline-block !important;
	}
	
	#pjAcceptCookieBar .pjAcceptCookieBarActions {
		float: none !important;
		margin-left: 0 !important;
		text-align: center;
	}
	#pjAcceptCookieBar p {
		text-align: center !important;
		font-size: 13px !important;
	}
	
	
	/*Faq*/
	.faq .accordion-button {
		padding: 15px 0;
		font-size: 16px;
		line-height: 20px;
	}
	.faq .sw-inner ul li {
		margin-bottom: 30px !important;
		width: 100%;
		float: none;
		padding-right: 0;
	}
	
	/*Megamenu*/
	ul.megamenu {
		width: 100%;
	}
		

}
/*End 320 - 767*/


@media (min-width:320px)and (max-width:500px){
	/*banner*/
	#bannerCarousel h1{
		font-size: 33px !important;
		line-height: 40px;
	}
	#banner h2 {
		font-size: 16px!important;
		line-height: 20px!important;
	}
	#banner .btn-darkbrd{
		padding: 5px 10px;
		font-size: 14px;
	}
	
	/*Menu*/
	ul.megamenu li,ul.siglemenu li{
		width: 100%;
		float: none;
	}
	ul.megamenu, ul.siglemenu {
		width: 100%;
	}
	
	#s2 {
		margin-top: -20px !important;
	}
	/*FAQ*/
	.faq ul li:before {
		font-size: 30px;
		margin-top: 0;
		margin-left: 0;
	}
	.faq .accordion-body {
		padding: 0;
	}
	
	/*Contact*/
	.box{
		font-size: 15px;
	}


}
/*End 320 - 500*/


@media (max-width: 425px){
	/*banner*/
	#bannerCarousel {
		padding: 0 25px;
	}

}
/*End 425*/
