:root {
  --color-text: #181A2A;
  --color-main: #4B6BFB;
}

/* Fonts */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold; /* Bold */
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300; /* Light */
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900; /* Black */
  font-style: normal;
}
/* /Fonts */
/* Global */
html {
  margin: 0 !important;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2;
  padding-top: 60px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  transition: 0.25s;
}
body.dark-mode {
  background: var(--color-text);
}
@media only screen and (max-width: 950px) {
  body {
    padding-top: 40px;
  }
}

body.admin-bar header {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  body.admin-bar header {
    top: 0px;
  }
}

input {
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
  direction: ltr;
}

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

ul {
  -webkit-padding-start: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 75px 0;
  padding-top: 45px;
}
@media only screen and (max-width: 1370px) {
  section {
    padding: 55px 0;
    padding-top: 35px;
  }
}
@media only screen and (max-width: 950px) {
  section {
    padding: 30px 0;
    padding-top: 25px;
  }
}

.section-inner {
  max-width: 1260px;
  padding: 0 20px;
  width: 100%;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 950px) {
  .section-inner {
    padding: 0 10px;
  }
}

/* Remove arrows in Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Remove arrows in Chrome, Safari, Edge, and Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.content {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.5;
}
.content hr {
  border-color: rgba(0, 0, 0, 0.0392156863);
  border-style: solid;
  margin: 25px 0;
}
.content strong {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.content.white {
  color: #fff;
}
.content h1, .content h2, .content h3, .content h4, .content h5 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.content h1 {
  line-height: 1.3;
  font-size: 2em;
}
.content h2 {
  font-size: 1.5em;
  line-height: 1.3;
  margin: 25px 0;
}
.content h3 {
  font-size: 1.25em;
  line-height: 1.3;
  margin: 20px 0;
}
.content h4 {
  font-size: 1em;
  line-height: 1.3;
  margin: 15px 0;
}
.content p, .content ul, .content li, .content h1, .content h2, .content h3, .content h4, .content h5, .content img {
  margin-top: 15px;
}
.content p:first-child, .content ul:first-child, .content li:first-child, .content h1:first-child, .content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content img:first-child {
  margin-top: 0;
}
.content a {
  color: var(--color-main);
  text-decoration: underline;
}
.content a:hover {
  text-decoration: none;
}
.content ul {
  list-style: disc;
  padding-left: 25px;
}
.content img {
  max-width: 100%;
}
@media only screen and (max-width: 950px) {
  .content {
    font-size: 16px;
  }
}

.breadcrumbs {
  margin-bottom: 20px;
  color: #c3c3c3;
  font-size: 13px;
}

.centered {
  text-align: center;
}

.parts {
  display: flex;
  margin: auto;
  gap: 40px;
}
.parts.ai-center {
  align-items: center;
}
.parts .part {
  width: calc(50% - 20px);
  flex-grow: 1;
  position: relative;
}
.parts .part .image {
  font-size: 0;
  position: relative;
}
.parts .part .image img {
  max-width: 100%;
}
@media only screen and (max-width: 950px) {
  .parts {
    flex-wrap: wrap;
    gap: 25px;
  }
  .parts .part {
    width: 100%;
  }
  .parts.mobile-reversed {
    flex-direction: column-reverse;
  }
}

.parts.info {
  margin-bottom: 70px;
}
@media only screen and (max-width: 950px) {
  .parts.info {
    margin-bottom: 40px;
  }
}

.section-title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: var(--color-text);
}
.section-title.white {
  color: #fff;
}
@media only screen and (max-width: 1200px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 950px) {
  .section-title {
    font-size: 24px;
  }
}

.section-subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #696A75;
  margin-top: 15px;
}
.section-subtitle strong {
  color: var(--color-main);
}
@media only screen and (max-width: 1200px) {
  .section-subtitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 950px) {
  .section-subtitle {
    font-size: 18px;
  }
}

.title-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.2;
  color: var(--color-text);
}
@media only screen and (max-width: 1370px) {
  .title-regular {
    font-size: 50px;
  }
}
@media only screen and (max-width: 950px) {
  .title-regular {
    font-size: 32px;
  }
}

.subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 16px;
}
@media only screen and (max-width: 1370px) {
  .subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 950px) {
  .subtitle {
    font-size: 16px;
    line-height: 1.2;
  }
}

.button-simple {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  background: #fff;
  padding: 20px 35px;
  border-radius: 200px;
  transition: 0.25s;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
}
.button-simple.dark {
  color: #fff;
  background: var(--color-text);
}
.button-simple:hover {
  color: #fff;
  background: var(--color-text);
}
.button-simple:hover.dark {
  color: var(--color-text);
  background: #fff;
  box-shadow: 0 2px 15px 0 rgba(50, 50, 50, 0.2);
}
@media only screen and (max-width: 950px) {
  .button-simple {
    padding: 15px 25px;
  }
}

.wrapper-load-more {
  text-align: center;
  margin-top: 45px;
}
.wrapper-load-more .load-more {
  display: inline-block;
  padding: 15px 25px;
  border: 1px solid rgba(105, 106, 117, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #696A75;
  transition: 0.25s;
  position: relative;
}
.wrapper-load-more .load-more span {
  transition: 0.25s;
}
.wrapper-load-more .load-more:hover {
  background: #eeeeee;
}
.wrapper-load-more .load-more.loading {
  pointer-events: none;
}
.wrapper-load-more .load-more.loading span {
  opacity: 0;
}

@keyframes rotation-loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.loading:after {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #696A75;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation-loading 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.decor {
  position: absolute;
  font-size: 0;
  pointer-events: none;
}
.decor img {
  max-width: 100%;
}

#sm_menu_ham {
  position: static;
}
#sm_menu_ham span {
  background-color: #97989F;
  height: 3px;
}

.sm_menu_outer {
  background: #141624;
  overflow-y: hidden;
}
.sm_menu_outer.slide .mobile_menu .sub-menu {
  background: #141624;
  min-height: calc(100vh - 40px);
  height: auto;
}
.sm_menu_outer .mobile_menu li {
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%) 0 0 1 0;
}
.sm_menu_outer .mobile_menu li.hasChild > a, .sm_menu_outer .mobile_menu li.back a {
  background-size: 20px !important;
}
.sm_menu_outer .mobile_menu a {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  padding: 15px 15px;
}
.sm_menu_outer .mobile_menu .current_page_item > a {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.sm_menu_outer.slide .mobile_menu li.hasChild > a {
  background: url(../plugins/mmenu/images/prev.png) no-repeat scroll right 10px center/5% auto;
}

.sm_menu_outer .mobile_menu li.back a {
  background: url(../plugins/mmenu/images/back-left.png) no-repeat scroll left 15px center/5% auto;
}

.sm_menu_outer {
  bottom: 0;
  height: calc(100vh - 40px);
  top: 40px;
}

.pagination {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination a {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: var(--color-text);
  white-space: nowrap;
  transition: 0.25s;
}
.pagination a:hover {
  color: var(--color-main);
}
.pagination .current {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--color-main);
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px;
  gap: 30px;
}
.nav-links .nav-button a {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: var(--color-text);
  white-space: nowrap;
  transition: 0.25s;
}
.nav-links .nav-button a:hover {
  color: var(--color-main);
}
.nav-links .nav-button a img {
  height: 20px;
  width: auto;
  margin-bottom: 2px;
}
.nav-links .nav-button.nav-previous a img {
  transform: scaleX(-1);
}
@media only screen and (max-width: 950px) {
  .nav-links {
    margin-top: 45px;
  }
  .nav-links .nav-button a {
    font-size: 16px;
  }
  .nav-links .nav-button a img {
    height: 16px;
  }
}

body.dark-mode .section-title {
  color: #fff;
}
body.dark-mode .content {
  color: #fff;
}
body.dark-mode .content hr {
  border-color: rgba(255, 255, 255, 0.0392156863);
}
body.dark-mode .pagination a {
  color: #fff;
}
body.dark-mode .pagination a:hover {
  color: var(--color-main);
}
body.dark-mode .nav-links .nav-button a {
  color: #fff;
}
body.dark-mode .nav-links .nav-button a:hover {
  color: var(--color-main);
}
body.dark-mode .nav-links .nav-button a img {
  filter: brightness(0) invert(1);
}

/* ---------------------- header ---------------------- */
header {
  height: 60px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  background: #fff;
  padding: 10px 0;
  transition: 0.25s;
  box-shadow: 0px 2px 15px 0px rgba(50, 50, 50, 0.2);
}
header .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
  position: relative;
}
header .menu-cont {
  flex-grow: 1;
}
header .menu-cont .main-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}
header .menu-cont .main-menu .menu-item {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: var(--color-text);
  white-space: nowrap;
  transition: 0.25s;
}
header .menu-cont .main-menu .menu-item:hover {
  color: var(--color-main);
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .logo img {
  max-height: 100%;
}
header .logo img.dark {
  display: none;
}
header .search-cont {
  background: #F4F4F5;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.25s;
}
header .search-cont .is-form-style input.is-search-input {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #A1A1AA;
  border: none;
  outline: none;
  background: transparent !important;
  border: none !important;
}
header .search-cont .is-search-icon {
  border: none !important;
  background: #F4F4F5;
}
header .search-cont .icon {
  font-size: 0;
}
header .search-cont.mobile {
  display: none;
}
header .placeholder {
  display: none;
}
header .ham-button {
  display: none;
}
header .switch-mode {
  border-radius: 200px;
  background: #E8E8EA;
  width: 50px;
  padding: 2px;
  cursor: pointer;
  transition: 0.5s;
}
header .switch-mode .thumb {
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  transition: 0.5s;
  transform: translateX(0);
  user-select: none;
}
@media only screen and (max-width: 950px) {
  header {
    height: 40px;
    padding: 5px 0;
  }
  header .menu-cont {
    display: none;
  }
  header .search-cont {
    padding: 8px 8px;
  }
  header .search-cont.desktop {
    position: absolute;
    top: 25px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
  }
  header .search-cont.desktop.open {
    top: 35px;
    opacity: 1;
    visibility: visible;
  }
  header .search-cont.mobile {
    display: flex;
  }
  header .ham-button {
    display: block;
  }
  header .placeholder {
    display: block;
    flex-grow: 1;
  }
  header .section-inner {
    gap: 20px;
  }
}

/* --------------------- /header ---------------------- */
body.dark-mode header .switch-mode {
  background: var(--color-main);
}
body.dark-mode header .switch-mode .thumb {
  transform: translateX(22px);
}

/* ---------------------- Section hero ---------------------- */
section.hero {
  padding: 0;
  padding-top: 15px;
}
section.hero .cont-post {
  height: 450px;
  position: relative;
}
section.hero .cont-post .image {
  height: 100%;
  overflow: hidden;
  border-radius: 13px;
  position: relative;
}
section.hero .cont-post .image:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(20, 22, 36, 0.4), rgba(20, 22, 36, 0.4));
}
section.hero .cont-post .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.hero .cont-post .caption {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 40px;
  z-index: 3;
}
section.hero .cont-post .caption .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
section.hero .cont-post .caption .category {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  padding: 4px 8px;
  padding-top: 6px;
  background: #4B6BFB;
  border-radius: 6px;
  display: inline-block;
}
section.hero .cont-post .caption .title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #fff;
  margin-top: 16px;
  max-width: 720px;
  display: block;
}
section.hero .cont-post .caption .bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  font-size: 16px;
}
section.hero .cont-post .caption .bottom .author {
  display: flex;
  align-items: center;
  gap: 13px;
}
section.hero .cont-post .caption .bottom .author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  overflow: hidden;
}
section.hero .cont-post .caption .bottom .author .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.hero .cont-post .caption .bottom .author .name {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #fff;
}
section.hero .cont-post .caption .bottom .date {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #fff;
}
@media only screen and (max-width: 950px) {
  section.hero .cont-post {
    height: 360px;
  }
  section.hero .cont-post .caption {
    padding: 20px;
  }
  section.hero .cont-post .caption .title {
    font-size: 24px;
  }
  section.hero .cont-post .caption .bottom {
    font-size: 15px;
  }
  section.hero .cont-post .caption .bottom .author {
    gap: 10px;
  }
  section.hero .cont-post .caption .bottom .author .avatar {
    height: 28px;
    width: 28px;
  }
}

