/*
*----------------------------------------------------------------------------------------
Author        : rama hardian sidik
Template Name : Rze - personal bootstrap portfolio html template
Version       : 1.0
Filename      : main.css
* ------------------------------------------------------------ ----------- ---------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 00.COLOR CSS.
* 01.BASE INDEX.
* 02.HEADER MAIN.
* 03.SECTION HERO.
* 04.SECTION CLIENT IMAGE.
* 05.ABOUT SECTION.
   - PAGE ABOUT
   - RESUME SECTION
* 06.SERVICE SECTION.
* 07.PORTFOLIO SECTION.
   - PORTFOLIO PAGE.
* 08.COUNTER SECTION.
* 09.TESTIMONIAL SECTION.
* 10.BLOG SECTION.
   - GRID BLOG   
* 11.FAQ SECTION.
* 12.FOOTER SECTION.
* 13.CONTACT PAGE.
* 14.ERROR PAGE.

------------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 00.COLOR CSS.
* ----------------------------------------------------------------------------------------
*/

:root {
  --color: #fff;
  --color-zero: #f8f8f9;
  --color-one: #565960;
  --color-two: #111013;
  --color-three: #282828;
  --color-four: #3b413d;
  --color-five: #a3a3a3;
  --color-six: #fea75f;
  --color-seven: #1c1b1e;

}


/*
* ----------------------------------------------------------------------------------------
* 01.BASE INDEX.
* ----------------------------------------------------------------------------------------
*/

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter Tight", serif;
  font-size: 15px;
  font-weight: 400;
  height: auto;
  color: var(--color-two);
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: var(--color-three);
}

a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

#main-page {
  padding: 100px 0;
}

.display-none {
  display: none;
}

.fixi {
  background: var(--color-three);
  border-bottom: 1px solid var(--color-four);
}

.hide {
  top: -100px !important;
}

.title-section h1 {
  font-size: 70px;
  letter-spacing: 0.02em;
}

.title-section span.bordered-w {
  font-size: 18px;
  position: relative;
}

.title-section span.bordered-w:after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--color-zero);
  width: 50px;
  margin-left: 20px;
  bottom: 35px;
}

.title-section span.bordered-d {
  font-size: 18px;
  position: relative;
}

.title-section span.bordered-d:after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--color-four);
  width: 50px;
  margin-left: 20px;
  bottom: 35px;
}

.title-section h3 {
  font-size: 60px;
}

.side-info h3 {
  font-size: 60px;
  letter-spacing: 0.02em;
}

.side-info p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.title-section h5 {
  font-size: 50px;

}

.title-section p.med {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.title-section .title-span {
  font-size: 18px;
  letter-spacing: 2px;
}

.title-section .title-sectionpage {
  font-size: 30px;

}

.title-section .border-span {
  border-top: 1px solid var(--color-four);
  border-bottom: 1px solid var(--color-four);
}

.col-w {
  color: var(--color-zero);
}

.col-d {
  color: var(--color-two);
}

.col-sd {
  color: var(--color-five);
}

.col-sww {
  color: var(--color-one);
}

.bg-o {
  background: var(--color-six);
}

.bg-w {
  background: var(--color);
}

.bg-sw {
  background: var(--color-zero);
}

.bg-d {
  background: #282828;
}

.bg-sd {
  background: var(--color-seven);
}

.bg-sdd {
  background: var(--color-five);
}

#menu-navigation-list li {
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

#menu-navigation-list li a:hover {
  color: rgba(244, 243, 237, 1);

}

#menu-navigation-list li a {
  position: relative;
}

#menu-navigation-list li a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  top: 100%;
  background: var(--color-zero);
  left: 0;
  pointer-events: none;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#menu-navigation-list li a:hover:after {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

#menu-navigation-list li a.active:after {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.navbar-dark .navbar-toggler {
  border-color: unset !important;
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  background-color: var(--color-seven);
}

.offcanvas-backdrop.show {
  opacity: 0;
}

