/*
* Theme Name: BusinessPerfect
* Theme URI: milansavov.com/freebies/businessperfect
* Author: Milan Savov
* Author URI: milansavov.com
* Version: 1.0
* */

/* TABLE OF CONTENT 
*
* - CUSTOM RESETS
    - Buttons
    - Forms
* - ELEMENTS
    - Tabs
    - Accordion
    - Slick Slider
* - LAYOUT
* - HEADER 
    - Site Logo
    - Navigation
* - HERO (BANNER)
* - HOMEPAGE SECTIONS
    - Quote 
    - Featured Works
    - Service 
    - Counter 
    - Team 
    - Clients 
    - Social networks 
* - PAGES
    - ABOUT-US
    - PORTFOLIO
    - PORTFOLIO ITEM
    - BLOG
    - BLOG POST
    - CONTACT
* - FOOTER
*
*/

/* CUSTOM RESETS
================================================== */
a { 
    color: #ffd500;
}

a:focus,
a:hover {
    color: #3B3A36;
    outline: 0 none;
    text-decoration: none;
}

a,
button {
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/* 
 * Buttons 
 */
.btn {
    background-color: #fff;
    color: #292a2c;
    font-size: 16px;
    line-height: 45px;
    padding: 0 50px;
    border: 0;
    border-radius: 0;
}

.btn i {
  font-size: 20px;
}

/* btn sizes */
.btn-small {
    font-size: 12px;
    line-height: 24px;
    padding: 0 20px;
}

.btn-medium {
    font-size: 14px;
    line-height: 36px;
    padding: 0 30px;   
}

/* btn colors */
.btn-yellow {
    background-color: #ffd500; 
    color: #fff;
}

.btn-transparent {
    border:1px solid #e6e6e8;
    background: transparent;
}

.btn-yellow-transparent {
    color: #de614b;
    border: 1px solid #de614b;
}

.btn:hover,
.btn:focus {
    background-color: #d5d5d5;
    outline: none;
    box-shadow: none;
}

.btn-yellow-border {
    border: 1px solid #ffd500;
}

.btn.btn-yellow-border:hover,
.btn.btn-yellow-border:focus {
    background-color: #ffd500; 
    color: #fff; 
}

.btn-gray-border {
    border: 1px solid #d5d5d5;
}

.btn.btn-gray-border:hover,
.btn.btn-gray-border:focus {
    background-color: #d5d5d5;  
}


/* 
 * Forms 
 */

 /* Input fields */
.form-control {
    position: relative;
    height: 40px;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: none;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    outline: 0 none transparent;
    transition: border-color 0.25s ease-in-out;
    -moz-transition: border-color 0.25s ease-in-out;
    -webkit-transition: border-color 0.25s ease-in-out;
    -o-transition: border-color 0.25s ease-in-out;
    -ms-transition: border-color 0.25s ease-in-out;
}

textarea {
    min-height: 160px;
    resize: none;
}

.form-control:focus {
    border-color: #ffd500;
    box-shadow: none;
}

.form-horizontal a {
    display: inline-block;
}

input[type=search] + button {
    border: 0;
    background: none;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

input[type=search] + button:hover,
input[type=search] + button:focus {
    color: #ffd500;
}

/* Checkbox fields */
input[type=checkbox],
input[type=radio] {
    position: absolute;
    visibility: hidden;
    height: auto;
    margin-top: 0;
}

.checkbox {
    margin: 0;
} 

.checkbox + .checkbox,
.radio-btn + .radio-btn {
    margin-top: 15px;
}

.checkbox [type="checkbox"]:not(:checked) + label,
.checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.checkbox [type="checkbox"]:not(:checked) + label:before,
.checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    width: 20px; 
    height: 20px;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    box-shadow: none;
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after,
.checkbox [type="checkbox"]:checked + label:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 3px;
    font-size: 15px;
    color: #ffd500;;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
      transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

.checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
}

.checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.checkbox [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.checkbox [type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.checkbox [type="checkbox"]:disabled + label {
    color: #aaa;
}

.checkbox [type="checkbox"]:checked:focus + label:before,
.checkbox [type="checkbox"]:not(:checked):focus + label:before {
    border: 1px dotted #ffd500;
}

.checkbox [type="checkbox"]:not(:checked) + label:hover:before,
.checkbox [type="checkbox"]:checked + label:hover:before {
    border: 1px solid #ffd500;
}

/* Radiobutton fields */
.radio-btn label {
    font-weight: 400;
}

.radio-btn [type="radio"]:not(:checked) + label,
.radio-btn [type="radio"]:checked + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-btn [type="radio"]:not(:checked) + label:before,
.radio-btn [type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left:0; 
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    border-radius: 50px;
    box-shadow: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: border-color .2s;
    -webkit-transition: border-color .2s;
    -ms-transition: border-color .2s;
    -o-transition: border-color .2s;
    -ms-transition: border-color .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after,
.radio-btn [type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 4px;
    background-color: #ffd500;
    border-radius: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: opacity .2s;
    -webkit-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
}

.radio-btn [type="radio"]:not(:checked) + label:after {
    opacity: 0;
}
.radio-btn [type="radio"]:checked + label:after {
    opacity: 1;
}

.radio-btn [type="radio"]:disabled:not(:checked) + label:before,
.radio-btn [type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.radio-btn [type="radio"]:disabled:checked + label:after {
    color: #999;
}

.radio-btn [type="radio"]:disabled + label {
    color: #aaa;
}

.radio-btn [type="radio"]:checked:focus + label:before,
.radio-btn [type="radio"]:not(:checked):focus + label:before {
    border: 1px dotted #ffd500;
}

.radio-btn [type="radio"]:checked + label:hover:before,
.radio-btn [type="radio"]:not(:checked) + label:hover:before {
    border: 1px solid #ffd500;
}

/* Selectpicker */
.selectpicker-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.selectpicker {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    width: 220px;
    height: 40px;
}

.selectpicker-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 15px;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;    
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.selectpicker-styled:after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.selectpicker-styled:hover,
.selectpicker-styled:active, 
.selectpicker-styled.active {
    border-color: #ffd500;
}

.selectpicker-styled:active:after,
.selectpicker-styled.active:after {
    content: "\f106";
}

.selectpicker-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #f9f8f8;
}

.selectpicker-options li {
    padding: 12px 15px;
    border: 1px solid #ffd500;
    border-top: 0; 
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.selectpicker-options li:hover {
    color: #ffd500;
    border-color: #ffd500;
}

/* ELEMENTS
================================================== */
/*  Tabs  */
.tab-style {
    border-bottom: none;
}

.tab-style + .tab-content {
    padding: 15px;
    background-color: #f9f8f8;
}

.nav-tabs.tab-style > li.active > a {
    background-color: #ffd500;
    border: 1px solid #ffd500;
}

.nav-tabs.tab-style > li > a {
    position: relative;
    color: #333333;
    margin-right: 0;
    background-color: #f9f8f8;
    border: 1px solid #f9f8f8;
    border-radius: 0;
}

.nav-tabs.tab-style > li + li {
    margin-left: 10px;
}

.nav-tabs.tab-style > li > a:hover {
    border-color: #ffd500;
}

/* Accordion */
.accordion.panel-group {
    margin-bottom: 0;
}

.accordion.panel-group .panel + .panel {
    margin-top: 0;
}

.accordion .panel {
    border: 0;
    box-shadow: none;
}

.accordion .collapsed {
    height: auto;
}

.accordion .panel-heading {
    background-color: transparent;
    padding: 0;
}

.accordion .panel-heading a {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 40px 10px 15px;
    color: #333;
    background-color: #ffd500;
}

.accordion .panel-heading a.collapsed {
    background-color: #f9f8f8;
}

.accordion .panel-heading a.collapsed:hover,
.accordion.accordion-gray .panel-heading a.collapsed:hover{
    background-color: #ffd500;   
}

.accordion .panel-heading a.collapsed::after {
  content: "\f107";
}

.accordion .panel-heading a::after {
  font-family: "FontAwesome";
  content: "\f106";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.accordion .panel-group .panel-heading + .panel-collapse > .panel-body,
.accordion .panel-default > .panel-heading + .panel-collapse > .panel-body {
  background-color: #f9f8f8;
  border: none;
}

/* Accordion-gray */
.accordion.accordion-gray  .panel-heading a {
  color: #fff;
}

.accordion.accordion-gray .panel-heading a.collapsed {
  background-color: #3B3A36;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list  {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide{
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

/* LAYOUT
================================================== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

/* Background colors */
.gray-bg {
  background-color: #eee;
}

.yellow-bg {
  background-color: #ffd500;  
}

.black-bg {
  background-color: #000;
}

.light-gray-bg {
  background-color: #f9f8f8;
}

.transparent-bg {
  background: transparent;
}

/* Hover backgrounds socials */
a.twitter-bg:hover {
  background-color: #55acee;
  border-color: #55acee; 
}

a.facebook-bg:hover{
  background-color: #3b5998;
  border-color: #3b5998;
}

a.google-plus-bg:hover{
  background-color: #dd4b39;
  border-color: #dd4b39;
} 

a.message-bg:hover {
  background-color: #ff6600;
}

a.linkedin-bg:hover {
  background-color: #007bb5;
  border-color: #007bb5;
}

a.instagram-bg:hover {
  background-color: #125688;
  border-color: #125688;
}

a.white-text:hover {
  color: #333; 
} 

/* Text colors */
.white-text {
  color: #fff;
}

.gray-text {
  color: #333;
}

.yellow-text {
  color: #ffd500;  
}

/* Text styles */
.italic-text {
  font-style: italic;
}

.serif-text {
  font-family: 'Times new roman', serif;
  font-size: 26px;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  border-radius: 0;
  background-color: transparent;
  padding-left: 0px;
}

.breadcrumb li a {
  color: #777e88;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  color: #ffd500;
}

/* Pagination */
.pagination {
  margin: 0;
  vertical-align: middle;
}

.pagination > li > a {
  border: none;
  color: #292a2c;
  background-color: #f9f8f8;
  padding: 10px 15px;
  font-size: 12px;
}

.pagination > li + li > a {
  margin-left: 5px;
}

.pagination > li.active > a,
.pagination > li > a:hover,
.pagination > li.active > a:hover {
  background-color: #ffd500;
  color: #fff;
}

.pagination > li:first-child > a {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination > li:last-child > a {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination > li.more > a {
  margin-left: 0;
  padding: 10px 5px;
  pointer-events: none;
  background-color: transparent;
}

.pagination > li.more + li > a {
  margin-left: 0;
}

/* small-title */
.small-title {
  font-size: 16px;
  margin: 0;
}

/* blockquote */
blockquote {
  padding: 0;
  border: 0;
  font-family: 'Times new roman'; 
}

/* Margin and padding resets */
.mb-0 {margin-bottom: 0px!important;}
.mb-10 {margin-bottom: 10px;}
.mb-30 {margin-bottom: 30px!important;}
.mb-50 {margin-bottom: 50px!important;}
.mb-120 {margin-bottom: 120px!important;}
.my-90 {margin: 90px 0;}
.pb-80 {padding-bottom: 80px!important;}
.pl-100 {padding-left: 100px;}

/* HEADER
================================================== */
.site-header {
  padding: 10px 0;
  background-color: rgba(59,58,54,0);
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(226,226,226,0);
  z-index: 3;
}

.site-header-fill {
  background-color: rgba(59,58,54,1);    
  border-bottom: 1px solid rgba(226,226,226,1);
}

/* Site-logo */
.site-title {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
}

.site-title span {
  font-weight: 700;
}

.site-title a:hover {
  color: #fff;
}

.site-title.yellow-text:hover  {
  color: #ffd500;   
}

/* Navigation */
.navbar-nav.navbar-right {
  margin-right: 0;
}

.navbar-nav > li > a,
.slicknav_nav > li > a {
  margin-top: 20px;
  line-height: 30px;
  padding: 1px 5px ;
  margin:  3px 7px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a,
.navbar-collapse li a:hover,
.dropdown.open > a, 
.dropdown-menu a:hover, 
.dropdown:hover > a, 
.dropdown-menu>li>a:focus,
.dropdown-menu li a:hover,
.slicknav_nav li.active > a,
.slicknav_nav .dropdown.active > a a,
.slicknav_nav .active .active a {
  color: #ffd500;  
}

.slicknav_nav > li > a .slicknav_arrow {
  color: #fff;
}

.dropdown-menu li.active a,
.dropdown-menu li.active a:hover {
  background-color: transparent;
  color: #ffd500;    
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.nav .open > a, 
.nav .open > a:focus, 
.nav .open > a:hover,
.navbar-collapse li a:hover, 
.dropdown-menu a:hover, 
.dropdown:hover > a, 
.dropdown-menu>li>a:focus,
.dropdown-menu li a:hover  {
  background-color: transparent;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  border: 0;
  border-top: 5px solid #ffd500; 
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -webkit-transition-delay: 0.3s; 
  transition-delay: 0.3s;
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 10px;
}

.navbar-nav li a:hover + .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  padding: 5px 15px;
}

/* HERO
================================================== */
.hero {
  background: url(../img/bg-header.png) center no-repeat;
  height: 100%;
  width: 100%;
  display: table;
  position: relative;
  background-size: cover;
}

.hero-max-720 {
  max-height: 720px;
}

.hero-about-us {
 background: url(../img/about-us.jpg) center no-repeat / cover; 
}

.hero-contact {
 background: url(../img/contact.jpg) center no-repeat / cover; 
}

.hero-ui-elements {
 background: url(../img/ui-elements.jpg) center no-repeat / cover; 
}

.background-overlay:before {
  content: '';
  background-color: rgba(0,0,0,0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-text {
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.hero-text h1 {
  max-width: 900px;
  width: 100%;
  padding: 0 15px;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.hero-text span {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.hero-arrow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.hero-arrow a {
  color: #fff;
  font-size: 44px;
}

.hero-arrow a:hover {
  color: #ffd500; 
}

/* SITEMAIN
================================================== */
.site-main {
  position: relative;
}

/* site-section */
.site-section {
  padding-top: 70px;
  padding-bottom: 155px;
  background-color: #f9f8f8;
}

.site-section-small {
  padding: 80px 0;
  background-color: #ffffff;
}

.site-section-small-2 {
  padding: 50px 0;
  background-color: #f9f8f8;
}

.site-section-small-3 {
  padding-top: 70px;
  background-color: #ffffff;
}

.section-title {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  padding: 0 0 50px 0;
  margin: 0;
}

.section-title-big {
  font-size: 50px;
  margin:0 0 60px 0;
  font-weight: 700;
}

.section-title-small {
  font-size: 26px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.section-text {
  line-height: 30px;
  font-size: large;
  margin: 0 auto 60px;
}

/* PAGES
================================================== */

/*
 * HOMEPAGE
 */

/* Section: Quote */
.quote {
  color: #666;
  font-size: 18px;
  margin: 0 auto;
  max-width: 750px;
}

.quote-owner {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Section: Works */
.section-works .col-md-12 {
	padding: 0 7.5px;
}

.section-works .row {
	margin: 0 -7.5px;
}

.section-works .col-xs-6 {
  padding-left: 7.5px;
  padding-right: 7.5px;
  height: 400px;
}

.section-works .container-fluid {
  padding: 0 7.5px;
}

.multi-item-controls {
  margin: 60px 0;
  height: 45px;
}

.multi-item-controls .carousel-control {
  background-image: none;
  position: relative;
  display: inline-block;
  width: 75px;
  height: 45px;
  padding: 0;
  opacity: 1;
}

.multi-item-controls .carousel-control i {
  line-height: 45px;
  font-size: 24px;
  color: #000;
  text-shadow: none;
}

.multi-item-carousel .cloneditem-1,
.multi-item-carousel .cloneditem-2,
.multi-item-carousel .cloneditem-3 {
display: none;
}

.img-carousel {
  display: block;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Section: Service */
.service {
  position: relative;
}

.service-content {
  padding-left: 80px;
}

.service + .service {
  margin-top: 50px;
}

.service p:last-child {
  margin-bottom: 0;
}

.service-icon {
  position: absolute;
  height: 65px;
  width: 65px;
  text-align: center;
  border-radius: 50%;
}

.service-icon .fa {
  font-size: 30px;
  line-height: 65px;
  color: #ffd500;
}

.service-title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 16px;
}

/* Section: Counter */
.counter-line:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #4a4a4a;
}

.counter-line:first-child:after {
  content: none;
}

.counter {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
}

/* Section: Team */
.four-slides-slider .col-md-3 {
  height: 240px;
}

.one-slide-slider {
  margin-bottom:  70px;
}

.team-member {
  width: 100%;
}

.team-member-img {
  height: 320px;
  float: left;
  max-width: 270px;
  width: 100%;
}

.team-member-img-1 {
  background: url(../img/employee-1.jpg) no-repeat;
}

.team-member-info {
  padding:20px 0 0 330px;
}

.team-member-name {
  font-weight: 700;
  font-size: 16px;
  margin-top: 0;
}

.team-member-position {
  color: #ffd500; 
  font-style: italic;
}

.team-member-text {
  margin: 40px 0;
  color: #777e88;
}

.social-links a {
  line-height: 30px;
  padding: 4px 7px;
  font-size: 14px;
  color: #333;
  border: 1px solid #eeeeee;
  border-radius: 50px;
}

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

.social-links a i {
  width: 14px;
  text-align: center;
}

.section-team .multi-item-controls {
  margin-bottom: 0;
}

/* Section: Clients */
.testimonials.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.testimonial {
  padding: 30px;
  background-color: #fff;
}

.testimonial-content {
  min-height: 135px;
}

.testimonial-owner {
  position: absolute;
  bottom: 10px;
}

.testimonial-owner p {
  margin: 0;
  display: inline-block;
}

.testimonial-owner p:last-child {
  margin-left: 5px;
}

.testimonial-content img {
  padding-bottom: 25px;
  height: auto;
  width: 500px;
 
}

.slick-dots {
  top: -80px;
  bottom: 0;
  height: 20px;
}

.slick-dots li button {
  border-radius: 50%;
  background-color: #fff;
  height: 6px;
  width: 6px;
  padding: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.light-gray-bg .slick-dots li button {
  background-color: #3B3A36;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active button,
.slick-dots li:not(.slick-active):hover button {
  padding: 5px;
  border: 1px solid #fff;
  background-color: transparent;
}

.light-gray-bg .slick-dots li.slick-active button,
.light-gray-bg .slick-dots li:not(.slick-active):hover button {
  border: 1px solid #3B3A36;
  background-color: transparent;
}

/* Section: Social networks  */ 
.social-networks a {
  line-height: 100px; 
  text-align: center;
  width: 25%;
  float: left;
  font-size: 26px;
}

.social-networks a:hover {
  color: #fff;
}

/*
 * ABOUT-US
 */

/* Section: We-are-creative */ 
.section-we-are-creative .col-sm-6 {
  padding: 0;
  height: 720px;
}

.section-we-are-creative .img-carousel {
  height: 100%;
}

.project-content {
  padding:0 15px 0 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.project-content h2,
.project-content p {
  max-width: 500px;
  width: 100%;
}

/* Section: clients-2 */ 
.section-clients-2 .testimonial-content {
  margin: 0 auto;
  padding: 0;
  max-width: 750px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.section-clients-2 .testimonial-content > p {
  font-size: 24px;
}

.section-clients-2 .testimonial-owner {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}

.section-clients-2 .slick-dots {
  padding-top: 100px;
  top: auto;
  bottom: -35px;
}

/*
 * PORTFOLIO
 */

/* Section: Portfolio */
.col-lg-fifth {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.portfolio .col-sm-4,
.portfolio .col-xs-6 {
  height: 300px;
  padding: 0;
}

.portfolio-sorting  {
  margin-bottom: 60px;
}

.portfolio-sorting .btn {
  line-height: normal;
  width: auto;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 10px;
}

.portfolio-sorting .btn + .btn {
  margin-left: 15px;
}

.portfolio-sorting .active,
.portfolio-sorting .btn:active {
  background-color: #ffd500; 
  border-color: #ffd500; 
  color: #fff;
  box-shadow: none;
}

.col-lg-fifth a {
  height: 300px;
  position: relative;
}

.portfolio-info::before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 100%;
  right: 100%;
  height: 2px;
  content: '';
  opacity: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
}

.portfolio-link:hover .portfolio-info::before {
  background: #ffffff;
  left: 0;
  right: 0;
  opacity: 1;
}

.portfolio-info-top,
.portfolio-info-bottom {
  height: 50%;
  overflow: hidden;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.portfolio-info-bottom {
  bottom: 0;
  top: auto;
}

.portfolio-link h3,
.portfolio-link p {
  margin: 0;
  padding: 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-transition: opacity 0.45s, -webkit-transform 0.45s;
  transition: opacity 0.45s,-webkit-transform 0.45s, -moz-transform 0.45s, -o-transform 0.45s, transform 0.45s;
}

.portfolio-link h3 {
  text-align: center;
  display: inline-block;
  font-weight: 300;
  text-transform: uppercase;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transform: translate3d(50%, 0%, 0);
  -moz-transform: translate3d(50%, 0%, 0);
  -webkit-transform: translate3d(50%, 0%, 0);
  -o-transform: translate3d(50%, 0%, 0);
  -ms-transform: translate3d(50%, 0%, 0);

}

.portfolio-link p {
  display: block;
  bottom: 0;
  text-align: left;
  font-weight: 300;
  top: 0%;
  background: #ffffff;
  transform: translate3d(-50%, 0%, 0);
  -moz-transform: translate3d(-50%, 0%, 0);
  -webkit-transform: translate3d(-50%, 0%, 0);
  -o-transform: translate3d(-50%, 0%, 0);
  -ms-transform: translate3d(-50%, 0%, 0);
}

.portfolio-link img {
  opacity: 1;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.portfolio-link:hover img {
  opacity: 0.7;
}

.portfolio-link:hover h3,
.portfolio-link:hover p {
  transform: translate3d(0%, 0%, 0);
  -moz-transform: translate3d(0%, 0%, 0);
  -webkit-transform: translate3d(0%, 0%, 0);
  -o-transform: translate3d(0%, 0%, 0);
  -ms-transform: translate3d(0%, 0%, 0);
  opacity: 1;
}

/*
 * PORTFOLIO ITEM
 */

/* Section: Portfolio-item */
#PortfolioItemSlider {
 margin-bottom: 0;
}

.portfolio-date-cat-cl li {
  line-height: 20px;
}

#PortfolioItemSlider img.img-carousel {
  height: 640px;
}

#PortfolioItemSlider .slick-dots {
  top: auto;
  bottom: 20px;
}

.section-portfolio-item .small-title,
.social-links .small-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

/*
 * BLOG
 */

/* Section: Blog */
.post-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
}

.post-img {
  max-height: 420px;
}

a.post-title:hover,
.blog-post > a:hover + .post-content .post-title {
  color: #ffd500;
}

.post-meta {
  margin-top: 15px;
}

.post-meta li {
  display: inline-block;
  position: relative;
}

.post-meta li + li {
  padding-left: 10px;
}

.post-meta li + li:before {
  content: '';
  padding: 2px;
  border-radius: 50px;
  background-color: #777e88;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.post-meta li a {
  color: #333;
}

.post-meta li a:hover {
  color: #ffd500;;
} 

.post-info {
  max-width: 40%;
  padding-right: 30px;
  display: inline-block;
}

.post-content .section-text {
  max-width: 100%;
  margin-bottom: 10px;
}

.post-img-slider .slick-dots{
  top: auto;
  bottom: 28px;
}

.post-content {
  margin: 25px 0 60px 0;
}

.col-md-12:last-child .post-content {
  margin-bottom: 0;
}

/* 
 * Sidebar
 */
.widget + .widget {
  margin-top: 40px;
}

.widget-title {
  font-weight: 700;
}

/* Search-form */
.search-form  {
  position: relative;
}

.search-form input {
  margin-bottom: 0;
}

/* Categories */
.widget-categories li {
  margin-top: 15px;
}

.widget-categories li a {
  color: #777e88;
}

.widget-categories li a:hover {
  padding-left: 10px;
  color: #ffd500;
}

/* Latest-posts */
.widget-latest-posts {
  position: relative;
}

.posts-list li {
  min-height: 70px;
}

.posts-list li + li {
  margin-top: 30px;
}

.widget-thumb {
  position: absolute;
  left: 0;
  height: 70px;
  width: 70px;
}

 .widget-post-info {
  padding-left: 90px;
}

.widget-post-title {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
}

.widget-post-date {
  font-size: 12px;
  color: #333;
  margin: 10px 0 0 0;
}

.posts-list li a:hover .widget-post-title {
  color: #ffd500;
}

/* Tags */ 
.widget-tags ul li {
  display: inline-block;
  margin-bottom: 5px
}

.widget-tags ul li a {
  display: block;
  background-color: #f9f8f8;
  color: #292a2c;
  padding: 10px;
  font-size: 12px;
}

.widget-tags ul li a:hover {
  background-color: #ffd500;
  color: #fff;
}

/*
 * BLOG POST
 */

/* Section: Blog post  */
.post-information {
  position: relative;
  padding: 20px;
  margin-top: 70px;
  border: 1px solid #eee;
}

.post-comment {
  position: relative;
  margin-top: 40px;
}

.post-information img,
.post-comment img{
  float: left;
  height: 70px;
  width: 70px;
  border-radius: 50px;
}

.post-information-content,
.post-comment-content {
  padding-left: 95px;
  padding-top: 5px;
}

.post-author-name,
.post-comment-author-name {
  color: #000;
  font-weight: 700;
  margin-bottom: 5px;
}

.post-comment-author-name {
  display: inline-block;
}

.post-author-position {
  color: #777e88;
  font-style: italic;
  margin-bottom: 20px;
}

.post-comments {
  margin-top: 70px;
}

.post-comments h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.post-comment-date {
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
}

.comment {
  margin: 15px 0;
}

.replied{
  margin-left: 30px;
}

/* Leave a comment */
.leave-comment {
  margin-top: 60px;
}

/*
 * CONTACT
 */

/* Section: contact-us */
.section-contact-us .site-section-small {
  position: relative;
  height: 600px;
}

.get-in-touch {
  position: absolute;
  left: 20%;
}

.get-in-touch p {
  max-width: 560px;
  width: 100%;
}

.get-in-touch a:hover {
  text-decoration: underline;
}

.get-in-touch li {
  line-height: 20px;
}

/* contact-form */ 
.contact-form {
  width: 100%;
  padding: 0 20px;
}

/* Section: map */
.section-map {
  height: 500px;
  width: 100%
}

/* FOOTER
================================================== */
.site-footer {
  padding-top: 25px;
  margin-top: 25px;
  background: #fff;
}

.site-footer .row {
  margin-top: 70px;
  margin-bottom: 120px;
}

.email {
  text-align: center;
}

.email a {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.email a:hover {
  text-decoration: underline;
}

.site-footer li a:hover {
  text-decoration: underline;
}

.site-footer .site-title {
  position: relative;
  left: 0;
}

.site-footer .site-title span {
  color: #333;
}

.site-footer .small-title {
  font-weight: 700;
  line-height: 30px;
}

.site-footer .list-unstyled {
  margin-bottom: 0;
}

.site-footer .list-unstyled li a {
  color: #333;
}

.site-footer .list-unstyled li.active a {
  text-decoration: underline;
  pointer-events: none;
}

.site-footer li,
.site-footer p {
  line-height: 25px;
}

/* copyright */
.copyright {
  border-top: 2px solid #f9f8f8;
  padding: 0 15px;
  text-align: center;
}

.copyright p {
  padding: 25px 0;
  margin-bottom: 0;
}

.copyright .yellow-text:hover {
  color: #ffd500;
  text-decoration: underline;
}


.design-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f9f8f8;
  padding: 100px 0;
  font-family: Open Sans,sans-serif;
}

.design {
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.timeline-content {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  color: #333333;
  padding: 1.75rem;
  transition: 0.4s ease;
  overflow-wrap: break-word !important;
  margin: 1rem;
  margin-bottom: 20px;
  border-radius: 6px;
}

.timeline-component {
  margin: 0px 20px 20px 20px;
}

@media screen and (min-width: 768px) {
  .timeline {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
  }
  .timeline-middle {
    position: relative;
    background-color: #ffd500;
    width: 3px;
    height: 100%;
  }
  .main-middle {
    opacity: 0;
  }
  .timeline-circle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ffd500;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

  figure.snip1139 {
    font-family: "Open Sans", sans-serif;
    display: inline-table;
    justify-items: center;
    overflow: hidden;
    margin: 20px;
    min-width: 220px;
    max-width: 310px;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }
  figure.snip1139 * {
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  }
  figure.snip1139 img {
    max-width: 100%;
    vertical-align: middle;
  }
  figure.snip1139 blockquote {
    background-color: #ffffff;
    padding: 20px;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    line-height: 1.6em;
  }
  figure.snip1139 blockquote:before,
  figure.snip1139 blockquote:after {
    font-family: "Open Sans", sans-serif;
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
  }
  figure.snip1139 blockquote:before {
    top: 25px;
    left: 20px;
  }
  figure.snip1139 blockquote:after {
    right: 20px;
    bottom: 0;
  }
  figure.snip1139 .arrow {
    top: 100%;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #ffffff;
    margin: 0;
    position: absolute;
  }
  figure.snip1139 .author {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5px 25px;
    color: #000000;
    background-color: #ffffff;
    margin: 0;
    text-transform: uppercase;
  }
  figure.snip1139 .author h5 {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
  }
  figure.snip1139 .author h5 span {
    font-weight: 400;
    text-transform: none;
    padding-left: 5px;
  }

  .clients {
    text-align: center;
    background-color: #f9f8f8;
    padding: 80px 0;
  }

  .client {
    text-align: center;
    background-color: #f9f8f8;
    padding-bottom: 100px;
  }

  .responsive-map{
    
    overflow: hidden;
    position:relative;
    height: 400px;
    width: 800px;
  }
  .responsive-map iframe{
    padding-right: 100px;
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
  }

  .contact_us_green * {
    font-family: "Open Sans", sans-serif;
  }
  
  .contact_us_green .responsive-container-block {
    background-color: #ffffff;
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
  }
  
  .contact_us_green input:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
  }
  
  .contact_us_green textarea:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
  }
  
  .contact_us_green .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .contact_us_green .responsive-cell-block {
    min-height: 75px;
  }
  
  .contact_us_green .responsive-container-block.container {
    max-width: 1320px;
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
  }
  
  .contact_us_green .responsive-container-block.big-container {
    padding: 20px 0;
  }
  
  .contact_us_green .text-blk.contactus-head {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  
  .contact_us_green .text-blk.contactus-subhead {
    max-width: 385px;
    color: #666;
    font-size: 18px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }
  
  .contact_us_green .contact-svg {
    padding-top: 0px;
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 65px;
    height: 40px;
  }
  
  .contact_us_green .social-media-links {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 250px;
    display: flex;
    justify-content: space-evenly;
  }
  
  .contact_us_green .social-svg {
    width: 35px;
    height: 35px;
  }
  
  .contact_us_green .text-box {
    display: flex;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }
  
  .contact_us_green .contact-text {
    color: #666;
  }
  
  .contact_us_green .input {
    height: 50px;
    width: 90%;
    border-top-width: 2.5px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
    border-left-width: 2.5px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #a2a2a2;
    border-right-color: #a2a2a2;
    border-bottom-color: #a2a2a2;
    border-left-color: #a2a2a2;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;
  }
  
  .contact_us_green .textinput {
    height: 200px;
    width: 95%;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #a2a2a2;
    border-right-color: #a2a2a2;
    border-bottom-color: #a2a2a2;
    border-left-color: #a2a2a2;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  
  .contact_us_green .submit-btn {
    min-width: 290px;
    height: 60px;
    background-color: #1c3b28;
    font-size: 18px;
    font-weight: 700;
    color: white;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    cursor: pointer;
  }
  
  .contact_us_green .btn-wrapper {
    display: flex;
    justify-content: center;
  }
  
  .contact_us_green .text-blk.input-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }
  
  .contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }
  
  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact_us_green .head-text-box {
    display: none;
  }
  
  .contact_us_green .line {
    border-right-width: 1.8px;
    border-right-style: solid;
    border-right-color: #a2a2a2;
  }
  
  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  @media (max-width: 1024px) {
    .contact_us_green .responsive-container-block.container {
      justify-content: center;
    }
  
    .contact_us_green .text-blk.contactus-subhead {
      max-width: 90%;
    }
  
    .contact_us_green .head-text-box {
      display: block;
    }
  
    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 60px;
      padding-left: 0px;
    }
  
    .contact_us_green .line {
      border-right-width: initial;
      border-right-style: none;
      border-right-color: initial;
      border-bottom-width: 1.8px;
      border-bottom-style: solid;
      border-bottom-color: #a2a2a2;
    }
  
    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
      margin-top: 60px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_green .workik-contact-bigbox {
      display: flex;
    }
  
    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  }
  
  @media (max-width: 768px) {
    .contact_us_green .text-content {
      display: none;
    }
  
    .contact_us_green .input {
      width: 100%;
    }
  
    .contact_us_green .textinput {
      width: 100%;
    }
  
    .contact_us_green .text-blk.contactus-head {
      font-size: 30px;
    }
  }
  
  @media (max-width: 500px) {
    .contact_us_green .responsive-container-block.big-container {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 0px;
      padding-left: 20px;
    }
  
    .contact_us_green .workik-contact-bigbox {
      display: block;
    }
  
    .contact_us_green .text-blk.input-title {
      font-size: 16px;
    }
  
    .contact_us_green .text-blk.contactus-head {
      font-size: 26px;
    }
  
    .contact_us_green .text-blk.contactus-subhead {
      font-size: 16px;
      line-height: 23px;
    }
  
    .contact_us_green .input {
      height: 45px;
    }
  
    .contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
      margin: 0 0 25px 0;
    }
  }

:root {
  --color: #ffdf3d;
  --transition-time: 0.5s;
}

.cards-wrapper {
  background-color: #ffffff;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 8rem;
  margin: 0 auto;
  width: max-content;
  padding-bottom: 120px;
}

.card {
  font-family: "Open Sans", sans-serif;
  --bg-filter-opacity: 0.5;
  background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img);
  height: 20em;
  width: 15em;
  font-size: 1.8em;
  color: white;
  border-radius: 10px;
  padding: 1em;
  margin: 10px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 3em -1em black;
  transition: all, var(--transition-time);
  position: relative;
  overflow: hidden;
  border: 7px solid #ccc;
  text-decoration: none;
}

.card:hover {
  transform: rotate(0);
}

.card h1 {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.2em;
}

.card p {
  font-size: 0.75em;
  font-family: "Open Sans", sans-serif;
  margin-top: 0.5em;
  line-height: 2em;
}

.card .tags {
  display: flex;
}

.card .tags .tag {
  font-size: 0.75em;
  background: rgba(255,255,255,0.5);
  border-radius: 0.3rem;
  padding: 0 0.5em;
  margin-right: 0.5em;
  line-height: 1.5em;
  transition: all, var(--transition-time);
}

.card:hover .tags .tag {
  background: var(--color);
  color: #00396a9a;
}

.card .date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75em;
  padding: 1em;
  line-height: 1em;
  opacity: .8;
}

.card:before, .card:after {
  content: '';
  transform: scale(0);
  transform-origin: top left;
  border-radius: 50%;
  position: absolute;
  left: -50%;
  top: -50%;
  z-index: -5;
  transition: all, var(--transition-time);
  transition-timing-function: ease-in-out;
}

.card:before {
  background: #00396a9a;
  width: 250%;
  height: 250%;
}

.card:after {
  background: #00396a9a;
  width: 200%;
  height: 200%;
}

.card:hover {
  color: var(--color);
}

.card:hover:before, .card:hover:after {
  transform: scale(1);
}

.card-grid-space .num {
  font-size: 3em;
  margin-bottom: 1.2rem;
  margin-left: 1rem;
}

.info {
  font-size: 1.2em;
  display: flex;
  padding: 1em 3em;
  height: 3em;
}

.info img {
  height: 3em;
  margin-right: 0.5em;
}

.info h1 {
  font-size: 1em;
  font-weight: normal;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 900px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
  .info {
    justify-content: center;
  }
  .card-grid-space .num {
    margin-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .cards-wrapper {
    padding: 4rem 2rem;
  }
  .card {
    max-width: calc(100vw - 4rem);
  }
}

@media screen and (max-width: 450px) {
  .info {
    display: block;
    text-align: center;
  }
  .info h1 {
    margin: 0;
  }
}

.price-1 {
  padding-top: 40px;
  padding-bottom: 60px;
  padding-right: 30px;
  padding-left: 30px;
  background-color: #f9f8f8;
}

.price-2 {
  padding-bottom: 50px;
  padding-right: 30px;
  padding-left: 30px;
  background-color: #f9f8f8;
}

.pricing {
	text-align: center;
	border: 1px solid #f0f0f0;
	color: #777;
	font-size: 14px;
	padding-left: 0;
	margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}
.pricing img {
	display: block;
	margin: auto;
	width: 32px;
}
.pricing li:first-child,
.pricing li:last-child {
	padding: 20px 13px;
}
.pricing li {
	list-style: none;
	padding: 13px;
}
.pricing big {
	font-size: 32px;
}
.pricing h3 {
	margin-bottom: 0;
  font-size: 36px;
}
.pricing span {
	font-size: 12px;
	color: #999;
	font-weight: normal;
}
.pricing button {
	width: auto;
	margin: auto;
	font-size: 15px;
	font-weight: bold;
	border-radius: 50px;
	color: #fff;
	padding: 9px 24px;
	background: #aaa;
	opacity: 1;
	transition: opacity .2s ease;
  border: none;
  outline: none;
}
.pricing button:hover {
	opacity: .7;
}
.pricing button:active {
	box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
}
/* pricing color */
.p-green h2,
.p-green h3 {
	color: #ffd500;
}
.p-green button {
	background: #ffd500;
}
.p-yel h2,
.p-yel h3 {
	color: #ffd500;
}
.p-yel button {
	background: #ffd500;
}
.p-red h2,
.p-red h3 {
	color: #ffd500;
}
.p-red button {
	background: #ffd500;
}
.p-blue h2,
.p-blue h3 {
	color: #ffd500;
}
.p-blue button {
	background: #ffd500;
}

.workshop-item {
  list-style-type: none; /* Menghilangkan bullet dari list */
  margin: 0; /* Memberikan jarak antar item */
}

.workshop-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Bayangan lebih dalam saat hover */
  border-radius: 5px;
}

.dropdown-toggle {
  cursor: pointer; /* Menunjukkan bahwa ini bisa diklik */
  background-color: rgb(0, 56, 106); /* Warna latar belakang biru */
  color: white; /* Warna teks putih */
  padding: 10px; /* Memberikan padding */
  border-radius: 5px; /* Membuat sudut membulat */
  text-align: center; /* Teks di tengah */
}

.dropdown-content {
  display: none; /* Menyembunyikan konten dropdown secara default */
  border: 1px solid #ccc; /* Border abu-abu */
  border-radius: 5px; /* Sudut membulat */
  padding: 15px; /* Padding untuk konten */
  background-color: #f9f9f9; /* Warna latar belakang konten */
  position: absolute; /* Mengatur posisi */
  z-index: 1; /* Mengatur z-index */
}

.workshop-item:hover .dropdown-content {
  display: block; /* Menampilkan konten saat hover */
}

.program-detail {
  font-weight: bold; /* Membuat teks tebal */
  margin-bottom: 10px; /* Jarak di bawah teks detail */
}

.program-features {
  padding-left: 20px; /* Memberikan padding pada list */
}

.price {
  color: #d9534f; /* Warna merah untuk harga */
  margin-top: 15px; /* Jarak di atas harga */
}

.accordion dt > a {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 2em;
  display: block;
  text-decoration: none;
  color: #fff;
}
.accordion dd {
  background-color: #ffffff;
  color: #000000;
  font-size: 1em;
  line-height: 1.5em;
}
/* .accordion dd > p {
  padding: 1em 2em 1em 2em;
} */

.accordion {
  position: relative;
  background-color: #ffffff;
}

.container-1 {
  margin: 0 auto;
  padding: 2em 0 2em 0;
}

.accordionTitle {
  background-color: rgb(0, 56, 106);
}
.accordionTitle:before {
  max-width: fit-content;
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover {
  background-color: #ffd500;
}

.accordionTitleActive {
  background-color:rgb(0, 56, 106);
}
.accordionTitleActive:before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.accordionItem {
  height: auto;
  overflow: hidden;
}
@media all {
  .accordionItem {
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .accordionItem {
    -moz-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.accordionItemCollapsed {
  max-height: 0;
}

.animateIn {
  -webkit-animation-name: accordionIn;
  -webkit-animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: normal;
  -moz-animation-duration: 0.65s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionIn;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.animateOut {
  -webkit-animation-name: accordionOut;
  -webkit-animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: accordionOut;
  -moz-animation-duration: 0.75s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionOut;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes accordionIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes accordionOut {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.detail {
  margin-top: 15px;
}
.list {
  margin-top: 15px;
  font-weight: bold;
}

.list-price {
  margin-top: 10px;
}

/* CSS untuk tombol */
.button {
  display: inline-flex; /* Menggunakan flexbox untuk menyelaraskan ikon dan teks */
  align-items: center; /* Menyelaraskan item secara vertikal */
  padding: 10px 15px;
  background: #4CAF50; /* Warna hijau WhatsApp */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px; /* Ukuran font */
  transition: background 0.3s, transform 0.3s; /* Transisi untuk efek hover */
  margin-top: 10px;
  margin-bottom: 30px;
}

.button:hover {
  background: #45a049; /* Warna hijau gelap saat hover */
  transform: scale(1.05); /* Efek zoom saat hover */
  font-size: 16px; /* Ukuran font */
}

.button i {
  margin-right: 8px; /* Jarak antara ikon dan teks */
}

.picture {
  flex: 1; /* Memastikan gambar mengambil ruang yang tersedia */
}

.team-content {
  text-align: center; /* Memusatkan teks */
}

.our-team {
  padding: 30px 0 20px;
  margin-bottom: 30px;
  background-color: #f9f8f8;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.our-team .picture {
  display: inline-block;
  height: 150px;
  width: 120px;
  margin-bottom: 50px;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: rgb(0, 56, 106);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgb(0, 56, 106);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #ffffff;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: rgb(0, 56, 106);
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: #ffffff;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: rgb(0, 56, 106);
  background-color: #ffd500;
}

ol {
  list-style-type: disc; /* Menggunakan huruf kapital untuk daftar */
  padding-left: 20px; /* Memberikan jarak dari tepi */
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Atur jarak antar gambar */
}

.image-gallery img {
  width: calc(33.33% - 10px); /* Atur lebar gambar agar 3 gambar muat dalam satu baris, dengan mengurangi margin */
  margin-bottom: 8px; /* Jarak antara baris gambar */
  margin-top: 8px; /* Jarak atas gambar */
  transition: transform 0.2s ease; /* Transisi untuk efek hover */
  border-radius: 5px; /* Tambahkan sudut melengkung jika diinginkan */
  cursor: pointer; /* Ubah kursor menjadi pointer saat hover */
  box-sizing: border-box; /* Pastikan padding dan border dihitung dalam lebar total */
}

.image-gallery img:hover {
  transform: scale(1.1); /* Perbesar gambar saat di-hover */
  z-index: 1; /* Pastikan gambar yang di-hover berada di atas gambar lainnya */
}

/* Modal Styles */
.modal {
  display: none; /* Tersembunyi secara default */
  position: fixed; /* Tetap di tempat */
  z-index: 1; /* Di atas konten lainnya */
  left: 0;
  top: 0;
  width: 100%; /* Lebar penuh */
  height: 100%; /* Tinggi penuh */
  overflow: auto; /* Aktifkan scroll jika diperlukan */
  background-color: rgba(0, 0, 0, 0.7); /* Latar belakang hitam dengan transparansi */
  justify-content: center; /* Pusatkan secara horizontal */
  align-items: center; /* Pusatkan secara vertikal */
}

.modal-content {
  display: block;
  width: auto; /* Lebar otomatis untuk menjaga rasio aspek */
  max-width: 90%; /* Lebar maksimum gambar modal */
  max-height: 90%; /* Tinggi maksimum gambar modal */
  margin: auto; /* Margin otomatis untuk pusatkan */
  border-radius: 5px; /* Sudut melengkung jika diinginkan */
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer; /* Ubah kursor menjadi pointer saat hover */
}

.client-cards {
  justify-content: center;
  margin-bottom: 15px;
  display: flex; /* Menggunakan flexbox untuk kartu */
  flex-wrap: wrap; /* Membungkus kartu ke baris berikutnya */
}

.snip1139 {
  background: white; /* Warna latar belakang kartu */
  border-radius: 10px; /* Sudut melengkung */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Bayangan */
  margin: 10px; /* Jarak antar kartu */
  overflow: hidden; /* Menghindari konten meluap */
  transition: transform 0.3s; /* Transisi untuk efek hover */
  width: calc(25% - 20px); /* Lebar kartu, 4 kartu per baris */
}

.snip1139 img {
  width: 100%; /* Lebar gambar penuh */
  height: auto; /* Tinggi otomatis untuk menjaga rasio */
}

/* Responsif */
@media (max-width: 768px) {
  .snip1139 {
      width: calc(50% - 20px); /* 2 kartu per baris pada layar kecil */
  }
}

@media (max-width: 480px) {
  .snip1139 {
      width: calc(100% - 20px); /* 1 kartu per baris pada layar sangat kecil */
  }
} 

.custom-icon {
  font-size: 18px; /* Atur ukuran ikon sesuai kebutuhan */
  margin-right: 8px; /* Tambahkan margin untuk jarak antara ikon dan teks */
}

.company-name {
  margin-top: 15px;
  text-align: center !important;
  color: #333333 !important;
  font-size: 30px !important;
  margin-bottom: 15px !important;
  font-weight: bold !important;
}

.name {
  font-size: 20px;
}



/* Css Terbaru */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.site-navigation {
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 40px;
  height: auto;
}

.site-title {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

.brand-text {
  color: #ffd500;
}

.academy-text {
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffd500;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd500;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: transform 0.3s ease;
}

.section-services {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  color: #333;
  font-size: 2.5rem;
  /* margin-bottom: 1.5rem; */
  font-weight: 700;
}

.section-text {
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-size: large;
}
.section-text-1 {
  color: #666;
  max-width: 800px;
  margin: 0 auto 7rem;
  line-height: 1.8;
  font-size: large;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 15px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #00386a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #00386a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 24px;
  color: #ffd500;
}

.service-card:hover .service-icon {
  background: #ffd500;
}

.service-card:hover .service-icon i {
  color: #00386a;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-title {
  color: #00386a;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.timeline-section {
  padding: 80px 0 !important;
  background: #f9f8f8 !important;
  position: relative !important;
}

.timeline-main-title {
  text-align: center !important;
  color: #00386a !important;
  font-size: 30px !important;
  margin-bottom: 60px !important;
  font-weight: bold !important;
}

.timeline-main-title-1 {
  text-align: center !important;
  color: #00386a !important;
  font-size: 50px !important;
  margin-bottom: 60px !important;
  font-weight: bold !important;
}

.timeline-main-title-2 {
  text-align: start !important;
  color: #00386a !important;
  font-size: 40px !important;
  margin-bottom: 50px !important;
  font-weight: bold !important;
}

.timeline-container {
  max-width: 1000px !important;
  margin: 0 auto !important;
  position: relative !important;
  padding: 20px 0 !important;
}

.timeline-line {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 3px !important;
  height: 100% !important;
  background-color: #00386a !important;
  top: 0 !important;
}

.timeline-item {
  margin-bottom: 50px !important;
  position: relative !important;
  width: calc(50% - 30px) !important;
  margin-left: auto !important;
}

.timeline-item:nth-child(odd) {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.timeline-year {
  position: absolute !important;
  top: 0 !important;
  background: #00386a !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  font-weight: bold !important;
  font-size: 16px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -100px !important;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -100px !important;
}

.timeline-dot {
  position: absolute !important;
  width: 16px !important;
  height: 16px !important;
  background: #ffd500 !important;
  border: 3px solid #00386a !important;
  border-radius: 50% !important;
  top: 10px !important;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -38px !important;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -38px !important;
}

.timeline-card {
  background: #fff !important;
  padding: 25px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.timeline-icon {
  width: 50px !important;
  height: 50px !important;
  background: #ffd500 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 15px !important;
}

.timeline-icon i {
  color: #00386a !important;
  font-size: 20px !important;
}

.timeline-title {
  color: #00386a !important;
  margin-bottom: 15px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.timeline-text {
  color: #666 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.modern-footer {
  background-color: #00386a;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 32px;
}

.footer-section {
  margin-bottom: 24px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd500;
  text-transform: uppercase;
}

.academy-text {
  color: #ffffff;
}

.footer-text {
  color: #e0e0e0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd500;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact i {
  color: #ffd500;
  margin-right: 12px;
  margin-top: 4px;
}

.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffd500;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 0;
  margin-top: 10px;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  text-align: center;
}

.copyright {
  color: #e0e0e0;
  margin: 0;
  padding-top: 8px;
}

.service-card:nth-child(1) {
  border-top: 5px solid #00386a;
}

.service-card:nth-child(2) {
  border-top: 5px solid #ffd500;
}

.service-card:nth-child(3) {
  border-top: 5px solid #2ecc71;
}

.service-card:nth-child(4) {
  border-top: 5px solid #e74c3c;
}

.service-card:nth-child(5) {
  border-top: 5px solid #9b59b6;
}

.service-card:nth-child(6) {
  border-top: 5px solid #3498db;
}

.service-card:nth-child(7) {
  border-top: 5px solid #e67e22;
}

.service-card:nth-child(8) {
  border-top: 5px solid #1abc9c;
}

/* Sesuaikan warna ikon dengan warna border atas */
.service-card:nth-child(1) .service-icon {
  background: #00386a;
}

.service-card:nth-child(2) .service-icon {
  background: #ffd500;
}

.service-card:nth-child(3) .service-icon {
  background: #2ecc71;
}

.service-card:nth-child(4) .service-icon {
  background: #e74c3c;
}

.service-card:nth-child(5) .service-icon {
  background: #9b59b6;
}

.service-card:nth-child(6) .service-icon {
  background: #3498db;
}

.service-card:nth-child(7) .service-icon {
  background: #e67e22;
}

.service-card:nth-child(8) .service-icon {
  background: #1abc9c;
}

/* Update card hover effects */
.service-card::before {
  display: none;
  /* Remove old hover effect */
}

.service-card {
  border-top-width: 5px;
  border-top-style: solid;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Update icon colors */
.service-card:nth-child(1) .service-icon i,
.service-card:nth-child(2) .service-icon i,
.service-card:nth-child(3) .service-icon i,
.service-card:nth-child(4) .service-icon i,
.service-card:nth-child(5) .service-icon i,
.service-card:nth-child(6) .service-icon i,
.service-card:nth-child(7) .service-icon i,
.service-card:nth-child(8) .service-icon i {
  color: white;
}

.service-card:nth-child(2) .service-icon i {
  color: #00386a;
  /* Special case for yellow background */
}

/* Update hover states */
.service-card:hover .service-icon {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

.service-title {
  font-size: 1.50rem;
  /* Mengurangi ukuran font judul */
}


.pagination {
  display: flex;
  justify-content: center; /* Center the pagination */
  margin: 30px 0; /* Add some margin */
}

.pagination button {
  
  border: none; /* Remove border */
  padding: 10px 15px; /* Add padding */
  margin: 0 5px; /* Space between buttons */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s, transform 0.2s; /* Smooth transition */
}

.pagination button:hover {
  background-color: #ffd500; /* Darker blue on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.pagination button.active {
  background-color: #ffd500; /* Active button color */
  font-weight: bold; /* Bold text for active button */
}

.pagination button:disabled {
  background-color: #cccccc; /* Gray background for disabled */
  cursor: not-allowed; /* Not allowed cursor */
}