/* --------------------- /Section hero ---------------------- */
/* ---------------------- Section blog ---------------------- */
section.blog .content {
  margin-top: 15px;
}
section.blog .section-inner > .categories {
  margin-top: 15px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
section.blog .section-inner > .categories .category {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  padding: 4px 8px;
  padding-top: 6px;
  background: #4B6BFB;
  border-radius: 6px;
  display: inline-block;
}
section.blog .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
}
section.blog .boxes .box {
  width: calc(33.33% - 14px);
}
@media only screen and (max-width: 950px) {
  section.blog .boxes {
    margin-top: 25px;
    justify-content: center;
  }
  section.blog .boxes .box {
    width: 100%;
  }
}

/* --------------------- /Section blog ---------------------- */
.box-post {
  border: 1px solid #E8E8EA;
  border-radius: 13px;
  padding: 16px;
  cursor: pointer;
  max-width: 400px;
}
.box-post .image {
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
}
.box-post .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.box-post .title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-text);
  margin-top: 20px;
  transition: 0.25s;
}
.box-post .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.box-post .bottom .date {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #97989F;
}
.box-post .categories {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.box-post .category {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: var(--color-main);
  padding: 4px 8px;
  padding-top: 6px;
  background: rgba(75, 107, 251, 0.05);
  border-radius: 6px;
}
.box-post .author {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  gap: 13px;
  color: #97989F;
}
.box-post .author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  overflow: hidden;
}
.box-post .author .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.box-post:hover .image img {
  transform: scale(1.1);
}
.box-post:hover .title {
  color: var(--color-main);
}
@media only screen and (max-width: 950px) {
  .box-post {
    padding: 10px;
    border-radius: 8px;
  }
  .box-post .image {
    height: 190px;
  }
  .box-post .title {
    font-size: 20px;
    margin-top: 10px;
  }
}

