@font-face {
    font-family: 'SegoePro';
    src: url('../fonts/segoepro-black-webfont.eot');
    src: url('../fonts/segoepro-black-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/segoepro-black-webfont.woff2') format('woff2'),
         url('../fonts/segoepro-black-webfont.woff') format('woff'),
         url('../fonts/segoepro-black-webfont.ttf') format('truetype'),
         url('../fonts/segoepro-black-webfont.svg#segoe_problack') format('svg');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'SegoePro';
    src: url('../fonts/segoepro-bold-webfont.eot');
    src: url('../fonts/segoepro-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/segoepro-bold-webfont.woff2') format('woff2'),
         url('../fonts/segoepro-bold-webfont.woff') format('woff'),
         url('../fonts/segoepro-bold-webfont.ttf') format('truetype'),
         url('../fonts/segoepro-bold-webfont.svg#segoe_probold') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'SegoePro';
    src: url('../fonts/segoepro-semibold-webfont.eot');
    src: url('../fonts/segoepro-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/segoepro-semibold-webfont.woff2') format('woff2'),
         url('../fonts/segoepro-semibold-webfont.woff') format('woff'),
         url('../fonts/segoepro-semibold-webfont.ttf') format('truetype'),
         url('../fonts/segoepro-semibold-webfont.svg#segoe_prosemibold') format('svg');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SegoePro';
    src: url('../fonts/segoepro-regular-webfont.eot');
    src: url('../fonts/segoepro-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/segoepro-regular-webfont.woff2') format('woff2'),
         url('../fonts/segoepro-regular-webfont.woff') format('woff'),
         url('../fonts/segoepro-regular-webfont.ttf') format('truetype'),
         url('../fonts/segoepro-regular-webfont.svg#segoe_proregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
  --white-color:                  #ffffff;
  --primary-color:                #3DD2CC;
  --secondary-color:              #122D42;
  --section-bg-color:             #F0FCFB;
  --custom-btn-bg-color:          #122D42;
  --custom-btn-bg-hover-color:    #48E5DF;
  --primary-btn-bg-color:         #3DD2CC;
  --primary-btn-bg-hover-color:   #48E5DF;
  --dark-color:                   #000000;
  --text-color:                   #122D42;
  --link-hover-color:             #48E5DF;

  --body-font-family:             'SegoePro', sans-serif;

  --h1-font-size:                 32px;
  --h2-font-size:                 30px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --text-font-size:               18px;
  --menu-font-size:               16px;
  --small-font-size:              14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           600;
  --font-weight-bold:             bold;
  --font-weight-black:             900;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow:hidden;
  overflow-y:auto;
  color:var(--dark-color);
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-normal);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
	color: var(--text-color);
	font-size: var(--text-font-size);
	font-weight: var(--font-weight-normal);
}

ul li {
	color: var(--text-color);
	font-size: var(--text-font-size);
	font-weight: var(--font-weight-normal);
}

a, 
button {
	touch-action: manipulation;
	transition: all 0.3s;
}

a {
	display: inline-block;
	color: var(--secondary-color);
	text-decoration: none;
}

a:hover {
	color: var(--link-hover-color);
}

b,
strong {
	font-weight: var(--font-weight-bold);
}
p.bullet {
    padding-left: 20px;
    background-image: url(../images/bullet.svg);
    background-repeat: no-repeat;
    background-position: left 9px;
    margin-left: 15px;
}
img, svg {
	width: 100%;
}
.gap-30 {
	gap: 30px 0;
}
.my-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}
/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #3DD2CC;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #3DD2CC;
    border-radius: 50%;
}
#intro-video{
	position:relative;
	width:100%;
	text-align:center;
	padding: 0;
	border-radius:15px;
}

#intro-video .videoPlay {
	position:absolute;
	width:100%;
	height: 100%;
	max-width: 1280px;
	max-height:720px;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
#intro-video video{
	position:relative;
	width:100%;
	height: 100%;
	max-width: 1280px;
	max-height:720px;
	margin: 0 auto;
	border-radius:15px;
	box-shadow: 15px 15px 15px 3px rgba(0, 0, 0, .25);
}