#banner-page {
  padding: 150px 0;
}

.breadcumwrap {
  display: block;
  font-size: 15px;
}

.breadcumwrap a {
  padding: 0 5px 0 0;
  color: var(--color);
}

.breadcumwrap a:first-child {
  display: inline-block;
  margin: 0 0 5px;
}

.breadcumwrap a.current {
  color: var(--color-one);
}

.breadcumwrap a:last-child {
  margin: 0 5px 0;
}

.breadcumwrap a:hover {
  color: var(--color-one);

}

h1.bannerpage-title {
  font-size: 60px;
  text-transform: uppercase;
}

.current-item {
  padding: 0 0 0 5px;
  color: var(--color-four);

}

.pagination .nav-links a {
  padding: 20px;
  border: 1px solid #3b413d;
  font-size: 18px;
  color: #f8f8f9;
}

.pagination .nav-links a:first-child {

  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;

}

.pagination .nav-links a:last-child {

  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

}

.pagination .nav-links span {
  padding: 20px;
  font-size: 18px;
  color: #3b413d;
  border: 1px solid #3b413d;
}

.pagination .nav-links a:hover {
  color: var(--color-two);
  background: var(--color-zero);

}

.border-gap {
  border-top: 1px solid#3b413d;
  padding: 50px 0 0;
}


.navigation-post {
  display: flex;
}

.navigation-post a {
  display: inline-block;
  border: 1px solid #3b413d;
  padding: 20px;
  color: #3b413d;
  width: 50%;
  text-align: center;
}

.navigation-post a:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navigation-post a:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navigation-post a:hover {
  background: var(--color-zero);
  color: var(--color-two);
}

.navigation-post a:first-child {

  border-right: none;
}

.navigation-post a span {
  font-size: 50px !important;
  color: var(--color-zero);
}

.navigation-post a:hover span {
  color: var(--color-two);
}

/* media query */
@media (max-width: 999px) {

  h1.bannerpage-title {
    font-size: 50px;
  }

  #menu-navigation-list li a:hover:after {
    display: none;
  }

  .offcanvas-backdrop.show {
    opacity: .5;
  }

  #menu-navigation-list {
    display: block;
    overflow: auto;
  }

  .nav-link.active:after {
    display: none;
  }

  .title-section h1 {
    font-size: 50px;
  }

  .title-section h3 {
    font-size: 40px;
  }

  .navbar-expand-xl #menu-navigation-list li {
    padding: 20px;
    border-bottom: #272730 1px solid;
  }

  #menu-navigation-list li a:hover {
    color: #F4F3ED;
  }

}

/*
* ----------------------------------------------------------------------------------------
* 02.HEADER MAIN.
* ----------------------------------------------------------------------------------------
*/

#main-head {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  width: 100px;
}

/*
* ----------------------------------------------------------------------------------------
* 03.SECTION HERO.
* ----------------------------------------------------------------------------------------
*/
#hero-main {
  height: 100vh;
  position: relative;
  z-index: 1;
}

#hero-main:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-color: rgba(27, 27, 27, .4);
  z-index: -1;
}

/* media query */
@media (max-width: 999px) {
  #hero-main {
    padding: 200px 0 100px 0;
    height: auto;
  }

  .bg-on {
    background-color: rgba(27, 27, 27, .4);
    padding: 50px 20px;
  }
}

/*
* ----------------------------------------------------------------------------------------
* 04.SECTION CLIENT IMAGE.
* ----------------------------------------------------------------------------------------
*/
#section-client .owl-stage {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  transform: translateX(0px);
  gap: 112px;
}

#section-client .owl-stage-outer {
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

#section-client {
  padding: 100px 0 0;

}

.slide-itemclient {
  text-align: center;
  position: relative;
}

.slide-itemclient img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  margin: 0 auto;
  /*filter: invert(1);*/
}

/*
* ----------------------------------------------------------------------------------------
* 05.ABOUT SECTION.
* ----------------------------------------------------------------------------------------
*/
#section-about {
  padding: 0 0 100px 0;
}

