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

version 1.1

[Table of contents]
1. Global CSS
2. Header / Menu CSS
3. Home Section CSS 
4. Service Section CSS
5. About Section CSS
6. Portfolio Section CSS
    6.1 Pretty Photo CSS
7. Blog Section CSS
8. Skills Section CSS
9. Contact Section CSS
10. Single Blog / Post Page CSS
11. Responsive CSS

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

/* ===================================
    1. Global CSS
====================================== */

* {
  box-sizing: border-box;
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::selection {
  background: #5784c7;
}

body {
  color: #00144b;
  line-height: 2;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(to right, #fafbff 0%, #fafbff 60%, white 60%);
  background-position: center;
}

p {
  margin-bottom: 40px;
}

a {
  text-decoration: none;
  color: #00144b;
  transition: 0.35s ease-out;
}

a:hover {
  color: #f44647;
}

.section a {
  font-weight: 700;
  color: #f44647;
}

.section a:hover {
  color: #00144b;
}

.doc-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #fff;
}

.block-right {
  margin-right: -100px;
}

.block-right .block-right {
  margin-right: 0;
}

img.block-right {
  max-width: calc(100% + 100px);
}

.content-670 {
  max-width: 670px;
}

.relative {
  position: relative;
}

.page-wrapper {
  pointer-events: auto;
  width: 100%;
  background-color: #fafbff;
  max-width: 800px;
}

.section h2.title {
  font-weight: 500;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.section {
  margin-top: 65px;
  padding-top: 85px;
}
.section-othertalks {
  margin-top: 65px;
  padding-top: 85px;
}
.section-othertalks h2.title {
  font-weight: 500;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.section-otherimpressum {
  margin-top: 65px;
  padding-top: 85px;
}
.section-otherimpressum h2.title {
  font-weight: 500;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 5px;
  margin-bottom: 40px;
}
.section-otheracademic {
  margin-top: 65px;
  padding-top: 85px;
}
.section-otheracademic h2.title {
  font-weight: 500;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.single .section {
  min-height: 100vh;
}

.page-wrapper > section:first-of-type {
  margin-top: 0;
}

.page-wrapper > section:last-of-type {
  padding-bottom: 85px;
}

.section .section-des {
  margin-bottom: 40px;
}

/* ===================================
    2. Header / Menu CSS
====================================== */

.s-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  max-width: 40%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  padding: 85px 100px 85px 200px;
}

.nav-count {
  position: relative;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 154px;
}

.nav-count > div {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.nav-count .current-num {
  width: 18px;
}

.nav-count .current-num span {
  left: 0;
  top: 0;
  position: absolute;
  color: #f44647;
}

.nav-count .pagination-sep {
  padding: 0 12px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-list li a {
  display: inline-block;
}

.nav-list li.current a {
  color: #f44647;
}

.nav-list li ul {
  padding-left: 28px;
  display: none;
  width: 100% !important;
}

.nav-soc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 200px;
  bottom: 79px;
}

.nav-soc li {
  margin-right: 25px;
}

.nav-soc li:last-child {
  margin-right: 0;
}

.nav-soc li a {
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 5px;
}

.nav-container .site-title {
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 5px;
  font-weight: 700;
  margin-bottom: 51px;
  position: relative;
  display: inline-block;
}

.nav-container .site-title:before {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 5px;
  height: 2px;
  width: calc(100% - 5px);
  transition: 0.35s ease-out;
  background-color: #00144b;
}

.nav-container .site-title:hover:before {
  width: 0;
  background-color: #f44647;
}

.nav-btn {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  padding: 14px 10px;
  transition: 0.15s ease;
  cursor: pointer;
  z-index: 10;
  background-color: #fff;
}

.nav-btn.scroll-bottom {
  top: -50px;
}

.nav-btn:hover .nav-btn-cover:before {
  margin-left: 9px;
}

.nav-btn:hover .nav-btn-cover .menu-line {
  margin-left: 17px;
}

.nav-btn.active .nav-btn-cover .menu-line {
  opacity: 0;
}

.nav-btn.active .nav-btn-cover:before {
  transform: rotate3d(0, 0, 1, 45deg) translate3d(0, 0, 0);
  margin-left: 0;
  width: 26px;
}

.nav-btn.active .nav-btn-cover:after {
  transform: rotate3d(0, 0, 1, -45deg);
  width: 26px;
}

.nav-btn .nav-btn-cover {
  position: relative;
  height: 20px;
  width: 30px;
  display: block;
}

.nav-btn .nav-btn-cover .menu-line {
  width: 13px;
  height: 3px;
  position: absolute;
  transition: all 0.25s;
  margin-left: 0;
  top: 8px;
  background-color: #00144b;
}

.nav-btn .nav-btn-cover:after,
.nav-btn .nav-btn-cover:before {
  content: '';
  height: 3px;
  width: 30px;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.25s;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  top: 8px;
  background-color: #00144b;
}

.nav-btn .nav-btn-cover:before {
  transform: translate3d(0, -8px, 0px);
  width: 21px;
  margin-left: 0;
}

.nav-btn .nav-btn-cover:after {
  transform: translate3d(0, 8px, 0);
}

@media (min-width: 1200px) {
  .nav-btn {
    display: none;
  }
}

/* ===================================
    3. Home Section CSS
====================================== */

#home {
  height: 100vh;
  padding: 85px 0;
  margin: 0;
}

#home .container-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 100%;
}

#home .main-photo {
  max-height: calc(100vh - 170px);
  width: 536px;
  object-fit: cover;
}

#home .entry-title {
  position: absolute;
  color: #f44647;
  font-weight: 800;
  font-size: 140px;
  line-height: 143px;
  letter-spacing: -4px;
  z-index: 1;
  left: 0;
}

