/* General region */

body {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #1b1b1b;
}

a {
  color: #b6173c;
}

p {
  margin: 0px;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

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

strong {
  font-weight: 600;
}

.container {
  position: relative;
}

section {
  padding: 70px 0 140px 0;
  overflow: hidden;
}

.section-header {
  color: #b6173c;
  font-weight: 700;
  font-size: 32px;
  border-bottom: 1px solid #1b1b1b;
  margin: 0px;
  padding: 0px 0px 10px 0px;
  line-height: 1;
}

.section-subheader {
  color: #1b1b1b;
  font-weight: 700;
  font-size: 24px;
  text-align: right;
  margin: 0px;
  line-height: 1;
  padding: 10px 0px 0px 0px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-text,
.service-text {
  margin: 20px 0 0 0;
}

.text-paragraph {
  position: relative;
  margin: 0 0 30px 0;
}

.text-paragraph:last-of-type {
  margin: 0;
}

.text-paragraph:not(:last-of-type)::after {
  position: absolute;
  bottom: -15px;
  left: 7px;
  width: 40px;
  height: 2px;
  content: "";
  background-color: #b6173c;
}

.text-list li {
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 0 12px;
}

.text-list li::before {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #b6173c;
}

.break-text {
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}

.break-text.sr-italic{
  font-size: 25px;
  font-family: "Nunito Sans", sans-serif; 
}

.break-text span {
  font-style: italic;
}

.break-text::before,
.break-text::after {
  content: "";
  position: absolute;
  left: calc(50% - 50px);
  height: 4px;
  width: 100px;
  background-color: #b6173c;
}

.break-text::before{
 top: -55px;
}

.break-text::after{
  bottom: -55px;
 }

 @media (max-width: 992px) {
  section {
    padding: 35px 0 70px 0;
  }

  .break-text::before{
    top: -25px;
   }
   
   .break-text::after{
     bottom: -25px;
    }
}

 @media (max-width: 768px) {
  .section-header {
    font-size: 26px;
  }
  
  .section-subheader {
    font-size: 20px;
  }

  .break-text {
    font-size: 20px;
    line-height: 1.4;
  }

  .break-text.sr-italic{
    font-size: 21px;
  }
}

@media (max-width: 576px) {
  .section-header {
    font-size: 22px;
  }
  
  .section-subheader {
    font-size: 19px;
  }

  .text-paragraph,
  .text-list li {
    font-size: 12px;
  }

  .break-text::before,
  .break-text::after {
    left: calc(50% - 40px);
    width: 80px;
  }
}

/* End General region */

/* Back to top region */

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #b6173c;
  color: #1b1b1b;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #444;
  color: #b6173c;
}

/* End Back to top region */

/* Preloader region */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1b1b1b;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #b6173c;
  border-top-color: #1b1b1b;
  border-bottom-color: #1b1b1b;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  -moz-animation: animate-preloader 1s linear infinite;
  -o-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

/* Disable aos animation delay on mobile */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* End Disable aos animation delay on mobile */

/* Header region */

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: #1b1b1b;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #b6173c;
}

#header .logo img {
  max-height: 40px;
}
/* End Header region */

/* Navigation region */
/* for Desktop */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #b6173c;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #f5f5f5;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 120px;
  position: relative;
  font-family: "Nunito Sans", sans-serif;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1b1b1b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1b1b1b;
  background: #b6173c;
}

.nav-menu .drop-down .ri-earth-line {
  font-weight: normal;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 3px;
  font-weight: normal;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* for Mobile */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 70px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background-color: #f5f5f5;
  background-image: url('../img/navmenu1.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 60%;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #1b1b1b;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #1b1b1b;
  text-decoration: none;
  background: #b6173c;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  left: auto;
  right: auto;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
  font-family: "Nunito Sans", sans-serif;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/* End Navigation region */

/* Jumbotron region  */

#jumbo {
  width: 100%;
  height: 100vh;
  background-color: #1b1b1b;
  background: url("../img/jumbo3.jpg") top center;
  background-size: cover;
  position: relative;
}

#jumbo::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

#jumbo .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#jumbo .jumboQuote {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

#jumbo .jumboQuote.line1 {
  font-weight: 500;
}

#jumbo.sr-italic .jumboQuote.line1 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 37px;
}

#jumbo .jumboQuote.line2 {
  font-size: 40px;
  color: #b6173c;
  opacity: 0;
  text-shadow: 0px 0px 0.3em rgba(255, 255, 255, 0.4);
}

#jumbo .slick-active .jumboQuote.line2 {
  -webkit-animation: textFadeInOut 8s ease-in-out;
  -moz-animation: textFadeInOut 8s ease-in-out;
  -o-animation: textFadeInOut 8s ease-in-out;
  animation: textFadeInOut 8s ease-in-out;
}

#jumbo .jumboQuote span {
  font-style: italic;
}

#jumbo .quotePlusFirst {
  transition: opacity 1000ms ease 0s;
}

