/**
 * INDEXES
 * 0. Root
 * 1. Based
 * 1.1 Animated Blocks
 * 1.2 Colls
 * 2. Header
 * 2.1 Profile
 * 2.2 Geometry
 * 2.3 Mobile Menu
 * 2.5 Header Logo
 * 2.5.1 Mobile menu Sticky
 * 2.5.2 Header Logo Glitch
 * 2.6 Scroll down
 * 3. Block template
 * 3.1 Skills
 * 4. Experience
 * 4.1 Marquee
 * 5. Welcome
 * 6. Resume
 * 7. Tabs
 * 8. Header Effect
 * 9. OWL Carousel
 * 10. Works
 * 11. Services
 * 12. Reviews
 * 13. Blog
 * 14. Production
 * 15. Books
 * 16. Footer
 * 17. Copy
 * 18. Up to Top
 * 19. Chevron
 * 20. Vignette
 * 21. Modal
 * 22. Submenu
 * 23. List
 * 24. Contacts
 */

/*
 * 0. Root
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*
--text-* - для цветов текста
--link-* - для цветов ссылок
--accent-* - для акцентных цветов
--bg-* - для фоновых цветов
--border-* - для цветов границ
--opacity-* - для значений прозрачности
--shadow-color - для теней
*/
:root {
  /* Основные цвета текста и ссылок */
  --text-primary: #e5e5e5;           /* Основной цвет текста */
  --text-secondary: #a3a3a3;          /* Второстепенный цвет текста */
  --text-muted: #6b6b6b;              /* Приглушенный цвет текста */
  --text-dark: #373636;                /* Темно-серый для заголовков */
  --text-light: #FFF;                  /* Белый цвет текста */
  
  /* Цвета ссылок */
  --link-color: #e5e5e5;               /* Цвет ссылок по умолчанию */
  --link-hover: #FFF;                   /* Цвет ссылок при наведении */
  
  /* Акцентные цвета */
  --accent-red: #fb2f2f;                /* Акцентный красный цвет */
  --accent-blue: #4183c4;                /* Акцентный синий цвет */
  --accent-orange: #ef6d1d;              /* Акцентный оранжевый цвет */
  
  /* Фоновые цвета */
  --bg-primary: #181818;                 /* Основной фон страницы */
  --bg-secondary: #1b1b1b;               /* Вторичный фон (звезды, скиллы) */
  --bg-tertiary: #212121;                 /* Третичный фон (элементы резюме) */
  --bg-welcome: #141414;                  /* Фон секции Welcome */
  --bg-card: #2f2f2f;                      /* Фон карточек и кнопок */
  --bg-modal: #292828;                      /* Фон модального окна */
  --bg-input: #5d5b5b;                      /* Фон полей ввода */
  --bg-input-focus: #474747;                /* Фон полей ввода при фокусе */
  
  /* Цвета границ и разделителей */
  --border-light: #5f5c5c;                  /* Светлые границы */
  --border-dark: #332f2f;                    /* Темные границы */
  --border-darker: #323232;                   /* Еще темнее границы */
  
  /* Состояния и эффекты */
  --opacity-normal: 0.8;                      /* Обычная прозрачность */
  --opacity-high: 0.9;                         /* Высокая прозрачность */
  --opacity-low: 0.3;                           /* Низкая прозрачность */
  
  /* Тени */
  --shadow-color: #2b2b2b77;                   /* Цвет теней */
  
  /* Цвета для светлой темы (будущий переключатель) */
/*   --text-primary: #222222;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-dark: #666666;
  --text-light: #000000;
  --link-color: #0066cc;
  --link-hover: #004499;
  --accent-red: #cc0000;
  --accent-blue: #0066cc;
  --accent-orange: #cc5500;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #eeeeee;
  --bg-welcome: #fafafa;
  --bg-card: #e0e0e0;
  --bg-modal: #f0f0f0;
  --bg-input: #ffffff;
  --bg-input-focus: #f0f0f0;
  --border-light: #cccccc;
  --border-dark: #999999;
  --border-darker: #666666;
  --shadow-color: rgba(0,0,0,0.1); */
}

/*
 * 1. Based
 */
body {
    background: var(--bg-primary);
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: .01071em;
    color: var(--text-primary);
}

