/*-------------------------------------------------------------- # General --------------------------------------------------------------*/
 body {
     font-family: 'Montserrat', sans-serif;
     color: #333333;
     font-weight: 200;
}
 a {
     color: #47b2e4;
     text-decoration: none;
}
 a:hover {
     color: #73c5eb;
     text-decoration: none;
}
 h1, h2, h3, h4, h5, h6 {
     font-family: 'Montserrat', sans-serif;
}
/*-------------------------------------------------------------- # Preloader --------------------------------------------------------------*/
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 9999;
     overflow: hidden;
     background: #37517e;
}
 #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:#F16632;
     width: 40px;
     height: 40px;
     border-radius: 4px;
     transition: all 0.4s;
}
 .back-to-top i {
     font-size: 24px;
     color: #fff;
     line-height: 0;
}
 .back-to-top:hover {
     background: #F16632;
     color: #fff;
}
 .back-to-top.active {
     visibility: visible;
     opacity: 1;
}
/*-------------------------------------------------------------- # Header --------------------------------------------------------------*/
 #header {
     transition: all 0.5s;
     z-index: 997;
     padding: 20px 0;
}
 #header.header-scrolled, #header.header-inner-pages {
     background: rgba(40, 58, 90, 0.9);
}
 #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;
}
 #header .logo img {
    width: 172px;
    height: auto;
}
/*-------------------------------------------------------------- # 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: 8px 20px;
     margin-left: 30px;
     border-radius: 50px;
     color: #fff;
     font-size: 14px;
     border: 2px solid #47b2e4;
     font-weight: 600;
}
 .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;
}
section#hero {
    height: 430px !important;
}
 @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%;
     height: 80vh;
     background: #37517e;
}
 #hero .container {
     padding: 30px 0px;
}
 #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, 0.6);
     margin-bottom: 50px;
     font-size: 24px;
}
 #hero .btn-get-started {
     font-family: 'Montserrat', sans-serif;
     font-weight: 500;
     font-size: 16px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 10px 28px 11px 28px;
     border-radius: 50px;
     transition: 0.5s;
     margin: 10px 0 0 0;
     color: #fff;
     background: #47b2e4;
}
 #hero .btn-get-started:hover {
     background: #209dd8;
}
 #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 {
     padding: 30px 0px 30px;
     overflow: hidden;
}
 .section-bg {
     background-color: #f3f5fa;
}
 .section-title {
     text-align: center;
     padding-bottom: 30px;
}
 .section-title h2 {
     font-size: 32px;
     font-weight: bold;
     text-transform: uppercase;
     position: relative;
     color: #502E91;
}
 .section-title p {
     margin-bottom: 0;
}
/*-------------------------------------------------------------- # Clients --------------------------------------------------------------*/
 .clients {
     padding: 12px 0;
     text-align: center;
}
 .clients img {
     max-width: 45%;
     transition: all 0.4s ease-in-out;
     display: inline-block;
     padding: 15px 0;
     filter: grayscale(100);
}
 .clients img:hover {
     filter: none;
     transform: scale(1.1);
}
 @media (max-width: 768px) {
     .clients img {
         max-width: 40%;
    }
}
/*-------------------------------------------------------------- # About Us --------------------------------------------------------------*/
 .about .content h3 {
     font-weight: 600;
     font-size: 26px;
}
 .about .content ul {
     list-style: none;
     list-style-position: inside;
     padding: 0;
}
 .about .content ul li::before {
     content: "\2022";
     color:#F16632;
     font-weight: bold;
     display: inline-block;
     width: auto;
     margin-left: -1em;
     font-size: 23px;
}
 p, ul {
     margin-bottom: 30px;
	 font-size: 16px;
    line-height: 36px;
}
p.weight6-para {
    font-weight: 500 !important;
}
 .about .content ul li {
     padding-left: 23px;
     position: relative;
     line-height: 36px;
     font-weight: 300;
}
 .about .content ul li+li {
     margin-top: 3px;
}
.about .content ul li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 32px;
}
 .about .content ul i {
     position: absolute;
     left: 0;
     top: 2px;
     font-size: 20px;
     color: #47b2e4;
     line-height: 1;
}
 .about .content p:last-child {
     margin-bottom: 0;
}
 .about .content .btn-learn-more {
     font-family: 'Montserrat', sans-serif;
     font-weight: 500;
     font-size: 14px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 12px 32px;
     border-radius: 4px;
     transition: 0.3s;
     line-height: 1;
     color: #47b2e4;
     -webkit-animation-delay: 0.8s;
     animation-delay: 0.8s;
     margin-top: 6px;
     border: 2px solid #47b2e4;
}
 .technical {
     font-size: 40px;
     line-height: 54px;
     color: #fff;
     opacity: 1;
}
 p.line-para {
     display: flex;
     align-items: center;
}
 p.line-para img {
     margin-right: 25px;
}
 .about .content .btn-learn-more:hover {
     background: #47b2e4;
     color: #fff;
     text-decoration: none;
}
p.kei {
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
    padding: 20px 0px 40px;

}
section#about p {
    font-weight: 300;
}
/*-------------------------------------------------------------- # Breadcrumbs --------------------------------------------------------------*/
 .breadcrumbs {
     padding: 15px 0;
     background: #f3f5fa;
     min-height: 40px;
     margin-top: 72px;
}
 @media (max-width: 992px) {
     .breadcrumbs {
         margin-top: 68px;
    }
}
 .breadcrumbs h2 {
     font-size: 28px;
     font-weight: 600;
     color: #37517e;
}
 .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     padding: 0 0 10px 0;
     margin: 0;
     font-size: 14px;
}
 .breadcrumbs ol li+li {
     padding-left: 10px;
}
 .breadcrumbs ol li+li::before {
     display: inline-block;
     padding-right: 10px;
     color: #4668a2;
     content: "/";
}
 .fixed-top {
     position: unset;
}
 .for-more-information p {
     margin-bottom: 0px;
     text-align: center;
     font-size: 20px;
     line-height: 24px;
     font-weight: 300;
}
 .logo-head {
     display: flex;
     align-items: center;
}
 .logo-head a {
     margin-right: 0px;
}
 .ribbon-box {
     text-align: center;
     margin-top: 80px;
     position: relative;
}
 .ribbon-box img {
}
p.code {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500 !important;
}
span.code8 {
    font-weight: 500;
}
span.r-text {
    position: absolute;
    top: 3px;
    left: 0px;
    right: 0px;
    color: #fff;
    font-size: 25px;
    line-height: 36px;
}
 p.code {
     text-align: center;
     padding: 50px 0px 20px;
     font-size: 24px;
     line-height: 36px;
     font-weight: 500;
     margin-bottom: 0px;
}
 .back-to-top img {
     height: 20px;
}
.logo-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    margin-top: 7px;
}
.logo-head a {
    display: flex;
    align-items: flex-end;
}
span.dash-line {
    height: 14px;
    content: "";
    width: 2px;
    background: #DFDFDF;
    margin: 0px 16px;
}
 span.line2 {
     width: 100%;
     content: "";
     height: 2px;
     background: #DFDFDF;
     display: block;
     position: absolute;
     bottom: 19px;
     z-index: -1;
}
p.logo-head a img {
    height: 22px;
    width: auto;
}
.cage {
    text-align: center;
    font-size: 20px;
    line-height: 36px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 400 !important;
}
.cage span{
    font-weight: 600;
}
.address a{
    color: #F16632;
    text-decoration: underline;
}
.cage a{
    color: #0000EE;
    text-decoration: underline;
}
.address{
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400 !important;
    color: #333333;
    margin-bottom: 20px;
}
 @media screen and (max-width: 767px) {
    .cage span, .code span, .cage a {
        display: block;
    }
    .cage {
        font-size: 18px;
        line-height: 30px;
    }
    p.code {
        font-size: 20px;
    }
     p.line-para img {
         margin-right: 20px;
         margin-left: 20px;
    }
     .container {
         max-width: 100%;
         padding: 0px 20px;
    }
    section#hero {
        height: auto !important;
    }
    section#hero {
        background-size: cover !important;
    }
	
}
 @media screen and (max-width: 480px) {
#header .logo {
    margin: 0px auto 10px;
}
header#header .container {
    flex-direction: column;
justify-content: center;
}
.for-more-information {
    margin-bottom: 10px;
}
}
 @media screen and (min-width: 768px) and (max-width: 991px) {
     .container {
         max-width: 100%;
         padding: 0px 50px;
    }
     p.line-para img {
         margin-right: 25px;
         margin-left: 50px;
    }
	p, ul {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 36px;
}
section#hero {
    height: 360px !important;
}
}
 @media screen and (min-width: 992px) and (max-width: 1280px) {
     .container {
         max-width: 100%;
         padding: 0px 60px;
    }
     p.line-para img {
         margin-right: 25px;
         margin-left: 60px;
    }
	p, ul {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 36px;
}
}
@media screen and (min-width: 1301px) and (max-width: 1600px) { 
    section#hero {
        height: 480px !important;
    } 
    .container {
        max-width: 100%;
        padding: 0px 80px;
    }
    p.line-para img {
        margin-right: 25px;
        margin-left: 80px;
    }
}

@media screen and (min-width: 1601px) and (max-width: 1920px) { 
    section#hero {
        height: 590px !important;
    } 
}

@media screen and (min-width: 1921px) { 
    section#hero {
        height: 660px !important;
    } 
}