/*.videoPlayBtn {
	position: absolute;
    width: 100px;
	height:100px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
	z-index:1;
}*/
@media (max-width: 1100px) {
	#intro-video .videoPlay,
	#intro-video video{
		max-width: calc(100% - 80px);
	}
}
/*---------------------------------------
  navbar               
-----------------------------------------*/
.sticky-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.sticky-wrapper.is-sticky .navbar {
	background-color:#088a85;
  /*background-color: #0a4442;
  background: linear-gradient(180deg, rgba(14, 171, 165, 1) 0%, rgba(72, 229, 223, 1) 100%);*/
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.inner-pages .navbar {
	background: #088a85;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
  max-width: 200px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  width: 100%;
  height: auto;
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-small);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--text-font-size);
  font-weight: var(--font-weight-normal);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color)!important;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--text-color);
  font-size: var(--text-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.hero-section {
    position: relative;
    padding-top: 130px;
    padding-bottom: 70px;
    min-height: 700px;
    margin-bottom: 50px;
}
.hero-section .row {
    position: relative;
    z-index: 22;
}
.hero-section svg {
    position: absolute;
	top: 0;
    right: 0;
    left: 0;
	z-index:-1;
}

@media (max-width: 1680px) {
	.hero-section {
		min-height:600px;
	}
}



/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--text-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover,
.custom-btn:active,
.custom-btn:focus {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.inner-pages .custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover,
.custom-border-btn:active,
.custom-border-btn:focus {
	background: var(--custom-btn-bg-color);
	border-color: transparent;
	color: var(--white-color);
}

.custom-btn-bg-white {
	border-color: var(--white-color);
	color: var(--white-color);
}

.custom-btn-bg-white:hover,
.custom-btn-bg-white:active,
.custom-btn-bg-white:focus {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-normal);
}

.custom-btn-group .link:hover,
.custom-btn-group .link:active,
.custom-btn-group .link:focus {
  color: var(--link-hover-color);
}
/*---------------------------------------
  PRIMARY BUTTON               
-----------------------------------------*/
.primary-btn {
  background: var(--primary-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--text-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.primary-btn:hover {
  background: var(--primary-btn-bg-hover-color);
  color: var(--white-color);
}

.primary-border-btn {
  background: transparent;
  border: 2px solid var(--primary-btn-bg-color);
  color: var(--primary-btn-bg-color);
}

.primary-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.primary-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-normal);
}

.primary-btn-group .link:hover,
.primary-btn-group .link:active,
.primary-btn-group .link:focus {
  color: var(--link-hover-color);
}

.sticky-wrapper.is-sticky .custom-btn {
    background: var(--white-color);
	color: var(--custom-btn-bg-color);
}
.sticky-wrapper.is-sticky .custom-btn:hover,
.sticky-wrapper.is-sticky .custom-btn:focus {
    background: var(--primary-btn-bg-color);
	color: var(--white-color);
}
.sticky-wrapper.is-sticky .custom-border-btn {
	background: transparent;
	border-color: var(--white-color);
	color: var(--white-color);
}
.sticky-wrapper.is-sticky .nav-link:hover,
.sticky-wrapper.is-sticky .nav-link:focus {
    color: var(--primary-btn-bg-color)!important;
}
.sticky-wrapper.is-sticky .custom-border-btn:hover,
.sticky-wrapper.is-sticky .nav-link:focus {
    background: var(--primary-btn-bg-color);
    border-color: transparent;
    color: var(--white-color)!important;
}
.primary-border-btn:hover,
.primary-border-btn:active,
.primary-border-btn:focus {
  background: var(--primary-btn-bg-color);
  border-color: transparent;
  color: var(--white-color)!important;
}
.features_training_block {
	transition: transform 0.6s ease-in-out;
}
.features_training_block div.training_block {
	background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(18, 45, 66, .15);
    width: calc(33.33333333% - 40px);
    margin: 0 20px;
    padding: 30px;
}
.features_training_block .row div.icon {
	background: url(../images/drop-shape.svg) top center no-repeat;
    background-size: contain;
    width: 160px;
    height: 150px;
    margin: 0 auto 30px auto;
	display:flex;
	align-items:center;
	justify-content:center;
}
.features_training_block .row div.icon img{
    width: 75px;
    height: auto;
}
.features_training_block,
.features_support_block {
    box-sizing: border-box;
    color: var(--white-color);
}
/*.features_training_block {
	padding-top: 110px;
}*/
.features_support_block .row div div {
    display: table-cell;
    vertical-align: top;
    padding-right: 15px;
}
.features_support_block .row div.icon {
    width: 48px;
    height: 48px;
}
.features_support_block .row div.icon img {
    width: 100%;
    height: auto;
}
.features_support_block .row div div p {
    color: var(--text-color);
    line-height: 1.55em;
}
.features_support_block .row div div p.title {
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: 10px;
}
.features-section > .container {
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 80px;
}
.client-list {
	padding:0;
	margin:0;
	display:flex;
	flex-wrap: wrap;
	list-style: none;
    width: 100%;
	justify-content:center;
	align-items:center;
}
.client-list li {
	max-width:175px;
}
.client-list li img {
	width:100%;
	height:auto;
}
/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  border-width: 2px;
  box-shadow: none;
  color: var(--text-color);
  margin-bottom: 20px;
  padding: 10px;
  padding-left: 20px;
  outline: none;
}
.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--text-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  width: 24px;
  position: absolute;
  top: 0;
  margin: 12px;
  margin-left: 15px;
}
/*---------------------------------------
  FOOTER               
-----------------------------------------*/
.form-control {
    color: var(--text-color);
}
.form-control::placeholder {
    color: #cccccc;
}
.footer {
    height: auto;
    width: 100%;
	margin-top: 80px;
    padding: 20px 10px;
    box-sizing: border-box;
    background-color: #088a85;
	/*background: linear-gradient(180deg, rgba(14, 171, 165, 1) 0%, rgba(72, 229, 223, 1) 100%);*/
}
.footer .leftblock .form-control {
    width: 260px;
    display: inline;
}
.footer .leftblock {
    margin: 10px auto;
}
.footer .leftblock .btn {
    display: inline;
}
.footer .middleblock {
    text-align: center;
    font-size: var(--small-font-size);
	color:var(--white-color);
}
.footer .rightblock {
    margin: 15px auto;
    box-sizing: border-box;
	text-align: right;
}
.footer .rightblock div {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}
.linkedIn {
    background-image: url(../images/linkedin.png);
    background-repeat: no-repeat;
    height: 26px;
    width: 26px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.linkedIn:hover {
    background-image: url(../images/linkedin_hover.png);
    background-repeat: no-repeat;
    height: 26px;
    width: 26px;
}
.facebook {
    background-image: url(../images/facebook.png);
    background-repeat: no-repeat;
    height: 26px;
    width: 26px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.facebook:hover {
    background-image: url(../images/facebook_hover.png);
    background-repeat: no-repeat;
    height: 26px;
    width: 26px;
}
.emailicon {
    background-image: url(../images/mailicon.png);
    background-repeat: no-repeat;
    height: 26px;
    width: 26px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.emailicon:hover {
    background-image: url(../images/mailicon_hover.png);
    cursor: pointer;
}
a.scroll-Top {
	width:45px;
	height:45px;
	padding:4px 8px;
	text-align:center;
	font-weight: bold;
	font-size:24px;
	text-decoration: none;
	position:fixed;
	bottom:15px;
	right:15px;
	display:none;
	box-sizing:border-box;
	border-radius:50px;
	z-index:9;
	background-color: #3dd2cc;
	background: rgba(61, 210, 204, .75);
	color: #fff;
}
a.scroll-Top:active, a.scroll-Top:focus, a.scroll-Top:hover {
	color: #fff;
	background: rgba(61, 210, 204, 1);
}
a.scroll-Top .fa {
	color: #fff;
	margin-top: 8px;
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/
.team_section {
    margin-top: 9vh !important;
    padding-top: 1vh;
    padding-bottom: 1vh;
    min-height: calc(100vh - 20vh)!important;
	display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}
.contact-us.section {
	background-color: #EBFBFA;
    margin-top: 9vh !important;
    padding-top: 1vh;
    padding-bottom: 1vh;
    min-height: calc(100vh - 20vh) !important;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}
.contact-us {
	position: relative;
	overflow: hidden;
	box-sizing:border-box;
	transition: transform 0.6s ease-in-out;
}

.contact-us .col-lg-6.address-info {
	background-image: url(../images/address_bg.png);
	background-repeat: no-repeat;
	background-position:center bottom;
	background-size:contain;
	margin-top: 20px;
}

.contact-us > .container {
	min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
}

.contact-us .section-heading h2 {
	font-size:18px;
	margin-right: 100px;
	margin-bottom: 40px;
	color: var(--text-color);
}

.contact-us #map iframe {
	border-radius: 23px;
	position: relative;
	z-index: 2;
}

.contact-us .info {
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	z-index: 5;
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us .info span.column {
	display: inline-flex;
}

.contact-us .info span.column span.icon {
	float: left;
	width: 32px;
	height: 32px;
	display: inline-block;
	margin-left: 30px;
	margin-right: 10px;
}

.contact-us .info span a {
	color: var(--text-color);
	font-size: var(--bs-body-font-size);
	font-weight: 400;
	line-height: 25px;
	text-transform: none;
}

form#contact {
	position: relative;
	z-index: 2;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	padding: 30px;
	margin-bottom:20px;
	border-radius: 10px;
	background-color:#ffffff;
}

form#contact input {
	width: 100%;
	height: 46px;
	border-radius: 0px;
	background-color: transparent;
	border-bottom: 1px solid #3DD2CC;
	border-top: none;
	border-left: none;
	border-right: none;
	outline: none;
	font-size: 15px;
	font-weight: 300;
	color: #122D42;
	padding: 0px 10px;
	margin-bottom: 35px;
}

form#contact input::placeholder {
	color: #afafaf;
}

form#contact button {
	display: inline-block;
	background-color: #3DD2CC;
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
	padding: 12px 25px;
	border-radius: 6px;
	letter-spacing: 0.25px;
	border: none;
	outline: none;
	transition: all .3s;
}

