﻿

/* Theme Variables */
:root {
  --theme-color: #00aeef;
}

/* Global Styles */
body{
  background:white;
  color:#282F49;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;  
  text-rendering: optimizespeed;
}
section,
.section {padding-top:50px;padding-bottom:50px;}
.section-small {padding-top:35px;padding-bottom:35px;}
section.push-down,
.section.push-down {padding-top:70px;}
.cta-push > section,
.cta-push > .section {padding-bottom:7rem;}  
.cta-push > .section-small {padding-bottom:5rem;}  
.z-index-front {z-index: 999;position: relative;}
.text-small {font-size: 0.9rem;}
.text-medium {font-size: 1.4rem;}
.text-large {font-size: 3rem;font-weight: 700;}
.text-height-normal {line-height: 1.1;}
.angled-background {z-index:-1;background:#1B2031;height:100%;width:100%;position:absolute;top:0;left:0;transform:skewY(2deg);}
.angled-light-background {z-index:-1;background:#F1F6F9;height:100%;width:100%;position:absolute;top:0;left:0;transform:skewY(-2deg);}
.angled-light-background-reverse {z-index:-1;background:#F1F6F9;height:100%;width:100%;position:absolute;top:0;left:0;transform:skewY(2deg);}
a {text-decoration: none;color:#00aeef;}
a:focus,
a:hover {color:#0089bc;}
.rounded-4 {border-radius: 0.5rem !important;}
.rounded-5 {border-radius: 1rem !important;}
@media (min-width:768px) {
  section,
  .section {padding-top:90px;padding-bottom: 90px;}
  .section-small {padding-top:70px;padding-bottom: 70px;}
  section.push-down,
  .section.push-down {padding-top:120px;}
}
.drop-shadow {filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.35));}
.fw-bold {font-weight: 600!important;} /* overwrite bootstrap 700 */

@media (max-width:991px){
  .center-lg {text-align:center;width: 100%;}
}

.bg-dotted {
  background-color: #fff;
  background-image: radial-gradient(#ebedef 20%,transparent 20%);
  background-position: 0 0,20px 20px;
  background-size: 10px 10px;
}
.bg-dotted-theme-light {
  background-color: #F1F6F9;
  background-image: radial-gradient(#dce8f0 20%,transparent 20%);
  background-position: 0 0,20px 20px;
  background-size: 10px 10px;
}

/* Theme Section */
.btn, h1, h2, h3, h4, h5, h6 {}
.btn:focus {box-shadow: none;}
.text-dot:after,
.text-dot:after,
.text-dot:after {content: '.';color: #00aeef;}
.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {font-weight: 400;/* normally 300*/}
.btn, .btn-lg, .btn-xl {border-radius:0.65rem;font-weight: 600;}
.btn-xl {padding: 0.75rem 1.25rem;font-size: 1.5rem;}
.btn-link {font-weight: 500;text-decoration: none;padding: 0;}
.btn-link:hover {text-decoration: underline;}
.bg-theme {background-color: #00aeef;}
.bg-theme-dark {background: #1B2031;}
.bg-theme-light {background: #F1F6F9;}
.text-theme {color: #00aeef !important;}
.text-theme-secondary {color: #23C3FF !important;}
.text-white-hover {}
.text-white-hover:hover {text-decoration: underline;}
a.text-theme:hover,
a.text-theme:focus {text-decoration: none;color: #0089bc !important;}
a.text-muted-theme:hover,
a.text-muted-theme:focus {text-decoration: none;color: #00aeef !important;}
.border-theme {border-color: #00aeef!important;}
.btn.btn-theme {background-color: #00aeef;border-color: #00aeef;}
.btn.btn-theme:hover,
.btn.btn-theme:focus {background-color: #0089bc;border-color: #0089bc;}
.btn.btn-cta {background-color: #0bc86b;border-color: #0bc86b;}
.btn.btn-cta:hover,
.btn.btn-cta:focus {background-color: #0ab560;border-color: #0ab560;}
.btn-outline-theme {color: #00aeef;border-color: #00aeef;border-radius:0.55rem;}
.btn-outline-theme:hover,
.btn-outline-theme:focus {color: white;background-color: #0089bc;border-color: #0089bc;}
.btn-default {
  color: #333;
  background-color: white;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-shine {position: relative;overflow: hidden;border: transparent;}
.btn-shine:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine {
  0% {left: -100%;transition-property: left;}
  10%, 100% {left: 100%;transition-property: left;}
}

/* check for hover shine effect https://codepen.io/fishtoyo/pen/VYQVQx */
.badge {padding: 0.4em 0.65em;font-size: 0.9em;}
.badge.bg-secondary:hover {background-color: #00aeef!important;color: white;}
.badge.small {font-size: 0.8rem;}

.form-control {border-radius: 0.44rem;}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  border-radius: 0.55rem;
}

.text-rule {position:relative;}
.text-rule:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: white;
  left: -2rem;
  top: 50%;
  position: absolute;
}
.text-rule:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: white;
  right: -2rem;
  top: 50%;
  position: absolute;
}

.text-white-65 {
  color: rgba(255, 255, 255, 0.65) !important;
}

.page-link {color:#00aeef;}
.page-link:hover {color:#0089bc;}
.page-item.active .page-link {
  background-color: #00aeef;
  border-color: #00aeef;
}
.page-item:first-child .page-link {
  border-top-left-radius: 0.35rem;
  border-bottom-left-radius: 0.35rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.35rem;
  border-bottom-right-radius: 0.35rem;
}

/* Iamge Aligns -- See config/redactor/Default.json */
.image-left,
.image-style-align-left {float: left; margin-right: 0.75rem;}
.image-right,
.image-style-align-right {float: right; margin-left: 0.75rem;}
.image img,
.image-left img,
.image-right img,
.image-center img,
.image-style-align-left img,
.image-style-align-right img,
.image-style-align-center img {
  padding: 4px;
  border: 1px solid #eee;
  max-width: 100%;
  height: auto;
  border-radius: 0.7rem;  
}
.image img,
.image-center img,
.image-style-align-center img {margin: 0.75rem auto;display: block;}
.image figcaption,
.image-left figcaption,
.image-right figcaption,
.image-center figcaption,
.image-style-align-left figcaption,
.image-style-align-right figcaption,
.image-style-align-center figcaption {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.3rem;
}

.img-220 {width:220px;height: auto;}

@media (max-width:767px) {
  .image-left,
  .image-right,
  .image-style-align-left,
  .image-style-align-right {width: 100%;display: block;}
  .image-left img,
  .image-right img,
  .image-style-align-left img,
  .image-style-align-right img {width: 100%;height: auto;}  
}


/* for footer, depracted until Clutch fixes Lato font loading
.clutch-widget,
.upcity-widget {width: 150px;margin-right: auto;margin-left: auto;}
@media (min-width: 992px) {
  .clutch-widget,
  .upcity-widget {width: 150px;margin-right: 0;margin-left: 0;}
}
*/
.clutch-widget,
.upcity-widget {width: 215px;margin-right: auto;margin-left: auto;}

/* Cards */
.card {
  border-radius: 2rem;
  border: transparent;
  will-change: transform; /* critical for safari */
}
.card-body {padding: 1.3rem;line-height:1.6;}
.card-big {padding: 2.5rem;}
.card-small {border-radius: 0.7rem;}
.card-micro {border-radius: 0.25rem;}
.card-small .card-body {padding: 1.2rem;}
.card-img-top-wrapper {overflow: hidden;}
.card-img-top-wrapper .card-img-top {transition: all 0.75s ease;}
.card:hover .card-img-top-wrapper .card-img-top {transform: scale(1.2);}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(2rem - 1px);
}
.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(2rem - 1px);
  border-top-right-radius: calc(2rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(2rem - 1px);
  border-bottom-left-radius: calc(2rem - 1px);
}
.card-small .card-img,
.card-small .card-img-top {
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: calc(1rem - 1px);
}
.card-small .card-img,
.card-small .card-img-bottom {
  border-bottom-right-radius: calc(1rem - 1px);
  border-bottom-left-radius: calc(1rem - 1px);
}
.card-micro .card-img,
.card-micro .card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-micro .card-img,
.card-micro .card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-header:first-child {
  border-radius: calc(2rem - 1px) calc(2rem - 1px) 0 0;
}
.card-small .card-header:first-child {
  border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
}
.card-micro .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

@media (min-width:768px){
  .card-body {padding: 1.8rem;}
  .card-big {padding: 4.2rem;}
  .card-small {border-radius: 1rem;}
}

/* Navigation padding:40px 0;background:transparent; */
.navbar {background:white;transition:all .3s ease;}
.navbar .main-navigation {margin:0 auto;}
.navbar .main-navigation .nav-item .nav-link {color:#282F49;padding:0 15px;transition:all .3s ease;font-weight:500;}
.navbar .main-navigation .nav-item .nav-link:hover {color:#00aeef;}
.navbar .main-navigation .nav-item .active {color:#00aeef;}
.navbar.nav-scroll {background:white;padding:20px 0;box-shadow:0px 10px 20px 0px rgba(50, 65, 141, 0.1);}
@media (max-width:991px) {
  .navbar {background:white;}
  .navbar {padding:15px 20px;}
  .navbar .main-navigation .nav-item .nav-link{text-align:center;padding:15px 0;cursor:pointer;}
  .navbar .navbar-brand img {width:80%;}
  .navbar.nav-scroll {padding:15px 20px;}
  .navbar .navbar-toggler {outline:0;padding:0;}
  .navbar-toggler:focus {box-shadow: none;}
  .navbar .navbar-toggler-icon {height:2px;width:25px;transition:all 0.2s;background:#00aeef;display:block;}
  .navbar .navbar-toggler-icon:not(:last-child) {margin-bottom:5px;}
  .navbar .navbar-toggler-icon:nth-child(1) {transform:rotate(45deg);transform-origin:10% 10%;}
  .navbar .navbar-toggler-icon:nth-child(2) {opacity:0;}
  .navbar .navbar-toggler-icon:nth-child(3) {transform:rotate(-45deg);transform-origin:10% 90%;}
  .navbar .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1) {transform:rotate(0);}
  .navbar .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {opacity:1;}
  .navbar .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {transform:rotate(0);}
}

/* Hero Sections */
.hero-blob {padding:180px 0 150px;position:relative;}
.hero-blob .background {position:absolute;top:0;left:0;z-index:-1;width:65%;}
.hero-blob .background svg {width:100%;height:100%;}
@media (max-width:991px) {
  .hero-blob {padding:130px 0 30px 0;}
}

.brand-logo:hover {
  animation: pulse 0.5s; /* shake or pulse */
  animation-iteration-count: infinite;  
}

/* Hero Home */
.hero {
  padding-top: 150px;
  padding-bottom: 120px;
  position:relative;
  background: radial-gradient(circle, #1b567d 0%, #1b2031 53%);
  background-size: cover;
  width: 100%;
  position:relative;
  z-index: 98;
  margin-bottom: 4.5rem;
}
.hero .message {
  position: relative;
  z-index: 100;
  display: block;
}
.waves-container {
  height: 44px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}  
.waves-container svg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.moving-waves > use {animation: wave 40s cubic-bezier(.55,.5,.45,.5) infinite}
.moving-waves > use:first-child {animation-delay: -2s;animation-duration: 5s}
.moving-waves > use:nth-child(2) {animation-delay: -4s;animation-duration: 8s}
.moving-waves > use:nth-child(3) {animation-delay: -3s;animation-duration: 10s}
.moving-waves > use:nth-child(4) {animation-delay: -4s;animation-duration: 13s}
.moving-waves > use:nth-child(5) {animation-delay: -6s;animation-duration: 17s}
.moving-waves > use:nth-child(6) {animation-delay: -7s;animation-duration: 10s}

/* Original
.hero-curve {
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}  
.hero-curve svg {
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.hero-curve svg path:nth-child(1) {opacity: 0.15;}
.hero-curve svg path:nth-child(2) {opacity: 0.25;}
*/
@media (min-width:768px) {
  .hero {
    padding-top: 220px;
    padding-bottom: 160px;
  }
  .waves-container {height: 77px;}
  /* .hero-curve {height: 100px;} */
}


/* Client Logos */
/*
.clients img {filter: grayscale(100%);-webkit-filter: grayscale(100%);margin:1rem;}
.clients img:hover {filter: none;-webkit-filter: grayscale(0);}
*/
.clients {border: 1px solid #dee2e6;border-radius: 1.5rem;overflow: hidden;}
.clients .col {border-right: 1px solid #dee2e6;}

@media (max-width:767px) {
  .clients {margin-right: 10px;margin-left: 10px;}
  .clients .col:nth-child(2n) {border-right: 0;}
  .clients .col:nth-child(-n+10) {border-bottom: 1px solid #dee2e6;}
}
@media (max-width:991px) {
  .clients .col:nth-child(4n) {border-right: 0;}
  .clients .col:nth-child(-n+8) {border-bottom: 1px solid #dee2e6;}
}
@media (min-width: 992px) {
  .clients .col:nth-child(6n) {border-right: 0;}
  .clients .col:nth-child(-n+6) {border-bottom: 1px solid #dee2e6;}
}

/* Service Section */
.callout {position:relative;}
.callout .background {position:absolute;top:0;right:0;z-index:-1;width:53%;}
.callout .background svg {width:100%;height:100%;}
.callout .icon {
  position: absolute;
  bottom: 4%;left: 6%;
  animation: moveTop 5s infinite linear;
}

/* Work Section */
.hero-work {position:relative;}

.hero-img {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

.work-card .work-card-img {
  transition: transform .25s ease-in-out;
  will-change: transform;
}
.work-card .work-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(4.25rem);
  transition: transform .25s ease-in-out;
  will-change: transform;
}
.work-card:hover .work-card-img {
  overflow: hidden;
}
.work-card:hover .work-card-body {
  transform: translateY(0);
}
.work-card .work-heading {transition: all .25s ease-in-out;}
.work-card:hover .work-heading {color: #00aeef;}
@media (max-width: 768px) {
  .work-card .work-card-img {
    transform: scale(1);
  }
  .work-card .work-card-body {
    transform: translateY(0);
  }
}

/* Accordions */
.theme-accordion-item .header,
.theme-accordion-arrow .header {position: relative;}
.theme-accordion-item .header .accordion-heading:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: #00aeef;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.theme-accordion-item .header .accordion-heading .btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 44px 0 0;
  text-decoration: none;
  color: #282F49;
  white-space: unset;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none;
}
.theme-accordion-item .header .accordion-heading.accordion-heading-lg .btn {
  font-size: 1.77rem;
  font-weight: 600;
} 
.theme-accordion-item .header .accordion-heading .btn:before,
.theme-accordion-item .header .accordion-heading .btn:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 3px;
  top: 50%;
  right: 8px;
  background: white;
  transform: translateY(-50%) rotate(0);
  transition: transform 0.5s ease;
}
.theme-accordion-item .header .accordion-heading .btn.collapsed:after {
  transform: translateY(-50%) rotate(270deg);
}

.theme-accordion-arrow .header .accordion-heading .btn {
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: #282F49;
  white-space: unset;
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: none;
}
.theme-accordion-arrow .header .accordion-heading .btn:after {
  content: '';
  display: inline-block;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='m2.21967 7.53033c.29289.29289.76777.29289 1.06066 0l2.71967-2.71967 2.71967 2.71967c.29289.29289.76777.29289 1.06066 0 .29287-.29289.29287-.76777 0-1.06066l-3.25-3.25c-.29289-.29289-.76777-.29289-1.06066 0l-3.25 3.25c-.29289.29289-.29289.76777 0 1.06066z'/></svg>");
  bckground-repeat: no-repeat;
  height: 20px;
  width: 20px;
  top: 4px;
  left: -4px;
  transform: rotate(180deg);
  transform-origin: center;
  transition: transform 0.5s ease;
}
.theme-accordion-arrow .header .accordion-heading .btn:not(.collapsed):after {transform: rotate(0deg);}
.theme-accordion-arrow .accordion-icon {font-size: 1.3rem;vertical-align: middle;}


.number-dot {
  display: inline-block;          
  width: 48px;                    
  height: 48px;                  
  line-height: 48px;              
  text-align: center;            
  background-color: #00aeef;      
  color: white;                  
  border-radius: 50%;            
  font-weight: 700;             
  font-size: 1.5rem;             
  margin-right: 8px;            
}

/* Testimonial Section */
.slick-track {display: flex !important;}
.slick:focus {outline:0;}
.slick-slide {height: auto;}
.slick-dots {display:flex;align-items:center;margin:0;padding:0;justify-content:center;}
.slick-dots li {margin:0;list-style:none;height:12px;width:12px;}
.slick-dots li:not(:last-child){margin-right:15px;}
.slick-dots li button{cursor:pointer;height:100%;width:100%;background:#C2C8CC;border-radius:50%;transition:all .3s ease;display:block;padding:0;text-indent:-9999px;}
.slick-dots li button:focus {outline:0;}
.slick-dots li button:hover {background:#00aeef;}
.slick-dots li.slick-active {height:15px;width:15px;border-radius:50%;}
.slick-dots li.slick-active button {background-color:#00aeef;}
.fa-star {color: #eac53d;margin-right:3px;font-size:1.5rem;}

/* Blog Section */
.header-list .list-inline-item {margin-right: 0;}
.header-list .list-inline-item:not(:last-child)::after{padding:0 5px 0 7px;content:"\2022";}

.article .card-body {/*border-top: 2px solid #00aeef;*/}
.article .article-heading {}
.article .article-heading .link-dark:hover {color: #00aeef;}
.article-author::before{padding:0 4px 0 0;content:"By";}
.article-author-dot::after{padding:0 0 0 4px;content:"\2022";}

/* Tables */
figure.table {
  overflow-x: auto;
}
figure.table table {
  width: 100%;
  margin: 1rem 0;
  vertical-align: top;
  border-color: #dee2e6;
}
figure.table th,
figure.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
figure.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
figure.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.share-icons a {
  border: 1px solid #dee2e6;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
}
.share-icons a:hover,
.share-icons a:focus {
  color: white;
  background: #00aeef;
}

.entry p {}
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {margin-top: 2rem;margin-bottom: 1.3rem;font-weight: 700;}
.entry ul {padding-left:0;list-style:none;margin-top:30px;margin-bottom:30px;}
.entry ul ul {padding-left: 20px;margin-bottom: 10px;margin-top: 10px;}
.entry ul li,
.entry ol li {margin-bottom: 10px;}
.entry ul li:before{
  margin-right: 10px;
  margin-bottom: -3px;
  color: #28af10;
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Pro";
  content:"\f101";
}

/* Blockquotes */
.entry .blockquote {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e9ecef;
  border-left-color: #00aeef;
  border-left-width: 0.25rem;
  border-radius: 0.33rem;
}

/* heros for single pages */
.hero-article-img {border-radius: 2rem;}

/* Contact Page */
.contact {margin-top: 1rem;}
@media (min-width: 992px) {
  .contact {margin-top: -13rem;}
}
.modal .form-label,
.contact .form-label,
.survey .form-label,
.sticky-form .form-label {font-size:0.85rem;margin-bottom:0.25rem;font-weight: 600;}

/* Landing Page */
.sticky-header {position: relative;overflow: hidden;}
.sticky-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 2rem;
}
.sticky-form {
  position: sticky;
  top: 7rem;
  width: 85%; 
  margin: -20rem auto 0;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .sticky-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 0rem;
  }
  .sticky-form {
    position: relative;
    top: 3rem;
    width: 100%;
    margin-top: 0px;
  }
  .sticky-form {order: 2;}
  .sticky-content {order: 3;}
}

ul.steps {display: block;}
ul.steps li {position: relative;margin-bottom: 2rem;padding-left: 4.1875rem;}
ul.steps li:not(:last-child):after {
    content:"";
    background-color: #F1F6F9;
    position: absolute;
    top: 2.7rem;
    bottom: -2.125rem;
    left: 1.25rem;
    border-right: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    width: 0.3125rem;
}
ul.steps li span {
    background-color: #00aeef;
    color: white;
    display: block;
    font-size: 1rem;
    line-height: 2.1875rem;
    position: absolute;
    left: 0.3125rem;
    top: 0.3125rem;
    text-align: center;
    height: 2.1875rem;
    width: 2.1875rem;
}
ul.steps li span,
ul.steps li span:before {border: 1px solid #dee2e6;border-radius: 50%;}
ul.steps li span:before {
    content: "";
    position: absolute;
    top: -0.375rem;
    left: -0.375rem;
    right: 0;
    bottom: 0;
    background-color: #F1F6F9;
    height: 2.8125rem;
    width: 2.8125rem;
    z-index: -1;
}

ul.tags {list-style: none;padding:0;}
ul.tags li{display: inline;margin-right:0.3rem;}
ul.tags li label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 1);
    color: #6c757d;
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    white-space: nowrap;
    margin: 3px 0px;
    padding: 8px 12px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}
ul.tags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}
ul.tags li input[type="radio"] + label::before {content:  "";padding: 0;}
ul.tags li input[type="checkbox"]:checked + label::before {content: "\f00c";/*transform: rotate(-360deg);*/transition: transform .3s ease-in-out;}
ul.tags li input[type="checkbox"]:checked + label {background-color: #00aeef;border-color: #00aeef;color: white;transition: all .2s;}
ul.tags li input[type="checkbox"] {position: absolute;opacity: 0;}
ul.tags li input[type="checkbox"]:focus + label {}
ul.tags li input[type="radio"]:checked + label::before {content: "\f00c";/*transform: rotate(-360deg);*/transition: transform .3s ease-in-out;padding: 2px 6px 2px 2px;}
ul.tags li input[type="radio"]:checked + label {background-color: #00aeef;border-color: #00aeef;color: white;transition: all .2s;}
ul.tags li input[type="radio"] {position: absolute;opacity: 0;}
ul.tags li input[type="radio"]:focus + label {}


/* About Page */
.timeline {display:flex;flex-direction:column;width:250px;margin-right:auto;margin-left:auto;}
.timeline .timeline-step {position:relative;display:flex;justify-content:space-between;align-items:center;}
.timeline .timeline-step:not(:first-child):before {content:"";display:block;border-left:0.15rem solid #00aeef;height:3rem;position:absolute;bottom:6.75rem;left:0.44rem;}
.timeline .timeline-step:not(:last-child):after {content:"";display:block;border-left:0.15rem solid #00aeef;height:3rem;position:absolute;top:6.75rem;left:0.44rem;}
.timeline .timeline-content {width:auto;margin-top:1rem;margin-bottom:1rem;margin-left:2rem;margin-right:auto;}
.timeline .inner-circle {border-radius:1.5rem;height:1rem;width:1rem;display:inline-flex;align-items:center;justify-content:center;background-color:#00aeef;position: relative;}
.timeline .inner-circle:before {content:"";background-color:#6cd0f5;display:inline-block;height:3rem;width:3rem;min-width:3rem;border-radius:6.25rem;opacity:.5;}

@media (min-width:768px){
  .timeline {display:flex;flex-direction:row;justify-content:center;width:100%;}
  .timeline .timeline-step {text-align:center;display:inline-block;}
  .timeline .timeline-step:not(:first-child):before {content:"";display:block;border-top:0.15rem solid #00aeef;width:3rem;height:0;position:absolute;right:8rem;top:0.44rem;left:0;}
  .timeline .timeline-step:not(:last-child):after {content:"";display:block;border-top:0.15rem solid #00aeef;width:3rem;height:0;position:absolute;left:8rem;top:0.44rem;right:0;}
  .timeline .timeline-content {width:10rem;margin:0 0.5rem;padding: 0.5rem;}
}

.media .logo {height:5rem;}
.media ul {margin-bottom:1.7rem;}
.media ul > li {margin-bottom: 1rem;}

.slide-tech {}
@media (max-width:767px){
  .slide-tech img {width: 120px;height: 120px;}
}

/* Footer Section */
.footer {position:relative;}
/*
.footer::before {
 position: absolute;
 content: "";
 width: 100%;
 height: 100%;
 bottom: 0;
 right: 0;
 background-color: #1B2031;
 transform-origin: bottom right;
 transform: skewY(2deg);
 z-index: -10;
}
*/
.footer .contact-cta {position:relative;overflow:hidden;z-index:1;margin-top:-5rem;}
.contact-details {padding-top:80px;padding-bottom:50px;}
.footer ul li:not(:last-child){margin-bottom:5px;}
.footer .contact-details a {color: white;text-decoration: none;}
.footer .contact-details a:hover,
.footer .contact-details a:focus {color: #00aeef;}

.footer-social ul {/*float:right;*/}
.footer-social ul li a {display:block;text-decoration:none;color:white;font-size:20px;transition:all .3s ease;}
.footer-social ul li a:hover {color:#00aeef;}
@media (max-width:991px){
  .footer-social ul {margin:0 auto;float:none;}
}

/* Custom Cursor */
.cursor-dot,
.cursor-dot-outline {
  z-index: 1100;
  pointer-events: none;
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #00aeef;
}
.cursor-dot-outline {
  width: 30px;
  height: 30px;
  background-color: #6cd0f5;
}

@media (max-width:991px) {
    .cursor-dot,
    .cursor-dot-outline {display: none;}
    body {cursor: auto;}
}

 /* IE10+ specific styles go here, primarily for boostrap cards */  
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 
  .ie-block {display: block;} 
  .ie-wrapper {display: flex;}
  .ie-inner {flex-basis: 100%;}
}

/* For AOS.css animation library */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  [data-aos^=fade][data-aos^=fade],
  [data-aos^=zoom][data-aos^=zoom]{
    opacity: 1;
  }
}
/* Utilities */
.py-6 {padding-top: 4rem;padding-bottom: 4rem;}
.pt-6 {padding-top: 4rem;}
.my-6 {margin-top: 4rem;margin-bottom: 4rem;}
.mt-6 {margin-top: 4rem;}
.mb-6 {margin-bottom: 4rem;}

.f-spacing {letter-spacing: 0.5px;}

/* Bootstrap Negative Margin Utilities */
.m-n1 { margin: -0.25rem !important;}
.mt-n1,
.my-n1 {margin-top: -0.25rem !important;}
.mr-n1,
.mx-n1 {margin-right: -0.25rem !important;}
.mb-n1,
.my-n1 {margin-bottom: -0.25rem !important;}
.ml-n1,
.mx-n1 {margin-left: -0.25rem !important;}
.m-n2 {margin: -0.5rem !important;}
.mt-n2,
.my-n2 {margin-top: -0.5rem !important;}
.mr-n2,
.mx-n2 {margin-right: -0.5rem !important;}
.mb-n2,
.my-n2 {margin-bottom: -0.5rem !important;}
.ml-n2,
.mx-n2 {margin-left: -0.5rem !important;}
.m-n3 {margin: -1rem !important;}
.mt-n3,
.my-n3 {margin-top: -1rem !important;}
.mr-n3,
.mx-n3 {margin-right: -1rem !important;}
.mb-n3,
.my-n3 {margin-bottom: -1rem !important;}
.ml-n3,
.mx-n3 {margin-left: -1rem !important;}
.m-n4 {margin: -1.5rem !important;}
.mt-n4,
.my-n4 {margin-top: -1.5rem !important;}
.mr-n4,
.mx-n4 {margin-right: -1.5rem !important;}
.mb-n4,
.my-n4 {margin-bottom: -1.5rem !important;}
.ml-n4,
.mx-n4 {margin-left: -1.5rem !important;}
.m-n5 {margin: -3rem !important;}
.mt-n5,
.my-n5 {margin-top: -3rem !important;}
.mr-n5,
.mx-n5 {margin-right: -3rem !important;}
.mb-n5,
.my-n5 {margin-bottom: -3rem !important;}
.ml-n5,
.mx-n5 {margin-left: -3rem !important;}

/* Custom SVG Icons */
.icon-craft {
  display: block;
  width: 48px;
  height: 48px;
  mask-image: url('../image/craft.svg');
  mask-size: cover;
  background-color: white;
}
.icon-craft.text-theme {background-color: #00aeef;}
.icon-craft.fa-5x {width: 77px; height: 77px;}

.icon-yii {
  display: block;
  width: 39px;
  height: 48px;
  mask-image: url('../image/yii.svg');
  mask-size: cover;
  background-color: white;
}
.icon-yii.text-theme {background-color: #00aeef;}

.icon-azure {
  display: block;
  width: 62px;
  height: 48px;
  mask-image: url('../image/azure.svg');
  mask-size: cover;
  background-color: white;
}
.icon-azure.text-theme {background-color: #00aeef;}


.shape-left {
  position:absolute;
  z-index:-1;
  top:-43%;
  left:2%;
  animation: moveLeftSpin 10s infinite linear;
}
.shape-left svg path {fill:white;opacity:0.22;}
.shape-right {
  position:absolute;
  z-index:-1;
  top:-3%;
  right:-5%;
  animation:moveTop 5s infinite linear;
}
.shape-right svg {height:100%;width:100%;}
.shape-right svg path {fill:white;opacity:0.22;}

.sticky-header .shape-left {top: -33%;left: -3%;}


/* Animiation */
@keyframes spin {
  0%{transform:translate(-50%, -50%) rotate(0);}
  100%{transform:translate(-50%, -50%) rotate(360deg);}
}
@keyframes moveLeft{ 
  0%{transform:translateX(-50%);}
  50%{transform:translateX(-57%);}
}
@keyframes moveTop {
  0%, 100%{transform:translateY(0);}
  50%{transform:translateY(33px);}
}
@keyframes animatePositive {
  0%{width:0;}
}
@keyframes rotate {
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}
@keyframes moveLeftSpin {
  0%, 100%{transform:translateX(0) rotate(-20deg);}
  50%{transform:translateX(15px) rotate(40deg);}
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.arrow {text-align: center;}
.bounce {animation: bounce 2s infinite;}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}

@keyframes wave {
    0% {transform: translate3d(-90px,0,0);}
    to {transform: translate3d(85px,0,0);}
}


pre {cursor: text;}
/*
pre {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 3px solid #f36d33;
    color: #666;
    page-break-inside: avoid;
    font: 16px/24px 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
    line-height: 1.0;
    margin-bottom: 1.6em;
    max-width: 100%;
    padding: .5em 1em;
    display: block;
    word-wrap: break-word;
    overflow: auto;
    overflow-x: auto;
    white-space: pre-wrap;
    counter-reset: line;
    cursor: text;
}

pre:hover,
pre:focus {border-left: 3px solid #338df3;}
code,
.code {position: relative;cursor: text;}
pre+button {position: absolute;top: 0;right: 0;}
pre .line-number {
    user-select: none;
    float: left;
    margin: 0 1em 0 -1em;
    border-right: 1px solid;
    text-align: right;
}
pre .line-number span {display: block;padding: 0 .5em 0 1em;}
*/


