@import url("../fonts/custom/sp/ss.css");
:root {
  --bs-yellow: #51b9a1;
  --bs-primary: #51b9a1;
  --bs-dark: #666666;
  --bs-blue: #0e2657;
  --bs-black: #212529;
  --bs-secondary: #999999;
  --bs-gray: #e6e6e6;
  --menu-bg:url('../img/bg/bg-menu.jpeg');
  --main-banner-bg:url('../img/bg/bg.jpg');
  --menu-icon:url('../img/icon/menu-b.svg');
  --menu-icon-close:url('../img/icon/close-w.svg');
  --index-icon:url('../img/process/index-bg.svg');
}
body{
  font-family: 'Sofia Pro';
  color: var(--bs-dark);
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}
.text-dark {color: var(--bs-dark)!important;}
.text-warning {color: var(--bs-yellow)!important;}
.text-primary {color: var(--bs-primary)!important;}
.text-secondary {color: var(--bs-secondary)!important;}
.bg-dark {background-color: var(--bs-dark)!important;}
.bg-black {background-color: var(--bs-black)!important;}
.bg-warning {background-color: var(--bs-yellow)!important;}
.bg-primary {background-color: var(--bs-primary)!important;}
.bg-gray {background-color: var(--bs-gray)!important;}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  font-family: 'Sofia Pro';
  line-height: 1.5;
}
a{text-decoration: none;}
.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.btn-primary:active:focus,.btn-outline-primary:active:focus{
  box-shadow:none;
}
.btn-outline-primary:active,.btn-primary:active,.btn-primary:focus{
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  box-shadow:none;
}
.btn-primary:hover {
    color: var(--bs-primary);
    background-color: #fff;
    border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.nav-link {
    color: #ffffff;
}
.nav-link:focus, .nav-link:hover{
  color: #ffffff;
}
.nav-item{position: relative;}
.nav-item>a::before {
  content: "";
  position: absolute;
  background-color: var(--bs-yellow);
  height: 1px;width: 0%;
  left: 1rem;bottom: 3px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav-item>a.active::before{
  width: 30%;
}
body.topbar-layout header{
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
body.topbar-layout header .header-block{
  height: 7rem;
}
body.sidebar-show header:before{
  content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
}
.fixed-sidebar{
  position: fixed;
    width: 17rem;
    left: 0;top: 0;
    min-height: 100%;
    height: 100vh;
    z-index: 99;
    -webkit-transform: translate(0rem, 0rem);
    transform: translate(0rem, 0rem);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.fixed-sidebar:before {
  content: "";
  position: absolute;
  top: 0;left: 0;
  background-image: var(--menu-bg);
  height: 100%;width: 100%;
  background-position: center;
  background-size: 101%;
}
.topbar{
  position: fixed;
    width: 100%;
    left: 0;top: 7rem;
    height: auto;
    z-index: 99;
    -webkit-transform: translate(0rem, 0rem);
    transform: translate(0rem, 0rem);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
iframe{
  max-width: 100%;
}
.page-content:before {
    content: "";
    background-image: var(--main-banner-bg);
    position: fixed;
    width: 100%;
    height: 100vh;
    background-position: 70%;
    background-size: cover;
}
.logo{
  height: 120px;
}
.title-icon{
  height: 40px;
}
.font-icon{
  height: 1.3rem;
}
.menu-icon{
  position: fixed;
    z-index: 99;
    right: 1.8rem;
    height: 3rem;
    width: 3rem;
    cursor: pointer;
    padding: 0.5rem;
    top: 1.8rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.topbar-layout .menu-icon{
  position: relative;
  right: auto;
  top: auto;
}
.arrow-down img{
  height: 3rem;
}
.section-title{
  position: relative;
  font-weight: 600;
}
.section-title:before{
  content: "";
    position: absolute;
    background-color: var(--bs-primary);
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    height: 0.2rem;
    bottom: -1.5rem;
    width: 60%;
}
.icon-block img{
  height: 6rem;
}
.counter-block{
  background-color: rgba(255,255,255,0.85);
}
.counter-block .counter-group{
  font-size: 4rem;
  font-weight: 100;
  color: var(--bs-primary);
}
.counter-block .sub-title{
  min-height: 3rem;
}
@-webkit-keyframes hover-jump {
  0%,10%,50%,100% { -webkit-transform: translate(0px, 0px);transform: translate(0px, 0px); }
  25%,75% { -webkit-transform: translate(0px, -10px);transform: translate(0px, -10px); }
}
@keyframes hover-jump {
  0%,10%,50%,100% { -webkit-transform: translate(0px, 0px);transform: translate(0px, 0px); }
  25%,75% { -webkit-transform: translate(0px, -10px);transform: translate(0px, -10px); }
}
.hover-jump{
  transform-box: fill-box;
  transform-origin: center;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.brands-block:hover .hover-jump{
  -webkit-animation: hover-jump 1s ease;
  animation: hover-jump 1s ease;
}
.fixed-height-block{

}
form .alert-dismissible .btn-close{
  top: 10px;
  right: 10px;
  padding: 0;
}
.form-control,.form-select{
  border-radius: 0;
}
.topbar-layout .main-banner{
  height: 60vh;
  margin-top: 6rem;
}
.topbar-layout.home .main-banner{
  height: 90vh;
  margin-top: 0rem;
}
.checklist-banner img{
  height: 12rem;
}
.index-block .index-icon{
  font-size: 4rem;
    height: 8rem;
    width: 8rem;
    min-width: 8rem;
    text-align: center;
    color: var(--bs-primary);
    position: absolute;
    background-color: var(--bs-gray);
    border-radius: 50%;
    z-index: 1;
}
.index-block .index-icon:before{
  content: "";
  position: absolute;
  background-image: var(--index-icon);
  background-size: cover;
  background-position: center;
  width: 80%;height: 80%;
    left: 10%;top: 10%;
}
.index-block .index-icon>span{
  position: relative;
  padding-top: 0.5rem;
}
.index-block .index-text{
  position: relative;
  padding-left: 8rem;
}
.header-bar{
  background-color: rgba(255,255,255,0.7);
}
@media (max-width: 991.98px) {
  .device-overlay{background-color: rgba(0,0,0,0.1);}
  .fixed-sidebar{
    padding-top: 3rem;
    -webkit-transform: translate(-25rem, 0rem);
    transform: translate(-25rem, 0rem);
  }
  .topbar{
    padding-top: 3rem;
    width: 17rem;
    top: 0rem;
    min-height: 100%;
    height: 100vh;
    background-color: var(--bs-blue);
    -webkit-transform: translate(-25rem, 0rem);
    transform: translate(-25rem, 0rem);
  }
  body.sidebar-show .fixed-sidebar,body.sidebar-show .topbar{
    -webkit-transform: translate(0rem, 0rem);
    transform: translate(0rem, 0rem);
  }
  .menu-icon:before{
    content: "";
    position: absolute;
    background-image: var(--menu-icon);
    background-size: cover;
    background-position: center;
    width: 60%;height: 60%;
    left: 20%;top: 20%;
  }
  body.sidebar-show .menu-icon{
    background-color: var(--bs-blue);
  }
  body.sidebar-show .menu-icon:before{
    background-image: var(--menu-icon-close);
  }
  .sidebar-overlay{
    content: "";
    position: fixed;
    left: 0;top: 6rem;
    width: 0%;height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
  }
  body.sidebar-show .sidebar-overlay{
    width: 100%;
  }
  .counter-block .counter-group{
    font-size: 2.5rem;
  }
  .topbar-logo img{
    height: 3rem;
  }
  body.topbar-layout header .header-block{
    height: 6rem;
  }
  .display-3{
    font-size: calc(1.525rem + 2.3vw);
  }
  .index-block .index-text>p{
    min-height: 4.5rem;
  }
  .counter-block .sub-title{
    min-height: 4rem;
  }
}
@media (min-width: 992px){
  .nav-item>a:hover::before{
    width: 30%;
  }
  body.fixed-sidebar-layout{
    padding-top: 0;
    padding-left: 17rem;
  }
  .logo {
    height: 150px;
  }
  .topbar-logo img{
    height: 4rem;
  }
  .icon-block img{
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .icon-block:hover img{
    transform: scale(1.3);
  }
  .image-block img{
    transform: scale(1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .image-block:hover img{
    transform: scale(1.1);
  }
  .hover-img-grayscale{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .hover-img-grayscale:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
  .topbar-overlay{
    background-color: rgba(0,0,0,0.3);
  }
  .shadow-block{
    transform: translate(0px, 0px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .shadow-block:hover{
    transform: translate(5px, -5px);
  }
}