.wrap-img img {
  width: 100%;
  border-radius: 10px;
}

.wrap-aboutinner {
  padding: 50px;
  border: 1px solid #3b413d;
  border-radius: 10px;
  background-position: center;
}

.info-wrap {
  padding: 20px;
  background-color: #1f1f24;
}


.info-wrap p.title-info {
  font-size: 15px;

  text-transform: uppercase;
}

.sosmed-info {
  padding: 0;
}

.sosmed-info li {
  list-style: none;
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 15px;
}

.sosmed-info li a {
  width: 20px;
  height: 20px;
  margin: 0 20px 0 0;
  display: block;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 0;
  font-size: 15px;
}

.about-second p {
  font-size: 30px;
  line-height: 1.4em;
  color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 05.ABOUT SECTION.
   - PAGE ABOUT
* ----------------------------------------------------------------------------------------
*/

.countitem-about {
  margin: 10px 0;

}

.countitem-about .info-count {
  padding: 20px;
  justify-content: space-around;
  background: #1c1b1e;
  border-radius: 10px;
  border: 1px solid #3b413d;
  width: 100%;
  text-align: center;
}

/*
* ----------------------------------------------------------------------------------------
* 05.ABOUT SECTION.
   - PAGE RESUME
* ----------------------------------------------------------------------------------------
*/
#section-resume {
  padding: 100px 0;
}

.inner-data {
  background: #282828;
  padding: 30px;
  place-content: center space-between;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-flow: wrap;
  border-radius: 10px;
  border: 1px solid #3b413d;
}

.wrap-data {
  place-content: center flex-start;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row;
  gap: 16px;
}

.wrap-data .line {
  width: 20px;
  height: 1px;
  left: -25px;
  top: 50%;
}

.inner-data span {
  font-size: 20px;
}

.left-side {
  position: relative;
}

/*
* ----------------------------------------------------------------------------------------
* 06.SERVICE SECTION.
* ----------------------------------------------------------------------------------------
*/

#section-service {
  padding: 100px 0 100px 0;
}

.icon-service {
  font-size: 50px !important;
  color: var(--color-zero);
  background: var(--color-two);
  padding: 10px;
  border-radius: 5px;
}

.services-detail {
  border-radius: 10px;
  position: relative;
  top: 0px;
  padding: 60px 40px 60px 40px;
  transition: all .3s;
  box-shadow: 0 5px 15px rgb(221 221 221 / 30%);
}

.services-detail h5 {

  font-weight: 700;
  font-size: 18px;
}

.services-detail p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.services-detail hr {
  width: 50px;
  height: 4px;
  background: transparent;
  border-bottom: 4px dashed var(--color-four);
}

.services-detail:hover {
  box-shadow: -32px 32px 75px 0 rgb(221 221 221 / 50%);
}

/*
* ----------------------------------------------------------------------------------------
* 07.PORTFOLIO SECTION.
* ----------------------------------------------------------------------------------------
*/
#section-portfolio {
  padding: 100px 0;
}

#portfolio-pagecontent {
  padding: 100px 0;
}

.grid-2column {
  margin: 0 -20px;
}

.grid-2column .isotop-item,
.grid-2column .grid-sizer {
  width: 50%;
  padding: 0 20px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  border: 1px solid var(--color-four);
}

.img-meta {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
  transition: all .3s;
}


.portfolio-item .caption-item {
  position: absolute;
  bottom: 0;
  padding: 20px 30px;
}

.portfolio-item .tag {
  font-size: 15px;
  display: inline-block;
}

.portfolio-item h3 {

  font-size: 30px;
}

.portfolio-item:hover .img-meta img {
  transform: scale(1.2);
  opacity: .5;
}

.port-link {
  overflow: hidden;
  position: absolute;

  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  z-index: 1;
}

.port-link span {
  font-size: 100px;
  color: var(--color);
  opacity: 0;
  visibility: hidden;
  transform: scale(3);
  -webkit-transform: scale(3);
  -moz-transform: scale(3);
  -ms-transform: scale(3);
  -o-transform: scale(3);
}