/* ---------------------- footer ---------------------- */
footer {
  background: #F6F6F7;
}
footer .part-top {
  padding: 60px 0;
}
footer .part-top .columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer .part-top .columns .col {
  max-width: 350px;
}
footer .part-top .columns .col .col-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 16px;
}
footer .part-top .columns .col .content {
  font-size: 16px;
  color: #696A75;
}
footer .part-top .columns .col .content p {
  margin-top: 5px;
}
footer .part-top .columns .col .content .menu-cont ul {
  list-style: none;
  padding: 0;
}
footer .part-top .columns .col .content .menu-cont ul li {
  margin-top: 5px;
}
footer .part-top .columns .col .content .menu-cont ul li:first-child {
  margin-top: 0;
}
footer .part-top .columns .col .content .menu-cont ul li a {
  color: #3B3C4A;
  text-decoration: none;
  transition: 0.25s;
}
footer .part-top .columns .col .content .menu-cont ul li a:hover {
  color: var(--color-main);
}
footer .part-top .columns .col.categories {
  max-width: 550px;
}
footer .part-top .columns .col.categories .content .menu-cont ul {
  column-count: 2;
  column-gap: 30px;
}
footer .part-top .columns .col.tags .content .menu-cont ul li {
  text-transform: capitalize;
}
footer .part-bottom {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #DCDDDF;
}
footer .part-bottom .logo {
  height: 45px;
}
footer .part-bottom .logo img {
  max-height: 100%;
}
footer .part-bottom .logo img.dark {
  display: none;
}
footer .part-bottom .menu-cont ul {
  display: flex;
  gap: 32px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #3B3C4A;
}
footer .part-bottom .copy {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #3B3C4A;
}
footer .col-newsletter {
  padding: 15px;
  background: #FFFFFF;
  border-radius: 13px;
  margin-top: 20px;
  text-align: center;
}
footer .col-newsletter .col-title {
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}
@media only screen and (max-width: 1100px) {
  footer .col-newsletter {
    max-width: 330px !important;
  }
}
@media only screen and (max-width: 950px) {
  footer .col-newsletter {
    max-width: 100% !important;
  }
}
footer .col-newsletter .wpcf7 {
  margin-top: 0px;
}
footer .col-newsletter .wpcf7 .wpcf7-form-control-wrap {
  padding-right: 32px;
  background-image: url("../images/icons/envelop.svg") no-repeat;
  background-position: right 10px center;
}
@media only screen and (max-width: 950px) {
  footer .part-top {
    padding: 40px 0;
  }
  footer .part-top .columns {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer .part-top .columns .col {
    max-width: 100%;
  }
  footer .col-newsletter {
    padding: 24px;
  }
  footer .part-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  footer .part-bottom .menu-cont ul {
    gap: 20px;
  }
}

/* --------------------- /footer ---------------------- */
body.dark-mode header {
  background: var(--color-text);
  box-shadow: 0px 2px 15px 0px rgba(143, 143, 143, 0.2);
}
body.dark-mode header .logo img.light {
  display: none;
}
body.dark-mode header .logo img.dark {
  display: block;
}
body.dark-mode header .menu-cont .main-menu .menu-item {
  color: #fff;
}
body.dark-mode header .menu-cont .main-menu .menu-item:hover {
  color: var(--color-main);
}
body.dark-mode header .search-cont {
  background: #242535;
}
body.dark-mode header .search-cont .is-search-icon {
  border: none !important;
  background: #242535;
}
body.dark-mode .box-post {
  border: 1px solid #242535;
}
body.dark-mode .box-post .title {
  color: #fff;
}
body.dark-mode footer {
  background: #141624;
}
body.dark-mode footer .part-top .columns .col .col-title {
  color: #fff;
}
body.dark-mode footer .part-top .columns .col .content {
  color: #97989F;
}
body.dark-mode footer .part-top .columns .col .content .menu-cont ul li a {
  color: #BABABF;
}
body.dark-mode footer .part-top .columns .col .content .menu-cont ul li a:hover {
  color: var(--color-main);
}
body.dark-mode footer .part-bottom {
  border-top: 1px solid #242535;
}
body.dark-mode footer .part-bottom .logo img.dark {
  display: block;
}
body.dark-mode footer .part-bottom .logo img.light {
  display: none;
}
body.dark-mode footer .part-bottom .menu-cont ul {
  color: #BABABF;
}
body.dark-mode footer .part-bottom .copy {
  color: #BABABF;
}
body.dark-mode footer .col-newsletter {
  background: #242535;
}

/* ---------------------- Section top-inner ---------------------- */
section.top-inner .title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: var(--color-text);
  display: block;
}
@media only screen and (max-width: 950px) {
  section.top-inner .title {
    font-size: 24px;
  }
}

