@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

html {
  height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background-color: #ffffffcb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  height: 100%;
}


img {
  width: 100%;
}

/* .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  height: 100%;
} */

/*//////////// HEADER + NAVIGATION MENU ////////////*/

header::after {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 5em;
}

.navbar {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background-color: #fff;
  position: fixed;
  z-index: 99999;
}

.navbar .logo2 {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
}

.nav-item {
  display: inline-block;
  margin-left: 70px;
  position: relative;
  list-style: none;
}

nav a {
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
}

nav a:hover {
  color: #000;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #cf1516;
  position: absolute;
  top: -20px;
  width: 0%;
  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}

.nav-link {
  transition: 0.5s ease;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #cf1516;
}

/*/////////////////////// FV /////////////////////*/

.banner {
  position: relative;
  width: 100%;
}

.banner .catch-copy {
  position: absolute;
  left: 5%;
  top: 42%;
  font-size: 5em;
  font-weight: 700;
  letter-spacing: .2em;
  color: #444;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  animation: mycatchcopy 1s linear;
}

.banner .catch-copy2 {
  position: absolute;
  left: 5%;
  top: 42%;
  font-size: 5em;
  font-weight: 700;
  letter-spacing: .2em;
  color: #444;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  animation: mycatchcopy 1s linear;
}