body.open, body:after {
  overflow: hidden
}
.b-nav, body:after {
  position: absolute;
  right: 0;
}
.b-brand, .b-link {
  color: var(--text-light);
  opacity: var(--opacity-normal);
  font-size: 18px;
  font-weight: 500;
  margin-left: 0;
  text-decoration: none;
  font-family: "Roboto", serif;
  text-transform: uppercase;
}
.b-link:hover {
  color: var(--text-light);
  opacity: 1;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(345px, 0, 0);
    transform: translate3d(345px, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(345px, 0, 0);
    transform: translate3d(345px, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
* {
  box-sizing: border-box
}
body:after {
  background: #000;
  content: '';
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 0;
  top: 0;
  visibility: hidden;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  width: 100%;
}
body.open:after {
  z-index: 10;
  opacity: 0.65;
  height: 100000%;
  visibility: visible
}
.text-right {
    text-align: right;
}

/*
 * 1.1 Animated Blocks
 */
.animated-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-block.sec10 {
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.animated-block.sec15 {
  transition: opacity 1.5s ease-out, transform 1s ease-out;
}
.animated-block.sec20 {
  transition: opacity 2s ease-out, transform 1s ease-out;
}

.animated-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/*
 * 1.2 Colls
 */
.row {
   position: relative;
   display: flex;
   flex-direction: row;
}
.col-1 {
   width: 8.3%;
}
.col-2 {
   width: 16.6%;
}
.col-3 {
   width: 24.9%;
}
.col-4 {
   width: 33.2%;
}
.col-5 {
   width: 41.5%;
}
.col-6 {
   width: 50%;
}
.col-7 {
   width: 58.3%;
}
.col-8 {
   width: 66.4%;
}
.col-9 {
   width: 74.7%;
}
.col-10 {
   width: 83%;
}
.col-11 {
   width: 91.7%;
}
.col-12 {
   width: 100%;
}

/*
 * 2. Header
 */
header {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/*
 * 2.1 Profile
 */
.profile {
    position: absolute;
    width: 90%;
    text-align: center;
    left: 50%;
    margin: 0 0 0 -45%;
    top: 20%;
}
.profile .photo img {
    border-radius: 50%;
    opacity: .85;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;  
    width: 360px;
}
.profile .photo img:hover {
    opacity: 1;
}
.profile .name {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0;
}
.profile .skill {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
    line-height: 1.7em;
    list-style: none;
}
.profile .skill li {
    display: inline-block;
    border-right: 1px solid var(--border-light);
    padding: 0 15px 0 10px;
}
.profile .skill li:last-child {
    border-right: none;
    padding: 0 0 0 10px;
}
.profile .skill a {
    color: var(--border-light);
}
.profile .links {
    margin: 40px 0 0;
}
.profile .links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.profile .links ul li {
    display: inline;
    margin: 0 10px;
}
.profile .links ul li a {
    color: var(--link-color);
    font-size: 3em;
}
.profile .links ul li a:hover {
    color: var(--link-hover);
}
@media all and (max-width : 724px) {
  .profile .photo img {
    max-width: 70%;
    height: 70%;
  }
  .profile .name {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .profile .skill li {
    display: block;
    border-right: none;
    padding: 0;
  }

}
@media all and (max-height : 800px) {
  .profile {
    top: 15%;
  }
  .profile .photo img {
    max-width: 60%;
    height: 60%;
  }
  .profile .name {
        font-size: 2.5rem;
  }
  .profile .skill {
    font-size: 1.2rem;
  }
}
@media all and (max-height : 640px) {
  .profile {
    top: 15%;
  }
  .profile .photo img {
    max-width: 30%;
    height: 30%;
  }
}
@media all and (min-height : 550px) and (max-height : 640px) {
  .profile .links {
    margin: 70px 0 0;
  }
}

/*
 * 2.2. Geometry
 */
#stars { 
  background: var(--bg-secondary);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media all and (max-width : 600px) {
  #stars { 
    width: 140%;
    margin: 0 0 0 -20%;
  }
}

/*
 * 2.3 Mobile Menu
 */
@media all and (max-width : 5800px) {
.b-nav {
  background: #000 none repeat scroll 0 0;
  position: absolute;
  top: 0;
  width: 320px;
  z-index: 12;
  height: 100%;
}
.b-nav:not(.open) {
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}
.b-nav {
  animation-duration: .4s;
  animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}
.b-nav .copy {
  font-size: 14px;
  color: #515151;
  text-align: center;
}
.b-nav ul {
  padding-left: 0px;
}
.b-nav li {
  color: var(--text-light);
  list-style-type: none;
  padding: 10px 10px 10px 0;
  text-align: left;
  -webkit-transform: translateX(345px);
  -ms-transform: translateX(345px);
  transform: translateX(345px)
}
.b-nav li:not(.open) {
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}
.b-nav li:not(.open), .b-nav.open li {
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both
}
.b-nav li:first-child {
  margin-top: 0px
}
.b-nav.open {
  overflow-x: hidden;
  overflow-y: scroll;
  visibility: visible;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  max-width: 320px;
}
.b-nav:not(.open) {
  visibility: hidden;
  animation-duration: 0.4s;
  animation-fill-mode: backwards;
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}
.b-nav.open li {
  padding-left: 30px;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}
.b-link {
  background: 0 0;
  border-left: rgba(255, 255, 255, 0)solid 2px;
  color: var(--text-primary);
  transition: all .4s ease;
  width: auto
}
.b-link, .b-menu {
  -webkit-transition: all .4s ease;
}
.b-nav li {
  border-left: 2px solid var(--accent-red);
}
.b-menu {
  cursor: pointer;
  display: block;
  height: 66px;
  padding-top: 20px;
  position: relative;
  top: -20px;
  transition: all 0.4s ease 0s;
  width: 43px;
  z-index: 12;
  right: 10px;
}
.b-bun--bottom, .b-bun--mid, .b-bun--top {
  height: 2px;
  width: 25px
}
.b-bun {
  background: var(--text-light);
  transition: all .4s ease
}
.b-brand, .b-bun {
  position: relative;
  -webkit-transition: all .4s ease
}
.b-bun--top {
  top: 0
}
.b-bun--mid {
  top: 8px
}
.b-bun--bottom {
  top: 16px
}
.b-brand {
  color: #2196f3;
  top: -21.43px;
  transition: all .4s ease;
  z-index: 13
}
.b-container {
  position: absolute;
  right: 0;
  top: 30px;
}
.b-container:hover:not(.open) .bun-bottom, .b-container:hover:not(.open) .bun-mid, .b-container:hover:not(.open) .bun-top {
  background: #2196f3
}
.b-container.open .b-bun--top{
  background: var(--accent-red);
  top: 9px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
.b-container.open .b-bun--mid{
  opacity: 0
}
.b-container.open .b-bun--bottom{
  background: var(--accent-red);
  top: 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}
.b-container.open .b-brand{
  color: var(--text-light)
}
.mobile-search-btn {
    cursor: pointer;
    background-color: var(--text-dark);
    opacity: var(--opacity-normal);
    border-radius: 4px;
    color: var(--text-light);
    margin-bottom: 25px;
    margin-left: 30px;
    padding: 10px 20px;
    text-transform: uppercase;
    border:none;
    line-height: 20px;
}
.mobile-search-btn:hover {
    opacity: 1;
}
.mobile-search {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #858585;
    color: #949494;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 30px;
    padding: 10px;
    width: 80%;
}
}

/*
 * 2.5 Header Logo
 */
header .logo {
    position: absolute;
    left: 5%;
    top: 20px;
    font-size: 2em;
    text-align: center;
    line-height: 1;
}
header .logo a {
    text-decoration: none;
    color: var(--text-primary);
}
header .logo a .red {
    color: var(--accent-red);
}
header .logo .slogan {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: lowercase;    
    display: block;
    font-weight: 300;
}

/*
 * 2.5.1 Mobile menu Sticky
 */
.mobile-nav.sticky {
    opacity: .9;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    background: var(--bg-secondary);
    width: 100%;
    height: 50px;
}
.open .mobile-nav.sticky {
    opacity: 1;
}
.open .mobile-nav.sticky .b-nav {
    height: unset;
}
.mobile-nav.sticky .b-menu {
    padding: 0;
    top: -15px;
}
.logo.sticky .slogan {
    display: none;
}
.logo.sticky {
    font-size: 1.5em;
    position: fixed;
    z-index: 70;
    top: 17px;
}
/*
 * 2.5.2 Header Logo Glitch
 */
.logo:not(.sticky) .glitch {
  color: white;
  position: relative;
  width: 400px;
  margin: 0 auto;
}
@keyframes noise-anim {
  0% {
    clip: rect(16px, 9999px, 38px, 0);
  }
  5% {
    clip: rect(25px, 9999px, 76px, 0);
  }
  10% {
    clip: rect(72px, 9999px, 49px, 0);
  }
  15% {
    clip: rect(86px, 9999px, 58px, 0);
  }
  20% {
    clip: rect(53px, 9999px, 28px, 0);
  }
  25% {
    clip: rect(6px, 9999px, 82px, 0);
  }
  30% {
    clip: rect(33px, 9999px, 65px, 0);
  }
  35% {
    clip: rect(52px, 9999px, 90px, 0);
  }
  40% {
    clip: rect(19px, 9999px, 59px, 0);
  }
  45% {
    clip: rect(39px, 9999px, 26px, 0);
  }
  50% {
    clip: rect(1px, 9999px, 62px, 0);
  }
  55% {
    clip: rect(22px, 9999px, 73px, 0);
  }
  60% {
    clip: rect(63px, 9999px, 47px, 0);
  }
  65% {
    clip: rect(82px, 9999px, 85px, 0);
  }
  70% {
    clip: rect(18px, 9999px, 10px, 0);
  }
  75% {
    clip: rect(35px, 9999px, 92px, 0);
  }
  80% {
    clip: rect(6px, 9999px, 87px, 0);
  }
  85% {
    clip: rect(71px, 9999px, 41px, 0);
  }
  90% {
    clip: rect(13px, 9999px, 66px, 0);
  }
  95% {
    clip: rect(35px, 9999px, 96px, 0);
  }
  100% {
    clip: rect(31px, 9999px, 15px, 0);
  }
}
.logo:not(.sticky) .glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 7s infinite linear alternate-reverse;
}
@keyframes noise-anim-2 {
  0% {
    clip: rect(12px, 9999px, 14px, 0);
  }
  5% {
    clip: rect(70px, 9999px, 34px, 0);
  }
  10% {
    clip: rect(48px, 9999px, 3px, 0);
  }
  15% {
    clip: rect(98px, 9999px, 43px, 0);
  }
  20% {
    clip: rect(13px, 9999px, 26px, 0);
  }
  25% {
    clip: rect(14px, 9999px, 88px, 0);
  }
  30% {
    clip: rect(73px, 9999px, 85px, 0);
  }
  35% {
    clip: rect(7px, 9999px, 23px, 0);
  }
  40% {
    clip: rect(23px, 9999px, 69px, 0);
  }
  45% {
    clip: rect(95px, 9999px, 79px, 0);
  }
  50% {
    clip: rect(83px, 9999px, 41px, 0);
  }
  55% {
    clip: rect(77px, 9999px, 69px, 0);
  }
  60% {
    clip: rect(22px, 9999px, 36px, 0);
  }
  65% {
    clip: rect(89px, 9999px, 79px, 0);
  }
  70% {
    clip: rect(82px, 9999px, 25px, 0);
  }
  75% {
    clip: rect(71px, 9999px, 16px, 0);
  }
  80% {
    clip: rect(10px, 9999px, 16px, 0);
  }
  85% {
    clip: rect(31px, 9999px, 33px, 0);
  }
  90% {
    clip: rect(29px, 9999px, 76px, 0);
  }
  95% {
    clip: rect(61px, 9999px, 75px, 0);
  }
  100% {
    clip: rect(72px, 9999px, 46px, 0);
  }
}
.logo:not(.sticky) .glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: var(--bg-secondary);
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 13s infinite linear alternate-reverse;
}

/*
 * 2.6 Scroll down
 */
@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(100px);
	}
}
@media all and (min-height: 800px) and (min-width: 800px), all and (max-height: 1000px) and (max-width: 500px) {
  svg.scroll-icon {
    position: absolute;
    bottom: 50px;
    width: 40px;
    height: 60px;
    display: block;
    left: 50%;
    margin: 0 0 0 -20px;
    opacity: .4;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;  
  }
  svg.scroll-icon:hover {
    opacity: 1;
  }
  svg.scroll-icon #wheel {
    animation: scroll ease 1.5s infinite;
  }
}
@media all and (max-width: 680px) {
  svg.scroll-icon {
    display: none !important;
  }
}
/*
 * 3. Block template
 */
.block-20 {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0 10em;
    margin: 0 auto;
    overflow: hidden;
}
@media all and (max-width: 800px) {
  .block-20 {
    padding: 5em 0 7em;
  }
}
.block-20 .title {
    font-size: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}
@media (prefers-contrast: more) {
  .block-20 .title {
    color: #A7A5A5;
  }
}
.block-20 h2 {
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 3em 0;
}
@media all and (max-width: 340px) {
  .block-20 h2 {
    font-size: 1.6em;
  }
}

/*
 * 3. Skills
 */
.skills ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 3%;
}
.skills ul li {
    width: 13.6%;
    text-align: center;
    background: var(--bg-secondary);
    padding: 40px 0;
    border-radius: 60px;
    margin: 20px 0;
}
.skills ul li .percent {
    font-size: 40px;
    color: var(--text-light);
    margin: 10px 0;
}
.skills ul li .name {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--text-muted);
}