/* --------------------- /Section top-inner ---------------------- */
body.dark-mode section.top-inner .title {
  color: #fff;
}

/* ---------------------- Section post ---------------------- */
section.post .section-inner {
  max-width: 840px;
}
section.post .post-top {
  padding-bottom: 32px;
}
section.post .post-top .categories {
  margin-bottom: 16px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
section.post .post-top .category {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  padding: 4px 8px;
  padding-top: 6px;
  background: #4b6bfb;
  border-radius: 6px;
  display: inline-block;
}
section.post .post-top .title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: var(--color-text);
  display: block;
}
section.post .post-top .title span {
  color: var(--color-main);
}
section.post .post-top .bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  font-size: 16px;
}
section.post .post-top .bottom .author {
  display: flex;
  align-items: center;
  gap: 13px;
}
section.post .post-top .bottom .author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  overflow: hidden;
}
section.post .post-top .bottom .author .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.post .post-top .bottom .author .name {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #696a75;
}
section.post .post-top .bottom .date {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #696a75;
}
section.post .main-image {
  font-size: 0;
  border-radius: 13px;
  overflow: hidden;
}
section.post .main-image img {
  max-width: 100%;
  height: auto;
}
section.post .content {
  margin-top: 32px;
}
@media only screen and (max-width: 950px) {
  section.post .post-top .title {
    font-size: 24px;
  }
  section.post .post-top .bottom {
    font-size: 15px;
  }
  section.post .post-top .bottom .author {
    gap: 10px;
  }
  section.post .post-top .bottom .author .avatar {
    height: 28px;
    width: 28px;
  }
}