.port-link:after {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  background-color: var(--color-two);
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: .3s cubic-bezier(.23, 1, .32, 1);
  -webkit-transition: .3s cubic-bezier(.23, 1, .32, 1);
  -moz-transition: .3s cubic-bezier(.23, 1, .32, 1);
  -ms-transition: .3s cubic-bezier(.23, 1, .32, 1);
  -o-transition: .3s cubic-bezier(.23, 1, .32, 1);
}

.portfolio-item:hover .port-link:after {

  height: 100%;
  top: 0;
  bottom: auto;
}

.portfolio-item:hover .port-link span {
  opacity: 1;
  visibility: visible;
  transition: .3s cubic-bezier(.23, 1, .32, 1);
  -webkit-transition: .3s cubic-bezier(.23, 1, .32, 1);
  -moz-transition: .3s cubic-bezier(.23, 1, .32, 1);
  -ms-transition: .3s cubic-bezier(.23, 1, .32, 1);
  -o-transition: .3s cubic-bezier(.23, 1, .32, 1);
  transition-delay: .25s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.arow {
  position: absolute;
  right: 0;
  font-size: 50px !important;
  color: var(--color-four);
  border-radius: 10px;
  border: 1px solid var(--color-four);
  bottom: 0;
}

.portfolio-item:hover .arow {
  background: var(--color);
}


/*
* ----------------------------------------------------------------------------------------
* 07.PORTFOLIO SECTION.
    -PORTFOLIO PAGE
* ----------------------------------------------------------------------------------------
*/

.portfolio-banner {
  overflow: hidden;
  height: 500px;
}

.portfolio-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.desc h3 {
  font-size: 20px;
  line-height: 1.7;
  padding: 0 0 30px;
  letter-spacing: 0.03em;
}

.img-portwrap img {
  width: 100%;
}

/* media query */
@media (max-width: 999px) {

  .grid-2column .isotop-item,
  .grid-2column .grid-sizer {
    width: 100%;
  }

  .img-meta img {
    width: 100%;
  }
}


/*
* ----------------------------------------------------------------------------------------
* 08.COUNTER SECTION.
* ----------------------------------------------------------------------------------------
*/
#section-counter {
  padding: 100px 0;
  background-size: cover;
}

.count-wrap {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

.countdata {
  display: flex;

}

.icon-count {
  font-size: 40px !important;

  height: 70px;
  width: 70px;
  text-align: center;
  padding: 10px 0;
  margin: 0 30px 0;
  font-weight: 100 !important;
  border-radius: 100px;
  line-height: 1.3 !important;
  box-shadow: 0 0 0 50px rgba(86, 86, 96, .1);
}

.info-count h3 {
  font-size: 50px;
}

.info-count p {
  font-size: 18px;
  letter-spacing: 1px;
}

.item-counters {
  padding: 50px 0 0 0;
  margin: 0;
}

/* media query */
@media (max-width: 999px) {
  .icon-count {
    margin: 0 auto;
  }

  .countdata {
    flex-direction: column;
    text-align: center;
  }

  .item-counters {
    padding: 50px 0 50px 0;
    margin: 50px 0 50px 0;
  }

  .item-counters:first-child {
    padding: 0 0 0 0;
    margin: 50px 0 0 0;
  }

  .item-counters:last-child {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
}

/*
* ----------------------------------------------------------------------------------------
* 09.TESTIMONIAL SECTION.
* ----------------------------------------------------------------------------------------
*/

#section-testi {
  padding: 0 0 100px 0;
}

#section-testi .owl-stage-outer {
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.testi-wrap {
  padding: 50px;
  border: 1px solid #3b413d;
  border-radius: 10px;
  background: var(--color-seven);

}

.user-pic {
  display: inline-block;
}

.user-pic img {
  width: 80px !important;
  height: 80px;
  margin: auto;
  border-radius: 50%;
}

.content-testi h3 {
  font-size: 20px;
  line-height: 1.7;
  padding: 0 0 30px;
  letter-spacing: 0.03em;
}

.content-testi span {
  opacity: .5;
}

.under-content {
  padding: 20px 0 0;
  border-top: 1px solid #3b413d;
}

.under-content p {
  font-size: 30px;
}

#testi-slide.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

#testi-slide.owl-theme .owl-dots .owl-dot span {
  border: 1px solid #3b413d;
  background: transparent;
}

