<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto",sans-serif;
  color: #585858;
}

a {
  color: #585858;
}

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

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #31459c;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #fc4545;
  color: #fff;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #585858;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #00aeed;
}

#topbar .contact-info i {
  color: #31459c;
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 10px;
  margin-left: 10px;
}

#topbar .social-links a {
  color: #31459c;
  padding: 4px 8px;
  display: inline-block;
  line-height: 2px;
  transition: 0.3s;
  font-size: 16px;
}

#topbar .social-links a:hover {
  color: #00aeed;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
  z-index: 997;   
  border-bottom: 2px solid #31459c;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}


#header .logo img {
  padding: 0;
  margin-top: 5px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu &gt; ul &gt; li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #2e2e2e;
  padding: 15px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active &gt; a, .nav-menu li:hover &gt; a {
  color: #00aeed;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover &gt; ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #585858;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active &gt; a, .nav-menu .drop-down ul li:hover &gt; a {
  color: #00aeed;
}

.nav-menu .drop-down &gt; a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover &gt; ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down &gt; a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down &gt; a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover &gt; ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down &gt; a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #585858;
  padding: 10px 20px;
  font-size: 14px;
}

.mobile-nav a:hover, .mobile-nav .active &gt; a, .mobile-nav li:hover &gt; a {
  color: #00aeed;
  text-decoration: none;
}

.mobile-nav .drop-down &gt; a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down &gt; a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down &gt; a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #31459c;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 114px);
  padding: 0;
  overflow: hidden;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 114px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content-01 {
  text-align: right;
}

#hero .carousel-content-02 {
  text-align: left;
}

#hero .carousel-content-03 {
  text-align: center;
}

@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #585858;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 900;
}

#hero h4 {
  color: #31459c;
  margin-bottom: 30px; 
  font-weight: 900;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #585858;
}

#hero span {
  color: #fc4545;
}

#hero .advert01_header {
  color: #00aeed;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

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

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #31459c;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  margin-top: 15px
}

#hero .btn-get-started:hover {
  background: #fc4545;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #31459c;
}

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

.line-red {
    background: #fb5353;
    width: 80px;
    height: 4px;
    margin-top: -20px;    
  }

.center {
    margin: 0 auto;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 0px;
}

.counts .count-box {
  box-shadow: 0px 0 16px rgba(0, 0, 0, 0.3);
  padding: 30px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
}

.counts .count-box i {
  display: block;
  font-size: 64px;
  margin-bottom: 15px;
}

.counts .count-box span {
  font-size: 42px;
  display: block;
  font-weight: 700;
  color: #31459c;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Advert Section
--------------------------------------------------------------*/
.advert {
  background: #31459c;
  padding: 60px 0;
  color: #574741;
}

.advert h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.advert h3 span {
  color: #fc4545;
}

.advert p {
  padding: 0;
  margin: 0;
  color: #fff;
}

.advert p span {
  color: #fc4545;
  font-size: 20px;
}

.advert .advert-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 25px 8px 25px;
  transition: 0.4s;
  margin-top: 50px;
  border-radius: 5px;
  color: #fff;
  background: #00aeed;
}

.advert .carousel-indicators {
  color: #31459c;
}

.advert .advert-btn:hover {
  background: #fc4545;
  color: #fff;
}

@media (max-width: 1024px) {
  .advert {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .advert .advert-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Manufacturers Section
--------------------------------------------------------------*/
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 75%;
  opacity: 0.7;
  transition: ease-in-out 0.2s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.clients .owl-item img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 50px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #31459c !important;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners .partners-wrap {
  border-top: 1px solid #f1eeed;
  border-left: 1px solid #f1eeed;
}

.partners .partners-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #f1eeed;
  border-bottom: 1px solid #f1eeed;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.partners .partners-logo img {
  height: 70px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .card {
  border: 0;
  padding: 100px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.about .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.about .card-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #31459c;
  text-align: center;
}

.about .card-text {
  color: #585858;
}

.about .card:hover .card-body {
  background: #31459c;
}

.about .card:hover .read-more a, .about .card:hover .card-title, .about .card:hover .card-title a, .about .card:hover .card-text {
  color: #fff;
}


/*--------------------------------------------------------------
# Training Section
--------------------------------------------------------------*/
.training {
  color: #fff;
  font-size: 30px;
}

.training .training-top {
  padding: 30px 0 30px 0;
  background: #00aeed;
}

.training .training-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #313030;
  position: relative;
  padding-bottom: 12px;
}

.training .btn-primary {
  color: #fff;
  font-size: 20px;
  padding: 8px 25px 8px 25px;
  background-color: #fc4545;
  border-radius: 5px;
  border-color: #fc4545;
}

.training .btn-primary:hover {
  background-color: #31459c;
  border-color: #31459c;
  color: #fff;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .card-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #31459c;
    text-align: center;
}

.contact .section-title {
  text-align: center;
  padding-bottom: 0px;
}

.contact .info-box {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
  border-radius: 5px;
}

.contact a {
    color: #00aeed;
}

.contact a:hover {
    color: #fc4545;
}

.contact .info-box i {
  font-size: 25px;
  color: #fc4545;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fc4545;
  float: left;
}


.contact .info-box h3 {
  font-size: 18px;
  color: #31459c;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  margin: 0 0 0 68px;
}


.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 5px;
}

.contact .php-email-form .validate {
  display: none;
  color: #00aeed;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #00aeed;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 16px;  
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #fc4545;
  color: #585858;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form .form-control .options {
  margin-top: 50px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .btn-primary {
  background: #31459c;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  margin-top: 15px
}

.contact .btn-primary:hover {
  background: #fc4545;
}

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

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

/*--------------------------------------------------------------
# Legal Notice
--------------------------------------------------------------*/
.legal .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
  margin-bottom: 25px;
  border-radius: 5px;
  background-color: #fff;
}

.legal .section-title h3 {
  text-align: left;
  color: #31459c;
  font-size: 16pt;
}

.legal .section-title h4 {
  text-align: left;
  color: #31459c;
  font-size: 14pt;
}

.legal .section-title p {
  text-align: left;
  color: #585858;
  font-size: 12pt;
}

.legal a {
    color: #00aeed;
}

.legal a:hover {
    color: #fc4545;
}

.legal .section-title {
    text-align: center;
    padding-bottom: 0px;
}

.legal .legal-content {
  padding: 40px;
}

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

#footer .footer-top {
  padding: 15px 0px 5px 0px;
  background: #f5f9fc;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #313030;
}

#footer a {
    color: #00aeed;
}

#footer a:hover {
    color: #fc4545;
}

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

#footer .social-links a:hover {
  background: #fc4545;
  color: #fff;
  text-decoration: none;
}
</pre></body></html>