#home .entry-title span {
  text-decoration: underline;
}

#home .main-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

#home .main-btn img {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  animation-name: scroll;
  display: block;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(-25px);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* ===================================
    4. Service Section CSS
====================================== */

.section-des {
  max-width: 600px;
  font-size: 22px;
  line-height: 1.65;
}

.serv-link-cover {
  background-color: #f44647;
  display: flex;
  align-items: center;
  padding: 50px 70px;
  margin-top: 45px;
}

.serv-link-cover li + li {
  margin-left: 100px;
}

.serv-link-cover a {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 5px;
  position: relative;
  display: inline-block;
}
.serv-link-cover a:hover {
  color: #fff !important;
}

.serv-link-cover a:before {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 0;
  height: 2px;
  width: 100%;
  transition: 0.35s ease-out;
  background-color: #fff;
}

.serv-link-cover a:hover:before {
  width: 0;
}

.serv-block-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 80px;
}

.serv-block-wrap > div:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}

.serv-block-wrap .serv-block-item {
  width: calc(50% - 65px);
  margin-bottom: 80px;
}

.serv-block-wrap .serv-block-item:hover h4 {
  transform: translateX(-10px);
}

.serv-block-wrap .serv-block-item h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.27em;
  margin-top: 30px;
  transition: 0.35s ease-out;
}
.serv-block-wrap .serv-block-item h5 {
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 3px;
  min-width: 200px;
  color: #f44647;
}

.serv-block-wrap .serv-block-item p {
  margin-top: 23px;
  max-width: 250px;
  margin-bottom: 0;
}

/* ===================================
    5. About Section CSS
====================================== */



.about-img {
  max-width: 100%;
  display: block;
}

.about-info {
  background-color: #f44647;
  color: #fff;
  width: 330px;
  padding: 50px 30px 50px 70px;
  float: right;
  margin: 0 0 40px 65px;
}

.about-info li + li {
  margin-top: 44px;
}

.about-info h6 {
  font-size: 12px;
  letter-spacing: 5px;
  font-weight: 400;
}

.about-info a {
  color: #fff;
  display: inline-block;
  font-weight: 400;
}

.about-info a:hover {
  padding-left: 8px;
}

.about-text {
  padding-top: 53px;
}

.about-text p {
  max-width: 670px;
}

.signature {
  margin-top: 10px;
  max-width: 33%;
}

/* ===================================
    7. Blog Section CSS
====================================== */

.home-blog-list {
  padding-right: 41px;
}

.home-blog-list .wrapper {
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  padding-bottom: 80px;
}