@keyframes mycatchcopy {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.banner .catch-copy-line {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner .catch-copy-line2 {
  position: absolute;
  top: 18%;
  width: 100%;
  height: 100%;
}

.banner .catch-copy-bg {
  content: '';
  width: 960px;
  height: 15%;
  background-color: #eff2f7;
  position: absolute;
  top: 41%;
  left: 0%;
  transform: translate(0%, 0px);
  animation: catchcopybgmove 2s ease;
}

.banner .catch-copy-bg2 {
  content: '';
  width: 880px;
  height: 15%;
  background-color: #eff2f7;
  position: absolute;
  top: 41%;
  left: 0%;
  transform: translate(0%, 0px);
  animation: catchcopybgmove 2s ease;
}

@keyframes catchcopybgmove {
  from {
    left: -700px;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

.banner-sp {
  display: none;
}

.banner img {
  height: 100vh;
  object-fit: cover;
}

.banner .fv-img {
  opacity: .5;
}

.catchcopy-en-pc img {
  width: 100%;
  height: 100%
}

.catchcopy-en-pc {
  position: absolute;
  right: 3vw;
  top: 10vw;
  width: 50px;
  opacity: .8;
  animation: mycatchcopyen 2s ease forwards;
}


@keyframes mycatchcopyen {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

div.arrow {
  width: 6vmin;
  height: 6vmin;
  cursor: pointer;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: rotate(-225deg);
  animation: arrowBlink 1s infinite;

  &::before {
    content: '';
    width: 100%;
    height: 100%;
    border-width: .8vmin .8vmin 0 0;
    border-style: solid;
    border-color: #444;
    transition: .5s ease;
    display: block;
    transform-origin: 100% 0;
  }


  &:after {
    content: '';
    float: left;
    position: relative;
    top: -100%;
    width: 100%;
    height: 100%;
    border-width: 0 .8vmin 0 0;
    border-style: solid;
    border-color: #444;
    transform-origin: 100% 0;
    transition: .2s ease;
  }

  &:hover::after {
    border-color: #cf1516;
  }

  &:hover::before {
    border-color: #cf1516;

  }

}

@keyframes arrowBlink {
  100% {
    opacity: 0;
  }
}



/* /////////// BUTTON TO TOP ///////////*/

button {
  padding: 0;
  border: none;
  background: transparent;
}

button img {
  display: block;
  width: 100%;
}

#myBtn {
  display: none;
  position: fixed;
  width: 80px;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 10px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn img:hover {
  /* opacity: 0.5; */
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
}



/* /////////// WHO WE ARE /////////// */

.intro {
  width: 100%;
  min-height: 100vh;
  position: relative;
  /* display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left; */
  /* align-content: center;
  background-color: #ffffffcb;
  /* padding-left: 5em;
  padding-right: 5em; */
  /* position: relative; */
  /* padding-bottom: 5em; */
  /* gap: 20px 70px; */
  /* background: center / cover no-repeat url("img/silhouettes-business-people-office-mixed-media.jpg") ; */
  /* background: center / cover no-repeat url("img/fv-1.jpg");
  background-attachment: fixed;
  background-color:rgba(255, 255, 255, 0.8) ; */
}

.cb-slideshow-sp {
  display: none;
}

.cb-slideshow,
.cb-slideshow:after {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  list-style: none;
  opacity: 0.2;
}

.cb-slideshow:after {
  content: '';
}

.cb-slideshow li span {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  animation: imageAnimation 36s linear infinite 0s;
}

.cb-slideshow li:nth-child(1) span {
  background-image: url("img/1.jpg");
}

.cb-slideshow li:nth-child(2) span {
  background-image: url("img/2.jpg");
  animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
  background-image: url("img/3.jpg");
  animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
  background-image: url("img/4.jpg");
  animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) span {
  background-image: url("img/5.jpg");
  animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) span {
  background-image: url("img/6.jpg");
  animation-delay: 30s;
}

.cb-slideshow li:nth-child(2) div {
  animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) div {
  animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) div {
  animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) div {
  animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) div {
  animation-delay: 30s;
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  17% {
    opacity: 1
  }

  25% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

@keyframes titleAnimation {
  0% {
    opacity: 0
  }

  8% {
    opacity: 1
  }

  17% {
    opacity: 1
  }

  19% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.no-cssanimations .cb-slideshow li span {
  opacity: 1;
}


.intro__para {
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  bottom: 0;
  margin: auto;
  /* background-color: rgba(255, 255, 255, .9); */
  z-index: 1;
  text-align: center;
}

@keyframes mymove {
  from {
    left: -300px;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

.intro__title {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-size: 45px;
  font-weight: 400;
  padding-bottom: 5%;
  white-space: nowrap;
  overflow: hidden;
  animation: animatetext 8s linear forwards;
  z-index: 1;
}

.intro__title::after {
  width: 150px;
  padding-top: 1em;
  border-bottom: 2px solid #cf1516;
  content: "";
  display: block;
  text-align: center;
  margin: 0 auto;
}

.intro__title.h1 {
  color: #444;
  animation: mymove ease 2.5s;
}

/* .intro__title__bg {
  content: '';
  width: 50%;
  height: 15%;
  background-color: #eff2f7;
  position: absolute;
  top: 75px;
  left: 25%;
  transform: translate(0%, 0px);
  animation: intromove 2s ease;
} */

/* @keyframes intromove {
  from {
    left: -500px;
    opacity: 0;
  }

  to {
    left: 25%;
    opacity: 1;
  }
} */

.intro__title.title_animation {
  position: relative;
  animation: mytitle 1s linear;
}

@keyframes mymove {
  from {
    left: -300px;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

@keyframes animatetext {
  0% {
    width: 0px;
  }

  100% {
    width: 100%;
  }
}

@keyframes mytitle {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.intro__p {
  width: 100%;
  font-size: 20px;
  line-height: 2.5em;
  white-space: nowrap;
  overflow: hidden;
  animation: animatetext 2s linear forwards;
  margin-top: 15px;
}

.text_animation {
  position: relative;
  animation: mymove 2s ease;
}

.intro__red {
  color: #cf1516;
  font-weight: 600;
}


.learn_more {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 2em;
}

.learn_more_btn {
  width: 180px;
  height: 60px;
  margin-top: 5%;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 2px;
  background-color: #444;
  position: relative;
  animation: mymovebtn 2s;
}

@keyframes mymovebtn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.learn_more_btn p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.4em;
}


.learn_more_btn:hover {
  opacity: .7;
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
  color: #fff;
}




/* ///////////////// NEWS /////////////////*/

.news {
  width: 100%;
  /* height: 100%; */
  padding-top: 5em;
  margin-bottom: 10em;
  /* background: center / cover no-repeat url("/img/abstract-gradient-wave-wallpaper.jpg"); */
  /* background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center; */
}

/* .news__title {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
} */

.news__title__container {
  position: relative;
  width: 100%;
}

.news__title {
  /* content: ''; */
  width: 100%;
  height: 100%;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 500;
  color: #444;
  /* -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58); */
  text-align: center;
  margin-bottom: 3em;
  /* background: url("img/businessman-pointing.jpg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  background-attachment: fixed; */
  padding-top: 50px;
  padding-bottom: 25px;
}

.news .subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #444;
  margin-top: 10px;
  /* -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58); */
}

/* .news__title span {
  vertical-align: text-bottom;
} */


.news__container {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  /* background-color: #eff2f7; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
}

/* .news__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3%;
  margin: 5% 0;
} */


.news__wrapper {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.news__wrapper i {
  /* height: 100px;
  width: 50px; */
  /* background: #cf1516; */
  color: #444;
  text-align: center;
  /* line-height: 50px;
  border-radius: 50%; */
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 45px;
  transform: translateY(-50%);
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); */

}

.news__wrapper i:hover {
  color: #cf1516;
  transition: all .3s ease-in-out;
}

.news__wrapper i:first-child {
  left: -80px;
}

.news__wrapper i:last-child {
  right: -70px;
}

.news__wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
  height: 480px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel :where(.card, .card_img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel .card {
  scroll-snap-align: start;
  height: 450px;
  list-style: none;
  /* background: #eff2f7; */
  border-radius: 8px;
  width: 98%;
  height: 450px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #eff2f7;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.card .card_text {
  width: 90%;
  height: 100%;
  text-align: left;
  /* margin-left: 5em; */
  cursor: pointer;
}

.card .card_img {
  /* width: 100%; */
  height: 400px;
  /* border-radius: 50%; */
  overflow: hidden;
  padding: 10px 10px 0 10px;
}

.card .card_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* border-radius: 50%; */
  /* border: 4px solid #fff; */
}

/* .news__wrapper .fa-angle-left.disabled,
.news__wrapper .fa-angle-right.disabled {
  opacity: 0.4;
  pointer-events: none;
} */

.reveal {
  transition: all 1s ease-in;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

/* .card {
  overflow: hidden;
  background-color: #FFF;
  border-radius: 5px;
  text-align: center;
}

.card_img {
  width: 100%;
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.card_body {
  padding: 26px 20px 36px 20px;
  text-align: left;

} */

.card_text {
  text-align: left;
  margin: 0 35px 0 35px;
}

.card_title {
  font-size: 15px;
  margin-top: 20px;
}

.card_date {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}

.card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 20px;
}

.card_text a {
  text-decoration: none;
  color: #000;
}

.card_text a:visited {
  color: #000;
}

p.read_more {
  color: #444;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 1.1px;
  border-radius: 5px;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

p.read_more:hover {
  color: #cf1516;
}

.news_more {
  display: flex;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 5em;
}


/* ligne */
.news_more:before {
  border-top: 1px solid #444;
  content: "";
  width: calc(100% - vw);
  left: 0;
  -webkit-animation: dude .75s 1 forwards;
  -moz-animation: dude .75s 1 forwards;
  -o-animation: dude .75s 1 forwards;
  animation: dude .75s 1 forwards;
  margin-right: 15px;
}


@-webkit-keyframes dude {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

@-moz-keyframes dude {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

@-o-keyframes dude {
  0% {
    width: 0;
  }

  100% {
    width: 85%;
  }
}

@keyframes dude {
  0% {
    width: 0;
  }

  100% {
    width: 88%;
  }
}



.news_more_btn {
  width: 180px;
  height: 60px;
  float: right;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #444;
  position: relative;
  
}

.news_more_btn:hover {
  opacity: .7;
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
  color: #fff;
}

.news_more_btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  font-size: 16px;
  color: white;
  text-align: center;
}


/* ////////////// SERVICES ////////////// */

.service {
  width: 100%;
  height: 100vh;
  padding-top: 5em;
  margin-bottom: 20em;
  /* background: center / cover no-repeat url("img/3d-rendering-with-social-communication-network-concept-with-3d-models-people.jpg");
  background-attachment: fixed; */
  /* display: flex;
  flex-direction: column;
  align-content: center; */
}

.service__title__container {
  /* position: relative; */
  width: 100%;
}

.service__title {
  content: '';
  width: 100%;
  height: 100%;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3em;
  background: url("img/silhouettes-business-people-office-mixed-media.jpg");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 150px;
  padding-bottom: 150px;
  /* transform: translate(0%, 0px);
  animation: servicemove 2s ease; */
}

.service__title .subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
}

/* .service__title__bg1 {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #cf1516;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, 0px);
  animation: servicemove 1.5s ease;
  z-index: 0;
}

.service__title__bg2 {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #cf1516;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0%, 0px);
  animation: servicemove 1.5s ease;
  z-index: 0;
} */

.service span {
  /* letter-spacing: 5px; */
  color: #fff;
  -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
}

@keyframes servicemove {
  from {
    left: -100%;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

.service__container {
  width: 100%;
  /* margin: 0 auto; */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x:hidden;
}

.service__grid {
  width: 100%;
  /* margin: 0 auto;
  padding: 5% 5%; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 80px;
}

.service__content {
  width: 350px;
  min-height: 100%;
  margin: 50px;
  padding: 20px;
  /* vertical-align: top; */
  text-align: center;
  background-color: #eff2f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-evenly;
  align-items:center;
}

.service__content img {
  width: 100%;
}

.service__content .service__icon {
  width: 90px;
}

.service__txt .service__ttl {
  font-size: 16px;
  padding-top: .5em;
  padding-bottom: 1em;
}


.service__content .service__txt {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
}

.service_more {
  display: flex;
  width: 100%;
  justify-content: center;
}

.service_more_btn {
  width: 180px;
  height: 60px;
  float: right;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #444;
  position: relative;
}

.service_more_btn::before {
  content: "";
  display: block;
  width: 700px;
  height: 1px;
  background: #444;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -2;
}

.service_more_btn::after {
  content: "";
  display: block;
  width: 700px;
  height: 1px;
  background: #444;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -2;
}

.service .hr-line {
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
}


.service_more_btn:hover {
  opacity: .7;
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
  color: #fff;
}

.service_more_btn:hover::before {
  opacity: .7;
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
  color: #fff;
  z-index: -2;
}

.service_more_btn:hover::after {
  opacity: .7;
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
  color: #fff;
  z-index: -2;
}

.service_more_btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  font-size: 16px;
  color: white;
  text-align: center;
}

/* //////////// CONTACT //////////// */

.contact {
  width: 100%;
  height: 400px;
  padding-top: 5em;
  /* margin-bottom: 5em; */
}

.contact__recruit {
  display: flex;
  flex-direction: row;
  height: 350px;
}

.contact__title__container {
  position: relative;
  width: 50%;
}

.recruit__title__container {
  position: relative;
  width: 50%;
}

.contact__title {
  content: '';
  width: 100%;
  height: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 500;
  color: #444;
  text-align: center;
  margin-bottom: 3em;
  background: url("img/documents-with-charts-touchpad-desk.jpg");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.recruit__title {
  content: '';
  width: 100%;
  height: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 500;
  color: #444;
  text-align: center;
  margin-bottom: 3em;
  background: url("img/businessman-pointing.jpg");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact .subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #444;
  margin-top: 10px;
}

/* .contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
} */


.contact__button {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;

}

.contact_more_btn {
  width: 180px;
  height: 60px;
  margin-top: 30px;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 2px;
  background-color: #444;
  position: relative;
}

.contact_more_btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  font-size: 15px;
  color: white;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.contact_more_btn:hover {
  opacity: .7;
  background-color: #cf1516;
  transition: all ease-in-out 250ms;
  color: #fff;
}



/* ////////////// COMPANY INFO //////////////*/

.company-info__wrapper {
  /* width: 100%; */
  /* height: 100%; */
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: center; */
  margin-bottom: 5em;
  margin-top: 5em;
}

.company-info__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.company-info__wrapper__profile {
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  /* height: 100%; */
  /* margin-left: 20%; */
  /* padding-left: 20%; */
}

.access__title {
  margin-bottom: 4em;
}

.contact__access {
  font-size: 25px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #444;
  padding-bottom: 10px;
}

.contact__access__sub {
  font-size: 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.contact__name__text {
  font-size: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #444;
  padding-bottom: 20px;
  letter-spacing: 0.15em;
}

.contact__address__text {
  font-size: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
}

.company-info__wrapper__map {
  /* margin: 50px; */
  padding-top: 5em;
}


/*////////////// FOOTER //////////////*/

.footer-distributed {
  background: #eff2f7;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 350px;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 4em 5em;
  margin-top: 10em;
}

.footer-logo {
  width: 300px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 40%;
}

/* The company logo */

.footer-distributed h3 {
  color: #444;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}


/* Footer links */

.footer-distributed .footer-links {
  color: #444;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #222;
  font-size: 14px;
  font-weight: normal;
  margin: 60px;
  text-align: center;

}

/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #444;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #444;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
  font-size: 14px;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #444;
  display: inline-block;
  padding-right: 5px;
}


.footer-distributed .footer-links a:hover {
  color: #cf1516;
  transition: all ease-in-out 250ms;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 20%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #444;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #444;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}



/* //////////// スマホ版 ////////////*/

/*body*/
@media screen and (max-width: 767px) {
  body {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}

/* NAVBAR */
@media screen and (min-width: 768px) {
  .navbar .logo1 {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .bar {
    display: block;
  }

  .navbar .logo2 {
    display: block;
    width: 50px;
  }

  .navbar .logo1 {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(11.5px);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-11.5px);
  }

  
  .navbar {
    height: 100px;
    width: 100%;
    top: 0;
    transition: top 0.3s;
    z-index: 99999;
    position: fixed;
  }
  
  nav a::before {
    content: none;
  }
  

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 100px;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #fff;
    /* opacity: 0.9; */
    transition: 0.2s ease;
  }

  .nav-item {
    padding: 1.5rem 0;
    color: #000;
    margin-left: 0;
    border-top: 1px solid #444;
    width: 100%;
  }

  .nav-item:nth-last-child(1) {
    border-bottom: 1px solid #444;
    width: 100%;
  }

  .nav-menu.active {
    right: 0;
  }

  .banner-sp {
    display: block;
  }

  .banner {
    display: none;
  }

  header::after {
    margin-bottom: 0;
  }
}


/* BUTTON TO TOP */

@media screen and (max-width: 767px) {
  #myBtn {
    display: none;
    position: fixed;
    width: 70px;
    bottom: 20px;
    right: 0;
    z-index: 99;
    font-size: 10px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
}

/* ///////////// FV /////////////*/
@media screen and (max-width: 600px) {
  .banner-sp {
    position: relative;
    width: 100%;
    height: 900px;
  }

  .banner-sp .catch-copy {
    position: absolute;
    left: 5%;
    top: 35%;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #444;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    animation: mycatchcopy 1s linear;
    z-index: 1;
  }

  .banner-sp .catch-copy2 {
    position: absolute;
    left: 5%;
    top: 40%;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #444;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    animation: mycatchcopy 1s linear;
    z-index: 1;
  }

  .banner-sp .catch-copy-line {
    position: absolute;
    top: 32%;
    width: 320px;
    height: 250px;
  }

  .banner-sp .catch-copy-line2 {
    position: absolute;
    top: 18%;
    width: 320px;
    height: 250px;
  }

  .banner-sp .catch-copy-bg {
    content: '';
    width: 320px;
    height: 50px;
    background-color: #eff2f7;
    position: absolute;
    top: 32%;
    left: 0%;
    transform: translate(0%, 0px);
    animation: catchcopybgmove 2s ease;
  }

  .banner-sp .catch-copy-bg2 {
    content: '';
    width: 280px;
    height: 50px;
    background-color: #eff2f7;
    position: absolute;
    top: 37%;
    left: 0%;
    transform: translate(0%, 0px);
    animation: catchcopybgmove 2s ease;
  }

  .banner-sp img {
    height: 100%;

  }

  .banner-sp .fv-img-sp {
    opacity: .6;
    object-fit: cover;
    object-position: 80% 100%;
  }

  .catchcopy-en-sp img {
    width: 100%;
    height: 100%;
  }

  .catchcopy-en-sp {
    position: absolute;
    left: 15px;
    bottom: 10px;
    opacity: .8;
    width: 200px;
    animation: mycatchcopyensp 2s ease forwards;
  }

  div.arrow {
    display: none;
  }

  @keyframes mycatchcopyensp {
    from {
      bottom: -10px;
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  } 

}


@media screen and (max-width: 600px) {
  .banner-sp .catch-copy {
    position: absolute;
    left: 5%;
    top: 35%;
    font-size: 30px;
  }

  .banner-sp .catch-copy2 {
    position: absolute;
    left: 5%;
    top: 40%;
    font-size: 30px;
  }

  .banner-sp .catch-copy-line {
    position: absolute;
    top: 28%;
    width: 100%;
    height: 250px;
  }

  .banner-sp .catch-copy-line2 {
    position: absolute;
    top:34%;
    width: 100%;
    height: 250px;
  }

  .banner-sp .catch-copy-bg {
    width: 320px;
    height: 53px;
    top: 33%;
  }

  .banner-sp .catch-copy-bg2 {
    content: '';
    width: 300px;
    height: 53px;
    top: 38%;
    left: 0%;
  }

  .catchcopy-en-sp {
    position: absolute;
    left: 5%;
    bottom: 38%;
    opacity: .8;
    width: 280px;
  }

}

@media screen and (min-width: 601px) and (max-width: 767px) {
  .banner-sp {
    position: relative;
    width: 100%;
    height: 900px;
  }

  .banner-sp .catch-copy {
    position: absolute;
    left: 5%;
    top: 35%;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #444;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    animation: mycatchcopy 1s linear;
    z-index: 1;
    padding-bottom: 10px;
  }

  .banner-sp .catch-copy2 {
    position: absolute;
    left: 5%;
    top: 40%;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #444;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    animation: mycatchcopy 1s linear;
    z-index: 1;
  }

  .banner-sp .catch-copy-line {
    position: absolute;
    top: 25%;
    width: 100%;
    height: 250px;
  }

  .banner-sp .catch-copy-line2 {
    position: absolute;
    top:34%;
    width: 100%;
    height: 250px;
  }

  .banner-sp .catch-copy-bg {
    content: '';
    width: 535px;
    height: 80px;
    background-color: #eff2f7;
    position: absolute;
    top: 33%;
    left: 0%;
    transform: translate(0%, 0px);
    animation: catchcopybgmove 2s ease;
  }

  .banner-sp .catch-copy-bg2 {
    content: '';
    width: 480px;
    height: 80px;
    background-color: #eff2f7;
    position: absolute;
    top: 38%;
    left: 0%;
    transform: translate(0%, 0px);
    animation: catchcopybgmove 2s ease;
  }

  .banner-sp img {
    height: 100%;

  }

  .banner-sp .fv-img-sp {
    opacity: .6;
    object-fit: cover;
    object-position: 80% 100%;
  }

  .catchcopy-en-sp img {
    width: 100%;
    height: 100%;
    
  }

  .catchcopy-en-sp {
    position: absolute;
    left: 5%;
    bottom: 38%;
    opacity: .8;
    width: 400px;
    animation: mycatchcopyensp 2s ease forwards;
  }

  div.arrow {
    display: none;
  }

  @keyframes mycatchcopyensp {
    from {
      bottom: 30%;
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

}


@media screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-sp {
    position: relative;
    width: 100%;
    height: 900px;
  }

  .banner-sp .catch-copy {
    position: absolute;
    left: 5%;
    top: 35%;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #444;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    animation: mycatchcopy 1s linear;
    z-index: 1;
    padding-bottom: 10px;
  }

  .banner-sp .catch-copy2 {
    position: absolute;
    left: 5%;
    top: 40%;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #444;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    animation: mycatchcopy 1s linear;
    z-index: 1;
  }

  .banner-sp .catch-copy-line {
    position: absolute;
    top: 25%;
    width: 100%;
    height: 250px;
  }

  .banner-sp .catch-copy-line2 {
    position: absolute;
    top:34%;
    width: 100%;
    height: 250px;
  }

  .banner-sp .catch-copy-bg {
    content: '';
    width: 535px;
    height: 80px;
    background-color: #eff2f7;
    position: absolute;
    top: 33%;
    left: 0%;
    transform: translate(0%, 0px);
    animation: catchcopybgmove 2s ease;
  }

  .banner-sp .catch-copy-bg2 {
    content: '';
    width: 480px;
    height: 80px;
    background-color: #eff2f7;
    position: absolute;
    top: 38%;
    left: 0%;
    transform: translate(0%, 0px);
    animation: catchcopybgmove 2s ease;
  }

  .banner-sp img {
    height: 100%;

  }

  .banner-sp .fv-img-sp {
    opacity: .6;
    object-fit: cover;
    object-position: 80% 100%;
  }

  .catchcopy-en-sp img {
    width: 100%;
    height: 100%;
    
  }

  .catchcopy-en-sp {
    position: absolute;
    left: 5%;
    bottom: 38%;
    opacity: .8;
    width: 400px;
    animation: mycatchcopyensp 2s ease forwards;
  }

  div.arrow {
    display: none;
  }

  @keyframes mycatchcopyensp {
    from {
      bottom: 30%;
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

}



/* WHO WE ARE */

@media screen and (max-width: 767px) {
  .intro {
    /* width: 100%; */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    margin-bottom: 8em;
  }

  .cb-slideshow-sp {
    display: block;
  }

  .cb-slideshow {
    display: none;
  }

  .cb-slideshow-sp,.cb-slideshow-sp:after {
    list-style: none;
    width: 100%;
    height: 350px;
  }

  .cb-slideshow-sp li span {
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: none;;
    animation: imageAnimation 36s linear infinite 0s;
  }

  .cb-slideshow-sp li:nth-child(1) span {
    background-image: url("img/1.jpg");
  }
  
  .cb-slideshow-sp li:nth-child(2) span {
    background-image: url("img/2.jpg");
    animation-delay: 6s;
  }
  
  .cb-slideshow-sp li:nth-child(3) span {
    background-image: url("img/3.jpg");
    animation-delay: 12s;
  }
  
  .cb-slideshow-sp li:nth-child(4) span {
    background-image: url("img/4.jpg");
    animation-delay: 18s;
  }
  
  .cb-slideshow-sp li:nth-child(5) span {
    background-image: url("img/5.jpg");
    animation-delay: 24s;
  }
  
  .cb-slideshow-sp li:nth-child(6) span {
    background-image: url("img/6.jpg");
    animation-delay: 30s;
  }
  
  .cb-slideshow-sp li:nth-child(2) div {
    animation-delay: 6s;
  }
  
  .cb-slideshow-sp li:nth-child(3) div {
    animation-delay: 12s;
  }
  
  .cb-slideshow-sp li:nth-child(4) div {
    animation-delay: 18s;
  }
  
  .cb-slideshow-sp li:nth-child(5) div {
    animation-delay: 24s;
  }
  
  .cb-slideshow-sp li:nth-child(6) div {
    animation-delay: 30s;
  }

  @keyframes imageAnimation {
    0% {
      opacity: 0;
      animation-timing-function: ease-in;
    }
  
    8% {
      opacity: 1;
      animation-timing-function: ease-out;
    }
  
    17% {
      opacity: 1
    }
  
    25% {
      opacity: 0
    }
  
    100% {
      opacity: 0
    }
  }
  
  .no-cssanimations .cb-slideshow-sp li span {
    opacity: 1;
  }
  
  .intro__para {
    width: 100%;
    left: 0;
    height: 600px;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, .9);
    z-index: 1;
    top: 50px;
    /* text-align: center; */
  }

  .intro__title {
    font-family: "Barlow Condensed", sans-serif;
    font-style: normal;
    font-size: 35px;
    font-weight: 400;
    padding-bottom: 20px;
    animation: animatetext 8s linear forwards;
    z-index: 1;
    text-align: center;
    border-bottom: 1px solid #cf1516;
    margin-bottom: 30px;
  }

  .intro__title::after {
    content: "";
    display: none;
  }

  .intro__p {
    width: 100%;
    height: auto;
    font-size: 20px;
    text-align: center;
    line-height: 2em;
    white-space: normal;
    margin-top: 35px;
  }

  .intro__title__bg {
    display: none;
    /* content: '';
    width: 100%;
    height: 55px;
    background-color: #eff2f7;
    position: absolute;
    top: 35px;
    left: 0%;
    transform: translate(0%, 0px);
    animation: intromove 2s ease; */
  }

  .intro__para button {
    /* display: flex;
    align-content: center; */
  }


}

/* INTRO SLIDESHOW */

/* @media screen and (max-width: 767px) { 
  .cb-slideshow li span {
    height: 100%;
  }
} */


/* NEWS */
@media only screen and (max-width: 1441px) and (min-width: 1025px) {
  .card_title {
    font-size: 22px;
    padding-bottom: 14px;
  }

  .card_body p {
    font-size: 16px;
  }

  p.read_more {
    padding: 19px 0;
    width: 60%;
    font-size: 11px;
    margin-top: 30px;
  }

}

@media screen and (max-width: 900px) {
  .news__wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
      /* grid-auto-columns: 100%; */
    /* margin-left: 1.8em; */
  }

  .news__wrapper i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 1rem;
  }

  .news__title {
    font-size: 35px;
    padding-bottom: 0px;
    margin-bottom: 25px;
  }

}

@media only screen and (min-width: 601px) and (max-width: 767px) {
  .card .card_img img {
    width: 100%;
    height: 150px;
  }

}

@media screen and (max-width: 600px) {

  .news__wrapper {
    width: 100%;
  }

  .news__wrapper .carousel {
    grid-auto-columns: 100%;
    /* margin-left: 1.8em; */
    gap: 50px;
    margin-top: 3em;
  }

  .news__wrapper i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 15px;
  }

  .carousel .card {
    /* height: auto; */
    width: 100%;
    /* box-shadow:none; */
    border: 2px solid #eff2f7;
  }

  .card .card_img {
    width: 100%;
  }

  .card .card_img img {
    width: 100%;
    height: 200px;
  }

  .card_text {
    margin: 0 15px 0 15px;
  }
  
  .card_title {
    font-size: 13px;
    margin-top: 20px;
  }
  
  .card_date {
    font-size: 12px;
    font-weight: 400;
    padding-bottom: 10px;
  }
  
  .card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 20px;
  }
}



@media only screen and (min-width: 768px) and (max-width: 1440px) {
  .news__wrapper i {
    font-size: 35px;
  }

  .news__wrapper i:first-child {
    left: -38px;
  }
  
  .news__wrapper i:last-child {
    right: -30px;
  }
}  

@media only screen and (max-width: 767px) {
  .news {
    margin-bottom: 5em;
  }

  p.read_more {
    padding: 15px 0;
    margin-top: 20px;
    font-size: 15px;
    color: #cf1516;
  }

  .news_more {
    justify-content: center;
  }

  .news_more:before {
    display: none;
  }

  .news__wrapper i {
    font-size: 35px;
  }

  .news__wrapper i:first-child {
    left: -38px;
  }
  
  .news__wrapper i:last-child {
    right: -30px;
  }

  .card .card_img {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .card .card_img img {
    height: 100%;
    object-fit: contain;
  }


  
}

/* SERVICE */

@media only screen and (max-width: 959px) {
  .service {
    padding-top: 0;
    /* margin-bottom: 10em;
    height: 100%; */
  }

  .service__title__container {
    width: 100%;
    height: 150px;
  }

  .service__title {
    content: '';
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    background: url("img/silhouettes-business-people-office-mixed-media.jpg");
    background-size: cover;
    background-attachment: local;
    padding-top: 50px;
    /* padding-bottom: 50px; */
    /* transform: translate(0%, 0px);
    animation: servicemove 2s ease; */
  }

  .service__container {
    max-width: 100%;
    height: 100%;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
  }

  .service__grid {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .service__content {
    width: 100%;
    min-height: auto;
    height: 100%;
    margin: 20px;
    padding: 10px;
    vertical-align: top;
    text-align: center;
    background-color: transparent;
  }

  .service__content h3 {
    margin-top: 25px;
    font-size: 16px;
    color: #cf1516;
  }

  .service__content .service__txt {
    margin-top: 10px;
    font-size: 14px;
  }

  .service_more_btn {
    margin-top: 20px;
    margin-bottom: 2em;
  }

  .service_more_btn::before {
    display: none;
  }

  .service_more_btn::after {
    display: none;
  }

  .service .hr-line {
    background: #fff;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .service_more_btn::before {
    content: "";
    width: 589px;
    height: 1px;

  }
}

@media only screen and (max-width: 1024px) {
  .service_more_btn::before {
    content: "";
    width: 589px;
    height: 1px;

  }
}

/* CONTACT */
@media only screen and (max-width: 959px) {

  .contact {
    height: 100vh;
    /* padding-bottom: 5em; */
    padding-top: 15em;
  }

  .contact__recruit {
    display: flex;
    flex-direction: column;
    height: 350px;
  }
  

  .contact__title__container {
    width: 100%;
    height: 350px;
    padding: 10px;
    padding-bottom: 0;
  }

  .recruit__title__container {
    width: 100%;
    height: 350px;
    padding: 10px;
  }

  .contact__title {
    content: '';
    width: 100%;
    height: 100%;
    font-size: 35px;
    font-weight: 500;
    color: #444;
    text-align: center;
    margin-bottom: 3em;
    background: url("img/documents-with-charts-touchpad-desk.jpg");
    background-size: cover;
    /* padding-top: 50px;
    padding-bottom: 50px; */
  }

  .contact__title span {
    position: relative;
  }

  .contact .subtitle {
    position: relative;
  }

  .contact .contact__text {
    position: relative;
  }
  
  .contact__title::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.6);
  }
  
  .recruit__title {
    content: '';
    width: 100%;
    height: 100%;
    font-size: 35px;
    font-weight: 500;
    color: #444;
    text-align: center;
    margin-bottom: 3em;
    background: url("img/businessman-pointing.jpg");
    background-size: cover;
    /* padding-top: 50px;
    padding-bottom: 50px; */
    /* -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);*/
  } 

  .recruit__title::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.4);
  }

  .recruit__title span {
    position: relative;
  }

  .recruit .subtitle {
    position: relative;
  }

  .recruit .recruit__text {
    position: relative;
  }


  .contact .subtitle {
    font-weight: 400;
    font-size: 16px;
    color: #444;
    margin-top: 10px;
  }

  .contact__button {
    text-align: center;
    margin-bottom: 5em;
    /* -moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  -ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.58); */
  }

  
  .contact_more_btn {
    width: 180px;
    height: 60px;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 2px;
    background-color: #444;
  }

}

/* COMPANY INFO */
@media only screen and (max-width: 959px) {
  .company-info__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 5em;
    padding-top: 15em;
  }

  .company-info__wrapper__profile {
    padding-left: 0;
    /* text-align: center; */
    padding: 15px;
    text-align: center;
  }

  .company-info__wrapper__map {
    margin: 0;
  }
  .company-info__wrapper__map iframe {
    width: 100%;
    height: 400px;

  }

  .contact__access {
    font-size: 35px;
    text-align: center;
  }

  .contact__access__sub {
    text-align: center;
  }

  .contact__name__text {
    font-size: 25px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #444;
    padding-bottom: 15px;
    letter-spacing: 0;    
  }

  .contact__address__text {
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6em;
  }
  
}

@media only screen and (max-width: 959px) {

  .company-info__wrapper__profile {
    padding-left: 0;
    /* text-align: center; */
    padding: 15px;
    text-align: center;
  }

  .contact__access {
    font-size: 35px;
    text-align: center;
  }

  .contact__access__sub {
    text-align: center;
  }

}

@media only screen and (min-width:960px) and (max-width: 1024px) {
  .company-info__wrapper__profile {
    padding-left: 0;
    /* text-align: center; */
    /* padding: 15px; */
    text-align: center;
  }

}

@media only screen and (min-width:425px) and (max-width: 767px) {
  .company-info__wrapper__map iframe {
    width: 400px;
    height: 500px;

  }
}  


@media only screen and (min-width:768px) and (max-width: 1024px) {
  .company-info__wrapper__map iframe {
    width: 500px;
    height: 500px;

  }
}  


/* FOOTER */
/* If you don't want the footer to be responsive, remove these media queries */

@media only screen and (max-width: 880px) {

  .footer-distributed {
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

}

@media only screen and (max-width: 767px) {
  .footer-distributed {
    /* height: 100%; */
    height: auto;
    text-align: center;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* padding: 2em; */
    margin-top: 10em;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-distributed .footer-center {
    width: 100%;
  }

  .footer-distributed .footer-company-name {
    color: #222;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    text-align: center;
  }

}

@media only screen and (max-width: 991px) {
  .footer-distributed {
    height: auto;
  }
}





