/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-main: #262525;
  --main-color: #262525;
  --color-second: #1e293b;
  --color-third: #67768e;
  --transition-base: 0.3s;
}
body {
  font-family: "Noto Sans", sans-serif;
  color: #444444;
  font-size: 14px;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-text {
  font-family: "Poppins";
  font-weight: 700;
  font-style: normal;
}

section {
  padding: 60px 0;
}

.rounded {
  border-radius: 50%;
}
.rounded-small {
  border-radius: 8px;
}
.overflow-hidden {
  overflow: hidden;
}
.absolute {
  position: absolute;
}
.z-1 {
  z-index: 1;
}
.margin-top-2 {
  margin-top: 2rem;
}
.margin-left-3 {
  margin-left: 3rem;
}
.uppercase {
  text-transform: uppercase;
}
.fw-900 {
  font-weight: 900;
}
.fs-10 {
  font-size: 10px !important;
}
.fs-11 {
  font-size: 11px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-17 {
  font-size: 17px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-19 {
  font-size: 19px !important;
}
.fs-20 {
  font-size: 20px !important;
}
.fs-21 {
  font-size: 21px !important;
}
.fs-22 {
  font-size: 22px !important;
}
.fs-23 {
  font-size: 23px !important;
}
.fs-24 {
  font-size: 24px !important;
}
.fs-25 {
  font-size: 25px !important;
}
.fs-28 {
  font-size: 28px !important;
}
.fs-30 {
  font-size: 30px !important;
}
.fs-62 {
  font-size: 62px !important;
}
.fs-82 {
  font-size: 82px !important;
}
.fs-default {
  font-size: 14px;
}
.fs-medium {
  font-size: 18px;
}
.fs-large {
  font-size: 22px;
}
.center {
  text-align: center;
}
.bold {
  font-weight: bold;
}
.bg-cover {
  background-size: cover;
}
.main-color {
  color: var(--color-main);
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.overflow-hidden {
  overflow: hidden !important;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.justify-center {
  justify-content: center;
}
.justify {
  text-align: justify;
}
.rounded-medium {
  border-radius: 30px;
}
.relative {
  position: relative;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.line-clamp-2,
.line-clamp-3,
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .fs-default {
    font-size: 14px !important;
  }
  .fs-medium {
    font-size: 18px !important;
  }
  .fs-large {
    font-size: 22px !important;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #2DA5E2;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: var(--color-third);
  text-decoration: underline;
}

#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Noto Sans", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #000;
}

#header .logo img {
  max-height: 55px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

/* .navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color:#262525;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
} */

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #262525;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.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: #000;
}

.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;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  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(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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: #000;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
section,div{
  scroll-margin-top: 30px;
}
/*--------------------------------------------------------------
# Slider Home
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 84vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.6);
}

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

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

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

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

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #d9232d;
}

#hero .btn-get-started {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #2DA5E2;
}

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

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

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

@media (min-width: 1024px) {

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

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

.bg-sky{
  background-color:#EFF4FB;
}
#services .card:not(.no-hover):hover {
  transform: translateY(-7.5px);
}
#services .card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  background-color: #fff;
  -webkit-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}
.pre-title {
  width: fit-content;
  margin: auto;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}
section.featured:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: calc(100% - 50px);
  left: calc(10% - 70px);
  width: 100px;
  height: 100px;
  background-image: url(bullet.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
}
#hero .carousel-item{
  animation: slide 24s linear infinite;
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.project-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.project-item .project-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-item .project-img a img {
  width: 100%;
  transition: 1.3s all ease;
  border-radius: 0px;
}
.project-item .project-content {
  position: absolute;
  padding: 24px 25px;
  opacity: 1;
  z-index: 10;
  top: 0;
  border: none;
  bottom: 0;
  left: 0;
  right: 0;
}
.project-item .project-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: #00000000;
  transition: all .3s ease 0s;
  opacity: 1;
}
.project-item .project-content .project-inner {
  position: absolute;
  bottom: 0;
  width: auto;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  transition: all .5s ease;
  width: 100%;
  background: #fff;
  padding: 15px 25px;
  height: 80px;
}
.project-item .project-content .project-inner .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.project-item .project-content .project-inner .title a {
  color: #010d14;
}
.project-item .project-content .project-inner .category {
  color: #fff;
  display: block;
  flex: 0 0 100%;
}
.project-item .project-content .project-inner .category a {
  color: #333333;
}
.project-item .project-content .p-icon {
  position: absolute;
  right: 0;
  width: 87px;
  height: 80px;
  text-align: center;
  background: #ffb703;
  z-index: 7;
  bottom: 0;
  line-height: 80px;
  transition: all 0.4s ease-in-out 0s;
}
.project-item:hover .project-img a img {
  transform: scale(1.2);
}
/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.ctaku{
  background-color: #004aad;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.call-to-action-skew .call-to-action-left {
  position: relative;
}
.call-to-action-left {
  color: #fff;
}
.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}
.call-to-action-skew .call-to-action-left > * {
  position: relative;
  z-index: 2;
}

.call-to-action-left h1, .call-to-action-left h2, .call-to-action-left h3, .call-to-action-left h4, .call-to-action-left h5, .call-to-action-left h6, .call-to-action-left p {
  color: #fff;
}
.m-b10 {
  margin-bottom: 10px;
}
.call-to-action-left p:last-child {
  margin-bottom: 0;
}
.call-to-action-skew .call-to-action-left > * {
  position: relative;
  z-index: 2;
}
.site-footer p {
  line-height: 20px;
}
.site-footer p, .site-footer li {
  font-size: 13px;
  line-height: 20px;
}
.call-to-action-right {
  text-align: right;
}
.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}
.site-button-secondry {
  background-color: #2DA5E2;
}
.site-button-secondry:hover {
  color: #fff;
}

.site-button, .site-button-secondry {
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  outline: none;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  line-height: 1.42857;
  margin-left: -1px;
  text-decoration: none !important;
}
.footer-main-home {
  /* background-image: url(../images/footer-bg.jpg);
  background-size: cover; */
}
.logo-panel img {
  margin: 15px 0;
  border: 1px solid #ededed;
  border-radius: 2px;
  transition: all 200ms ease-out;
  box-shadow: 0 1px 2px #ededed;
  opacity: 1;
  max-width: 100%;
  height: 57px;
  padding: 10px;
}
.logo-panel img:hover {
  border: 1px solid #2DA5E2;
  opacity: 1;
}
.bg1 {
  background: url(../images/about-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rts-our-offer-area-main {
  position: relative;
  z-index: 1;
}
.rts-our-offer-area-main .bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-item {
  position: relative;
  z-index: 11;
  transition: all 500ms ease;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
.blog-item .image-wrap {
  position: relative;
  overflow: hidden;
  max-height:237px;
}
.blog-item .image-wrap a img {
  transition: all 0.5s ease 0s;
  transform: scale(1);
  width:100%;
}
.blog-item:hover .image-wrap a img {
  transform: scale(1.1);
}
.blog-item .blog-content {
  transition: all 500ms ease;
  position: relative;
  padding: 30px 40px 48px 40px;
  background: #fff;
}
.blog-item .blog-content .blog-meta {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 10px;
}
.blog-item .blog-content .blog-meta .date {
  font-size: 14px;
  margin-right: 25px;
  font-weight: 500;
}
.blog-item .blog-content .blog-meta .date i {
  color: #2DA5E2;
  margin-right: 6px;
  font-weight: 900;
}

.blog-item .blog-content .blog-meta .admin {
    font-size: 14px;
    font-weight: 500;
}
.blog-item .blog-content .blog-meta .admin i {
  color: #2DA5E2;
  margin-right: 6px;
  font-weight: 900;
}
.blog-item .blog-content .blog-title {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 500;
  margin-bottom: 31px;
}
.blog-button a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #2DA5E2;
  padding: 14px 25px 12px 25px;
  color: #fff;
  transition: all ease .3s;
}
/*=============================================
=            Project  Detail          =
=============================================*/
ul.services-list li a {
  display: block;
  padding: 16px 18px;
  transition: all .5s ease;
  position: relative;
  background: #e8eaee;
  color: #010d14;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
ul.services-list li a:before {
  content: "\f054";
  position: absolute;
  right: 12px;
  top: 16px;
  font-family: "Font Awesome 5 Free";
  color: #010d14;
  font-weight: 900;
}
ul.services-list li a:hover {
  background: #EF500F;
  color: #fff;
}
ul.services-list li a:hover:before {
  color: #fff;
}
ul.services-list li a.active {
  background: #EF500F;
  color: #fff;
}
ul.services-list li a.active:before {
  color: #fff;
}
ul.services-item-list li {
  padding-bottom: calc(16px);
}
ul.services-item-list li span img {
  margin-top: -12px;
}
ul.services-item-list li .list-text {
  font-size: 18px;
  color: #000000;
  font-family: Roboto, sans-serif;
  padding-left: 6px;
}
ul.services-item-list li:last-child {
  padding-bottom: 0;
}
ul.check-lists .list-item {
  padding-bottom: calc(6px);
}
ul.check-lists .list-item .icon-list-icon i {
  color: #FFB703;
  font-size: 18px;
}
ul.check-lists .list-item .icon-list-icon i:before {
  font-weight: 900;
}
ul.check-lists .list-item .list-text {
  font-size: 18px;
  line-height: 29px;
  font-weight: 500;
  color: #010d14;
  padding-left: 5px;
}
ul.check-lists.paste-list-style2 .list-item {
  padding-bottom: calc(9px);
}
ul.check-lists.paste-list-style2 .list-item .icon-list-icon i {
  color: #70bf4a;
  font-size: 18px;
}
ul.check-lists.paste-list-style2 .list-item .list-text {
  font-weight: 700;
  padding-left: 8px;
}
ul.check-lists.check-list1 .icon-list-icon i {
  color: #ff6314;
}
ul.check-lists.check-list1 .list-text {
  color: #010d14;
  padding-left: 5px;
  font-weight: 700;
}
ul.check-lists2 li {
  padding-left: 32px;
  position: relative;
  margin-top: 12px;
  margin-bottom: 15px;
}
ul.check-lists2 li:before {
  content: "\f160";
  font-size: 8px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #010d14;
  background: #ffb703;
  margin: 0;
  display: inline-block;
  font-family: uicons-regular-rounded !important;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
ul.check-lists3 li {
  padding-left: 35px;
  position: relative;
  margin-top: 12px;
  margin-bottom: 15px;
}
ul.check-lists3 li:before {
  content: "\f160";
  font-size: 18px;
  color: #ffb703;
  margin: 0;
  display: inline-block;
  font-family: uicons-regular-rounded !important;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 0;
  top: -2px;
}
ul.check-lists3.check-single {
  color: #7a7a7a;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 20px 32px;
  border-radius: 4px;
}

.contact .info-box i {
  font-size: 32px;
  color: #f64e27;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f64e27;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}


/*--------------------------------------------------------------
# Galeri
--------------------------------------------------------------*/
.galeri-item {
  background: white;
  padding: 10px;
  border-radius: 6px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}
.galeri-item-thumb {
  border-radius: 6px;
  overflow: hidden;
}
.galeri-item-thumb img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.galeri-item:hover img {
  transform: scale(1.1);
}
.galeri-item-content {
  position: relative;
  padding: 10px 15px;
}
.galeri-tag {
  position: absolute;
  top: -13px;
  color: var(--tg-white);
  font-family: var(--tg-heading-font-family);
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  background: var(--tg-primary-color);
  display: inline-block;
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 15px;
}
.galeri-item img, .img {
  max-width: 100%;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
#galeri{
  overflow: hidden;
}
.gallery-slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;

  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.mb-12 {
  margin-bottom: 3.5rem !important;
}
.mt-11 {
  margin-top: 3rem !important;
}
.py-13 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
@media (min-width: 768px) {
  .py-md-15 {
      padding-top: 5rem !important;
      padding-bottom: 5rem !important;
  }
}
.bg-blue{
  background-color:#5271FF
}
.btn:not(.btn-link):hover {
  transform: translateY(-.15rem);
  box-shadow: 0 .25rem .75rem rgba(30, 34, 40, .15);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
  box-shadow: var(--bs-btn-active-shadow);
}
.btn-primary {
  --bs-navy: #343f52;
  --bs-primary: var(--bs-navy);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
}
.btn-primary {
  color: #fff;
  background-color: #2DA5E2;
  border-color: #2DA5E2;
}
.btn-primary:hover {
  color: #fff;
  background-color: #004aad;
  border-color: #004aad;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: #fff;
  background-color: #004aad;
  border-color: #004aad;
  box-shadow: #fff;;
}
.widget-title{
  color:#fff;
}
.footer-social-section .social-title {
  color: #ffffff;
}
.footer-social-section .social-link li a {
  color: #fff;
  background: #2DA5E2;
}
.footer-social-section .social-link li a:hover {
  color: #ffffff;
  background: var(--color-main);
}

.footer-social-section .social-title {
  font-size: 14px;
  color: #292929;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}
.footer-social-section .social-link li {
  display: inline-block;
  margin-right: 8px;
}
.footer-social-section .social-link li a {
  display: inline-block;
  color: #fff;
  background: #0849a2;
  text-transform: capitalize;
  text-align: center;
  line-height: 40px;
  width: 40px;
  z-index: 1;
  border-radius: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-social-section .social-link li a:hover {
  background: #2DA5E2;
  color: #ffffff;
}

/*=============================================
=            scroll top            =
=============================================*/
#scroll-top {
  position: fixed;
  bottom: 210px;
  right: -45px;
  text-align: center;
  cursor: pointer;
  border: 2px solid #2DA5E2;
  color: #fff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding: 18px 20px;
  font-weight: 600;
  text-transform: uppercase;
  background: #2DA5E2;
  z-index: 9;
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #scroll-top {
    bottom: 130px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  #scroll-top {
    bottom: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #scroll-top {
    bottom: 130px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-top {
    bottom: 50px;
  }
}
@media only screen and (max-width: 479px) {
  #scroll-top {
    padding: 10px 15px;
  }
}
#scroll-top span {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  #scroll-top span {
    display: none;
  }
}
#scroll-top:hover {
  color: #fff;
  background-color:#084298;
  border-color: #084298;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.margin-top-3-5 {
  margin-top: 3.5rem;
}
a:hover {
  text-decoration: none;
}

/*=============================================
=            breadcrumb            =
=============================================*/
.breadcrumb-content {
  text-align: center;
  position: relative;
}
.breadcrumb-content__title {
  font-size: 36px;
  color: #fff;
  line-height: 36px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-content__title {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .breadcrumb-content__title {
    font-size: 25px;
    line-height: 25px;
  }
}
.breadcrumb-content__page-map li {
  color: #fff;
  line-height: 25px;
  display: inline-block;
}
.breadcrumb-content__page-map li a {
  color: #fff;
}
.breadcrumb-content__page-map li:after {
  content: ">";
  margin: 0 5px;
}
.breadcrumb-content__page-map li:last-child:after {
  display: none;
}
.breadcrumb-content__page-map li a:hover {
  color: var(--color-second);
}
.breadcrumb-content__page-map li.active {
  color: #fff;
}

.breadcrumb-wrapper {
  padding-top: 40px;
  padding-bottom: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .breadcrumb-wrapper {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-wrapper {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrapper {
    padding: 70px 0;
  }
}

.breadcrumb-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.breadcrumb-area {
  position: relative;
}
.breadcrumb-area::before {
  content: "";
  position: absolute;
  background-color: #0000005e;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.wp-pagenavi {
  width: 100%;
  /* clear: both; */
  font-size: initial;
  padding: 5px 0;
  text-align: center;
  margin: 5px auto 80px auto;
  line-height: 45px;
  float: left;
}
.pages {
  color: #000;
  width: auto;
  height: auto;
  margin: 0 3px;
  border: 1px solid #e9e9e9;
  padding: 8px;
  background-color: #fff;
}
.current-pag {
  color: #333;
  width: auto;
  height: auto;
  margin: 0;
  border: 1px solid #e9e9e9;
  padding: 8px;
  margin-right: 3px;
}
.current-pag {
  color: #ffffff;
  background-color: #000000;
}
.wp-pagenavi a:hover {
  border: 1px solid #e9e9e9;
  color: #fff;
  background-color: #000000;
}
.wp-pagenavi a {
  color: #000;
  text-decoration: none;
  border: 1px solid #e9e9e9;
  padding: 8px;
  background-color: #fff;
  margin: 5px 0;
}

/*=============================================
=            Welcome Text            =
=============================================*/
.rounded img {
  border-radius: .4rem;
}
figure img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
}
.rounded {
  border-radius: .4rem !important;
}
.shadow-lg {
  box-shadow: 0 .25rem 1.75rem rgba(30, 34, 40, .07) !important;
}
.underline-3 {
  position: relative;
  z-index: 1;
}
.underline-3:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  left: 50%;
  bottom: -.1em;
  width: 110%;
  height: .3em;
  transform: translateX(-50%);
}
.underline-3.style-2.yellow:after {
  background-image: url('line.png');
}
.display-3 {
  font-size: calc(1.335rem + 1.02vw);
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
      font-size: 2.1rem;
  }
}
.accordion-wrapper .card-header button, .badge, .btn, .btn.btn-circle .number, .collapse-link, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6, .dropdown-item, .filter:not(.basic-filter), .filter:not(.basic-filter) ul li a, .h1, .h2, .h3, .h4, .h5, .h6, .meta, .more, .nav-link, .post-category, h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
.icon-why {
  width: 3rem;
  height: 3rem;
}
.ls-sm {
  letter-spacing: -.03em !important;
}
.text-justify{
  text-align:justify;
}
.text-sky{
  color:#5271FF !important;
}
.text-primary{
  color:#2DA5E2 !important;
}

.rts-working-process-area-13 {
  position: relative;
  background-image: url(../images/bg_new.png);
}
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.rts-section-gap {
  padding: 120px 0;
}
.pr--30 {
  padding-right: 30px !important;
}
.rts-working-process-area-13 .left-image-process img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 120px;
  width:724px;
}
.title-area-wrapper-13 span {
  color: #2DA5E2;
}

.title-area-wrapper-13 .title {
  margin-top: 15px;
}
.rts-btn {
  padding: 20px 33px;
  line-height: 10px;
  max-width: max-content;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 2px;
  display: block;
  min-width: max-content;
}
.index-twelve .btn-primary {
  background: #FF3E3E;
}
.rts-btn.btn-primary {
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color:#2DA5E2;
}
.rts-btn.btn-primary::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  transform: translateY(110%);
  transition: 0.3s;
  transition-delay: 0.1s;
  z-index: -1;
}
/*=============================================
=            Artikel Detail            =
=============================================*/
.sidebar-widget-02 {
  margin-top: 50px;
  padding: 30px;
  border: 1px solid #f1f1f1;
}

.widget-title-02 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  color: #383838;
  margin-bottom: 0;
  padding-left: 1rem;
}
.widget-title-02::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 14px;
  background-color: #332C2B;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-search-02 {
  position: relative;
}
.widget-search-02 input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  padding-right: 75px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  font-weight: 500;
  font-family: "Lora", sans-serif;
  color: #919090;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 0;
  background-color: #ffffff;
}
.widget-search-02 input:focus {
  outline: none;
  border-color: #332C2B;
}
.widget-search-02 input::-webkit-input-placeholder {
  opacity: 1;
}
.widget-search-02 input:-moz-placeholder {
  opacity: 1;
}
.widget-search-02 input::-moz-placeholder {
  opacity: 1;
}
.widget-search-02 input:-ms-input-placeholder {
  opacity: 1;
}
.widget-search-02 button {
  position: absolute;
  top: 0px;
  right: 0px;
  border: 0;
  padding: 0;
  width: 64px;
  height: 50px;
  color: #ffffff;
  text-align: center;
  background: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #332C2B;
}

.widget-recent-post {
  padding-top: 5px;
}

.single-recent-post {
  padding: 25px 0;
  border-bottom: 1px dashed #f1f1f1;
}
.single-recent-post:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.single-recent-post .blog-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.single-recent-post .blog-meta li {
  font-size: 15px;
  font-weight: 500;
  color: #545454;
  font-family: "Lora", sans-serif;
  display: inherit;
}
.single-recent-post .blog-meta li i {
  font-size: 18px;
  color: #000000;
  margin-right: 8px;
}
.single-recent-post .blog-meta li + li {
  margin-left: 20px;
}
.single-recent-post .title {
  margin-bottom: 0;
}
.single-recent-post .title a {
  margin-top: 8px;
  display: inline-block;
  color: #383838;
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-recent-post .title a {
    font-size: 16px;
  }
}
.single-recent-post .title a:hover {
  color: #332C2B;
}

.widget-link {
  padding-top: 12px;
}
.widget-link li {
  padding: 10px 0;
  border-bottom: 1px dashed #f1f1f1;
}
.widget-link li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.widget-link li a {
  font-size: 18px;
  font-weight: 500;
  color: #545454;
  font-family: "Lora", sans-serif;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.widget-link li a:hover {
  color: #332C2B;
}
.blog-details-wrapper {
  margin-top: 50px;
}
.blog-details-wrapper img {
  width: 100%;
}
.blog-details-wrapper .blog-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.blog-details-wrapper .blog-meta li {
  font-size: 15px;
  font-weight: 500;
  color: #545454;
  font-family: "Lora", sans-serif;
  display: inherit;
}
.blog-details-wrapper .blog-meta li i {
  font-size: 18px;
  color: #000000;
  margin-right: 8px;
}
.blog-details-wrapper .blog-meta li + li {
  margin-left: 20px;
}
.blog-details-wrapper .title {
  margin-bottom: 0;
  margin-top: 10px;
  display: inline-block;
  color: #383838;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .blog-details-wrapper .title {
    font-size: 28px;
  }
}
.blog-details-wrapper p {
  margin-top: 25px;
  margin-bottom: 0;
}
.blog-details-wrapper .blog-dec-images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -15px;
  margin-left: -15px;
  padding-top: 20px;
  padding-bottom: 25px;
}
.blog-details-wrapper .blog-dec-images .dec-col-1 {
  padding: 0 15px;
  width: 62.4%;
}
.blog-details-wrapper .blog-dec-images .dec-col-2 {
  padding: 0 15px;
  width: 37.6%;
}
.blog-details-wrapper .blog-dec-images .single-dec-img {
  margin-top: 30px;
}
.blog-details-wrapper .blog-dec-images .single-dec-img img {
  width: 100%;
}