/* --------------------- /Section post ---------------------- */
.wpcf7 {
  max-width: 500px;
}
.wpcf7 .wpcf7-form-control-wrap {
  padding: 12px 16px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border: 1px solid #dcdddf;
  border-radius: 6px;
  display: block;
  margin-top: 8px;
}
.wpcf7 .wpcf7-form-control-wrap input,
.wpcf7 .wpcf7-form-control-wrap textarea {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #97989f;
  display: block;
  max-width: 100%;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
}
.wpcf7 .wpcf7-spinner {
  position: absolute;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 11px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  position: absolute;
}
.wpcf7 .wpcf7-response-output {
  border: none;
  font-size: 11px;
  position: absolute;
  margin: 0;
}
.wpcf7 input[type=submit] {
  padding: 12px 20px;
  background: #4b6bfb;
  border-radius: 6px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-top: 8px;
}

body.dark-mode section.post .post-top .title {
  color: #fff;
}
body.dark-mode section.post .post-top .bottom .author .name {
  color: #97989f;
}
body.dark-mode section.post .post-top .bottom .date {
  color: #97989f;
}
body.dark-mode .wpcf7 .wpcf7-form-control-wrap {
  background-color: #181a2a;
  border: 1px solid #3b3c4a;
}
body.dark-mode .wpcf7 .wpcf7-form-control-wrap input {
  color: #97989f;
}