#testi-slide.owl-theme .owl-dots .owl-dot.active span,
#testi-slide.owl-theme .owl-dots .owl-dot:hover span {
  background: #3b413d;
}

/* media query */
@media (max-width: 999px) {
  #testi-slide .owl-stage-outer {
    mask: unset;
  }
}

/*
* ----------------------------------------------------------------------------------------
* 10.BLOG SECTION.
* ----------------------------------------------------------------------------------------
*/
#blog-section {
  padding: 100px 0;
}

.post-categories {
  padding: 0;
}

.post-categories li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
}

.post-categories li a {
  color: #f8f8f9;
  padding: 5px 10px;
  background: #3b413d;
  border-radius: 10px;
}

.post-categories li:first-child {
  margin: 0 0 10px 0;
}

.blog-wrap {
  padding: 30px 50px;
}

.wrap-blogconten {
  border-radius: 10px;

}

.blog-img {
  position: relative;
  z-index: 1;
}

.blog-img img {
  border-radius: 10px;
}

.blog-img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  z-index: 0;
  background-image: linear-gradient(to right, var(--color-seven) 6.33%, rgb(26 26 26 / 89%) 26.94%, rgba(255, 255, 255, 0) 100%);
}

.lef-side .blog-img:after {
  background-image: linear-gradient(to left, var(--color-seven) 6.33%, rgb(26 26 26 / 89%) 26.94%, rgba(255, 255, 255, 0) 100%);
}

#blog-pagecontent {
  padding: 100px 0;
}

.blog-content h3 {
  font-size: 40px;
}

.blog-content p {
  color: var(--color-five);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.blog-img {
  height: auto;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.link-ablog {
  padding: 20px 50px;
  background: var(--color-four);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-zero);
  display: inline-block;
  margin: 10px 0 0;
  border-radius: 10px;
}

.link-ablog:hover {
  background: var(--color-zero);
  color: var(--color-four);
}

/* media query */

@media (max-width: 999px) {
  .blog-wrap {
    padding: 80px 50px;
  }

  .blog-img:after {
    border-radius: 0;
    background-image: linear-gradient(to top, var(--color-seven) 6.33%, rgb(26 26 26 / 89%) 26.94%, rgba(255, 255, 255, 0) 100%);
  }

  .blog-img img {
    border-radius: 0;
  }

  .wrap-blogconten {
    border-radius: 0;
  }

  .lef-side .blog-img:after {
    background-image: linear-gradient(to top, var(--color-seven) 6.33%, rgb(26 26 26 / 89%) 26.94%, rgba(255, 255, 255, 0) 100%);
  }

  .blog-content h3 {
    font-size: 30px;
  }

  .blog-content p {
    font-size: 18px;
  }
}

/*
* ----------------------------------------------------------------------------------------
* 10.BLOG SECTION.
   - GRID BLOG
* ----------------------------------------------------------------------------------------
*/

.blog-itemmedium .blog-wrap {

  padding: 50px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-imgitem {
  position: relative;
  height: auto;
}

.blog-imgitem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}

.blog-imgitem:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-image: linear-gradient(to top, #1c1b1e 6.33%, rgb(26 26 26 / 89%) 26.94%, rgba(255, 255, 255, 0) 100%);
}

/*
* ----------------------------------------------------------------------------------------
* 10.BLOG SECTION. 
   - BLOG PAGE
* ----------------------------------------------------------------------------------------
*/

.date {
  padding: 10px 20px;
  background: #1c1b1e;
  display: inline-block;
  color: #f8f8f9;
  border-radius: 10px;
  border: 1px solid #3b413d;
}

#blog-content {
  border-bottom: 1px solid #3b413d;
}