.home-blog-list .text-container {
  max-height: 560px;
  overflow: hidden;
  padding: 10px 30px 60px 30px;
  transition: max-height 0.5s ease;
}

.home-blog-list .text-container.show {
  max-height: 3700px;
}

.home-blog-list .gradient::before {
  content: '';
  height: 150px;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(250, 251, 255, 0) 0%, rgba(250, 251, 255, 1) 70%);
  transition: height 0.25s ease;
}
.home-blog-list .show.gradient::before {
  height: 50px;
}

.home-blog-list .show-btn {
  background-color: #fafbff;
  border: 2px solid;
  bottom: 20px;
  color: #00144b;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  width: 100%;
  letter-spacing: 8px;
  text-align: center;
  padding: 20px 0px;
  position: absolute;
  transition: background-color 0.25s ease;
  margin-top: 150px;
}

.home-blog-list .show-btn:hover {
  border: 2px solid;
  bottom: 20px;
  color: #f44647;
}

.home-blog-list .show-btn.fa.rotate {
  transform: rotate(180deg);
}

.home-blog-list .show-btn2 {
  background-color: #fafbff;
  border: 2px solid;
  bottom: 20px;
  color: #00144b;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  width: 100%;
  letter-spacing: 8px;
  text-align: center;
  padding: 20px 0px;
  position: absolute;
  transition: background-color 0.25s ease;
  margin-top: 150px;
}

.home-blog-list .show-btn2:hover {
  border: 2px solid;
  bottom: 20px;
  color: #f44647;
}

.home-blog-list .show-btn2.fa.rotate {
  transform: rotate(180deg);
}

.home-blog-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  min-height: 136px;
}

.home-blog-list li:last-child {
  padding-bottom: 0;
}

.home-blog-list li + li {
  border-top: 2px solid #fff;
}

.home-blog-list li a {
  font-size: 16px;
  margin-right: 30px;
  color: #00144b;
}

.home-blog-list li a:hover {
  color: #f44647;
}

.home-blog-list li .blog-list-info {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 3px;
  width: 200px;
}

.home-blog-list li .blog-list-info .category {
  color: #f44647;
  margin-top: 6px;
}
.home-blog-list li .titleevent {
  font-size: 16px;
  margin-right: 30px;
  color: #00144b;
  font-weight: 700 !important;
}

/* ===================================
    8. Skills Section CSS
====================================== */

.bookme {
  display: inline-block;
  border: 2px solid;
  text-align: center;
  padding: 20px 0px;
  font-size: 14px;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  background-color: transparent;
  color: #00144b;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  width: 100%;
  letter-spacing: 8px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  margin-top: 50px;
}
.skills-history {
  background-color: #f44647;
  color: #fff;
  margin-top: 41px;
  padding: 63px 60px 62px 94px;
}

.skills-history li {
  display: flex;
  align-items: center;
  position: relative;
}

.skills-history li:before {
  content: '';
  position: absolute;
  left: 28%;
  top: 0;
  background-color: #fff;
  width: 3px;
  height: 100%;
}

.skills-history li + li {
  padding-top: 37px;
}

.skills-history li .date {
  flex: 0 0 28%;
  max-width: 28%;
  font-weight: 200;
  font-size: 60px;
  line-height: 30px;
  transition: 0.35s ease-out;
}

.skills-history li:hover .date {
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
  color: #00144b;
}

.skills-history li p {
  flex: 0 0 72%;
  max-width: 72%;
  padding: 0 50px 0 80px;
  cursor: default;
  transition: 0.35s ease-out;
  margin-bottom: 0;
}

.skills-history li:hover p {
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
}

.skills-progress {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 40px;
  padding-top: 69px;
}

.skills-progress li {
  display: flex;
  align-items: center;
  width: calc(50% - 35px);
  margin-bottom: 22px;
}

.skills-progress .name {
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 3.5px;
  width: 37%;
  padding-right: 30px;
}

.skills-progress .skill {
  width: 100%;
  height: 10px;
  background-color: #ffd2d3;
  width: 63%;
}

.skills-progress .skill-fill {
  width: 10%;
  height: 10px;
  background-color: #f44647;
  transition: width 0.7s;
}