/* ---------------------- Section cv-analyzer ---------------------- */
section.cv-analyzer {
  padding-top: 0;
}
section.cv-analyzer .upload-section {
  border-radius: 20px;
  border: 2px dashed #e1e1e6;
  padding: 40px 20px;
  text-align: center;
}
section.cv-analyzer .upload-section .message {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #999999;
}
section.cv-analyzer .upload-section .error {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #ea580c;
  margin-top: 15px;
}
section.cv-analyzer .upload-section .file {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #999999;
  margin-top: 25px;
}
section.cv-analyzer .part-result {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 35px;
}
section.cv-analyzer .part-result .header {
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: space-between;
  border-bottom: 1px solid #e1e1e6;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
section.cv-analyzer .part-result .header .part {
  max-width: 350px;
}
section.cv-analyzer .part-result .header .part-info .par {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 19px;
  color: var(--color-text);
}
section.cv-analyzer .part-result .header .part-info .value {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #ea580c;
}
section.cv-analyzer .part-result .header .part-chart {
  text-align: right;
}
section.cv-analyzer .part-result .title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: var(--color-main);
  display: block;
  text-align: center;
}
section.cv-analyzer .part-result .content {
  margin-top: 0;
}
section.cv-analyzer .part-result .content h1, section.cv-analyzer .part-result .content h2, section.cv-analyzer .part-result .content h3, section.cv-analyzer .part-result .content h4, section.cv-analyzer .part-result .content h5, section.cv-analyzer .part-result .content h6 {
  font-size: 20px;
  margin-bottom: 0;
}
section.cv-analyzer .part-result .loaded-text {
  margin-top: 15px;
}
section.cv-analyzer .part-result .feedback {
  margin-top: 35px;
}
section.cv-analyzer .part-result .subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: var(--color-text);
  display: block;
  text-align: left;
}
section.cv-analyzer .part-result .teaser-info {
  margin-top: 45px;
}
section.cv-analyzer .part-result .teaser-info .cover {
  margin-top: 15px;
  position: relative;
}
section.cv-analyzer .part-result .teaser-info .cover:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 100%);
}
section.cv-analyzer .part-result .read-more {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--color-main);
  text-decoration: underline;
  display: inline-block;
  margin-top: 15px;
  cursor: pointer;
}
section.cv-analyzer .part-result .read-more.loading {
  pointer-events: none;
}
section.cv-analyzer .part-result .read-more:hover {
  text-decoration: none;
}
section.cv-analyzer .part-result .thanks {
  margin-top: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--color-main);
}
section.cv-analyzer .chart-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin-right: 0;
  margin-left: auto;
}
section.cv-analyzer .chart-wrapper .donut-chart {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
section.cv-analyzer .chart-wrapper .donut-chart circle {
  fill: none;
  stroke-width: 20;
  stroke-linecap: round;
}
section.cv-analyzer .chart-wrapper .donut-chart .bg {
  stroke: #eee;
}
section.cv-analyzer .chart-wrapper .donut-chart .fg {
  stroke: #3b82f6;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
}
section.cv-analyzer .chart-wrapper .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  text-align: center;
}
section.cv-analyzer .chart-wrapper .text .label {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
section.cv-analyzer .chart-wrapper .text .percentage {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
}
@media only screen and (max-width: 950px) {
  section.cv-analyzer .upload-section {
    padding: 30px 15px;
  }
  section.cv-analyzer .part-result {
    padding: 25px 15px;
  }
  section.cv-analyzer .part-result .title {
    font-size: 24px;
  }
  section.cv-analyzer .part-result .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-right: 120px;
  }
  section.cv-analyzer .part-result .header .part-chart {
    position: absolute;
    right: 0;
    top: 0;
  }
  section.cv-analyzer .part-result .header .part-info .par {
    font-size: 17px;
  }
  section.cv-analyzer .part-result .header .part-info .value {
    font-size: 20px;
  }
  section.cv-analyzer .chart-wrapper {
    width: 115px;
    height: 115px;
  }
  section.cv-analyzer .chart-wrapper .text .label {
    font-size: 16px;
  }
  section.cv-analyzer .chart-wrapper .text .percentage {
    font-size: 40px;
  }
}