#blog-content ul {
  padding: 0;
  margin: 0 0 30px 0;
}

#blog-content ul li {
  font-size: 18px;
  line-height: 1.5;
  list-style: none;
  background: var(--color-seven);
  padding: 20px;
  margin: 20px 0;
  color: var(--color-zero);
}

.excrept {
  font-size: 50px;
  color: var(--color);
  margin: 0 0 50px;
}

#blog-content p {
  font-size: 20px;
  color: #f8f8f9;
  line-height: 1.7;
}

#blog-content h3 {
  color: #f8f8f9;
  font-size: 40px;
  line-height: 1.7;
}

/* media query */

@media (max-width: 999px) {
  .excrept {
    font-size: 40px;
  }

}

/*
* ----------------------------------------------------------------------------------------
* 11.FAQ SECTION.
* ----------------------------------------------------------------------------------------
*/

#faq-section {
  padding: 100px 0;
}

#faq-section .faq-info span {
  position: relative;
  z-index: 1;
}

#faq-section .faq-accordion-item,
#faq-section .faq__collapse-item,
#faq-section .faq-collapse-item {
  margin-bottom: 10px;
  border-radius: 6px;
}

#faq-section .faq-accordion-item:last-child,
#faq-section .faq__collapse-item:last-child,
#faq-section .faq-collapse-item:last-child {
  margin: 0;
}

#faq-section .faq-collapse-item-card {

  padding: 0 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#faq-section .faq-accordion-item-card-header,
#faq-section .faq__collapse-item-card-header,
#faq-section .faq-collapse-item-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  padding: 20px;
}

#faq-section .faq-accordion-item-card-header h6,
#faq-section .faq__collapse-item-card-header h6,
#faq-section .faq-collapse-item-card-header h6 {
  font-size: 26px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#faq-section .faq-accordion-item-card-header i,
#faq-section .faq__collapse-item-card-header i,
#faq-section .faq-collapse-item-card-header i {
  border: 1px solid;
  padding: 10px;
}

#faq-section .faq-accordion-item-card-header span,
#faq-section .faq__collapse-item-card-header span,
#faq-section .faq-collapse-item-card-header span {

  margin-right: 15px;
}

#faq-section .faq-accordion-item-card-header-content,
#faq-section .faq__collapse-item-card-header-content,
#faq-section .faq-collapse-item-card-header-content {
  padding: 0 60px 0 0;

}

#faq-section .faq-collapse-item-card-header-content.active {
  display: block;
}

#faq-section .faq-accordion-item-card-header-content p,
#faq-section .faq__collapse-item-card-header-content p,
#faq-section .faq-collapse-item-card-header-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.02em;
  padding: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* 12.FOOTER SECTION.
* ----------------------------------------------------------------------------------------
*/

#footer-main {
  padding: 100px 0 50px 0;
}

#footer-bottom {
  padding: 0 0 20px 0;
}

.upper-footer h3 {
  font-size: 80px;
}

.cta-footer {
  padding: 20px 50px;
  background: var(--color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-seven);
  display: inline-block;
  margin: 50px 0;
  border-radius: 10px;
}

.cta-footer:hover {
  background: var(--color-four);
  color: var(--color);
}

.footer-link {
  padding: 0 0 0 50px;
  display: inline-block;
}

.footer-link:first-child {
  padding: 0
}

.footer-link li {
  display: block;
  position: relative;
  padding: 0 0 10px 0;
}

.footer-link li a {
  color: #fff;
}

.sosial-footer {
  font-size: 20px;
}

.form-sub {
  display: flex;
  width: 100%;
}


.form-sub .sub-btn {
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: 0 !important;
  letter-spacing: 1px;
  color: #0e0e0e !important;
  background: #fff;
}

