/*------------------------------------------------------------------
Project:  Drive
Version:  1.0
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  #555555
# Primary Color   :  var(--color);

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 15px/1.7 'Roboto-Regular', Arial, sans-serif;
Title           : 30px/1.6 'Roboto-Bold', Arial, sans-serif;
Paragrap        : 15px/1.7 'Roboto-Regular', Arial, sans-serif;
Input, textarea : 15px/1.7 'Roboto-Regular', Arial, sans-serif;
-------------------------------------------------------------------*/



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
@font-face {
  font-family: Roboto-Regular;
  src: url('../fonts/roboto/Roboto-Regular.ttf');
}

@font-face {
  font-family: Roboto-Bold;
  src: url('../fonts/roboto/Roboto-Bold.ttf');
}

@font-face {
  font-family: Roboto-Black;
  src: url('../fonts/roboto/Roboto-Black.ttf');
}

@font-face {
  font-family: SourceSansPro-Regular;
  src: url('../fonts/source-sans-pro/SourceSansPro-Regular.ttf');
}

@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf');
}

@font-face {
  font-family: OpenSans-Bold;
  src: url('../fonts/OpenSans/OpenSans-Bold.ttf');
}

@font-face {
  font-family: DroidSerif-Bold;
  src: url('../fonts/droid-serif/DroidSerif-Bold.ttf');
}




/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/

/*------------------------------------------------------------------
[ Bootstrap ]*/
.container {
  max-width: 1200px;
}

/*------------------------------------------------------------------
[ Slick2 ]*/
.slick-slide {
  outline: none;
}



/*//////////////////////////////////////////////////////////////////
[ LOADDING ]*/
.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cp-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  position: relative
}

.cp-skeleton {
  border-radius: 50%;
  border-top: solid 5px var(--color);
  border-right: solid 5px transparent;
  border-bottom: solid 5px transparent;
  border-left: solid 5px transparent;
  animation: cp-skeleton-animate 1s linear infinite
}

.cp-skeleton:before {
  border-radius: 50%;
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 5px transparent;
  border-right: solid 5px transparent;
  border-bottom: solid 5px transparent;
  border-left: solid 5px var(--color);
  position: absolute;
  top: -5px;
  left: -5px;
  transform: rotateZ(-30deg)
}

.cp-skeleton:after {
  border-radius: 50%;
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 5px transparent;
  border-right: solid 5px var(--color);
  border-bottom: solid 5px transparent;
  border-left: solid 5px transparent;
  position: absolute;
  top: -5px;
  right: -5px;
  transform: rotateZ(30deg)
}

@keyframes cp-skeleton-animate {
  0% {
    transform: rotate(0);
    opacity: 1
  }

  50% {
    opacity: .7
  }

  100% {
    transform: rotate(360deg);
    opacity: 1
  }
}



/*//////////////////////////////////////////////////////////////////
[ BACK TO TOP ]*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1150;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Roboto-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f071";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*------------------------------------------------------------------
[ rs alert validate ]*/
.rs1-alert-validate .alert-validate::before {
  right: 22px;
}

.rs1-alert-validate .alert-validate::after {
  right: 28px;
}


/*//////////////////////////////////////////////////////////////////
[ Header ]*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Desktop ]*/

.container-menu-desktop {
  height: 146px;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}


/*==================================================================
[ Top bar ]*/
.top-bar {
  height: 45px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color), transparent);
  opacity: 0.8;
}

.top-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.content-topbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  justify-content: space-between;
  align-items: center;
}