@media all and (max-width: 960px) {
  .skills ul li {
    width: 17%;
  }
}
@media all and (max-width: 800px) {
  .skills ul li {
    width: 22%;
  }
}
@media all and (max-width: 640px) {
  .skills ul li {
    width: 30%;
  }
}
@media all and (max-width: 480px) {
  .skills ul li {
    margin: 10px 0;
  }
  .skills ul li .percent {
    font-size: 25px;
  }
}

/*
 * 4. Experience
 */
.experience {
    position: relative;
    text-align: center;
    padding: 15em 0;
    line-height: 20em;
}
.experience .years {
    font-size: 40em;
    font-weight: 300;
    letter-spacing: 0;
    z-index: 10;
}
.experience .years .count {
    opacity: 0;
}
.experience .years .count.counting {
    opacity: 1;
    display: inline-block;
}
.experience .years span.plus {
    font-size: 0.3em;
    z-index: 10;
    display: none;
}
.experience .text {
    font-size: 10em;
    text-transform: uppercase;
    z-index: 10;
}

/*
 * 4.1 Marquee
 */
.b-marquee {
    width: 100%;
    white-space: nowrap;
    color: #1b1b1b;
    position: absolute;
    bottom: 0em;
    font-size: 20em;
    line-height: 1em;
    text-transform: uppercase;
    z-index: 1;
}
.b-marquee__text {
  -webkit-animation: animMarquee 5s linear infinite;
  animation: animMarquee 5s linear infinite;
}
@-webkit-keyframes animMarquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animMarquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.b-marquee--rtl .b-marquee__text {
  -webkit-animation: animMarqueeRtl 15s linear infinite;
  animation: animMarqueeRtl 15s linear infinite;
}
@-webkit-keyframes animMarqueeRtl {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-300%);
    transform: translateX(-300%);
  }
}
@keyframes animMarqueeRtl {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-300%);
    transform: translateX(-300%);
  }
}
@media all and (max-width: 800px) {
  .experience {
    line-height: 10em;
  }
  .experience .years {
    font-size: 30em;
  }
  .experience .text {
    font-size: 7em;
  }
}
@media all and (max-width: 480px) {
  .experience .years {
    font-size: 20em;
  }
  .experience .text {
    font-size: 4em;
  }
  .b-marquee {
    font-size: 10em;
  }
}