.insta-wrapper {
  margin-top: 100px;
}
/* ===================================
    9. Contact Section CSS
====================================== */
.contact {
  margin-bottom: 100px;
}
.contact-form {
  margin-top: 40px;
}

.contact-form * {
  overflow: hidden;
}

.contact-form p {
  margin-bottom: 0;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 3px;
  color: #00144b;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid;
  padding-top: 13px;
  padding-bottom: 0px;
  padding-left: 0;
  height: 28px;
  width: 100%;
  box-sizing: initial;
  margin-bottom: 24px;
}

.contact-form input[name='your-name'] {
  margin-top: 0;
  padding-top: 0;
}

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

p.contact-submit-holder {
  margin-top: 30px;
  margin-bottom: 0 !important;
}
.send-btn {
  background-color: #fafbff;
  border: 2px solid;
  bottom: 20px;
  color: #00144b;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  width: 100%;
  letter-spacing: 8px;
  text-align: center;
  padding: 20px 0px;
  transition: background-color 0.25s ease;
}
.send-btn:hover {
  border: 2px solid;
  bottom: 20px;
  color: #f44647;
}
.contact-form input[type='submit'] {
  display: inline-block;
  border: 2px solid;
  text-align: center;
  padding: 20px 0px;
  font-size: 14px;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  background-color: transparent;
  color: #00144b;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  width: 100%;
  letter-spacing: 8px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.contact-form input[type='submit']:hover {
  opacity: 0.8;
}

.contact-form input[type='text']::-webkit-input-placeholder,
.contact-form input[type='email']::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  color: #00144b;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  opacity: 1;
}

.contact-form input[type='text']:-ms-input-placeholder,
.contact-form input[type='email']:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  font-family: 'Poppins', sans-serif;
  color: #00144b;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  opacity: 1;
}

.contact-form input[type='text']::placeholder,
.contact-form input[type='email']::placeholder,
.contact-form textarea::placeholder {
  font-family: 'Poppins', sans-serif;
  color: #00144b;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  opacity: 1;
}

/* ===================================
    10. Single Blog / Post Page CSS
====================================== */

.single-blog .entry-title {
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 32px;
}

.single-blog .meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.single-blog .meta li {
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 3px;
}

.single-blog .meta li + li {
  margin-left: 25px;
}

.single-blog .meta li a {
  color: #f44647;
}

.single-blog .meta li a:hover {
  color: #00144b;
}

.single-blog .thumbnail-img {
  position: relative;
  margin-bottom: 40px;
}

.single-blog .thumbnail-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(244, 70, 71, 0.04);
}

.single-blog .thumbnail-img img {
  display: block;
  width: 100%;
}

.single-blog .content-670 blockquote {
  float: right;
  background: #f44647;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  padding: 40px 55px 50px;
  width: 330px;
  margin: 5px 0 30px 18px;
}

.single-blog .content-670 blockquote p {
  margin: 0;
}

.single-blog .content-670 blockquote img {
  margin-bottom: 27px;
}

.single-blog .soc-list {
  margin-top: 60px;
}

.soc-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.soc-list li {
  margin-right: 25px;
}

.soc-list li:last-child {
  margin-right: 0;
}

.soc-list li a {
  color: #00144b;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 5px;
}

.soc-list li a:hover {
  color: #f44647;
}

.talks .serv-block-wrap {
  padding-top: 80px;
}

.talks .serv-block-wrap .serv-block-item {
  width: calc(50% - 15px);
}

.talks .serv-block-wrap .serv-block-item iframe {
  max-width: 100%;
  max-height: 200px;
}

.talks .serv-block-wrap .serv-block-item p {
  margin-top: 15px;
}

.talks .serv-block-wrap .serv-block-item h4 {
  font-size: 20px;
  margin-top: 24px;
  line-height: 20px;
}
.recent-talks {
  margin-bottom: 100px;
}
.talks .serv-block-wrap .serv-block-item p {
  width:100%!important;
  max-width:100%!important;
}
.talks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* makes it responsive */
  gap: 20px;
}

.talks-text {
  flex: 1;
}