.blog-auhtor-social {
  padding: 0px 20px 7px;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.blog-auhtor-social .blog-auhtor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7px;
}
.blog-auhtor-social .blog-auhtor .auhtor-thumb img {
  width: 36px;
  border-radius: 50%;
  border: 1px solid #332C2B;
}
.blog-auhtor-social .blog-auhtor .auhtor-content {
  padding-left: 15px;
}
.blog-auhtor-social .blog-auhtor .auhtor-content p {
  color: #777777;
  font-size: 14px;
  font-family: "Lora", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-auhtor-social .blog-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
}
.blog-auhtor-social .blog-social .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.blog-auhtor-social .blog-social .social li + li {
  margin-left: 20px;
}
.blog-auhtor-social .blog-social .social li a {
  font-size: 14px;
  color: #000000;
}
.blog-auhtor-social .blog-social .social li a:hover {
  color: #332C2B;
}
.blog-auhtor-social .blog-social .share-count {
  font-size: 14px;
  color: #000000;
  margin-left: 40px;
}
@media only screen and (max-width: 575px) {
  .blog-auhtor-social .blog-social .share-count {
    margin-left: 20px;
  }
}
.blog-auhtor-social .blog-social .share-count:hover {
  color: #332C2B;
}
/*--------------------------------------------------------------
# Testimoni
--------------------------------------------------------------*/
.rounded-2xl {
  border-radius: 1rem;
}
.h-full {
  height: 100%;
}
.p-8 {
  padding: 2rem;
}
.heading6 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
}
.text-button {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}
.bg-white{
  background-color:#fff;
}
.text-yellow {
  --tw-text-opacity: 1;
  color: rgb(236 176 24 / var(--tw-text-opacity));
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 8px !important;
  background: transparent;
  border: 1px solid #3c63ae;
  opacity: 1 !important;
  transition: all ease 0.5s;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  transition: all ease 0.5s;
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #3c63ae;
}
.pagination-mt40 .swiper-pagination-fraction, .pagination-mt40 .swiper-pagination-custom, .pagination-mt40 .swiper-horizontal > .swiper-pagination-bullets, .pagination-mt40 .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  padding-top: 40px;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.myow{
  min-height:280px;
}
.swiper-slide {
  cursor: grab;
}
/*=============================================
=            Custom            =
=============================================*/
.nav-link {
  color: #495057;
}
.sidebar-wrap {
  position: sticky;
  top: 100px;
}
.diagonal-section {
  position: relative;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  transform: skewY(10deg);
  transform-origin: top left;
}
.rounded-xl{
  border-radius:1rem;
}
.content {
  position: relative;
  z-index: 1;
  padding: 2rem; /* Sesuaikan dengan kebutuhan */
}
.box-hub .bob{
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  text-align: center;
}