#jumbo .easterEgg {
  padding: 0;
  margin: 20px auto;
  width: 100%;
  height: auto;
}

#jumbo .easterEggContent {
  display: block;
  padding: 0;
  margin: auto; 
  width: 100px;
  height: 100px;
  background-image: url('../img/EasterEgg-1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  -webkit-filter: drop-shadow(0px 0px 0.3em rgba(255, 255, 255, 0.4));
  filter: drop-shadow(0px 0px 0.3em rgba(255, 255, 255, 0.4));
}

.hartBeat {
  -webkit-animation-name: heartBeat;
  -webkit-animation-duration: 4s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-name: heartBeat;
  -moz-animation-duration: 4s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count:infinite;
  -moz-animation-delay: 2s;
  -o-animation-name: heartBeat;
  -o-animation-duration: 4s;
  -o-animation-timing-function: ease-in-out;
  -o-animation-iteration-count:infinite;
  -o-animation-delay: 2s;
  animation-name: heartBeat;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count:infinite;
  animation-delay: 2s;
}

#jumbo .easterEgg:focus,
#jumbo .easterEgg:focus-visible {
  outline: none;
}

#jumbo .readMoreArrow {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 50px);
  color: white;
  height: auto;
  min-width: 100px;
  text-align: center;
  font-size: 15px;
}

#jumbo .readMoreArrow .ri-arrow-down-s-line {
  color: #b6173c;
  position: absolute;
  top: -18px;
  left: 95px;
  font-size: 35px;
  -webkit-animation: arrowPulse 2s infinite;
  -moz-animation: arrowPulse 2s infinite;
  -o-animation: arrowPulse 2s infinite;
  animation: arrowPulse 2s infinite;
}

@media (min-width: 1024px) {
  #jumbo {
    background-attachment: fixed;
  }
}



@media (max-width: 768px) {
  #jumbo .jumboQuote {
    font-size: 30px;
  }

  #jumbo.sr-italic .jumboQuote.line1 {
    font-size: 31px;
  }

  #jumbo .jumboQuote.line2{
    font-size: 34px;
  }

  #jumbo .easterEggContent {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  #jumbo .jumboQuote {
    font-size: 24px;
    line-height: 1.3;
  }

  #jumbo.sr-italic .jumboQuote.line1 {
    font-size: 25px;
  }

  #jumbo .jumboQuote.line2{
    font-size: 27px;
    line-height: 1.3;
  }

  #jumbo .readMoreArrow {
    bottom: 10px;
    font-size: 13px;
  }

  #jumbo .readMoreArrow .ri-arrow-down-s-line {
    left: 88px;
    font-size: 32px;
  }

  
  #jumbo .easterEggContent {
    width: 75px;
    height: 75px;
  }
}

/**
 * Hacking iphone to show "Read More" above the navigation bar in portrait
 * mode.
 */
@media only screen 
    and (max-device-width: 428px) 
    and (orientation: portrait) {
        .readMoreArrow {
            padding-bottom: 50px;
        }
}

@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
        .readMoreArrow {
            padding-bottom: 120px;
        }
}

@media only screen 
    and (min-device-width: 375px) 
    and (max-device-width: 812px) 
    and (-webkit-min-device-pixel-ratio: 3)
    and (orientation: portrait) {
        .readMoreArrow {
            padding-bottom: 120px;
        }
}
/* End Jumbotron region  */

/* About region */

.about {
  background: #f5f5f5;
}

.about .about-image{
  margin: 20px 0 0 0;
  background-image: url('../img/Profil-img-1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 350px;
}

@media (max-width: 992px) {
    .about {
      padding-bottom: 10px;
    }

    .about .about-image{
      margin-top: 30px;
    } 
}

@media (max-width: 576px) {
  .about .about-image{
    min-height: 300px;
  }
  
}

/* End About region */

/* Services region */

#services {
  background-color: #f5f5f5;
}

#services .service-item.ip .text-paragraph:first-child,
#services .service-item.ccb .text-paragraph:first-child{
  margin: 0 0 14px 0;
}

#services .service-image {
  margin: 20px 0 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}

#services .service-item.ip .service-image {
  background-image: url('../img/IP-law.png');
}

#services .service-item.it .service-image {
  background-image: url('../img/IT-law.png');
}

#services .service-item.ccb .service-image {
  background-image: url('../img/CCB.png');
}

.services-carousel-arrows .slick-arrow {
  position: absolute;
  top: 46%;
  padding: 0px;
  margin: 0px;
  width: 30px;
  height: 30px;
  background-color: rgba(162, 162, 162, 0.2);
  color: #a2a2a2;
  border: none;
  border-radius: 50%;
  font-size: 26px;
  line-height: 30px;
}

.services-carousel-arrows .slick-arrow.slick-prev {
  left: 15px;
  padding-right: 3px;
}