.talks-img {
  max-width: 360px;
  height: auto;
}

.impressum .serv-block-wrap {
  padding-top: 20px;
}

.impressum .serv-block-wrap .serv-block-item {
  width: calc(50% - 15px);
}

.impressum .serv-block-wrap .serv-block-item iframe {
  max-width: 100%;
  max-height: 200px;
}

.impressum .serv-block-wrap .serv-block-item p {
  margin-top: 15px;
}

.impressum .serv-block-wrap .serv-block-item h4 {
  font-size: 20px;
  margin-top: 24px;
  line-height: 20px;
}
.impressum .serv-block-wrap{
  justify-content: space-around!important;
}
.press-link{width:50%;margin-bottom:24px;}

.recent-impressum {
  margin-bottom: 100px;
}
.recent-impressum a{
  color:#00144b!important;
}
.date-impressum{  
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 3px;
	margin-top:8px;
}


.academic .serv-block-wrap {
  padding-top: 20px;

}
.recent-academic .serv-block-wrap {
  padding-top: 20px;
  flex-direction: column; /* This stacks children vertically */
}

.academic .serv-block-wrap .serv-block-item {
  width: calc(50% - 15px);
}

.academic .serv-block-wrap .serv-block-item iframe {
  max-width: 100%;
  max-height: 200px;
}

.academic .serv-block-wrap .serv-block-item p {
  margin-top: 15px;
}

.academic .serv-block-wrap .serv-block-item h4 {
  font-size: 20px;
  margin-top: 24px;
  line-height: 20px;
}
.academic .serv-block-wrap{
  justify-content: space-around!important;
}
.press-link{width:50%;margin-bottom:24px;}

.recent-academic {
  margin-bottom: 100px;
}
.recent-academic a{
  color:#00144b!important;
  width:100%;
}
.date-academic{  
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 3px;

}


.projects .serv-block-wrap {
  padding-top: 0;
}

.projects .serv-block-wrap .serv-block-item {
  width: calc(50% - 15px);
}

.projects .serv-block-wrap .serv-block-item p {
  margin-top: 15px;
  max-width: 100% !important;
}

.projects .serv-block-wrap .serv-block-item h4 {
  font-size: 20px;
  margin-top: 24px;
  line-height: 20px;
}
.projects .serv-block-wrap .serv-block-item h5 {
  font-size: 12px !important;
  margin-top: 10px;
  margin-left: 0;
}
.projects .serv-block-wrap .serv-block-item img {
  width: 100%;
}
.m-top88{margin-top:88px!important;}
/* ===================================
    11. Responsive CSS
====================================== */

@media (max-width: 1366px) {
  .s-nav {
    padding: 60px 100px 60px 200px;
  }

  .nav-soc {
    bottom: 50px;
  }

  .nav-count {
    margin-bottom: 130px;
  }

  #home {
    padding: 60px 0;
  }

  #home .main-photo {
    width: 470px;
    max-height: calc(100vh - 120px);
  }

  #home .main-btn img {
    width: 40px;
  }

  #home .entry-title {
    font-size: 120px;
    line-height: 123px;
  }

  .block-right {
    margin-right: -60px;
  }

  img.block-right {
    max-width: calc(100% + 60px);
  }
}

@media only screen and (max-width: 768px) {
  .impressum .serv-block-wrap{
  justify-content: space-around!important;
  flex-direction:column;
}  
.academic .serv-block-wrap{
  justify-content: space-around!important;
  flex-direction:column;
}
}

@media (min-width: 1200px) and (max-height: 660px) {
  .nav-count {
    margin-bottom: 80px;
  }

  #home .main-photo {
    width: 440px;
  }

  #home .entry-title {
    font-size: 110px;
    line-height: 113px;
  }
}