/* --------------------- /Section cv-analyzer ---------------------- */
.disclaimer {
  font-size: 15px;
  color: #999999;
  margin-top: 25px;
}
@media only screen and (max-width: 950px) {
  .disclaimer {
    font-size: 13px;
  }
}

.button-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #7926d2;
  border-radius: 200px;
  padding: 15px 35px;
  width: fit-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin: auto;
  cursor: pointer;
  transition: 0.5s;
  white-space: nowrap;
}
.button-cv:hover {
  background: #8725f1;
}
.button-cv img {
  height: 20px;
}
.button-cv img.loader {
  display: none;
}
.button-cv.processing {
  pointer-events: none;
}
.button-cv.processing img.loader {
  display: block;
}
.button-cv.processing img.main {
  display: none;
}
.button-cv span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
}
.button-cv.button-start {
  margin-top: 25px;
}
.button-cv.button-start img {
  height: 25px;
}
@media only screen and (max-width: 950px) {
  .button-cv {
    padding: 15px 30px;
  }
  .button-cv span {
    font-size: 22px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .inner {
  opacity: 1;
  transform: scale(1);
}
.popup .wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transition: 0.5s;
  transform: scale(0.2);
}
.popup .inner .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.popup .inner .close img {
  height: 20px;
}
.popup .inner .title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: var(--color-main);
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
.popup .paypal-wrapper {
  margin-top: 25px;
}
.popup .button-show-analysis {
  margin-top: 25px;
}
@media only screen and (max-width: 950px) {
  .popup .inner {
    margin-left: 10px;
    margin-right: 10px;
    padding: 30px 10px;
  }
  .popup .inner .title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

body.dark-mode section.cv-analyzer .part-result {
  background: #242535;
}
body.dark-mode section.cv-analyzer .part-result .header .part-info .par {
  color: #fff;
}
body.dark-mode section.cv-analyzer .chart-wrapper .text {
  color: #fff;
}
body.dark-mode section.cv-analyzer .part-result .subtitle {
  color: #fff;
}
body.dark-mode .popup .inner {
  background: #242535;
}
body.dark-mode .popup .inner .close img {
  filter: brightness(0) invert(1);
}
body.dark-mode section.cv-analyzer .part-result .teaser-info .cover:after {
  background: linear-gradient(to bottom, rgba(36, 37, 53, 0) 0%, rgb(36, 37, 53) 95%, rgb(36, 37, 53) 100%);
}

/* ---------------------- Section cv-why ---------------------- */
section.cv-why .section-inner {
  max-width: 840px;
}
section.cv-why .boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 55px;
}
section.cv-why .boxes .box {
  text-align: center;
  width: calc(25% - 23px);
}
section.cv-why .boxes .box .icon img {
  height: 75px;
}
section.cv-why .boxes .box .title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-main);
  margin-top: 5px;
}
section.cv-why .boxes .box .desc {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: var(--color-text);
  margin-top: 8px;
  line-height: 1.3;
}
@media only screen and (max-width: 950px) {
  section.cv-why .boxes {
    gap: 30px 20px;
    margin-top: 35px;
  }
  section.cv-why .boxes .box {
    text-align: center;
    width: calc(50% - 10px);
  }
  section.cv-why .boxes .box .icon img {
    height: 55px;
  }
  section.cv-why .boxes .box .title {
    font-size: 19px;
  }
  section.cv-why .boxes .box .desc {
    font-size: 15px;
    margin-top: 5px;
  }
}