.left-top-bar a {
  font-family: Roboto-Regular;
  font-size: 13px;
  color: white;
  vertical-align: middle;
  padding-left: 3px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.left-top-bar a:hover {
  color: white;
  text-decoration: underline;
}

.left-top-bar a:last-child {
  border: none;
}

.right-top-bar>span>i {
  font-size: 15px;
  color: white;
  vertical-align: middle;
  margin-left: 25px;
}

.right-top-bar>span>span {
  font-family: Roboto-Regular;
  font-size: 13px;
  line-height: 15px;
  color: white;
  vertical-align: middle;
  margin-left: 5px;
}

.topbar-mobile .left-top-bar a {
  font-family: Roboto-Regular;
  font-size: 13px;
  color: #555555;
  vertical-align: middle;
  padding-left: 13px;
  padding-right: 15px;
  border-right: 1px solid #ececec;
}

.topbar-mobile .right-top-bar>span>i {
  font-size: 15px;
  color: #555555;
  vertical-align: middle;
  margin-left: 20px;
}

.topbar-mobile .right-top-bar>span>span {
  font-family: Roboto-Regular;
  font-size: 13px;
  line-height: 15px;
  color: #555555;
  vertical-align: middle;
  margin-left: 5px;
}


/*==================================================================
[ Menu ]*/
.wrap-menu-desktop {
  position: absolute;
  z-index: 1100;
  background-color: white;
  width: 100%;
  height: 101px;
  top: 45px;
  left: 0;

  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
}

.limiter-menu-desktop {
  max-width: 1200px;
  padding: 0 15px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  align-items: center;
}


/*------------------------------------------------------------------
[ Logo ]*/
.logo {
  display: block;
  position: relative;
  height: 69%;
  flex-grow: 1;
}

.logo img {
  max-width: calc(100% - 20px);
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}


/*------------------------------------------------------------------
[ Menu ]*/

.menu-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu {
  list-style-type: none;
  margin: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.main-menu>li {
  display: block;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 13px;
  padding-right: 13px;
}

.main-menu>li>a {
  font-family: Roboto-Bold;
  font-size: 14px;
  text-transform: uppercase;
  color: #2a5298;
  padding: 5px;
  transition: color 0.3s ease;
}

.main-menu>li>a:hover {
  color: #1e3c72;
}

/*---------------------------------------------*/
.sub-menu {
  list-style-type: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 225px;
  background-color: white;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;

  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);

  visibility: hidden;
  opacity: 0;
}

.sub-menu li {
  position: relative;
  background-color: #f2f2f2;
  border-top: 1px solid #e0e0e0;

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.main-menu>li>.sub-menu {
  top: 100%;
  left: 0;
}

.sub-menu a {
  font-family: Roboto-Regular;
  font-size: 14px;
  line-height: 1.5;
  color: #808080;

  display: block;
  padding: 10px;
  width: 100%;
}

/*---------------------------------------------*/
.main-menu>li:hover>a {
  color: #1e3c72;
  text-decoration: none;
}

.main-menu>li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu li:hover {
  background-color: white;
}

.sub-menu>li:hover>a {
  color: #555555;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .main-menu>.respon-sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }

  .main-menu>.respon-sub-menu>.sub-menu {
    right: 0px;
    left: auto;
  }
}

/*---------------------------------------------*/
.main-menu>li::before {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: 0;
  background-color: var(--color);

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.main-menu>li:hover:before {
  width: calc(100% - 36px);
}


/*------------------------------------------------------------------
[ Social ]*/
.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 4px;
}

.social a {
  font-size: 24px;
  color: #808080;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.social a:hover {
  color: var(--color);
}


/*==================================================================
[ Fixed menu desktop ]*/

.fix-menu-desktop {
  height: 110px;
}

.fix-menu-desktop .wrap-menu-desktop {
  top: 0;
  height: 65px;
  position: fixed;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
}



/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
[ Header Mobile ]*/
.wrap-header-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  background-color: white;
  padding: 15px;
  display: none;

  box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -moz-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -webkit-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -o-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
  -ms-box-shadow: 0 0px 4px 0px rgba(153, 153, 153, 0.3);
}

/*------------------------------------------------------------------
[ Logo mobile ]*/
.logo-mobile {
  display: block;
  padding-right: 25px;
}

.logo-mobile img {
  max-width: 100%;
  max-height: 60px;
}


/*------------------------------------------------------------------
[ btn show menu ]*/
.hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
}

.hamburger:hover {
  opacity: 1;
}

/*---------------------------------------------*/
@media (max-width: 992px) {
  .wrap-header-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .container-menu-desktop {
    display: none;
  }
}

/*==================================================================
[ Menu mobile ]*/
.menu-mobile {
  width: 100%;
  background-color: white;
  display: none;
  border-top: 1px solid #ececec;
}