.box-hub .wa{
  background-color: #5EB661;
}
.box-hub .web{
  background-color: #FFDA45;
}
.box-hub .ig{
  background-color: #405DE6;
}
.box-hub .bob i{
  color: #fff;
  font-size:35px;
}
.office-frame iframe{
  border-radius:10px;
}
.box-hub ul{
  padding-left: 2rem;
  min-height: 126px;
}
.box-hub ul li:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: -1.35rem;
  padding-right: 0.5rem;
  content: "\f00c";
  color:#5271FF;
}

.diag {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  margin: 0;
}
.diag:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(190deg, #F0F0F0 55%, #fff 25%);
}
.box-hub2 ul {
  padding-left: 2rem;
}
.box-hub2 ul  li{
  margin-bottom:10px;
  font-weight:bold;
}
.bg-primary {
  background-color: #17aae4 !important;
}
.box-hub2 ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: -1.35rem;
  padding-right: 0.5rem;
  content: "\f00c";
  color: #5271FF;
  background-color: #EDF0FF;
  padding: 5px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
}
.w-80px{
  width:80px;
}
.page-title {
  --default-color: #17aae4;
  --background-color: 
color-mix(in srgb, var(--default-color), transparent 90%);
  color: #000000c9;
  background-color: var(--background-color);
  padding: 15px 0;
  position: relative;
  margin-top: 0;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.page-title h1{
  font-size:18px;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: 
color-mix(in srgb, var(--default-color), transparent 70%);
  color: #000;
}
.btn-success {
  color: #fff;
  background-color: #00c76b;
  border-color: #00c76b;
}
.copyright-text{
    text-align:center;
}
.copyright-text p{
    font-size:10px;
    color:#fff;
}
@media screen and (min-width: 768px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

@media (min-width: 1500px) {
  .slider-carousel .wrap-img {
    height: 98px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1500px) {

}

@media screen and (max-width: 768px) {
  #topbar .contact-info i a,
  #topbar .contact-info i span {
    font-size: 11px;
  }
  .navbar-mobile .dropdown ul {
    display: block;
  }
  #header.fixed-top {
    z-index: 33333333 !important;
  }
  .catto h2,
  .catto h1 {
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
  }
  .catto-height {
    padding: 30px 0;
    height: 30vh;
  }
  .kapula {
    flex-direction: column;
    height: 20vh;
    justify-content: space-between;
  }
  .kapula h2 {
    text-align: end;
  }
  .wrap-layanan{
    height: auto;
  }
  #header .logo img {
    max-height: 55px;
  }
  .rts-section-gap {
    padding: 35px 0;
  }
  .bgks{
    background-size: cover;
  }
  .call-to-action-right {
    text-align: start;
  }
  .blog-details-wrapper img {
    width: 100%;
    height: auto;
  }

  .box-hub2{
    margin-top: 30px;
  }
}