@media (max-width: 1199px) {
  .page-wrapper {
    margin: 0 auto;
  }

  .s-nav {
    right: auto;
    left: -100%;
    pointer-events: none;
    background-color: #fff;
    max-width: 300px;
    width: 100%;
    z-index: 9;
    padding: 80px 30px 60px;
    overflow: auto;
    height: 100%;
    transition: 0.25s ease-in;
  }

  .s-nav.active {
    transition: 0.25s ease-out;
    box-shadow: 0 0 4px rgba(255, 240, 240, 0.5);
    left: 0;
    pointer-events: auto;
  }

  .dropdown {
    cursor: pointer;
  }

  .dropdown > a {
    pointer-events: none;
  }

  .nav-count {
    margin-bottom: 50px;
  }

  .nav-soc {
    left: 15px;
    bottom: 15px;
  }

  .nav-container {
    padding-bottom: 60px;
  }

  .section {
    margin-top: 0;
    padding-top: 80px;
  }

  .section {
    padding-top: 55px;
  }

  .page-wrapper > section:last-of-type {
    padding-bottom: 55px;
  }

  [data-jarallax-element] {
    transform: none !important;
  }
}

@media (max-width: 1199px) and (max-height: 550px) {
  .nav-soc {
    position: relative;
    left: auto;
    bottom: auto;
  }

  .nav-container {
    padding-bottom: 60px;
  }
}

@media (max-width: 1020px) {
  body {
    background: #fafbff;
  }
}

@media (max-width: 991px) {
  #home {
    display: flex;
    align-items: center;
  }

  #home .entry-title {
    font-size: 110px;
    line-height: 113px;
  }

  .serv-block-wrap .serv-block-item {
    margin-bottom: 65px;
  }

  .block-right {
    margin-right: 0;
  }

  img.block-right {
    max-width: 100%;
  }

  .container-wrap {
    width: 100%;
  }

  .home-blog-list li {
    min-height: 120px;
  }

  .home-blog-list li a {
    font-size: 22px;
  }

  .home-blog-list li p {
    padding: 0 40px 0 50px;
  }
  .about-info {
    margin: 0 0 40px 40px;
  }
}