form#contact button:hover {
	background-color: #2da19c;
}

form#get-started-form {
	position: relative;
	z-index: 2;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	padding: 30px;
	margin-bottom: 20px;
	border-radius: 10px;
	background-color:#ffffff;
}

form#get-started-form input,
form#get-started-form select {
	width: 100%;
	height: 46px;
	border-radius: 0px;
	background-color: transparent;
	border-bottom: 1px solid #3DD2CC;
	border-top: none;
	border-left: none;
	border-right: none;
	outline: none;
	font-size: 15px;
	font-weight: 300;
	color: #122D42;
	padding: 0px 10px;
	margin-bottom: 35px;
}

form#get-started-form input::placeholder {
	color: #afafaf;
}

form#get-started-form button {
	display: inline-block;
	background-color: #3DD2CC;
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
	padding: 12px 25px;
	border-radius: 6px;
	letter-spacing: 0.25px;
	border: none;
	outline: none;
	transition: all .3s;
}

form#get-started-form button:hover {
	background-color: #2da19c;
}

 

input:-webkit-autofill {
  background-color: #fff !important;
}

#subscribeForm{
	display: flex;
    gap: 10px;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media (min-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        margin-right: .5vw;
    }
}
@media screen and (max-width: 991px) {
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 20px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
	.section-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.navbar {
		/*background-color: var(--primary-color);*/
		background-color:#088a85;
	}
	.navbar-nav .dropdown-menu {
		position: relative;
		left: 10px;
		opacity: 1;
		pointer-events: auto;
		max-width: 155px;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.navbar-expand-lg .navbar-nav {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		margin: 5px;
		padding: 0;
	}
	.hero-section {
		position: relative;
		top: 82px;
		padding-top: 40px;
		margin-bottom: 82px;
		min-height: 500px;
		transition: transform 0.6s ease-in-out;
	}
	.events-listing-section {
		margin-bottom: 50px;
	}
	.events-detail-section .custom-block-info {
		padding: 40px;
	}
	.events-detail-info {
		padding: 35px 25px;
	}
	.contact-info-item {
		width: 60%;
	}
	.events-detail-section .contact-info-item {
		width: 70%;
	}
	.section-bg-image {
		margin-bottom: 0;
	}
	.section-bg-image-block {
		padding: 30px;
	}
	.site-footer {
		padding-top: 20px;
		padding-bottom: 100px;
	}
	.footer .leftblock .form-control {
		width: 200px;
	}
}
@media (min-width: 576px) {
	.col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
	.features_training_block div.training_block {
		width: calc(100% - 40px);
	}
	.footer .leftblock form,.footer .middleblock, .footer .rightblock  {
		text-align: center;
	}
	.footer .middleblock {
		margin:15px auto;
	}
	.section-heading {
		margin-top: 20px;
	}
	.features_training_block div.training_block {
		width: calc(100% - 40px);
		margin: 15px auto;
	}
}
@media (min-width: 768px) {
	.col-md-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
	.features_training_block div.training_block {
		width: calc(100% - 40px);
		margin: 15px auto;
	}
	.footer .leftblock form {
        text-align: left;
    }
	.footer .rightblock {
		text-align: right;
	}
}
@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
	.features_training_block div.training_block {
		width: calc(33.33333333% - 40px);
		margin: 15px auto;
	}
}
@media screen and (max-width: 992px) {
    .container, .container-md, .container-sm {
        max-width: 96%;
    }
	.hero-section {
		position: relative;
		padding-top: 110px;
		padding-bottom: 0;
		min-height: 360px;
		margin-bottom: 0;
		box-sizing: border-box;
	}
	.features_training_block div.training_block {
        width: calc(33% - 40px);
        margin: 15px auto;
    }
}
@media screen and (max-width: 768px) {
	h2 {
        font-size: 24px;
    }
	h5 {
        font-size: 16px;
    }
	.navbar {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.navbar-brand, .navbar-brand:hover {
		max-width: 170px;
	}
	.custom-btn {
		font-size: 14px;
		padding: 6px 10px;
	}
	.custom-border-btn {
		font-size: 14px;
		padding: 6px 10px;
		background: transparent;
		border-color: var(--white-color);
		color: var(--white-color);
	}
	.hero-section {
		position: relative;
        top: 75px;
        padding-top: 0;
		min-height: 425px;
	}
}
@media (max-width: 768px) {
    .features_training_block div.training_block {
        width: calc(100% - 40px);
        margin: 15px auto;
    }
	.team_section {
		padding-top: 3vh;
		padding-bottom: 3vh;
	}
	.contact-us.section .align-self-center {
		padding: 3rem 0 !important;
	}
	/*#team .alternate .row{
	   flex-direction: column-reverse;
	}*/
}
@media screen and (max-width: 480px) {
	.hero-section {
        top: 55px;
        min-height: 525px;
    }
	.navbar-brand, .navbar-brand:hover {
        max-width: 150px;
    }
	.navbar .get-start-btn {
		display: none;
	}
	.navbar-brand {
		font-size: var(--text-font-size);
	}
	.navbar-brand-icon {
		width: 30px;
		height: 30px;
	}
	.navbar-brand-icon::after {
		top: 5px;
	}
	.section-bg-image-block {
		padding: 30px;
	}
	.contact-info-item {
		width: 72%;
	}
	.features_training_block div.training_block {
		width: calc(100% - 40px);
		margin: 15px auto;
	}
	.hero-section svg {
		display: none;
	}
	.hero-section h2.text-white {
		margin-top: 1.5rem;
	}
	.hero-section h2.text-white, 
	.hero-section h5.text-white {
		color: var(--dark-color)!important;
	}
	.footer .leftblock {
		text-align: center;
	}
	.footer .leftblock .form-control {
		margin-bottom: 10px;		
	}
	#subscribeForm {
		display: block !important;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 360px) {
	.custom-btn {
		padding: 4px 12px;
	}
	.features_training_block div.training_block {
		width: calc(100% - 40px);
		margin: 15px auto;
	}
}