.sub-form form .form-subcribe {
  padding: 0 !important;
}

.form-sub {
  margin: 0 !important;
  width: 100%;

}

.form-sub input {
  background-color: var(--color-four) !important;
  border-radius: 0 !important;
  border-bottom-left-radius: 10px !important;
  border-top-left-radius: 10px !important;
  outline: none;
  color: var(--color) !important;
  padding: 16.5px 12px !important;

  border: none !important;
  display: block;
  width: 100%;
  height: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-sub button.sub-btn {
  padding: 0px 38px !important;
  height: auto !important;
  border-radius: 0 !important;
  border: none;
  text-transform: uppercase;
  box-shadow: none !important;
  font-size: 20px;
  font-weight: 600;
  border-bottom-right-radius: 10px !important;
  border-top-right-radius: 10px !important;
  letter-spacing: 1px;
  color: var(--color-two);
  background-color: var(--color) !important;
}

#footer-bottom {
  padding: 0 0 20px 0;
}

.b-footer {
  border-top: 1px solid var(--color-four);
}

/* media query */
@media (max-width: 999px) {
  .upper-footer h3 {
    font-size: 60px;
  }

  .sub-form form {
    flex-direction: column;
  }

  .sub-form form .wpforms-field-container {
    width: 100%;
  }

  .sub-form form .wpforms-field-container input {
    margin: 10px 0;
  }

  .sub-form form .wpforms-error {
    margin: 10px 0;
  }

  .sub-form form button.sub-btn {
    display: block !important;
    width: 100% !important;
  }
}

/*
* ----------------------------------------------------------------------------------------
* 13.CONTACT PAGE.
* ----------------------------------------------------------------------------------------
*/
.list-info {
  padding: 0;
  margin: 30px 0 0 0;
}

.list-info li {
  list-style: none;
  background: var(--color-seven);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--color-four);
  margin: 20px 0;
}

.inner-info {
  display: flex;
}

.text-info {
  padding: 10px 0 0 30px;
  font-size: 18px;
  color: var(--color-zero) !important;
}

.list-info .inner-info span {
  font-size: 50px;
  color: var(--color-zero);
}

.form-contact {
  padding: 50px 30px 30px;
  background: var(--color-seven);
  border-radius: 10px;
  border: 1px solid var(--color-four);
}

.form-contact form.contact-wrap textarea {
  height: 150px;
}

.form-contact form.contact-wrap input,
textarea {
  background-color: var(--color-four) !important;
  border-radius: 10px !important;
  outline: none;
  color: var(--color) !important;
  padding: 16.5px 12px;
  border: none !important;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.captcha-wrap p {
  font-size: 18px;
  color: var(--color) !important;
  margin: 0 0 10px 0 !important;
}

.captcha-wrap input {
  background-color: var(--color-four) !important;
  border-radius: 10px !important;
  outline: none;

  color: var(--color) !important;
  padding: 18px 12px !important;

  border: none !important;
  display: block;
  width: 100%;
  height: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-contact form button.contact-sub {
  padding: 18px 38px !important;
  height: auto !important;
  border-radius: 10px !important;
  border: none;
  text-transform: uppercase;
  box-shadow: none !important;
  font-size: 20px;
  width: 100%;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-two) !important;
  background-color: var(--color) !important;
}

/*
* ----------------------------------------------------------------------------------------
* 14.ERROR PAGE.
* ----------------------------------------------------------------------------------------
*/
.error-title h3 {
  font-size: 60px;
  color: var(--color-zero);
}

.error-title p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* media query */
@media (max-width: 999px) {
  .error-title h3 {
    font-size: 40px;
  }
}

label.error {
  margin: 5px 0;
  color: var(--color-six);
}

.flash-error {
  display: none;
  background: var(--color-three);
  padding: 20px;
  margin: 0 0 30px 0;
}

.flashinfo-sub,
.flashinfo-contact {
  padding: 10px;
  margin: 10px 0;
  background: var(--color-three);
  color: var(--color);
  display: none;
}