/*
 * 5. Welcome
 */
.welcome {
    background: var(--bg-welcome);
}
.welcome .wrap {
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;    
    color: var(--text-primary);
    font-size: 1.5em;
    font-weight: 300;
}
.welcome .wrap h2 {
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

/*
 * 6. Resume
 */
.resume {
    background: var(--bg-secondary);
    padding: 0 20px;
}
.resume .wrap {
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}
.resume .title {
    font-size: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}
.resume h2 {
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 3em 0;
}
@media all and (max-width: 340px) {
  .resume h2 {
    font-size: 1.6em;
  }
}
.resume .flag svg {
    max-width: 18px;
}
.resume table {
    border-left: 2px solid var(--accent-red);
    width: 100%;
    margin: 20px 0;
}
.resume table td {
    width: 50%;
    position: relative;
    padding: 5px 0 0 15px;
}
.resume table tr td:first-child {
    color: var(--text-light);
    font-weight: 400;
}
.resume table tr td:first-child::after {
    content: ":";
    color: #474747;
    font-weight: 700;
    position: absolute;
    right: 15px;
}
.resume .my-smile {
    width: 350px;
    height: 375px;
    background: url(../images/my-smile-3_1_2_350px_compress.webp?2) 0 0 no-repeat;
    background-size: cover;
    float: right;
    margin: 0 50px 0;
}
.resume .my-smile .bright {
    opacity: var(--opacity-low);
    display: none;
    width: 350px;
    height: 375px;
    background: url(../images/my-smile-3_2.webp) 0 0 no-repeat;
    background-size: cover;
}
.resume .calendar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    border-left: 2px dashed var(--border-dark);
    position: relative;
}
.resume .calendar .timeline {
    position: absolute;
    left: 0;
    font-size: 1.8em;
    font-weight: 700;
    color: #333131;
}
.resume .calendar .timeline:hover {
    color: #474646;
}
.resume .calendar .item {
    width: 45%;
    background: var(--bg-tertiary);
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 20px 5%;
}
.resume .calendar .item .date {
    color: #ffdcba;
    font-size: .8em;
}
.resume .calendar .item .date i {
    display: inline;
    color: #999999;
}
.resume .calendar .item .title {
    font-weight: 400;
    display: block;
    color: var(--text-light);
    text-transform: none;
    margin: 10px 0 0 0;
}
.resume .calendar .item .content {
    height: auto;
    min-height: 100px;
    margin: 20px 0 0;
}
.resume .awards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    position: relative;
}
.resume .awards .timeline {
    position: absolute;
    left: 0;
    font-size: 1.8em;
    font-weight: 700;
    color: #333131;
}
.resume .awards .timeline:hover {
    color: #474646;
}
.resume .awards .item {
    width: 23%;
    background: var(--bg-tertiary);
    padding: 20px;
    box-sizing: border-box;
    margin: 0 1% 20px;
    min-height: 295px;
}
.resume .awards .item .date {
    color: #fbfbfb;
    font-size: 1em;
    text-align: right;
}
.resume .awards .item .image {
    transition: all 0.4s;
    margin: 30px 0;
    text-align: center;
    opacity: .7;
}
.resume .awards .item .image:hover {
    opacity: 1;
}
.resume .awards .item .date i {
    display: inline;
    color: #999999;
}
.resume .awards .item .title {
    font-weight: 400;
    display: block;
    color: var(--text-light);
    text-transform: none;
    margin: 10px 0 0 0;
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1em;
}
.resume .awards .item .content {
    height: auto;
    min-height: unset;
    margin: 5px 0 0 0;
    color: #757171;
}
@media all and (max-width: 960px) {
  .resume .awards .item {
    width: 31%;
  }
  .resume .tabs-navi {
    display: none;
  }
  .resume .tabs-wrap .tab>.title {
    display: block;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 400;
    padding: 8px 20px;
    background: #eee;
    color: var(--bg-secondary);
    margin: 0;
    border-radius: 25px;
    opacity: .7;
  }
  .resume .tabs-wrap .tab>.title::after {
    font-family: icons;
    content: "\f0d7";
    position: absolute;
    right: 20px;
    color: var(--text-dark);
    transform: rotate(-90deg);
    transition: all 0.3s;
  }
  .resume .tabs-wrap .tab.active>.title::after {
    animation-duration:1s;
    transform: rotate(0deg);
  }
  .resume .tabs-wrap .tab {
    display: block;
  }
  .resume .tabs-wrap .tab .content {
    transition: all 0.5s;
    opacity: 0;
    display: none;
  }
  .resume .tabs-wrap .tab.active.visibility .content {
    opacity: 1;
  }
  .resume .tabs-wrap .tab.active .content {
    display: block;
  }
  .resume .row {
    flex-wrap: wrap;
  }
  .resume .col-6 {
    width: 100%;
  }
  .resume .my-smile {
    float: unset;
    margin: 20px auto 0;
  }
  .resume .calendar .item {
    width: 100%;
  }
}
@media all and (max-width: 800px) {
  .resume .awards .item {
    width: 48%;
  }
}
@media all and (max-width: 480px) {
  .resume .awards .item {
    width: 98%;
  }
}

/*
 * 7. Tabs
 */