.services-carousel-arrows .slick-arrow.slick-next {
  right: 15px;
  padding-left: 3px;
}

.services-carousel-dots {
  margin: auto;
  padding: 10px 0 0 0;
  text-align: center;
  line-height: 0;
  border-top: 1px solid #a2a2a2;
}

.services-carousel-dots li{
  display: inline-block;
}

.services-carousel-dots li button {
  margin: 0 4px;
  padding: 0;
  height: 4px;
  width: 60px;
  color: transparent;
  background-color: #a2a2a2;
  border: none;
}

.services-carousel-dots li.slick-active button {
  background-color: #b6173c;
}

@media (max-width: 992px) {
  #services .service-image {
    background-size: contain;
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .services-carousel-dots li button {
    margin: 0 2px;
    width: 50px
  }
}

/* End Services region */

/* Break-1 region */

.break-1 {
  background: #1b1b1b;
  min-height: 500px;
  padding: 70px 0;
}

@media (max-width: 992px) {
  section.break-1 {
    padding: 35px 0 35px 0;
    min-height: 400px;
  }
}

/* End Break-1 region */

/* International region */

.international {
  background-color: #1b1b1b;
  background-image: url("../img/international-map.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 500px;
  padding: 70px 0;
}

.international .break-text span {
  font-style: normal;
  color: #b6173c;
  font-weight: 600;
}

.chyron {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  overflow: hidden;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  color: #fff;
  -webkit-transform: translateZ(0);
}

.chyron i {
  vertical-align: bottom;
  font-size: 18px;
  text-align: center;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(var(--end)); }
}

.chyron-text {
  --end: calc(-3641px - 33%);
  margin-bottom: var(--end);
  white-space: nowrap;
  -webkit-animation: marquee 40s linear infinite;
  -moz-animation: marquee 40s linear infinite;
  -o-animation: marquee 40s linear infinite;
  animation: marquee 40s linear infinite;
  position: absolute;
  top: 0;
  left: 100%;
 }

@media screen and (max-width: 429px) {
    .chyron-text {
        --end: calc(-3641px - 13%);
    }
}

@media (min-width: 1024px) {
  .international {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  section.international {
    padding: 35px 0 35px 0;
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  section.international {
    padding: 60px 0 60px 0;
  }
}

/* End International region */

/* Contact region */

.contact {
  padding: 35px 0;
  background: #f5f5f5;
}

.contact .contactData {
  padding: 0px 35px;
}

.contact .image {
  min-height: 350px;
  padding: 0;
}

.contact .image .img-wrapper {
  position: relative;
}

/**
 * Pulling content down for "long" viewports.
 */
@media (min-height: 1000px) {
    .contact .image .img-wrapper {
        margin-bottom: 50px;
        margin-top: 50px;
    }
}

.contact .image .img-wrapper img {
  width: 100%;
  height: auto;
}

.contact .image .img-wrapper::after {
  content:"";
  width: 50px;
  height: 75px;
  position: absolute;
  background-image: url('../img/locationpin.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 50%;
  bottom: 50%;
  -webkit-animation-name: pinBouncing;
  -webkit-transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: pinBouncing;
  -moz-transform-origin: center bottom;
  -moz-animation-duration: 4s;
  -moz-animation-fill-mode: both;
  -moz-animation-iteration-count: infinite;
  -o-animation-name: pinBouncing;
  -o-transform-origin: center bottom;
  -o-animation-fill-mode: both;
  -o-animation-duration: 4s;
  -o-animation-iteration-count: infinite;
  animation-name: pinBouncing;
  transform-origin: center bottom;
  animation-fill-mode: both;
  animation-duration: 4s;
  animation-iteration-count: infinite;

}

.contact h2 {
  color: #b6173c;
  font-size: 36px;
  font-weight: 600;
  text-align: left;
  padding-bottom: 15px;
  margin: 0;
  line-height: 1.2;
}

.contact ul {
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  padding-top: 15px;
  line-height: 1.5;
  border-top: 1px solid #1b1b1b;
  margin: 0;
}

.contact ul a{
  color: #1b1b1b;
}

.contact ul a:hover{
  color: #b6173c;
}

.contact ul i {
padding-right: 10px;
} 

@media (max-width: 992px) {
  .contact h2 {
    font-size: 34px;
  }
  
  .contact ul {
    font-size: 18px;
  }

}

@media (max-width: 768px) {
  .contact {
    padding-top: 0;
  }

  .contact .contactData {
    height: 350px;
    max-height: 350px;
  }
}

@media (max-width: 576px) {
  .contact h2 {
    font-size: 29px;
  }
  
  .contact ul {
    font-size: 20px;
  }
}
/* End Contact region */

/* Footer region */

#footer {
  background: black;
  padding: 0 0 25px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #1b1b1b;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #b6173c;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b6173c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #b6173c;
}

#footer .copyright {
  text-align: center;
  padding-top: 25px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a:hover{
  color: #444;
}
/* End Footer region */
