@font-face {
   font-family: 'ZenDots' ;
   src: url('../fonts/ZenDots-Regular.ttf') format('truetype');
}

@font-face {
   font-family: 'Roboto' ;
   src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

/*
colors:
green : orange;  rgb(121, 255, 202);
almost-white: #d1d1d1;

dark-grey: #0b0c0e;
detail-grey: #141e20;
light-grey: #13171a;

red: #ff635e;
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

section {
  background-color: #0b0c0e;
  padding-top: 80px;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.3em;
}

.ml-20 {
  margin-left: 20px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-12 {
  margin-bottom: 12px;
}

.warning {
  color: #ff635e;
}

/* Buttons */
.btn {
  background-color: transparent;
  position: relative;
  display: inline-block;
  color: orange;
  padding: 15px 35px;
  font-size: 18px;
  border: 2px solid orange;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.3);
  transition: 0.5s;
}

.btn:hover {
  color: #fff;
  border-color: #fff;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

.second-btn {
  margin-left: 12px;
}
/* Buttons END */

/* Scroll Up Button */
#btnScrollTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  opacity: 0;
  background-color: #0b0c0e;
  color: orange;
  border-color: orange;
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.3);
  transition: 0.5s;
  cursor: pointer;
  z-index: 99;
}

#btnScrollTop i {
  font-size: 24px;
}

#btnScrollTop.visible {
  opacity: 1;
}

#btnScrollTop:active {
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.3);
}
/* Scroll Up Button END */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.7);
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.2);
  transition: 0.5s;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #d1d1d1;
  font-family: 'ZenDots', sans-serif;
  font-size: 2em;
}