.tabs-navi {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.tabs-navi li {
    cursor: pointer;
    font-size: 1.5em;
    font-weight: 400;
    padding: 10px 20px;
    background: #eee;
    color: var(--bg-secondary);
    margin: 0 10px;
    border-radius: 25px;
    opacity: .7;
}
.tabs-navi li:hover {
    opacity: 1;
}
.tabs-navi li.active {
    opacity: 1;
}
.tabs-wrap .tab {
    display: none;
    color: var(--text-primary);
    font-size: 1.3em;
    font-weight: 300;
    margin: 20px 0;
}
.tabs-wrap .tab h3 {
    color: var(--text-light);
    font-size: 1.3em;
    font-weight: 300;
}
.tabs-wrap .tab:nth-child(1) {
    display: block;
}
.tabs-wrap .tab .title {
    display: none;
}
.tabs-wrap .tab .content {
    text-align: left;
    margin: 40px 0;
    min-height: 450px;
}

/*
 * 8. Header Effect
 */
.reveal-text {
    opacity: 0;
}
.reveal-text.visible {
    opacity: 1;
}
.reveal-text.visible,
.reveal-text.visible::after {
	animation-delay: var(--animation-delay, 2s);
	animation-iteration-count: var(--iterations, 1);
	animation-duration: var(--duration, 800ms);
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}
.reveal-text.visible {
	--animation-delay: var(--delay, 0);
	--animation-duration: var(--duration, 800ms);
	--animation-iterations: var(--iterations, 1);
	position: relative;
	animation-name: clip-text;
	white-space: nowrap;
	cursor: default;
}
.reveal-text.visible::after {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #313131;
	transform: scaleX(0);
	transform-origin: 0 50%;
	pointer-events: none;
	animation-name: text-revealer;
}
@keyframes clip-text {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}
@keyframes text-revealer {
	0%, 50% {
		transform-origin: 0 50%;
	}
	60%, 100% {
		transform-origin: 100% 50%;		
	}
	60% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(0);
	}
}
@media all and (max-width: 480px) {
  .reveal-text.visible {
    white-space: normal;
  }
}

/*
 * 9. OWL Carousel
 */
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    width: 46px;
    height: 46px;
    display: block;
    background: #00bbfc;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 30px;
    line-height: 30px;
    padding: 0;
    text-align: center;
    position: absolute;
    left: 0px;
    top: calc(50% - 23px);
    opacity: .9;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
    opacity: 1;
}
.owl-carousel .owl-nav button.owl-next {
    left: unset;
    right: 0px;
}
.owl-carousel button.owl-dot {
    background-color: #555555;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 10px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background-color: #555555;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0;
    right: -40px;
    top: calc(50% - 50px);
}
.owl-carousel .owl-nav button.owl-prev {
    left: -40px;
    right: unset;
}
.owl-carousel button.owl-dot.active {
    background-color: var(--text-light);
}
.owl-dots {
    margin: 20px 0 0;
}
@media all and (max-width: 800px) {
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background-color: unset;
  }
}
/*
 * 10. Works
 */
.block-20.works {
    padding: 5em 10px 10em;
}
.block-20.works .items .item .title {
    font-size: 20px;
    color: var(--link-color);
    text-transform: uppercase;
    margin: 15px 0 10px;
    font-weight: 300;
}
.block-20.works .items .item .desc {
    color: var(--text-secondary);
    text-transform: uppercase;
    margin: 15px 0 10px;
    font-weight: 300;
}
.block-20.works .items .item a, .block-20.works .items .item>span {
    color: var(--accent-blue);
    text-decoration: none;
    position: relative;
    display: block;
    overflow: hidden;
}
.block-20.works .items .item a img, .block-20.works .items .item>span img {
    transform: scale(1);
    transition: all .5s;
}
.block-20.works .items .item a:hover img, .block-20.works .items .item>span:hover img {
    transform: scale(1.05);
}
.block-20.works .info {
    position: absolute;
    top: 150px;
    font-size: 1.2em;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 300px;
    text-align: left;
}
.block-20.works .info span {
    color: var(--text-light);
}
.block-20.works .more {
    position: absolute;
    top: 160px;
    font-size: 1.2em;
    font-weight: 300;
    color: var(--text-light);
    max-width: 300px;
    text-align: left;
    right: 10px;
    text-transform: uppercase;
    padding: 5px 0 5px 5px;
}
.block-20.works .more::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
.block-20.works .more:hover::after {
    width: 0;
}
@media all and (max-width: 960px) {
  .block-20.works .owl-carousel .owl-item img {
    height: auto;
  }
  .block-20.works .info {
    position: relative;
    top: unset;
    left: unset;
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 300px;
  }
  .block-20.works h2 {
    margin: 3em 0 20px 0
  }
  .block-20.works .more {
    position: relative;
    top: unset;
    right: unset;
    margin: 0 auto 20px;
    display: block;
    text-align: center;
  }
}

/*
 * 11. Services
 */
.service {
    background: var(--bg-secondary);
}
.service .wrap {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}
.service .title {
    font-size: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}
.service h2 {
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 3em 0;
}
@media all and (max-width: 340px) {
  .service h2 {
    font-size: 1.6em;
  }
}
.service .items {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 2%;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
}
.service .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    padding: 30px 0;
    border-top: 1px solid var(--border-darker);
}
.service .item:last-child {
    border-bottom: 1px solid var(--border-darker);
}
.service .item .col {
    width: 20%;
    padding: 0 20px;
}
.service .item:nth-child(odd) {
    background: var(--bg-tertiary);
}
.service .item:hover {
    background: #272727;
}
.service .item .title {
    width: 20%;
    color: #d3d3d3;
    text-transform: none;
    text-align: left;
    font-weight: 300;
}
.service .item .desc {
    width: 40%;
    text-align: center;
    font-size: 1.3em;
    font-weight: 300;
    color: #999999;
}
.service .item .price {
    display: none;
    width: 15%;
    font-size: 1.4em;
    font-weight: 400;
}
.service .item .tags {
    width: 25%;
    font-size: 1.1em;
    font-weight: 400;
    color: #bdbdbd;
}
.service .item .tags ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.service .item .tags ul li {
    margin: 4px 0;
    text-align: left;
}
.service .item .col.order {
    width: 15%;
}
.service .item a.order {
    width: 15%;
    color: var(--link-color);
    font-size: 1.4em;
    font-weight: 300;
    background: var(--bg-card);
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    text-transform: none;
}
.service .item .order:hover {
    opacity: 1;
}
.service .info {
    position: absolute;
    top: 150px;
    font-size: 1.2em;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 300px;
    text-align: right;
    right: 0;
}
.service .info span {
    color: var(--text-light);
}
.service .more {
    position: absolute;
    top: 160px;
    font-size: 1.2em;
    font-weight: 300;
    color: var(--text-light);
    max-width: 300px;
    text-align: left;
    left: 0;
    text-transform: uppercase;
    padding: 5px 5px 5px 0;
}
.service .more::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
.service .more:hover::after {
    width: 0;
}
@media all and (max-width: 960px) {
  .service {
    margin: 0 10px;
  }
  .service .item .title {
    font-size: 16px;
  }
  .service .info {
    position: relative;
    top: unset;
    left: unset;
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 300px;
  }
  .service .item .desc {
    width: 30%;
  }
  .service h2 {
    margin: 3em 0 20px 0
  }
  .service .more {
    position: relative;
    top: unset;
    right: unset;
    margin: 0 auto 20px;
    display: block;
    text-align: center;
  }
}
@media all and (max-width: 640px) {
  .service .item {
    display: flex;
    flex-direction: column;
  }
  .service .item .title {
    width: 100%;
    text-align: center;
  }
  .service .item .desc {
    width: 100%;
  }
  .service .item .tags {
    width: 100%;
  }
  .service .item .col.order {
    width: 100%;
  }
  .service .item a.order {
    margin: 10px 0 0 0;
    display: inline-block;
    width: 200px;
  }
}