@media (max-width: 767px) {
  .nav-btn {
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .s-nav {
    z-index: 2;
    padding: 40px 15px 60px;
    margin-top: 46px;
  }

  .page-wrapper {
    margin-top: 48px;
  }

  .nav-count {
    position: fixed;
    top: 12px;
    right: 15px;
    display: block;
    opacity: 1;
  }

  #home .main-photo {
    width: auto;
    max-height: 500px;
    max-width: 65%;
  }

  #home .entry-title {
    font-size: 70px;
    line-height: 73px;
    max-width: 340px;
    letter-spacing: -2px;
  }

  #home {
    padding: 55px 0 0;
    height: auto;
  }

  #home .main-btn img {
    display: none;
  }

  .serv-link-cover {
    padding: 40px 50px;
  }

  .serv-block-wrap {
    padding-top: 80px;
  }

  .serv-block-wrap .serv-block-item {
    width: calc(50% - 15px);
  }

  .serv-block-wrap .serv-block-item img {
    max-height: 60px;
  }
  .projects .serv-block-wrap .serv-block-item img {
    max-height: 100%;
  }

  .serv-block-wrap .serv-block-item p {
    margin-top: 15px;
  }

  .serv-block-wrap .serv-block-item h4 {
    font-size: 18px;
    margin-top: 10px;
    line-height: 22px;
  }

  .about-text {
    padding-top: 45px;
  }

  .about-info {
    width: 280px;
    padding: 50px 30px 50px 40px;
  }

  .home-blog-list {
    padding-right: 20px;
  }

  .home-blog-list li a {
    font-size: 20px;
    line-height: 1.5;
  }

  .skills-history {
    padding: 62px 30px 62px 30px;
  }

  .skills-history li .date {
    font-size: 46px;
  }

  .skills-history li p {
    padding: 0 20px 0 50px;
  }

  .skills-progress {
    padding-right: 0;
  }

  .skills-progress li {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #home .main-photo {
    max-width: 85%;
  }

  #home .entry-title {
    font-size: 56px;
    line-height: 62px;
    padding: 50px 0;
  }

  p,
  .section h2.title,
  .section .section-des,
  .single-blog .thumbnail-img {
    margin-bottom: 20px;
  }

  .section-des {
    font-size: 18px;
  }

  .s-nav {
    max-width: 100%;
  }

  .serv-link-cover {
    flex-wrap: wrap;
  }

  .serv-link-cover li {
    width: 100%;
  }

  .serv-link-cover li + li {
    margin-left: 0;
    margin-top: 20px;
  }

  .serv-block-wrap .serv-block-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .projects .serv-block-wrap .serv-block-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .serv-block-wrap > div:nth-last-of-type(2) {
    margin-bottom: 40px;
  }

  .serv-block-wrap .serv-block-item p {
    max-width: 100%;
  }

  .talks .serv-block-wrap .serv-block-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .talks .serv-block-wrap > div:nth-last-of-type(2) {
    margin-bottom: 40px;
  }

  .talks .serv-block-wrap .serv-block-item p {
    max-width: 100%;
  }

  .impressum .serv-block-wrap .serv-block-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .impressum .serv-block-wrap > div:nth-last-of-type(2) {
    margin-bottom: 40px;
  }

  .impressum .serv-block-wrap .serv-block-item p {
    max-width: 100%;
  } 
  .academic .serv-block-wrap .serv-block-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .academic .serv-block-wrap > div:nth-last-of-type(2) {
    margin-bottom: 40px;
  }

  .academic .serv-block-wrap .serv-block-item p {
    max-width: 100%;
  }


  .about-info {
    padding: 30px;
    margin: 0 0 40px 0px;
    float: none;
    width: 100%;
  }

  .about-info li + li {
    margin-top: 20px;
  }

  .about-text {
    padding-top: 0;
  }

  .signature {
    max-width: 100%;
  }

  .grid-sizer,
  .grid-item {
    width: 100% !important;
  }

  .home-blog-list li {
    flex-wrap: wrap;
  }

  .home-blog-list li a {
    margin-right: 0;
  }

  .home-blog-list li .blog-list-info {
    width: 100%;
    margin-top: 10px;
  }

  .skills-history li {
    flex-wrap: wrap;
  }

  .skills-history li + li {
    padding-top: 60px;
  }

  .skills-history li:before {
    display: none;
  }

  .skills-history li p,
  .skills-history li .date {
    flex: 0 0 100%;
    max-width: 100%;
    transform: none !important;
  }

  .skills-history li p {
    padding: 0;
  }

  .skills-history li .date {
    margin-bottom: 20px;
  }

  .skills-progress li {
    flex-wrap: wrap;
  }

  .skills-progress li .name {
    width: 100%;
    margin-bottom: 5px;
  }

  .skills-progress li .skill {
    width: 100%;
  }

  .single-blog .content-670 blockquote {
    max-width: 100%;
    width: 100%;
    float: none;
    margin-left: 0;
  }
}



		.container-impressum {
			display: flex;
			width:100%;
		}

		.column-impressum {
			flex: 1;
			padding: 10px;
		}

		.column-impressum:first-child {
			flex: 0;
			flex-basis: 48px; /* Largeur fixe pour la première colonne */
		}

		.column-impressum img {
			width: 90px;
			height: auto;
		}

		.subtitle-impressum {
			font-size: 16px;
			color: #00144b;
			font-weight: 700 !important;
			margin-bottom:0;
		}

		.date-impressum {
			font-weight: 500;
			font-size: 10px;
			line-height: 14px;
			letter-spacing: 3px;
			margin-bottom:0;
		}		
		
		.title-impressum {
			font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 3px;
    min-width: 200px;
    color: #f44647;
	margin-bottom:4px;
		}

		.container-academic {
			display: flex;
			width:100%;
		}

		.column-academic {
			flex: 1;
			padding: 10px;
		}

		.column-academic:first-child {
			flex: 0;
			flex-basis: 48px; /* Largeur fixe pour la première colonne */
		}

		.column-academic img {
			width: 90px;
			height: auto;
		}

		.subtitle-academic {
			font-size: 16px;
			color: #00144b;
			font-weight: 700 !important;
			margin-bottom:0;
		}

		.date-academic {
			font-weight: 500;
			font-size: 10px;
			line-height: 14px;
			letter-spacing: 3px;
			margin-bottom:0;
		}	
.desc-academic {
			font-weight: 400;

		}			
		
		.title-academic {
			font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 3px;
    min-width: 200px;
    color: #f44647;
	margin-bottom:4px;
		}