/* --------------------- /Section cv-why ---------------------- */
/* ---------------------- Section cv-testimonials ---------------------- */
section.cv-testimonials .section-inner {
  max-width: 840px;
}
section.cv-testimonials .slider-testimonials {
  margin-top: 35px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
}
section.cv-testimonials .testimonial {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 25px;
}
section.cv-testimonials .testimonial .author {
  display: flex;
  align-items: center;
  gap: 15px;
}
section.cv-testimonials .testimonial .author .avatar {
  border-radius: 100%;
  overflow: hidden;
  height: 55px;
  width: 55px;
  flex-shrink: 0;
}
section.cv-testimonials .testimonial .author .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.cv-testimonials .testimonial .author .info .name {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: var(--color-text);
}
section.cv-testimonials .testimonial .author .info .position {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #999999;
  margin-top: 3px;
}
section.cv-testimonials .testimonial .text {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 15px;
  color: var(--color-text);
  margin-top: 15px;
  line-height: 1.4;
}
@media only screen and (max-width: 950px) {
  section.cv-testimonials .slider-testimonials {
    margin-top: 15px;
  }
  section.cv-testimonials .pagination {
    margin-top: 25px;
  }
}

/* --------------------- /Section cv-testimonials ---------------------- */
.alignnone, .aligncenter, .alignright, .alignleft {
  max-width: 50%;
}

.content .alignright, .content .alignleft {
  max-width: 50%;
  height: auto;
}
.content .alignnone, .content .aligncenter {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 950px) {
  .content .alignnone, .content .aligncenter, .content .alignright, .content .alignleft {
    max-width: 100%;
    float: none;
    margin: 0;
  }
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

html.fp-enabled {
  margin-top: 0 !important;
}
/*# sourceMappingURL=style.css.map */