/*
 * 12. Reviews
 */
.reviews {
    background: var(--bg-secondary);
    padding: 0 20px 80px;
}
.reviews .wrap {
    text-align: center;
    max-width: 1200px;
    padding: 5em 0;
    margin: 0 auto;
    overflow: hidden;
}
.reviews .title {
    font-size: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}
.reviews h2 {
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 3em 0;
}
@media all and (max-width: 340px) {
  .reviews h2 {
    font-size: 1.6em;
  }
}
.reviews .items {
    margin: 0 10%;
    width: 80%;
}
.reviews .items .item p {
    font-size: 2em;
    font-style: italic;
    font-weight: 300;
}
.reviews .items .item .name {
    position: relative;
    color: #A6A6A6;
    font-size: 1.8em;
}
.reviews .items .item .name::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #777777;
    transition: 0.3s;
}
.reviews .items .item .name:hover::after {
    width: 0;
}
.reviews .items .item .name:hover {
    text-decoration: none;
}
.reviews .items .item .desc {
    color: #BCB9B9;
    font-size: 1.2em;
}
@media all and (max-width: 800px) {
  .reviews .items .item p {
    font-size: 1.6em;
  }
}
@media all and (max-width: 420px) {
    .reviews .items .item p {
        font-size: 1.2em;
    }
}

/*
 * 13. Blog
 */
.blog .items {
    display: flex;
    gap: 2%;
    justify-content: space-evenly;
}
.blog .items .item {
    text-align: left;
    width: 23%;
}
.blog .items .item img {
    opacity: .7;
    transition: 0.3s;
}
.blog .items .item img:hover {
    opacity: 1;
}
.blog .items .image {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    background: #2c2c2c;
    padding: 40px 20px;
    text-align: center;
}
.blog .items .image img {
    max-width: 100%;
}
.blog .items .category {
    display: inline-block;
    background: var(--bg-card);
    color: #757575;
    padding: 3px 15px;
    border-radius: 5px;
    margin: 10px 0 0;
    opacity: .9;
}
.blog .items .category:hover {
    opacity: 1;
}
.blog .items .title {
    opacity: .9;
    display: block;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 300;
    margin: 15px 0;
    clear: both;
    text-align: left;
    text-transform: none;
}
.blog .items .title:hover {
    opacity: 1;
}
.blog .items .readmore {
    position: relative;
    font-size: 1em;
    font-weight: 300;
    color: var(--text-light);
    max-width: 300px;
    text-align: left;
    right: 0;
    text-transform: uppercase;
    padding: 5px 0 5px 0;
}
.blog .items .readmore::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
.blog .items .readmore:hover::after {
    width: 0;
}
@media all and (max-width: 940px) {
  .block-20.blog {
    padding: 5em 10px 10em;
  }
  .blog .items .item img {
    height: auto;
  }
}
@media all and (max-width: 800px) {
  .blog .items {
    flex-wrap: wrap;
    width: 94%;
    margin: 0 3%;
    justify-content: space-between;
    align-content: center;
    align-items: flex-start;
  }
  .blog .items .item {
    width: 47%;
    margin: 20px 0;
  }
}
@media all and (max-width: 540px) {
  .blog .items .item .image {
    padding: 20px 0px;
  }
  .blog .items .title {
    font-size: 14px;
  }
}
@media all and (max-width: 360px) {
  .blog .items .title {
    font-size: 12px;
  }
}

/*
 * 14. Production
 */
.block-20.production .items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2%;
    justify-content: center;
}
.block-20.production .item {
    width: 23%;
    margin: 0 0 20px 0;
    background: var(--bg-secondary);
    padding: 40px 20px;
}
.block-20.production .item .title {
    font-size: 20px;
    color: var(--link-color);
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 0 30px;
}
.block-20.production .item img {
    border-style: none;
    width: 96px;
    max-width: 90%;
    margin: 0 auto 40px;
    opacity: .5;
    transition: all .6s ease;
}
.block-20.production .item:hover img {
    opacity: 1;
}
.block-20.production .item .desc {
    text-align: center;
    font-size: 1.2em;
}
.block-20.production .item .price {
    font-size: 2em;
    margin: 20px 0;
}
.block-20.production .item .order {
    color: var(--link-color);
    font-size: 1.4em;
    font-weight: 300;
    background: var(--bg-card);
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
}
.block-20.production .item .order:hover {
    opacity: 1;
}
.block-20.production .info {
    position: absolute;
    top: 150px;
    font-size: 1.2em;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 300px;
    text-align: right;
    right: 0;
}
.block-20.production .info span {
    color: var(--text-light);
}
.block-20.production .more {
    position: absolute;
    top: 160px;
    font-size: 1.2em;
    font-weight: 300;
    color: var(--text-light);
    max-width: 300px;
    text-align: left;
    left: 0;
    text-transform: uppercase;
    padding: 5px 5px 5px 0;
}
.block-20.production .more::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
.block-20.production .more:hover::after {
    width: 0;
}
@media all and (max-width: 960px) {
  .block-20.production .item {
    width: 48%;
  }
  .block-20.production .info {
    position: relative;
    top: unset;
    left: unset;
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 300px;
  }
  .block-20.production h2 {
    margin: 3em 0 20px 0
  }
  .block-20.production .more {
    position: relative;
    top: unset;
    right: unset;
    margin: 0 auto 20px;
    display: block;
    text-align: center;
  }
}
@media all and (max-width: 640px) {
  .block-20.production .item {
    width: 98%;
  }
}

/*
 * 15. Books
 */