.main-menu-m {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-menu-m>li>a {
  font-family: Roboto-Regular;
  font-size: 14px;
  color: white;
  line-height: 2.86;
  text-transform: uppercase;
  padding-left: 20px;
}

.main-menu-m>li {
  color: white;
  position: relative;
}

.arrow-main-menu-m {
  font-size: 14px;
  color: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 2px;
  padding: 10px;
  cursor: pointer;
}

.arrow-main-menu-m i {
  transform-origin: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.turn-arrow-main-menu-m i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*---------------------------------------------*/
.sub-menu-m {
  background-color: #fff;
  padding: 10px 15px 10px 32px;
  display: none;
}

.sub-menu-m a {
  font-family: Roboto-Regular;
  font-size: 14px;
  color: #808080;
  line-height: 2.5;
}

.sub-menu-m a:hover {
  text-decoration: none;
  color: #555555;
}

@media (min-width: 992px) {
  .menu-mobile {
    display: none;
  }
}



/*//////////////////////////////////////////////////////////////////
[ Footer ]*/

footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
  border-top: 3px solid var(--color);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  padding: 40px 0 10px;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color), transparent);
  opacity: 0.8;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Footer headings */
footer h3,
footer h4,
footer h5,
footer h6 {
  color: #ffffff;
  font-family: Roboto-Bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

footer h3::after,
footer h4::after,
footer h5::after,
footer h6::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color);
}

/* Footer paragraph text */
footer p {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  gap: 10px;
}

.btn-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-social i {
  font-size: 20px;
  color: #ffffff;
}

.bg-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.bg-whatsapp {
  background: #25D366;
}

.hov-bg-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  filter: brightness(1.05);
}

/*------------------------------------------------------------------
[ Link ]*/
.wrap-link-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

.wrap-link-footer .col-left {
  width: 45%;
}

.wrap-link-footer li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.wrap-link-footer li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--color);
  font-size: 10px;
  transition: all 0.3s ease;
}

.wrap-link-footer li:hover {
  transform: translateX(8px);
}

.wrap-link-footer li:hover::before {
  transform: translateX(5px) scale(1.2);
}