.toggle {
  width: 40px;
  height: 40px;
  background: url("../img/menu.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  cursor: pointer;
  transition: 0.5s;
}

.toggle.active {
  background: url("../img/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  cursor: pointer;
}
/* header END */

/* hero section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../img/background.png");
  background-position: center;
  background-size: cover;
}

.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: 100%;
  height: 100%;
  padding: 10px 100px;
}

.hero-main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-intro {
  color: orange;
  z-index: 100;
  padding: 30px 30px;
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.2);
}

.hero-main-intro-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.hero-main-intro-upper-left {

}

.hero-main-intro-upper .hero-main-intro-upper-left h2 {
  font-family: 'ZenDots', sans-serif;
  font-size: 3em;
  letter-spacing: 8px;
  color: #d1d1d1;
}

.hero-main-intro-upper .hero-main-intro-upper-left h1 {
  text-transform: uppercase;
  font-size: 2.5em;
  letter-spacing: 10px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #d1d1d1;
}

.hero-main-intro-upper .hero-main-intro-upper-left h4 {
  text-transform: uppercase;
  font-size: 1.8em;
  letter-spacing: 6px;
  margin-bottom: 24px;
  width: 60%;
}

.hero-main-intro-upper-right {
  position: relative;
}

.hero-main-intro-upper-right-img {
  width: 350px;
  height: auto;
  padding: 12px;
}

.hero-main-intro-upper-right-img img {
  width: 100%;
  height: 100%;
}

.animated-bars {
  width: 100%;
}

.animated-bars .bar-1 {
  height: 20px;
  width: 30%;
  background-color: orange;
  margin-bottom: 12px;
  transition: 0.1s;

  animation: bar1Anim 4s infinite;
}

.animated-bars .bar-2 {
  height: 20px;
  width: 25%;
  background-color: orange;
  margin-bottom: 12px;
  transition: 0.1s;

  animation: bar2Anim 2s infinite;
}

.animated-bars .bar-3 {
  height: 20px;
  width: 10%;
  background-color: orange;
  margin-bottom: 12px;
  transition: 0.1s;

  animation: bar3Anim 4s infinite;
}

.animated-bars p {
  color: orange;
}

.animated-bars .cursor-bar {
  transition: 0.1s;

  animation: blinkAnim 2s infinite;
}

.cursor-bar-blink {
  transition: 0.1s;

  animation: blinkAnim 2s infinite;
}
/* hero section END */

/* sidemenu */
.sidemenu {
  position: fixed;
  min-height: 100vh;
  width: 30%;
  top: 0;
  right: -100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  transition: 0.3s;
}

.sidemenu.active {
  right: 0;
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.2);
}

.sidemenu ul li {
  margin-bottom: 18px;
  padding: 10px 20px;
  border: 1px solid #000;
  transition: 0.5s;
}

.sidemenu ul li a {
  color: orange;
  font-size: 2em;
  text-transform: uppercase;
  transition: 0.5s;
}

.sidemenu ul li:hover {
  border: 1px solid #d1d1d1;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

.sidemenu ul li:hover a {
  color: #d1d1d1;
}
/* sidemenu END */

/* content */
.text-center {
  text-align: center;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.margin-mobile {
  margin-bottom: 12px;
}

.section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section-title {
  color: #d1d1d1;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-box {
  width: 48%;
  background-color: #13171a;
  padding: 24px;
  position: relative;
  min-height: 420px;
}

.section-box-border {
  border-left: 3px solid #d1d1d1;
}

.section-box h4 {
  font-size: 30px;
  color: orange;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-box h5 {
  font-size: 24px;
  color: #d1d1d1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-box p {
  color: #d1d1d1;
}

.section-box p .quote {
  font-style: italic;
}

.section-box p .highlight {
  color: orange;
}

.section-box ul li {
  color: #d1d1d1;
  font-size: 1.2em;
}

.section-box-img {
  position: relative;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  padding: 12px;
  margin-bottom: 12px;
}

.section-box-img-2 {
  position: relative;
  max-width: 400px;
  height: auto;
  padding: 16px;
  margin: 0 auto;
}

.section-box-img-3 {
  position: relative;
  max-width: 500px;
  height: auto;
  padding: 16px;
  margin: 0 auto;
}

.section-box-img img,
.section-box-img-2 img,
.section-box-img-3 img {
  width: 100%;
  height: 100%;
}
/* conetent END */

/* pages */
.page-intro {
  width: 100%;
  height: 50vh;
  background-color: #0b0c0e;
}

.page-intro-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.top, .bottom {
  position: absolute;
  width: 10px;
  height: 10px;
}

.top {
  top: 0;
  border-top: 3px solid #fff;
}

.bottom {
  bottom: 0;
  border-bottom: 3px solid #fff;
}

.left {
  left: 0;
  border-left: 3px solid #fff;
}

.right {
  right: 0;
  border-right: 3px solid #fff;
}

.page-title {
  position: relative;
  text-align: center;
  padding: 16px 32px;
  background-color: #141e20;
}

.page-intro-container .page-title h1 {
  color: orange;
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.page-intro-container .page-title h2 {
  color: #d1d1d1;
  font-size: 1.8em;
  text-transform: uppercase;
}

.page-intro-detail {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.page-intro-detail span {
  color: orange;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
}

.page-intro-detail span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10%%;
  height: 2px;
  background-color: orange;
  transition: 0.1s;

  animation: afterMove 2s infinite;
}

.page-intro-detail-2 {
  position: absolute;
  bottom: 10px;
  left: 12px;
}

.page-intro-detail-2 span {
  color: orange;
  font-size: 18px;
}

.three-part-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.three-box {
  width: 32%;
  padding: 20px;
  background-color: #13171a;
  transition: 0.8s;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

  height: 700px;
}

.three-box:hover {
  box-shadow: 0 5px 20px rgba(121, 255, 202, 0.3);
}

.three-box-img {
  max-width: 400px;
  height: auto;
  position: relative;
  padding: 16px;
}

.three-box-img img {
  width: 100%;
  height: 100%;
}

.three-box-text {
  width: 100%;
  text-align: left;
  padding: 30px 16px 60px;
}

.three-box-text h4 {
  color: orange;
  text-transform: uppercase;
  font-size: 2em;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.three-box-text p {
  color: #d1d1d1;
}

.section-long-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.long-box {
  background-color: #13171a;
  min-height: 400px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.target-box {
  height: 400px;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.target-box h4 {
  font-size: 1.6em;
  color: #d1d1d1;
  text-transform: uppercase;
}

.target-box-img {
  width: 300px;
  height: 300px;
  margin-bottom: 12px;
}

.target-box-img img {
  width: 100%;
  height: 100%;
  transform: scale(0.8);
  transition: 0.5s;
}

.target-box-img:hover img {
  transform: scale(1);
}

.file-character-container {
  width: 100%;
  padding: 24px;
  background-color: #13171a;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.file-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

.file-img-box {
  max-width: 400px;
  height: auto;
  position: relative;
  padding: 16px;
}

.file-img-box img {
  width: 100%;
  height: 100%;
}

.file-stats-box {
  width: calc(100% - 400px);
  padding-left: 24px;
}

.file-stats-box .stats {
  color: #d1d1d1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 4px;
}

.stats-1 {
  margin-bottom: 12px;
}

.stats-2 {
  margin-bottom: 30px;
}

.file-stats-box .stats h5 {
  text-transform: uppercase;
  font-size: 1.2em;
}

.file-stats-box .stats p {
  color: orange;
  text-transform: uppercase;
}

.file-stats-box .stats ul li {
  color: orange;
  font-size: 1.3em;
  margin-bottom: 6px;
}

.file-lower {
  width: 100%;
  min-height: 630px;
  position: relative;
  padding: 24px;
}

.file-lower h4 {
  color: #d1d1d1;
  font-size: 1.3em;
  margin-bottom: 6px;
}

.file-lower p {
  color: #d1d1d1;
  margin-bottom: 6px;
}

.file-lower p span {
  font-style: italic;
  font-size: 20px;
  color: #d1d1d1;
  margin-bottom: 24px;
}

.file-lower .cleared {
  color: orange;
}

.coat-detail-1 {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.coat-detail-1 span {
  color: orange;
}

.conditions-container {
  /* test */
  background-color: #13171a;
  color: #d1d1d1;
  padding: 24px;
}

.conditions-container h4 {
  font-size: 30px;
  color: orange;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.conditions-container h5 {
  font-size: 24px;
  color: #d1d1d1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.conditions-container ul {
  margin-top: 12px;
  margin-bottom: 30px;
}

.conditions-container ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

.conditions-inner {
  padding-left: 12px;
  position: relative;
}

.conditions-inner-box {
  position: relative;
  padding: 12px;
}

.conditions-inner-box p {
  margin-bottom: 6px;
}

.commercial-container-long {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #424547;
}

.commercial-box {
  width: 48%;
  padding: 24px;
}

.commercial-box h4 {
  font-size: 30px;
  color: orange;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.commercial-box p {
  color: #d1d1d1;
}

.commercial-box span {
  color: orange;
}

.commercial-box-img {
  max-width: 500px;
  height: auto;
  position: relative;
  padding: 12px;
  margin-bottom: 12px;
  transition: 0.5s;
}

.commercial-box-img img {
  width: 100%;
  height: 100%;
}

.commercial-box-3 {
  width: 32%;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.commercial-box-3 p {
  color: #d1d1d1;
  text-align: center;
  text-transform: uppercase;
}

.commercial-box-3-img {
  max-width: 400px;
  height: auto;
  position: relative;
  padding: 12px;
  margin-bottom: 12px;
  transition: 0.5s;
}

.commercial-box-img:hover,
.commercial-box-3-img:hover {
  transform: scale(1.1);
}

.commercial-box-3-img img {
  width: 100%;
  height: 100%;
}

.links-down {
  margin-bottom: 30px;
}

.links-down li {
  padding: 12px;
  border-bottom: 1px solid orange;
  transition: 0.5s;
}

.links-down li a {
  color: orange;
  font-size: 1.5em;
  text-transform: uppercase;
  transition: 0.5s;
}

.links-down li:hover {
  border-bottom: 1px solid #d1d1d1;
}

.links-down li:hover a {
  color: #d1d1d1;
}

.part {
  background-color: #0b0c0e;
}

.single-center-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #13171a;
  padding: 24px;
}

.single-center-container h3 {
  font-size: 3em;
  margin-bottom: 12px;
}

.single-center-container h2 {
  text-transform: uppercase;
  text-align: center;
}

.profile-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0px;
}

.profile-title h4 {
  font-size: 2.3em;
  text-transform: uppercase;
  color: #d1d1d1;
}

.profile-title-icon {
  width: 80px;
  height: 80px;
  margin-right: 12px;
}

.profile-title-icon img {
  width: 100%;
  height: 100%;
}

.border-green {
  border-bottom: 1px solid orange;
  padding-bottom: 12px;
}

.section-preview {
  background-color: #13171a;
  width: 100%;
  padding: 24px;
  margin-bottom: 24px;
}

.section-preview p {
  color: #d1d1d1;
}

.long-section {
  background-color: #13171a;
  width: 100%;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.long-section-intro {
  width: 100%;
  padding: 0px 24px 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.long-section-img {
  max-width: 80px;
  height: auto;
  padding: 6px;
  position: relative;
  margin-right: 12px;
}

.long-section-img img {
  width: 100%;
  height: 100%;
}

.long-section-text h4 {
  font-size: 2em;
  color: orange;
  text-transform: uppercase;
}

.long-section-content {
  padding: 24px;
}

.long-section-content p {
  color: #d1d1d1;
}

p.mail-address {
  font-size: 30px;
  color: orange;
  margin-bottom: 12px;
}

.link-container {
  display: flex;
}

.social-container {
  width: 100%;
  background-color: #13171a;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px;
}

.social-container h4 {
  font-size: 30px;
  color: orange;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.social-container .social-links ul li {
  display: inline-block;
  margin: 24px;
}

.social-container .social-links ul li a i {
  font-size: 2em;
  color: #d1d1d1;
  transition: 0.5s;
}

.social-container .social-links ul li:hover a i {
  transform: translateY(-6px);
  color: orange;
}

.social-container .social-links ul li a p {
  display: none;
}
/* pages END */

/* Gallery */
.gallery-container {
  width: 100%;
  padding: 24px;
  background-color: #13171a;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-box {
  padding: 12px;
  position: relative;
  max-width: 300px;
  margin: 24px;
  transition: 0.5s;
}

.gallery-box a img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}

.gallery-box:hover {
  transform: scale(1.1);
}
/* Gallery END */

/* footer */
footer {
  background: #141e20;
  color: #fff;
}

footer .footer-content {
  display: flex;
  padding: 30px 100px 48px;
}

footer .footer-content .footer-box {
  flex-basis: 23%;
  padding: 0px 30px;
  margin-right: 30px;
}

footer .footer-content .footer-box a h4 {
  font-size: 24px;
  padding-bottom: 20px;
  font-family: 'ZenDots', sans-serif;
  color: #d1d1d1;
}

footer .footer-content .footer-box h5 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

footer .footer-content .footer-box h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: orange;
  width: 110px;
  height: 2px;
}

footer .footer-content .footer-box ul li {
  margin-bottom: 5px;
}

footer .footer-content .footer-box ul li a {
  color: #fff;
  font-size: 16px;
  transition: 0.5s;
}

footer .footer-content .footer-box ul li:hover a {
  color: orange;
}

footer .footer-content .footer-box p {
  font-size: 1em;
}

footer .footer-content .footer-box p {
  margin-bottom: 5px;
}

footer .footer-content .footer-box p i {
  margin-right: 4px;
}

/* footer END */

/* Animations */
@keyframes bar1Anim {
    0% {
      width: 30%;
    }
    90% {
      width: 60%;
    }
}

@keyframes bar2Anim {
  0% {
    width: 25%;
  }
  90% {
    width: 45%;
  }
}

@keyframes bar2Anim {
  0% {
    width: 25%;
  }
  90% {
    width: 45%;
  }
}

@keyframes bar3Anim {
  0% {
    width: 10%;
  }
  90% {
    width: 85%;
  }
}

@keyframes blinkAnim {
  0% {
    /* color: #0b0c0e; */
    opacity: 0;
  }
  50% {
    /* color: orange; */
    opacity: 1;
  }
}

@keyframes afterMove {
  0% {
    width: 10%;
  }
  80% {
    width: 70%;
  }
}
/* Animations END */

/* Media Queries */
@media (max-width:1360px){
  p.mail-address {
    font-size: 22px;
  }
}

@media (max-width:1140px){

  .header {
    padding: 10px 50px;
  }

  .sidemenu {
    width: 50%;
  }

  .hero-main-intro-upper {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h4 {
    width: 100%;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h2 {
    margin-top: 30px;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h2,
  .hero-main-intro-upper .hero-main-intro-upper-left h1,
  .hero-main-intro-upper .hero-main-intro-upper-left h4 {
    text-align: center;
  }

  .hero-main-intro-upper-right {
    margin: 0 auto;
  }

  .hero-main-intro-lower {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }

  .hero-main-intro-upper-right-img {
    max-width: 250px;
  }

  .animated-bars {
    display: none;
  }

  .first-btn {
    margin-bottom: 12px;
  }

  .second-btn {
    margin-left: 0px;
  }

  .container {
    padding: 10px 50px;
  }

  footer .footer-content {
    padding: 30px 50px 48px;
  }

  footer .footer-content .footer-box {
    flex-basis: 23%;
    padding: 0px 30px;
    margin-right: 0px;
  }
}

@media (max-width:1090px){
  .file-upper {
    flex-direction: column;
  }

  .file-img-box {
    margin: 0 auto;
    margin-bottom: 24px;
  }

  .file-stats-box {
    width: 100%;
  }
}

@media (max-width: 992px){

  .hero-section video {
    display: none;
  }

  .sidemenu {
    width: 100%;
  }

  .section-container {
    flex-direction: column;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h4 {
    display: none;
  }

  .section-box {
    width: 100%;
    margin-bottom: 24px;
  }

  .section-long-box-container,
  .long-box {
    flex-direction: column;
  }

  .three-part-container {
    flex-direction: column;
  }

  .three-box {
    width: 100%;
    margin-bottom: 24px;
  }

  .commercial-container-long {
    flex-direction: column;
  }

  .commercial-box,
  .commercial-box-3 {
    width: 100%;
    margin-bottom: 24px;
  }

  .social-container .social-links {
    width: 100%;
  }

  .social-container .social-links ul li {
    width: 100%;
    margin: 24px 0px;
  }

  .social-container .social-links ul li a {
    display: flex;
    align-items: center;
  }

  .social-container .social-links ul li a i {
    margin-right: 24px;
  }

  .social-container .social-links ul li a i,
  .social-container .social-links ul li a p {
    display: block;
  }

  .social-container .social-links ul li a p {
    color: #d1d1d1;
  }

  .gallery-box {
    margin: 12px;
  }

  footer .footer-content {
    flex-direction: column;
  }

  footer .footer-content .footer-box {
    flex-basis: 100%;
    padding: 0px 30px;
    margin-right: 0px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  footer .footer-content .footer-box h5::after {
    width: 80%;
  }
}

@media (max-width:768px) {
  .sidemenu ul li {
    margin-bottom: 10px;
  }

  .sidemenu ul li a {
    font-size: 1.5em;
  }

  .gallery-container {
    padding: 12px;
  }
}

@media (max-width: 575.98px) {

  p {
    font-size: 1.1em;
  }

  .header {
    padding: 10px 20px;
  }

  .logo {
    font-size: 1em;
  }

  .btn {
    font-size: 16px;
  }

  .hero-main-intro {
    padding: 30px 15px;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h2 {
    font-size: 1.5em;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h1 {
    font-size: 1.2em;
  }

  .hero-main-intro-upper .hero-main-intro-upper-left h4 {
    font-size: 1em;
  }

  .hero-main-intro-upper-right-img {
    width: 160px;
    height: auto;
    padding: 12px;
  }

  .container {
    padding: 10px 15px;
  }

  .page-title {
    position: relative;
    text-align: center;
    padding: 16px;
    background-color: #141e20;
  }

  .page-intro-container .page-title h1 {
    font-size: 2em;
  }

  .page-intro-container .page-title h2 {
    font-size: 1.2em;
  }

  .target-box {
    width: 100%;
  }

  .long-section-intro {
    padding: 0px 0px 12px;
  }

  .long-section-content {
    padding: 0px;
  }

  .links-down li a {
    font-size: 1.1em;
  }

  .conditions-container {
    padding: 12px;
  }

  .file-character-container {
    padding: 12px;
  }

  .profile-title-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .file-stats-box {
    padding-left: 0px;
  }

  .shorten {
    margin-left: 12px;
    text-align: right;
  }

  .file-lower {
    padding: 12px;
  }

  .file-stats-box .stats ul li {
    font-size: 1em;
    margin-left: 12px;
  }

  .three-box {
    height: initial;
    min-height: 200px;
  }

  footer .footer-content {
    padding: 30px 15px 48px;
  }

  footer .footer-content .footer-box a h4 {
    text-align: center;
  }
}