.block-20.book .content .photo {
    text-align: left;
}
.block-20.book .content .photo img {
    cursor: pointer;
    max-width: 280px;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 10px 11px 1px 1px var(--shadow-color);
    margin: 0 auto;
}
.block-20.book .content .meta {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    font-weight: 500;
    font-size: 1.2em;
}
.block-20.book .content .meta li {
    position: relative;
    color: #797979;
    display: inline-block;
    padding: 0 20px 0;
}
.block-20.book .content .meta li:nth-child(1)::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    right: -4px;
    top: 8px;
}
.block-20.book .content .desc h3 {
    text-align: left;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.5em;
}
.block-20.book .content .desc h4 {
    font-size: 1.2em;
    text-transform: uppercase;
    text-align: left;
    font-weight: 300;
}
.block-20.book .content .desc p {
    color: #9b9b9b;
    text-align: left;
    font-size: 1.2em;
}
.block-20.book .content .desc ul.tags {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
.block-20.book .content .desc ul.tags li {
    position: relative;
    display: inline-block;
    padding: 0 20px 0 0;
    color: #6d6d6d;
}
.block-20.book .content .desc ul.tags li::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    right: 6px;
    top: 6px;
}
.block-20.book .content .desc ul.tags li:last-child::after {
    display: none;
}
.block-20.book .content .desc .meta {
    padding: 0;
    text-align: left;
}
.block-20.book .content .desc .meta li {
    padding: 0 20px 0 0;    
    text-align: center;
}
.block-20.book .content .desc .meta li i {
    color: var(--accent-orange);
}
.block-20.book .content .desc .meta li span {
    font-weight: 300;
    display: block;
}
.block-20.book .content .desc .meta li::after {
    display: none;
}
.block-20.book .content .desc a {
    color: var(--link-color);
    font-size: 1.4em;
    font-weight: 300;
    background: var(--bg-card);
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    margin: 20px 10px;
    display: inline-block;
}
.block-20.book .content .desc a:hover {
    opacity: 1;
}
@keyframes stardeg {
  0% { transform: scale(1); }
  40% { transform: scale(0.8); }
  60% { transform: rotate(30deg); }
  80% { transform: rotate(-30deg); }
  100% { transform: rotate(0deg); }
}
.block-20.book .content .desc i.star {
  animation: stardeg 4s infinite;
}
@media all and (max-width: 940px) {
  .block-20.book .content .photo img {
    max-width: 230px;
    height: auto;
  }
}
@media all and (max-width: 800px) {
  .block-20.book .row {
    flex-direction: column;
  }
  .block-20.book .col-4 {
    width: 94%;
    margin: 0 3%;
  }
  .block-20.book .col-8 {
    width: 94%;
    margin: 0 3%;
  }
  .block-20.book .content .desc a {
    margin: 20px 10px 0;
    display: inline-block;
  }
}

/*
 * 16. Footer
 */
footer {
    background: var(--bg-secondary);
}
footer .wrap {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 5em 0 3em;
    margin: 0 auto;
    overflow: hidden;
}
footer .title {
    font-size: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}
footer h3 {
    font-size: 1.5em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 3em 0 1em;
    text-align: left;
    padding: 0 5px;
}
footer .items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2%;
}
footer .item {
    width: 23%;
}
footer .item ul.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .item ul.menu li {
    position: relative;
    text-align: left;
    display: block;
    margin: 5px 0 0 20px;
}
footer .item ul.menu li a {
    color: #A6A6A6;
    font-size: 1.2em;
}
footer .item ul.menu li::after {
    content: "";
    display: block;
    left: -12px;
    background: #a1a1a1;
    width: 3px;
    height: 3px;
    position: absolute;
    border-radius: 50%;
    top: 8px;
}
footer .links {
    margin: 40px 0 20px;
}
footer .links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .links ul li {
    display: inline;
    margin: 0 10px;
}
footer .links ul li a {
    color: var(--link-color);
    font-size: 3em;
}
footer .links ul li a:hover {
    color: var(--link-hover);
}
footer i.icon, footer i.icons {
    font-size: .5em;
}
footer img {
    opacity: .5;
    transition: all .6s ease;
}
footer img:hover {
    opacity: 1;
}
footer .menu a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
footer .menu a:hover::after {
    width: 100%;
}
@media all and (max-width: 800px) {
  footer .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3%;
  }
  footer .item {
    width: 40%;
    margin: 0 3% 30px 3%;
  }
  footer .links ul {
    text-align: left;
  }
}
@media all and (max-width: 600px) {
  footer .items {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    align-content: center;
    align-items: center;
  }
  footer .item {
    width: 44%;
  }
  footer .links ul {
    text-align: center;
  }
}
@media all and (max-width: 560px) {
  footer .item {
    width: 74%;
  }
}
@media all and (max-width: 360px) {
  footer .item {
    width: 94%;
  }
}

/*
 * 17. Copy
 */
.copy {
    padding: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #cbcbcb;
    width: 100%;
    text-align: center;
}

/*
 * 18. Up to Top
 */
#toTop {
    text-align: center;
    bottom: 60px;
    display: none;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    position: fixed;
    right: 10px;
    text-decoration: none;
    width: 45px;
    background-color: var(--text-primary);
    z-index: 100;
    border-radius: 50%;
    opacity: .3;
}
#toTop:hover {
    opacity: 1;
}

/*
 * 19. Chevron
 */
.chevron {
    position: relative;
    display: inline-block;
    height: 10px;
    transform: rotate(180deg);
    margin: 0 auto;
    width: 16px;
}
.chevron::before,
.chevron::after {
  position: absolute;
  display: block;
  content: "";
  border: 8px solid transparent;
}
.chevron::before {
  top: 0;
  border-top-color: var(--bg-secondary);
}
.chevron::after {
  top: -3px;
  border-top-color: var(--text-primary);
}

/*
 * 20. Vignette
 */
.vignette::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/*
 * 21. Modal
 */
.ui.inverted.modal.contact>.content, .ui.inverted.modal.contact>.header {
    background: var(--bg-modal);
}
.modal.contact .ui.form:not(.inverted) .field>label:not(.button) {
    color: rgb(255 255 255 / 87%);
}
.modal.contact .ui.form input[type=text] {
    color: #eee;
    background: var(--bg-input);
    font-weight: 300;
    font-family: Roboto;
}
.modal.contact .ui.form textarea, .modal.contact .ui.input textarea {
    font-weight: 300;
    font-family: Roboto;
    color: #eee;
    background: var(--bg-input);
}
.modal.contact .ui.form textarea:focus {
    border-color: #d8dde1;
    background: var(--bg-input-focus);
}
.modal.contact .ui.primary.button, .modal.contact .ui.primary.buttons .button {
    background-color: #414141;
}
.modal.contact .ui.form input[type=text]:focus {
    border-color: #d8dde1;
    background: var(--bg-input-focus);
}
.modal.contact .ui.approve.primary.button i {
    margin: 0 0 0 10px;
}
.modal.contact .ui.form .field>label {
    font-weight: 400;
}
.modal.contact .ui.form .field.error textarea, .modal.contact .ui.form .field.error input {
    border-color: var(--accent-red);
}
.modal.contact .ui.error.message {
    background-color: #0a0a0a;
    color: var(--accent-red);
}
.modal.contact .ui.attached.error.message, .modal.contact .ui.error.message {
    box-shadow: 0 0 0 1px #5b5b5b inset, 0 0 0 0 transparent;
}
.ui.modal.contact>.header:not(.ui) {
    font-weight: 400;
    text-transform: uppercase;
}
.modal.contact .actions .button i {
    margin: 0 0 0 10px !important;
}