.wrap-link-footer li a {
  font-family: Roboto-Regular;
  font-size: 15px;
  line-height: 1.8;
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.wrap-link-footer li a:hover {
  color: #ffffff;
}

/*------------------------------------------------------------------
[ Contact ]*/
.contact-footer li {
  font-family: Roboto-Regular;
  font-size: 15px;
  line-height: 1.8;
  color: #999999;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-footer li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.contact-footer li i {
  margin-right: 12px;
  color: var(--color);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/*------------------------------------------------------------------
[ Gallery ]*/
.wrap-gallery-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.item-gallery-footer {
  display: block;
  width: calc((100% - 30px) / 3);
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

.item-gallery-footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  background-color: var(--color);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-footer:hover:after {
  cursor: pointer;
  height: 100%;
}

.footer-links a {
  color: #999999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.powered-by:hover {
  opacity: 1;
}

/*---------------------------------------------*/
.hov1:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

/*---------------------------------------------*/
.hov2:hover {
  color: #333333;
}

/*---------------------------------------------*/
.hov3:hover {
  background-color: #333333;
  border-color: #333333;
  color: #fff;
}

/*---------------------------------------------*/
.hov4:hover {
  background-color: var(--color);
  color: #fff;
}

/*---------------------------------------------*/
.hov5 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hov5::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.hov5:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Position ]*/
.pos1 {
  position: absolute;
  top: 0;
  left: 7px;
}


/*//////////////////////////////////////////////////////////////////
[ Effect ]*/

.vi-vi-slick {
  visibility: visible;
}

/*------------------------------------------------------------------
[ Active ]*/
.actived-1 {
  color: #333333;
}

.actived-2 {
  color: var(--color);
}

.act-pagi {
  background-color: #333333;
  border-color: #333333;
  color: #fff;
}


/*---------------------------------------------*/
.btn-drive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.btn-drive::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--color);
  opacity: 0;
  -webkit-transform: scaleY(0.1);
  -moz-transform: scaleY(0.1);
  -ms-transform: scaleY(0.1);
  -o-transform: scaleY(0.1);
  transform: scaleY(0.1);

  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-drive:hover {
  color: #fff;
}

.btn-drive:hover:before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

/*---------------------------------------------*/
.list-01 li {
  text-indent: -11px;
  padding-left: 22px;
}

.list-01 li::before {
  content: "\f058";
  font-family: FontAwesome;
  font-size: 15px;
  color: var(--color);

  display: inline-block;
  margin-right: 5px;
}

/*---------------------------------------------*/
.wrap-symbol-b2 .symbol-1 {
  font-size: 26px;
  color: white;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.wrap-symbol-b2 .symbol-1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  background-color: var(--color);
}

.rotate-symbol-1.symbol-1::before {
  transform-origin: center;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

/*---------------------------------------------*/
.overlay1 {
  position: relative;
  cursor: pointer;
}

.overlay1::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  background-color: var(--color);

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.overlay1:hover:after {
  height: 100%;
}


/*---------------------------------------------*/
.show-dropdown-content .down-mark {
  display: block;
}

.show-dropdown-content .up-mark {
  display: none;
}

/*---------------------------------------------*/
.label1 {
  position: relative;
  overflow: hidden;
}

.label1::before {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #e57202;
  top: -31px;
  right: -31px;

  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.label1::after {
  content: "\f005";
  font-family: FontAwesome;
  font-size: 11px;
  color: #fff;

  display: block;
  position: absolute;
  top: 6px;
  right: 7px;
}


/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/

/*//////////////////////////////////////////////////////////////////
[ XL ]*/
@media (max-width: 1200px) {
  .m-0-xl {
    margin: 0;
  }

  .m-lr-0-xl {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-xl {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-xl {
    margin-left: 0;
  }

  .m-r-0-xl {
    margin-right: 0;
  }

  .m-l-15-xl {
    margin-left: 15px;
  }

  .m-r-15-xl {
    margin-right: 15px;
  }

  .p-0-xl {
    padding: 0;
  }

  .p-lr-0-xl {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-xl {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-xl {
    padding-left: 0;
  }

  .p-r-0-xl {
    padding-right: 0;
  }

  .p-l-15-xl {
    padding-left: 15px;
  }

  .p-r-15-xl {
    padding-right: 15px;
  }

  .w-full-xl {
    width: 100%;
  }

  /*---------------------------------------------*/

}


/*//////////////////////////////////////////////////////////////////
[ LG ]*/
@media (max-width: 992px) {
  .m-0-lg {
    margin: 0;
  }

  .m-lr-0-lg {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-lg {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-lg {
    margin-left: 0;
  }

  .m-r-0-lg {
    margin-right: 0;
  }

  .m-l-15-lg {
    margin-left: 15px;
  }

  .m-r-15-lg {
    margin-right: 15px;
  }

  .p-0-lg {
    padding: 0;
  }

  .p-lr-0-lg {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-lg {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-lg {
    padding-left: 0;
  }

  .p-r-0-lg {
    padding-right: 0;
  }

  .p-l-15-lg {
    padding-left: 15px;
  }

  .p-r-15-lg {
    padding-right: 15px;
  }

  .w-full-lg {
    width: 100%;
  }

  /*---------------------------------------------*/

}


/*//////////////////////////////////////////////////////////////////
[ MD ]*/
@media (max-width: 768px) {
  .m-0-md {
    margin: 0;
  }

  .m-lr-0-md {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-md {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-md {
    margin-left: 0;
  }

  .m-r-0-md {
    margin-right: 0;
  }

  .m-l-15-md {
    margin-left: 15px;
  }

  .m-r-15-md {
    margin-right: 15px;
  }

  .p-0-md {
    padding: 0;
  }

  .p-lr-0-md {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-md {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-md {
    padding-left: 0;
  }

  .p-r-0-md {
    padding-right: 0;
  }

  .p-l-15-md {
    padding-left: 15px;
  }

  .p-r-15-md {
    padding-right: 15px;
  }

  .w-full-md {
    width: 100%;
  }

  /*---------------------------------------------*/

  .respon2 {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
  }

  .respon3 {
    height: auto;
    margin-bottom: 25px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ SM ]*/
@media (max-width: 576px) {
  .m-0-sm {
    margin: 0;
  }

  .m-lr-0-sm {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-sm {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-sm {
    margin-left: 0;
  }

  .m-r-0-sm {
    margin-right: 0;
  }

  .m-l-15-sm {
    margin-left: 15px;
  }

  .m-r-15-sm {
    margin-right: 15px;
  }

  .p-0-sm {
    padding: 0;
  }

  .p-lr-0-sm {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-sm {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-sm {
    padding-left: 0;
  }

  .p-r-0-sm {
    padding-right: 0;
  }

  .p-l-15-sm {
    padding-left: 15px;
  }

  .p-r-15-sm {
    padding-right: 15px;
  }

  .w-full-sm {
    width: 100%;
  }

  /*---------------------------------------------*/

  .respon1 {
    font-size: 25px;
  }
}


/*//////////////////////////////////////////////////////////////////
[ SSM ]*/
@media (max-width: 480px) {
  .m-0-ssm {
    margin: 0;
  }

  .m-lr-0-ssm {
    margin-left: 0;
    margin-right: 0;
  }

  .m-lr-15-ssm {
    margin-left: 15px;
    margin-right: 15px;
  }

  .m-l-0-ssm {
    margin-left: 0;
  }

  .m-r-0-ssm {
    margin-right: 0;
  }

  .m-l-15-ssm {
    margin-left: 15px;
  }

  .m-r-15-ssm {
    margin-right: 15px;
  }

  .p-0-ssm {
    padding: 0;
  }

  .p-lr-0-ssm {
    padding-left: 0;
    padding-right: 0;
  }

  .p-lr-15-ssm {
    padding-left: 15px;
    padding-right: 15px;
  }

  .p-l-0-ssm {
    padding-left: 0;
  }

  .p-r-0-ssm {
    padding-right: 0;
  }

  .p-l-15-ssm {
    padding-left: 15px;
  }

  .p-r-15-ssm {
    padding-right: 15px;
  }

  .w-full-ssm {
    width: 100%;
  }

  /*---------------------------------------------*/

}




/*//////////////////////////////////////////////////////////////////
[ Panel color setting ]*/

.color-setting {
  position: fixed;
  z-index: 1200;
  top: 20%;
  left: 0;
  background-color: #333333;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.btn-show-panel {
  width: 40px;
  padding: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-show-panel img {
  width: 100%;
}

.btn-show-panel-hide {
  opacity: 0;
}

/*---------------------------------------------*/
.panel-color {
  padding: 10px;
  position: relative;
  display: none;
}

.btn-hide-panel {
  font-size: 22px;
  color: #fff;
  cursor: pointer;

  position: absolute;
  top: -40px;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.title-panel {
  font-family: Roboto-Regular;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 10px;
}

.color-blue,
.color-green,
.color-yellow,
.color-orange {
  width: 25px;
  height: 25px;
  margin: 10px auto;
  cursor: pointer;
  border-radius: 3px;
}

.color-blue {
  background-color: var(--color);
}

.color-green {
  background-color: #00b26f;
}

.color-yellow {
  background-color: #ffe048;
}

.color-orange {
  background-color: #ff5f3d;
}

.show-hide-btn {
  opacity: 0;
}

.map-iframe {
  border: 0;
}

.footer-brand-logo {
  max-height: 110px;
}

@media (max-width: 576px) {
  .footer-brand-logo {
    max-height: 90px;
  }
}

/* Ensure equal height for featured cards */
section.bgwhite .row .block-1 {
  height: 400px;
}

/* Responsive adjustments for featured cards */
@media (max-width: 992px) {
  section.bgwhite .row .block-1 {
    height: 350px;
  }
}

@media (max-width: 768px) {
  section.bgwhite .row .block-1 {
    height: 300px;
  }
}

@media (max-width: 576px) {
  section.bgwhite .row .block-1 {
    height: auto;
    min-height: 250px;
  }
}

/* Fix Hizmetlerimiz icons visibility */
.features .wrap-symbol-b2 {
  position: relative !important;
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.features .symbol-1 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 5px !important;
  position: relative !important;
  z-index: 1 !important;
  font-size: 36px !important;
  color: var(--color) !important;
}

.features .symbol-1::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  z-index: -1 !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: inherit !important;
  background-color: rgba(227, 6, 19, 0.1) !important;
}

.features .symbol-1 i {
  font-size: 36px !important;
  color: var(--color) !important;
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
}

/* Smooth continuous animation for Hizmetlerimiz cards */
.features .block-2 {
  animation: floatUp 3s ease-in-out infinite;
}

.features .block-2:nth-child(2) {
  animation-delay: 1s;
}

.features .block-2:nth-child(3) {
  animation-delay: 2s;
}

.features .symbol-1 {
  animation: pulse 2s ease-in-out infinite;
}

.features .block-2:nth-child(2) .symbol-1 {
  animation-delay: 0.5s;
}

.features .block-2:nth-child(3) .symbol-1 {
  animation-delay: 1s;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Video Positioning Fix */
.slider-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  transform: none !important;
}

.rs1-revo .tp-bgimg {
  display: none !important;
}