@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-LightItalic.eot");
  src: url("../fonts/Sansation-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Sansation-LightItalic.woff2") format("woff2"), url("../fonts/Sansation-LightItalic.woff") format("woff"), url("../fonts/Sansation-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-Bold.eot");
  src: url("../fonts/Sansation-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Sansation-Bold.woff2") format("woff2"), url("../fonts/Sansation-Bold.woff") format("woff"), url("../fonts/Sansation-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-Light.eot");
  src: url("../fonts/Sansation-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Sansation-Light.woff2") format("woff2"), url("../fonts/Sansation-Light.woff") format("woff"), url("../fonts/Sansation-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-Italic.eot");
  src: url("../fonts/Sansation-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Sansation-Italic.woff2") format("woff2"), url("../fonts/Sansation-Italic.woff") format("woff"), url("../fonts/Sansation-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-BoldItalic.eot");
  src: url("../fonts/Sansation-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Sansation-BoldItalic.woff2") format("woff2"), url("../fonts/Sansation-BoldItalic.woff") format("woff"), url("../fonts/Sansation-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sansation";
  src: url("../fonts/Sansation-Regular.eot");
  src: url("../fonts/Sansation-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Sansation-Regular.woff2") format("woff2"), url("../fonts/Sansation-Regular.woff") format("woff"), url("../fonts/Sansation-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #1D1D1D;
  --main: #912939;
  --main-color: #912939;
  --light: #F7F1EA;
  --light-color: #F7F1EA;
}

body {
  font-family: "Montserrat", sans-serif;
  transition: all 300ms ease-out;
  background: var(--bg);
  color: var(--light);
  font-size: 14px;
  overflow-x: hidden;
}
body.light {
  --bg: #FBF8F4;
  --light: #1D1D1D;
}

.sys-container {
  width: 1248px;
  padding: 0 24px;
  max-width: 100%;
  margin: auto;
}

img {
  width: 100%;
}

a, a:visited, a:hover {
  text-decoration: unset;
}

.sm-show {
  display: none;
}

.main-header {
  padding-top: 112px;
  position: relative;
}
.main-header.is_home::before {
  content: " ";
  background: var(--main);
  width: calc((100vw - 1200px) / 2 - 10px);
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 23px;
}
.main-header .sys-container {
  position: relative;
}
.main-header .sys-container .logo-placeholder-top {
  position: absolute;
  top: -90px;
  pointer-events: none;
}
.main-header .menu-flex-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .menu-flex-holder .left-side-holder .header-theme-switch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.main-header .menu-flex-holder .left-side-holder .header-theme-switch .label {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 12px */
  margin: 0 6px;
}
.main-header .menu-flex-holder .left-side-holder .header-theme-switch input {
  display: none;
}
.main-header .menu-flex-holder .left-side-holder .header-theme-switch .main-switch {
  display: flex;
  align-items: center;
  width: 26px;
  height: 10px;
  border-radius: 5px;
  border: 1px solid var(--light);
  position: relative;
  cursor: pointer;
}
.main-header .menu-flex-holder .left-side-holder .header-theme-switch .main-switch .in {
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  right: 1px;
  top: 1px;
  background: var(--main);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.main-header .menu-flex-holder .left-side-holder .header-theme-switch input:checked ~ .main-switch .in {
  transform: translateX(-16px);
}
.main-header .menu-flex-holder .left-side-holder .badge {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 4px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
}
.main-header .menu-flex-holder .menu-holder ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header .menu-flex-holder .menu-holder ul li {
  margin-right: 25px;
}
.main-header .menu-flex-holder .menu-holder ul li:last-child {
  margin-right: 0;
}
.main-header .menu-flex-holder .menu-holder ul li a {
  color: var(--light, #F7F1EA);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  transition: all 300ms ease-in-out;
}
.main-header .menu-flex-holder .menu-holder ul li a.active {
  color: var(--main);
  font-weight: bold;
}
.main-header .menu-flex-holder .menu-holder ul li a:hover {
  color: var(--main);
}

.main-hero-holder {
  overflow: hidden;
}
.main-hero-holder .main-flex-holder {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 100px 0;
  padding-top: 180px;
}
.main-hero-holder .main-flex-holder .left-side-holder .logo-holder {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateY(-60px);
}
.main-hero-holder .main-flex-holder .left-side-holder .logo-holder .kml {
  transition: all 300ms ease-out;
  opacity: 0;
  transform: translate(-400px, -100px);
}
.main-hero-holder .main-flex-holder .left-side-holder .logo-holder .name {
  margin-left: -30px;
  margin-bottom: -12px;
  transform: translateX(-400px);
  opacity: 0;
}
.main-hero-holder .main-flex-holder .left-side-holder .logo-holder .role {
  color: var(--light, #F7F1EA);
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 100px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  transform: translateX(-700px);
  opacity: 0;
  line-height: 120%; /* 36px */
}
.main-hero-holder .main-flex-holder .left-side-holder .info-holder {
  width: 500px;
  margin-left: auto;
  margin-right: 0;
  transform: translateX(-200px);
  opacity: 0;
  text-align: right;
}
.main-hero-holder .main-flex-holder .left-side-holder .info-holder p {
  color: var(--light, #F7F1EA);
  text-align: right;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  margin-bottom: 20px;
}
.main-hero-holder .main-flex-holder .left-side-holder .info-holder span {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.main-hero-holder .main-flex-holder .right-side-holder {
  padding-left: 35px;
}
.main-hero-holder .main-flex-holder .right-side-holder .img-holder {
  height: 420px;
  display: flex;
  width: 380px;
  align-items: center;
  opacity: 0;
  transition: all 300ms ease-out;
  transform: translateX(200px);
}
.main-hero-holder .main-flex-holder .right-side-holder .img-holder img {
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
  height: 100%;
}

body.light .main-hero-holder .main-flex-holder .left-side-holder .logo-holder .name svg path {
  fill: var(--light);
  stroke: var(--light);
}

.home-about {
  margin-top: 125px;
  margin-bottom: 120px;
}
.home-about .flex-of-top {
  display: flex;
  justify-content: space-between;
}
.home-about .flex-of-top .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 55%;
  flex-wrap: 1;
  padding-right: 12.5px;
}
.home-about .flex-of-top .left-side h2 {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
}
.home-about .flex-of-top .left-side p {
  color: var(--light, #F7F1EA);
  text-align: right;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 36px */
  margin-bottom: 0;
}
.home-about .flex-of-top .right-side {
  max-width: 45%;
  flex-wrap: 1;
  padding-left: 12.5px;
}
.home-about .flex-of-top .right-side p {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  margin-bottom: 24px;
}
.home-about .flex-of-top .right-side a {
  border-radius: 20px;
  background: var(--main, #912939);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.home-about .bottom-text {
  padding: 0 64px;
  margin-top: 115px;
}
.home-about .bottom-text p {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  border-top: 1px solid var(--main);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  padding-top: 6px;
}

.home-project {
  padding-top: 120px;
  margin-bottom: 120px;
}
.home-project .top-header .badge {
  margin-left: 0;
  margin-right: 0;
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
}
.home-project .top-header .projects {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 16px;
  border: 3px solid var(--light, #F7F1EA);
}
.home-project .top-header .projects .each-half {
  max-width: 50%;
  flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.home-project .top-header .projects .each-half .img-holder {
  border-bottom: 2px solid var(--light, #F7F1EA);
  display: flex;
  height: 500px;
  border-radius: 12px 0 0 0;
  overflow: hidden;
  position: relative;
}
.home-project .top-header .projects .each-half .img-holder::after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  display: block;
  left: 0;
  transition: all 300ms ease-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(92, 0, 19, 0.5) 100%);
  opacity: 0;
  z-index: 999;
  height: 100%;
  pointer-events: none;
}
.home-project .top-header .projects .each-half .img-holder a {
  display: flex;
  width: 100%;
}
.home-project .top-header .projects .each-half .img-holder a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-project .top-header .projects .each-half .content-holder {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-project .top-header .projects .each-half .content-holder .title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -4px;
  background: var(--bg);
  padding: 4px 0;
  padding-top: 22px;
  padding-bottom: 22px;
}
.home-project .top-header .projects .each-half .content-holder .title-area h3 {
  color: var(--light, #F7F1EA);
  margin: 0;
  font-family: Sansation;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 30px */
  min-width: 50%;
  text-align: left;
  transition: all 300ms ease-out;
}
.home-project .top-header .projects .each-half .content-holder .title-area h3 a {
  color: var(--light, #F7F1EA);
  text-align: left;
  font-family: Sansation;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 30px */
  text-align: left;
  transition: all 300ms ease-out;
}
.home-project .top-header .projects .each-half .content-holder .title-area .meta-data {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.home-project .top-header .projects .each-half .content-holder .title-area .meta-data .content {
  text-align: right;
}
.home-project .top-header .projects .each-half .content-holder .title-area .meta-data .content span {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: block;
  margin: -11px 0;
  transition: all 300ms ease-out;
}
.home-project .top-header .projects .each-half .content-holder .title-area .meta-data .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transform: rotate(90deg);
  transition: all 300ms ease-out;
}
.home-project .top-header .projects .each-half .content-holder .title-area .meta-data .icon svg {
  transition: all 300ms ease-out;
}
.home-project .top-header .projects .each-half .content-holder .title-area .meta-data .icon svg path {
  transition: all 300ms ease-out;
}
.home-project .top-header .projects .each-half .content-holder .more-info {
  padding: 24px;
}
.home-project .top-header .projects .each-half .content-holder .more-info .dote {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  line-height: 0;
}
.home-project .top-header .projects .each-half .content-holder .more-info p {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  margin: 0;
  margin-bottom: 28px;
  width: 300px;
}
.home-project .top-header .projects .each-half .content-holder .more-info .name {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
}
.home-project .top-header .projects .each-half:nth-child(odd) {
  border-right: 1px solid var(--light, #F7F1EA);
}
.home-project .top-header .projects .each-half:nth-child(even) {
  border-left: 1px solid var(--light, #F7F1EA);
  flex-direction: column-reverse;
}
.home-project .top-header .projects .each-half:nth-child(even) .img-holder {
  border-radius: 0 0 12px 0;
  border-bottom: unset;
  border-top: 2px solid var(--light, #F7F1EA);
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder {
  flex-direction: column-reverse;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .title-area {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: -4px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .title-area h3 {
  text-align: right;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .title-area h3 a {
  text-align: right;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .meta-data {
  justify-content: right;
  flex-direction: row-reverse;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .meta-data .icon {
  transform: unset;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .more-info {
  padding-top: 48px;
  text-align: right;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .more-info .dote {
  justify-content: flex-end;
}
.home-project .top-header .projects .each-half:nth-child(even) .content-holder .more-info p {
  margin-right: 0;
  margin-left: auto;
}
.home-project .top-header .projects .each-half:hover .img-holder::after {
  opacity: 1;
}
.home-project .top-header .projects .each-half:hover .content-holder .title-area h3 a {
  color: var(--main);
}
.home-project .top-header .projects .each-half:hover .content-holder .title-area .meta-data .content span {
  color: var(--main);
}
.home-project .top-header .projects .each-half:hover .content-holder .title-area .meta-data .icon svg {
  transform: scale(1.3) translate(-6px, -6px);
}
.home-project .top-header .projects .each-half:hover .content-holder .title-area .meta-data .icon svg path {
  transition: all 300ms ease-out;
  stroke: var(--main);
  fill: var(--main);
}
.home-project .top-header .projects .each-half.last-item-row {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
}
.home-project .top-header .projects .each-half.last-item-row .img-holder {
  width: 50%;
  border-right: 2px solid var(--light);
}
.home-project .top-header .projects .each-half.last-item-row .content-holder {
  justify-content: flex-end;
  max-width: 50%;
  align-items: flex-end;
  width: 100%;
}
.home-project .top-header .projects .each-half.last-item-row .content-holder .title-area {
  position: absolute;
  left: 0px;
  bottom: -85px;
  width: 50%;
}
.home-project .top-header .projects .each-half.last-item-row .content-holder .title-area::after {
  content: " ";
  left: 3px;
  width: 3px;
  height: 40px;
  background: var(--light);
  display: block;
  position: absolute;
  bottom: -50px;
}
.home-project .top-header .more-project {
  border-radius: 20px;
  background: var(--main, #912939);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  margin-top: 40px;
  font-weight: 400;
  line-height: normal;
}
.home-project.archive-projects {
  margin-bottom: 240px;
}
.home-project.archive-projects .header-holder {
  margin-top: 60px;
  margin-bottom: 120px;
  width: 50%;
  margin-left: 0;
  margin-right: auto;
  border-bottom: 1px solid var(--main);
  transform: translateX(400px);
  opacity: 0;
}
.home-project.archive-projects .header-holder h1 {
  color: var(--light, #F7F1EA);
  text-align: right;
  font-family: Sansation;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  line-height: normal;
}
.home-project.archive-projects .top-header {
  opacity: 0;
  transform: translateY(300px);
}
.home-project.archive-projects .top-header .projects .each-half:nth-child(odd) .img-holder {
  border-radius: 0;
}
.home-project.archive-projects .top-header .projects .each-half:nth-child(even) .img-holder {
  border-radius: 0;
}
.home-project.archive-projects .top-header .projects .each-half:first-child .img-holder {
  border-radius: 12px 0 0 0;
}
.home-project.archive-projects .top-header .projects .each-half:last-child .img-holder {
  border-radius: 0 0 0 12px;
}

.footer-call-to-action {
  margin: 60px 0 180px;
}
.footer-call-to-action .boxs-holder {
  display: grid;
  grid-template-columns: 2.3fr 1.5fr 3.5fr;
  width: 100%;
  gap: 16px;
}
.footer-call-to-action .boxs-holder .first-item {
  border-radius: 48px 12px 12px 12px;
  background: var(--light, #F7F1EA);
  padding: 88px 12px 32px;
}
.footer-call-to-action .boxs-holder .first-item h3 {
  color: var(--bg, #1D1D1D);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  margin: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--main);
}
.footer-call-to-action .boxs-holder .first-item p {
  color: var(--bg, #1D1D1D);
  text-align: right;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
}
.footer-call-to-action .boxs-holder .second-item {
  padding: 64px 20px;
  border-radius: 12px;
  background: var(--light, #F7F1EA);
}
.footer-call-to-action .boxs-holder .second-item h3 {
  color: var(--bg, #1D1D1D);
  text-align: center;
  margin: 0;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  margin-bottom: 10px;
}
.footer-call-to-action .boxs-holder .second-item p {
  color: var(--bg, #1D1D1D);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.footer-call-to-action .boxs-holder .third-item {
  padding: 82px 40px 60px;
  border-radius: 12px 12px 48px 12px;
  border: 2px solid var(--light, #F7F1EA);
}
.footer-call-to-action .boxs-holder .third-item h3 {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  line-height: 120%; /* 24px */
  margin-bottom: 18px;
}
.footer-call-to-action .boxs-holder .third-item p {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
}

.footer-main {
  position: relative;
}
.footer-main .sys-container {
  position: relative;
}
.footer-main .main-footer-content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-main .main-footer-content .main-inner-content {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  top: 10px;
}
.footer-main .main-footer-content .main-inner-content .right a {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
}
.footer-main .main-footer-content .main-inner-content .left {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  padding-right: 100px;
}
.footer-main .main-footer-content .main-inner-content .left .content .info {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.footer-main .main-footer-content .main-inner-content .left .content .info .icon {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.footer-main .main-footer-content .main-inner-content .left .content .info a {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
}
.footer-main .main-footer-content .main-inner-content .left .content .social-list {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-main .main-footer-content .main-inner-content .left .content .social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.footer-main .main-footer-content .main-inner-content .left .content .social-list a:last-child {
  margin-right: 0;
}
.footer-main .main-footer-content .main-inner-content .left .content .cv-download a {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
}
.footer-main .btn-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -56px;
  height: 1px;
}
.footer-main .btn-holder span {
  position: absolute;
  flex-grow: 1;
  width: 100vw;
  height: 1px;
  background: var(--main);
}
.footer-main .btn-holder div.logo {
  position: absolute;
  margin: auto;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
}
.footer-main .btn-holder div.logo .holder {
  margin: auto;
  position: relative;
  margin-top: 55px;
  width: -moz-max-content;
  width: max-content;
}
.footer-main .btn-holder div.logo .holder::after {
  content: " ";
  background: var(--bg);
  display: block;
  width: 60px;
  height: 10px;
  position: absolute;
  left: -2px;
  top: 0;
}
.footer-main .btn-holder div.logo svg {
  position: relative;
  z-index: 9;
}
.footer-main .back-to-top {
  position: absolute;
  right: 20px;
  z-index: 9999;
  bottom: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer-main .back-to-top .icon {
  background: var(--main);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 4px;
}
.footer-main .back-to-top .text {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 12px */
}

body.light .footer-main .main-footer-content .main-inner-content .left .content .info .icon svg path {
  stroke: var(--light);
}
body.light .footer-main .main-footer-content .main-inner-content .left .content .social-list a svg path {
  fill: var(--light);
  stroke: var(--light);
}
body.light .footer-main .btn-holder div.logo .holder svg path {
  fill: var(--light);
}
body.light .footer-main .btn-holder div.logo .holder svg path:nth-child(1), body.light .footer-main .btn-holder div.logo .holder svg path:nth-child(2), body.light .footer-main .btn-holder div.logo .holder svg path:nth-child(3) {
  fill: var(--main);
}

.home-article {
  margin-bottom: 160px;
  margin-top: 140px;
}
.home-article .flex-of-article {
  display: flex;
  justify-content: space-between;
}
.home-article .flex-of-article .each-article .img-holder {
  overflow: hidden;
  border-radius: 48px 16px 16px 16px;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(92, 0, 19, 0.5) 100%);
  position: relative;
}
.home-article .flex-of-article .each-article .img-holder::after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  display: block;
  left: 0;
  transition: all 300ms ease-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(92, 0, 19, 0.5) 100%);
  opacity: 0;
  z-index: 999;
  height: 100%;
  pointer-events: none;
}
.home-article .flex-of-article .each-article .img-holder a {
  display: flex;
  align-items: center;
}
.home-article .flex-of-article .each-article .img-holder a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-article .flex-of-article .each-article .content .title h3 {
  text-align: left;
  transition: all 300ms ease-out;
  margin: 0;
}
.home-article .flex-of-article .each-article .content .title h3 a {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
}
.home-article .flex-of-article .each-article .content .meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
.home-article .flex-of-article .each-article .content .meta .date {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  margin-right: 8px;
}
.home-article .flex-of-article .each-article .content .meta .cat {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 2px 12px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
  margin-left: 8px;
}
.home-article .flex-of-article .each-article:hover .img-holder::after {
  opacity: 1;
}
.home-article .flex-of-article .each-article:hover .content .title h3 {
  text-align: right;
}
.home-article .flex-of-article .each-article:hover .content .title h3 a {
  animation-name: flash;
  animation-duration: 1s;
}
.home-article .flex-of-article .right-side {
  flex-grow: 1;
  max-width: 50%;
  padding-right: 7px;
}
.home-article .flex-of-article .right-side h2 {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 40px;
}
.home-article .flex-of-article .right-side .each-article:nth-child(2) {
  width: 60%;
  margin-bottom: 50px;
}
.home-article .flex-of-article .right-side .each-article:nth-child(2) .img-holder {
  height: 260px;
}
.home-article .flex-of-article .right-side .each-article:nth-child(3) {
  width: 40%;
  margin-right: 70px;
  margin-left: auto;
}
.home-article .flex-of-article .right-side .each-article:nth-child(3) .img-holder {
  height: 230px;
  border-radius: 16px 16px 16px 48px;
}
.home-article .flex-of-article .left-side {
  flex-grow: 1;
  max-width: 50%;
  padding-left: 7px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}
.home-article .flex-of-article .left-side .each-article:nth-child(1) .img-holder {
  border-radius: 16px 16px 48px 16px;
  height: 470px;
}
.home-article .flex-of-article .left-side .more {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 8px 24px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: 100%;
}

.main-about-holder {
  margin-top: 124px;
  margin-bottom: 240px;
}
.main-about-holder .main-flex-holder {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.main-about-holder .main-flex-holder .left-side-holder {
  margin-right: 45px;
  max-width: 30%;
  min-width: 30%;
  flex-grow: 1;
  transform: translateX(-300px);
  opacity: 0;
}
.main-about-holder .main-flex-holder .left-side-holder .img-holder {
  display: flex;
  height: 500px;
  align-items: center;
}
.main-about-holder .main-flex-holder .left-side-holder .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-about-holder .main-flex-holder .right-side-holder .content-text h1 {
  color: var(--light, #F7F1EA);
  margin: 0;
  font-family: Sansation;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 72px */
  transform: translateX(300px);
  opacity: 0;
}
.main-about-holder .main-flex-holder .right-side-holder .content-text span {
  color: var(--light, #F7F1EA);
  font-family: Sansation;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 36px */
  transform: translateX(300px);
  opacity: 0;
  display: inline-block;
}
.main-about-holder .main-flex-holder .right-side-holder .content-text p {
  margin: 0;
  margin-top: 90px;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  transform: translateX(400px);
  opacity: 0;
}

.spe-title-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48.5%;
  margin-left: 0;
  margin-right: auto;
}
.spe-title-area span {
  flex-grow: 1;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main);
}
.spe-title-area h2 {
  margin: 0;
  margin-left: 45px;
  color: var(--light, #F7F1EA);
  font-family: Sansation;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 45px */
  letter-spacing: -0.63px;
  text-transform: uppercase;
}

.working-experience .content h3 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.63px;
}
.working-experience .content .role {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
/*   font-weight: 700; */
  line-height: 150%; /* 30px */
  letter-spacing: -0.63px;
}
.working-experience .content .flex-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: -0.63px;
}
.working-experience .content .flex-meta .location {
  padding-right: 8px;
  border-right: 1px solid var(--main);
}
.working-experience .content .flex-meta .date {
  padding-left: 8px;
}
.working-experience .content ul {
  margin: 0;
  padding: 0;
  margin-top: 23px;
  list-style: none;
}
.working-experience .content ul li {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.63px;
}
.working-experience .content ul li::before {
  content: " ";
  display: inline-block;
  width: 8px;
  max-width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -5px;
  background: var(--main);
}

.skills .content h3 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.63px;
  margin-bottom: 27px;
}
.skills .content ul {
  margin: 0;
  padding: 0;
  margin-top: 23px;
  list-style: none;
}
.skills .content ul li {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  letter-spacing: -0.63px;
  text-transform: capitalize;
}
.skills .content ul li::before {
  content: " ";
  display: inline-block;
  width: 7px;
  max-width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -5px;
  background: var(--main);
}

.certification .content h3 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.63px;
  margin-bottom: 27px;
}
.certification .content ul {
  margin: 0;
  padding: 0;
  margin-top: 23px;
  list-style: none;
}
.certification .content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 24px;
}
.certification .content ul li:last-child {
  margin-bottom: 0;
}
.certification .content ul li::before {
  content: " ";
  display: inline-block;
  width: 7px;
  max-width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -5px;
  background: var(--main);
  position: absolute;
  left: 0;
  top: 20px;
}
.certification .content ul li p {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  letter-spacing: -0.63px;
  text-transform: capitalize;
  margin-bottom: -10px;
}
.certification .content ul li span {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.63px;
  text-transform: capitalize;
}

.education .content h3 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.63px;
  margin-bottom: 27px;
}
.education .content .list-edu .each {
  margin-bottom: 48px;
}
.education .content .list-edu .each:last-child {
  margin-bottom: 0;
}
.education .content .list-edu .each h4 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.63px;
}
.education .content .list-edu .each .location {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.63px;
}
.education .content .list-edu .each .flex-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: -0.63px;
}
.education .content .list-edu .each .flex-meta .location {
  padding-right: 8px;
  border-right: 1px solid var(--main);
}
.education .content .list-edu .each .flex-meta .date {
  padding-left: 8px;
  font-size: 12px;
}

.single-project-page {
  z-index: 9;
  position: relative;
}
.single-project-page .top-area {
  margin-top: 125px;
  margin-bottom: 110px;
}
.single-project-page .top-area .top-banner-single-project {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--main);
}
.single-project-page .top-area .top-banner-single-project .img-holder {
  height: 500px;
  opacity: 0;
  flex-grow: 1;
  max-width: 50%;
  min-width: 50%;
  margin-right: 30px;
  overflow: hidden;
  border-radius: 48px 12px 12px 12px;
}
.single-project-page .top-area .top-banner-single-project .img-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-project-page .top-area .top-banner-single-project .content-holder {
  flex-grow: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.single-project-page .top-area .top-banner-single-project .content-holder .toper {
  opacity: 0;
  transform: translateX(-200px);
}
.single-project-page .top-area .top-banner-single-project .content-holder h1 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Sansation;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 72px */
}
.single-project-page .top-area .top-banner-single-project .content-holder .meta-holder {
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: flex-end;
  margin-top: 70px;
}
.single-project-page .top-area .top-banner-single-project .content-holder .meta-holder span {
  color: var(--light, #F7F1EA);
  text-align: right;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.single-project-page .top-area .top-banner-single-project .content-holder .short-des {
  padding-bottom: 30px;
  opacity: 0;
  transform: translateX(-200px);
}
.single-project-page .top-area .top-banner-single-project .content-holder .short-des span {
  display: inline-block;
  color: var(--light, #F7F1EA);
  text-align: right;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 14.4px */
  margin-right: 30px;
  transform: translateY(-4px);
}
.single-project-page .top-area .top-banner-single-project .content-holder .short-des p {
  display: inline;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  margin: 0;
}
.single-project-page .relative-projects {
  margin-bottom: 230px;
  display: flex;
  justify-content: space-between;
  padding-top: 35px;
  border-top: 1px solid var(--main);
}
.single-project-page .relative-projects .title-area {
  padding: 0 80px;
  padding-right: 100px;
}
.single-project-page .relative-projects .title-area h3 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Sansation;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 30px */
  white-space: nowrap;
}
.single-project-page .relative-projects .projects-holder {
  flex-grow: 1;
}
.single-project-page .relative-projects .projects-holder .projects-list {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  grid-template-areas: "one two" "one .";
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project a .img-holder {
  overflow: hidden;
  border-radius: 48px 0px 0px 16px;
  display: flex;
  align-items: center;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project a .img-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project a .title-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin-top: 16px;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project a .title-area h3 {
  margin: 0;
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 36px */
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project a .title-area span {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project:nth-child(1) {
  grid-area: one;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project:nth-child(1) a .img-holder {
  height: 500px;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project:nth-child(2) {
  grid-area: two;
}
.single-project-page .relative-projects .projects-holder .projects-list .each-project:nth-child(2) a .img-holder {
  height: 270px;
}
.single-project-page .main-content-holder {
  margin-top: 110px;
  margin-bottom: 140px;
}
.single-project-page .main-content-holder p {
  font-family: Montserrat !important;
  color: var(--light) !important;
}

.archive-articles {
  position: relative;
  z-index: 9;
  margin-bottom: 300px;
}
.archive-articles .header-holder {
  margin-top: 60px;
  margin-bottom: 120px;
  width: 50%;
  margin-left: 0;
  margin-right: auto;
  border-bottom: 1px solid var(--main);
  transform: translateX(400px);
  opacity: 0;
}
.archive-articles .header-holder h1 {
  color: var(--light, #F7F1EA);
  text-align: right;
  font-family: Sansation;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  line-height: normal;
}
.archive-articles .articles {
  transform: translateY(300px);
  opacity: 0;
}
.archive-articles .articles .each-article {
  width: 100%;
}
.archive-articles .articles .each-article .img-holder {
  overflow: hidden;
  border-radius: 48px 16px 16px 16px;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(92, 0, 19, 0.5) 100%);
}
.archive-articles .articles .each-article .img-holder::after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  display: block;
  left: 0;
  transition: all 300ms ease-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(92, 0, 19, 0.5) 100%);
  opacity: 0;
  z-index: 999;
  height: 100%;
  pointer-events: none;
}
.archive-articles .articles .each-article .img-holder a {
  display: flex;
  align-items: center;
}
.archive-articles .articles .each-article .img-holder a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-articles .articles .each-article .content .title h3 {
  margin: 0;
  transition: all 300ms ease-out;
}
.archive-articles .articles .each-article .content .title h3 a {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  transition: all 300ms ease-out;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
}
.archive-articles .articles .each-article .content .meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
.archive-articles .articles .each-article .content .meta .date {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  margin-right: 8px;
}
.archive-articles .articles .each-article .content .meta .cat {
  border-radius: 20px;
  background: var(--main, #912939);
  padding: 2px 12px;
  color: var(--light-color, #F7F1EA);
  text-align: center;
  font-family: Sansation;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  width: -moz-max-content;
  width: max-content;
  margin-left: 8px;
}
.archive-articles .articles .each-article:hover .img-holder::after {
  opacity: 1;
}
.archive-articles .articles .each-article:hover .content .title h3 {
  text-align: right;
}
.archive-articles .articles .each-article:hover .content .title h3 a {
  animation-name: flash;
  animation-duration: 1s;
}
.archive-articles .articles .each-holder {
  width: 100%;
  margin-bottom: 40px;
}
.archive-articles .articles .each-holder:nth-child(1) .each-article {
  width: 30%;
}
.archive-articles .articles .each-holder:nth-child(1) .each-article .img-holder {
  height: 260px;
}
.archive-articles .articles .each-holder:nth-child(2) {
  display: flex;
  justify-content: flex-end;
}
.archive-articles .articles .each-holder:nth-child(2) .each-article {
  width: 70%;
}
.archive-articles .articles .each-holder:nth-child(2) .each-article .img-holder {
  height: 470px;
}
.archive-articles .articles .each-holder:nth-child(3) {
  padding-left: 100px;
}
.archive-articles .articles .each-holder:nth-child(3) .each-article {
  width: 20%;
}
.archive-articles .articles .each-holder:nth-child(3) .each-article .img-holder {
  height: 230px;
}
.archive-articles .articles .each-holder:nth-child(4) {
  display: flex;
  justify-content: flex-end;
  margin-top: -250px;
}
.archive-articles .articles .each-holder:nth-child(4) .each-article {
  width: 50%;
}
.archive-articles .articles .each-holder:nth-child(4) .each-article .img-holder {
  height: 470px;
}
.archive-articles .articles .each-holder:nth-child(5) {
  display: flex;
  justify-content: flex-start;
}
.archive-articles .articles .each-holder:nth-child(5) .each-article {
  width: 50%;
}
.archive-articles .articles .each-holder:nth-child(5) .each-article .img-holder {
  height: 470px;
}
.archive-articles .articles .pagination-holder {
  margin-top: 120px;
}
.archive-articles .articles .pagination-holder ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-articles .articles .pagination-holder ul li a {
  color: var(--light, #F7F1EA);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: all 300ms ease-out;
  margin: 0 8px;
  border-radius: 3px;
}
.archive-articles .articles .pagination-holder ul li a.active, .archive-articles .articles .pagination-holder ul li a:hover {
  background: var(--main);
  color: var(--light-color, #F7F1EA);
}

.home-project.archive-projects .top-header .projects .each-half .img-holder {
  border-bottom: 2px solid var(--light, #F7F1EA);
  border-top: 2px solid var(--light, #F7F1EA);
}
.home-project.archive-projects .top-header .projects .each-half:first-child .img-holder {
  border-top: unset;
}
.home-project.archive-projects .top-header .projects .each-half:last-child .img-holder {
  border-bottom: unset;
}
.main-header {
  padding-top: 100px;
}

.main-hero-holder .main-flex-holder {
  padding-top: 100px;
}
.main-hero-holder .main-flex-holder .left-side-holder {
  flex-grow: 1;
}

.main-hero-holder .main-flex-holder .left-side-holder .logo-holder .kml {
  max-width: 280px;
  min-width: 200px;
}
.main-hero-holder .main-flex-holder .left-side-holder .logo-holder .kml svg {
  width: 100%;
}

.main-hero-holder .main-flex-holder .right-side-holder .img-holder {
  height: 500px;
}

.main-header .sys-container .logo-placeholder-top {
  display: none;
}
.main-footer-content a {
	transition: all 300ms ease-out;
}
.main-footer-content a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 1200px) {
  .main-hero-holder .main-flex-holder .right-side-holder {
    padding-left: 20px;
  }
  .main-hero-holder .main-flex-holder .right-side-holder .img-holder {
    height: 450px;
    width: 350px;
  }
}
@media screen and (max-width: 922px) {
  .footer-main .sys-container {
    padding: 0;
  }
  .footer-main .main-footer-content {
    height: 400px;
    position: relative;
  }
  .footer-main .main-footer-content .main-inner-content {
    padding: 0 24px;
  }
  .footer-main .main-footer-content .logo {
    position: absolute;
    width: 260px;
    left: 0;
    bottom: 0;
    height: -moz-max-content;
    height: max-content;
  }
  .footer-main .main-footer-content .logo svg {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
  }
  .footer-main .btn-holder {
    margin-top: -40px;
  }
  .footer-main .btn-holder div.logo .holder {
    margin-top: 34px;
  }
  .footer-main .btn-holder div.logo .holder::after {
    display: none;
  }
  .footer-main .btn-holder div.logo .holder svg {
    width: 180px;
  }
  .footer-main .main-footer-content .main-inner-content .right a {
    font-size: 14px;
  }
  .footer-call-to-action {
    margin-bottom: 100px;
    gap: 6px;
  }
  .footer-call-to-action .boxs-holder {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "one two" "three three";
  }
  .footer-call-to-action .boxs-holder > div:nth-child(1) {
    grid-area: one;
    padding: 50px 6px 0;
  }
  .footer-call-to-action .boxs-holder > div:nth-child(2) {
    grid-area: two;
    padding: 35px 15px 1px;
  }
  .footer-call-to-action .boxs-holder > div:nth-child(3) {
    grid-area: three;
    padding: 40px 30px 35px;
  }
  .footer-call-to-action .boxs-holder > div p {
    font-size: 14px !important;
  }
  .main-header {
    padding-top: 50px;
    overflow: hidden;
  }
  .main-header .logo-placeholder-top {
    display: none;
  }
  .main-header .menu-flex-holder .left-side-holder {
    display: none;
  }
  .main-header .menu-flex-holder .menu-holder {
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }
  .main-header .menu-flex-holder .menu-holder ul {
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
    margin: 0;
    justify-content: space-between;
  }
  .main-header .menu-flex-holder .menu-holder ul li {
    margin: 0;
  }
  .main-header .menu-flex-holder .menu-holder ul li a {
    font-size: 14px;
  }
  .home-project {
    margin-bottom: 40px;
    padding-top: 60px;
  }
  .home-project .top-header .badge {
    font-size: 14px;
  }
  .home-project .top-header .more-project {
    font-size: 14px;
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    padding: 8px 22px;
  }
  .home-project .top-header .projects {
    border: unset;
  }
  .home-project .top-header .projects .each-half {
    flex-direction: column !important;
    width: 100%;
    max-width: 100%;
    border: unset !important;
    margin-bottom: 30px;
  }
  .home-project .top-header .projects .each-half:last-child {
    margin-bottom: 0;
  }
  .home-project .top-header .projects .each-half .img-holder {
    height: 250px;
    border: 2px solid var(--light);
    overflow: hidden;
  }
  .home-project .top-header .projects .each-half .content-holder {
    height: -moz-max-content;
    height: max-content;
  }
  .home-project .top-header .projects .each-half .content-holder .more-info {
    display: none;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area {
    flex-direction: row !important;
    padding-top: 22px !important;
    padding-bottom: 0 !important;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area h3 {
    flex-grow: 1;
    text-align: left !important;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area h3 a {
    font-size: 20px;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area .meta-data {
    justify-content: flex-end;
    flex-direction: row !important;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area .meta-data .content span {
    font-size: 10px;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area .meta-data .icon {
    width: 22px;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area .meta-data .icon svg {
    width: 100%;
    height: auto;
  }
  .home-project .top-header .projects .each-half .content-holder .title-area .meta-data .icon {
    transform: rotate(90deg) !important;
  }
  .home-article {
    margin: 60px 0;
  }
  .home-article .flex-of-article {
    width: 100%;
    flex-direction: column;
  }
  .home-article .flex-of-article .each-article .img-holder {
    height: 250px !important;
  }
  .home-article .flex-of-article .right-side {
    width: 100%;
    max-width: 100%;
  }
  .home-article .flex-of-article .right-side h2 {
    font-size: 14px;
  }
  .home-article .flex-of-article .right-side .each-article:nth-child(2) {
    width: 100%;
    margin-bottom: 30px;
  }
  .home-article .flex-of-article .right-side .each-article:nth-child(3) {
    width: 100%;
    margin-bottom: 30px;
  }
  .home-article .flex-of-article .left-side {
    width: 100%;
    max-width: 100%;
  }
  .home-article .flex-of-article .left-side .each-article:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
  }
  .home-article .flex-of-article .left-side .more {
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    font-size: 14px;
  }
  .home-about {
    margin: 50px 0;
  }
  .home-about .flex-of-top {
    flex-direction: column;
    width: 100%;
  }
  .home-about .flex-of-top .left-side {
    width: 100%;
    max-width: 100%;
  }
  .home-about .flex-of-top .left-side h2 {
    font-size: 14px;
  }
  .home-about .flex-of-top .left-side p {
    display: none;
  }
  .home-about .flex-of-top .right-side {
    padding-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .home-about .flex-of-top .right-side p {
    font-size: 16px;
  }
  .home-about .flex-of-top .right-side a {
    font-size: 14px;
    margin-left: auto;
    width: -moz-max-content;
    width: max-content;
  }
  .home-about .bottom-text {
    display: none;
  }
  .main-hero-holder .main-flex-holder {
    position: relative;
    padding: 70px 0 100px;
    margin-bottom: -30px;
  }
  .main-hero-holder .main-flex-holder .right-side-holder {
    margin-left: auto;
  }
  .main-hero-holder .main-flex-holder .right-side-holder .img-holder {
    width: 170px;
    height: 240px;
  }
  .main-hero-holder .main-flex-holder .left-side-holder .logo-holder {
    z-index: 999;
    position: relative;
  }
  .main-hero-holder .main-flex-holder .left-side-holder .logo-holder > * {
    display: none;
  }
  .main-hero-holder .main-flex-holder .left-side-holder .logo-holder .sm-show {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 999;
    bottom: -140px;
    left: 0;
    opacity: 0;
  }
  .main-hero-holder .main-flex-holder .left-side-holder .info-holder {
    display: none;
  }
  .home-project .top-header .projects .each-half:last-child .img-holder {
    width: 100%;
    max-width: 100%;
  }
  .home-project .top-header .projects .each-half.last-item-row .content-holder {
    width: 100%;
    max-width: 100%;
  }
  .home-project .top-header .projects .each-half.last-item-row .content-holder .title-area {
    width: 100%;
    position: relative;
    top: unset;
    bottom: unset;
    right: unset;
    left: unset;
  }
  .home-project .top-header .projects .each-half.last-item-row .content-holder .title-area::after {
    display: none;
  }
  .home-project.archive-projects {
    margin-bottom: 100px;
  }
  .home-project .top-header .projects .each-half:nth-child(even) .img-holder {
    border-bottom: 2px solid var(--light, #F7F1EA);
  }
  .archive-articles .header-holder, .home-project.archive-projects .header-holder {
    margin-bottom: 80px;
    width: 100%;
  }
  .archive-articles .header-holder h1, .home-project.archive-projects .header-holder h1 {
    font-size: 32px;
    text-align: left;
    padding-bottom: 3px;
  }
  .archive-articles {
    margin-bottom: 80px;
  }
  .archive-articles .articles .each-holder {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 0 50px 0 !important;
  }
  .archive-articles .articles .each-holder > .each-article {
    width: 100% !important;
    max-width: 100% !important;
  }
  .archive-articles .articles .each-holder > .each-article .img-holder {
    height: 250px !important;
  }
  .main-about-holder {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-top: 140px;
  }
  .main-about-holder .main-flex-holder .left-side-holder {
    position: absolute;
    width: 35%;
    margin-right: 0;
    max-width: 50%;
    top: 52px;
  }
  .main-about-holder .main-flex-holder .left-side-holder .img-holder {
    height: 250px;
  }
  .main-about-holder .main-flex-holder .right-side-holder {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 20px;
    z-index: 9;
  }
  .main-about-holder .main-flex-holder .right-side-holder .content-text h1 {
    font-size: 48px;
    padding-left: 42%;
  }
  .main-about-holder .main-flex-holder .right-side-holder .content-text span {
    padding-left: 42%;
    font-size: 26px;
  }
  .main-about-holder .main-flex-holder .right-side-holder .content-text p {
    margin-top: 30px;
    font-size: 18px;
  }
  .spe-title-area h2 {
    margin-left: 20px;
    margin-top: 40px;
  }
  .flex-dir-rev .elementor-container {
    flex-direction: column-reverse;
  }
  .working-experience .content ul li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .working-experience .content ul li:last-child {
    margin-bottom: 0;
  }
  .skills .content ul li {
    font-size: 16px;
  }
  .archive-articles .header-holder {
    margin-top: 100px;
  }
  .single-project-page .top-area .top-banner-single-project {
    flex-direction: column;
  }
  .single-project-page .top-area .top-banner-single-project .img-holder {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    height: 250px;
  }
  .single-project-page .top-area .top-banner-single-project .content-holder {
    width: 100%;
    max-width: 100%;
  }
  .single-project-page .top-area .top-banner-single-project .content-holder h1 {
    font-size: 42px;
  }
  .single-project-page .top-area .top-banner-single-project .content-holder .meta-holder {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .single-project-page .top-area .top-banner-single-project .content-holder .short-des p {
    font-size: 20px;
  }
  .single-project-page .relative-projects {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .single-project-page .relative-projects .title-area {
    margin-bottom: 50px;
  }
  .single-project-page .relative-projects .projects-holder .projects-list {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .single-project-page .relative-projects .projects-holder .projects-list .each-project:nth-child(1) a .img-holder {
    height: 250px;
  }
  .single-project-page .relative-projects .projects-holder .projects-list .each-project a .title-area h3 {
    font-size: 24px;
  }
  .single-project-page .top-area .top-banner-single-project {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .footer-main .back-to-top {
    display: none;
  }
  .footer-main .main-footer-content .main-inner-content .left {
    padding-right: 10px;
  }
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */



.working-experience .content .more-des {
	font-size: 16px;
	margin-top: 10px;
}
.working-experience .content ul li p {
	display: inline;
}