/*
 * 22. Submenu
 */
.b-nav li:has(.submenu) {
  position: relative;
}
.b-nav li:has(.submenu)::after {
    position: absolute;
    content: "\f067";
    font-family: icons;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    left: 30px;
    top: 10px;
    color: #a0a0a0;
}
.b-nav li:has(.submenu) .b-link {
    cursor: pointer;
    padding: 0 0 0 20px;
    z-index: 10;
    display: inline-block;
    position: relative;
}
.b-nav li .submenu {
    display: none;
    margin: 10px 0 0;
    border: none;
    padding: 0;
}
.b-nav li.active .submenu {
    display: block;
}
.b-nav li .label {
    display: none;
    text-transform: uppercase;
    margin: 10px;
    font-size: 14px;
    color: var(--link-color);
}
.b-nav li.active .label {
    display: block;
}
.b-nav li .submenu li {
    border: none;
    padding: 5px 0 5px 20px
}
.b-nav li .submenu li a {
    color: var(--link-color);
    font-size: 1.2em;
    font-weight: 300;
}
.b-nav li .submenu li a:hover {
    color: var(--text-light);
}
.b-nav li .submenu li .current_page_item {
    color: var(--text-light);
    display: inline-block;
    padding: 0 0 5px 20px
}
.b-nav li .submenu li.current_page_item span {
    margin: 0 0 0 15px;
}
.b-nav li .submenu li.current_page_item::after {
    position: absolute;
    content: "\f105";
    font-family: icons;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    left: 20px;
    top: 6px;
    opacity: .4;
}
.b-nav li.active:has(.submenu)::after {
    content: "\f068";
}

/*
 * 23. List
 */
header.under {
    position: absolute !important;
}
.block-20.list {
    padding: 5em 10px 7em;
}
.block-20.list .menu h3 {
    font-size: 1.5em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 1em 0;
    color: var(--text-secondary);
    text-align: left;
}
.block-20.list .menu .submenu {
    display: flex;
    list-style: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2%;
    padding: 0;
    margin: 0;
}
.block-20.list .menu .submenu li::after {
    content: "";
    display: block;
    left: -12px;
    background: #a1a1a1;
    width: 3px;
    height: 3px;
    position: absolute;
    border-radius: 50%;
    top: 8px;
}
.block-20.list .menu .submenu li {
    margin: 5px 0 0 20px;
    position: relative;
    width: 20%;
    display: block;
    text-align: left;
}
.block-20.list .menu .submenu li a {
    color: #A6A6A6;
    font-size: 1.2em;
}
.block-20.list .menu .submenu li a::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 1px;
    background: #636363;
    transition: 0.3s;
}
.block-20.list .menu .submenu li a:hover::after {
    width: 100%;
}
@media all and (max-width: 1070px) {
  .block-20.list .menu .submenu li {
    width: 27%;
  }
}
@media all and (max-width: 800px) {
  .block-20.list {
    padding: 5em 5% 7em;
  }
  .block-20.list .menu .submenu li {
    width: 45%;
  }
}
@media all and (max-width: 480px) {
  .block-20.list .menu .submenu li {
    width: 90%;
  }
}
.block-20.list .desc {
    color: #9b9b9b;
    text-align: left;
    font-size: 1.2em;
}
.block-20.list h2 {
    margin: 3em 0 1em;
}
.block-20.list .menu h3 {
    margin: 2em 0 1em;
}
.block-20.list .menu .submenu {
    list-style: none;
    background: #111111a3;
    padding: 40px 20px 10px;
}
.block-20.list .menu .submenu li {
    width: 18%;
    text-align: center;
    margin: 0 0 20px ;
}
.block-20.list .menu .submenu li img {
    width: 86px;
    margin: 0 auto 10px;
}
.block-20.list .menu .submenu li a:hover {
    color: #cdcdcd;
}
.block-20.list .menu .submenu li span {
    display: block;
}
.block-20.list .menu .submenu li::after {
    display: none;
}
@media (max-width: 800px) {
  .block-20.list .menu .submenu li {
    width: 32% !important;
  }
}
@media (max-width: 600px) {
  .block-20.list .menu .submenu li {
    width: 48% !important;
  }
}
@media (max-width: 420px) {
  .block-20.list .menu .submenu li {
    width: 100% !important;
  }
}

/**
 * 24. Contacts
 */
.block-20.contacts .desc {
    color: #9b9b9b;
    text-align: left;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.block-20.contacts h1 {
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 3em 0 1em;
}
.block-20.contacts h2 {
    font-size: 1.8em;
    margin: 1em 0 1em;
}
.block-20.contacts h3 {
    font-size: 1.4em;
    font-weight: 300;
    text-transform: uppercase;
    margin: 2em 0 1em;
}
.block-20.contacts {
    padding: 5em 10px 7em;
}
.block-20.contacts [type="submit"] {
    color: var(--link-color);
    font-size: 1.4em;
    font-weight: 300;
    background: var(--bg-card);
    padding: 10px 30px;
    border-radius: 15px;
    opacity: .9;
    border: 0;
    cursor: pointer;
}
.block-20.contacts [type="submit"]:hover {
    opacity: 1;
}
.block-20.contacts input[type=text], .block-20.contacts input[type=email] {
    color: #eee;
    background: var(--bg-input);
    font-weight: 300;
    font-family: Roboto;
}
.block-20.contacts input[type=text]:focus, .block-20.contacts input[type=email]:focus {
    border-color: #d8dde1;
    background: var(--bg-input-focus);
}
.block-20.contacts textarea {
    font-weight: 300;
    font-family: Roboto;
    color: #eee;
    background: var(--bg-input);
}
.block-20.contacts textarea:focus {
    border-color: #d8dde1;
    background: var(--bg-input-focus);
    color: #eee;
}
.block-20.contacts .ui.form:not(.initial) .field input:invalid {
    color: #9f3a38;
    background: var(--bg-input);
}
.block-20.contacts [data-name="referer-page"] {
    display: none;
}
.block-20.contacts .wpcf7-spinner {
    background-color: var(--bg-primary);
}
.block-20.contacts .action {
    text-align: left;
}
.block-20.contacts .socials {
    color: #9b9b9b;
    text-align: left;
    font-size: 1.2em;
}