* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
*:focus {
    outline: 0;
  }

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

.nav-link {
  font-size: medium;
}
  
/*  slider  */
.main_header{
  background-color: #ffffff;
  position: relative;
	z-index: 10;
}


h-block {
  width: 1.5em;
  height: 1.5em;
}

.carousel-inner {
  z-index: 5;
}

.carousel-item {
  /* height: 100%; */
  min-height: 7em;
  /*min-height: 300px;*/
  background: no-repeat scroll center scroll;
  -webkit-backdrop-size: cover;
  background-size: cover;
}

.carousel-item::before {
  content:"";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.1;
} 

/* Main Content */
.parallax_container {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0 auto;
  background: #f9f9f9;
  font-size: 24px;
  padding: 5px;
  margin-bottom: 0;
}


.content_section1 {
  
  position: relative;
  background-color: transparent;
   /* The image used */
   background-image: url('../images/holly-mindrup-j7RQSDAhpYI-unsplash.jpg');

   /* Full height */
   height: 100%; 
 
   /* Create the parallax scrolling effect */
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   padding: 500px 30px;
}

.flat_back{
    text-align: center;
    position: absolute;
    background-color: #d3d3d3;
    top: 0;
    left: 0;
    width: 600px;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
  }

.center {
    text-align: center;
    padding: 50px;
    }

.info{
    z-index: 2;
    position: absolute;
    color: Black;
    top: 180px;
    left: 25%;
    width: 600px;
    height: 560px;
    background: white;
    opacity: 0.9;
    padding: 30px;
    transition: opacity 2s;
}

#case-manager_list {
  font-size: medium;
  padding-top: 20px;
  padding-left: 30px;
  padding-bottom: 30px;
}

#partnership_list {
  font-size: medium;
  padding-top: 20px;
  padding-left: 30px;
  padding-bottom: 10px;
}

.info_button {
  background: #659999;
  color: white;
}


.parallax-2{
    min-height: 500px;
    background: transparent;
}

.content_section2 {
  width: 100%;
  padding-bottom: 200px;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  height: 40vh;
  width: 100%;
  position: relative;
  margin: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-track {
  display: flex;
  padding-top: 30px;
  width: calc(450px * 16);
  animation: scroll 40s linear infinite;
  /* animation: scrolling 25s linear infinite; */
}

.slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0%{
    transform: translateX(0)
  }
  100%{
    transform: translateX(calc(-450px * 8));
  }
}

.mySlides {
  height: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
  perspective: 100px;
}

.services-img {
  width: 450px;
  transition: transform 1s;
}

.services-img:hover {
  transform: translateZ(20px);
}

.slideshow-container::before, .slideshow-container::after {
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,
  rgba(255,255,255,0) 100%);
  content: '';
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.slideshow-container::before {
  left: 0;
  top: 0;
}

.slideshow-container::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

#back2Top {
  width: 40px;
  line-height: 40px;
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  transform: rotate(0deg);
  position: fixed;
  bottom: 50px;
  right: 30px;
  color: #555;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
}

#back2Top:hover {
  color: #DDF;
}

/* Animated Gradient Bottom Button */
.bottom_button{
    bottom: 200px;
    width: 450px;
    /* display: flex; */
    position: fixed;
    /*margin-left: 10%;*/
    z-index: 4;
    padding:15px;
    text-align:center;
    font-size:20px;
    line-height:24px;
    letter-spacing:1px;
    border-width: 4px;
    border-style: solid;
    text-decoration:none;
    color:#fff;
    transition:all 0.3s ease-in;
    background: linear-gradient(-45deg, #659999, #d68040, #659999);
    background-size: 400% !important;
    -webkit-animation: Gradient 10s ease infinite !important;
    -moz-animation: Gradient 10s ease infinite !important;
    animation: Gradient 10s ease infinite !important;
  }

.bottom_button:hover {
  opacity: 0.4;
}

  /* Solid border */
hr.solid {
  border-top: 3px solid #bbb;
}

/* footer */
.bg-grey {
    background: #292929;
}
.logo-footer {
     margin-bottom: 40px;
}

footer {
    color: grey;
    bottom: 0;
    padding-top: 40px;
    display: flex;
    position: fixed;
	  text-transform: uppercase;
	  width: 110%;
	  z-index: 3;
    justify-items: space-between;
}
footer p, a {
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
}

footer h6 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
}
footer h6:after {
    position: absolute;
    content: "";    bottom: -20px;
}

footer ul li {
    list-style: none;
    display: block;
    float:left;
    display:inline;
}
footer ul  {
   padding-left: 0;
   overflow: hidden;
}
footer ul  li a{
  text-decoration: none;
  color: grey;
  text-decoration:none;
}

.fixed-footer .row{
  width: 130%;
}

.alt-footer {
  display: none;
}

a:hover {
    text-decoration: none;
    color: #f5f5f5 !important;
    
}
.logo-part {
    border-right: 1px solid grey;
    height: 100%;
    font-size: 11px;;
    } 


/* Container */

.container {
    margin: 0 auto;
    max-width: 100%;
    /* width: 1600px; */
}

#double li  { 
    width:45%;
}

#single li  { 
    width: 100%;
}

/* formating for pages */
.card {
  width: 100%;
  height: auto;
}

.card-image {
  height: 550px;
  width: auto;
}

.card-caption {
  position: relative;
  top: 160px;
}

.page_content_section1 {
  background-color: transparent;
  position: relative;
  height: 68vh;
  padding: 25px;
  margin-bottom: 0;
  
}
.page_content_section2 {
  position: relative;
  
}

.about_section{
  padding-top: 90px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 90px;
}

.about_section ul {
  padding-left: 20px;
}

.contact-info {
  z-index: 2;
  top: 20px;
  left: 30%;
  position: absolute;
  color: #fff;
  padding-bottom: 300px;
}

.space {
  padding-bottom: 35px;
}


.parallax{
  position: relative;
  padding: 350px 30px;
  background: transparent;
}

.contact_section {
  padding-top: 90px;
  padding-left: 20px;
  padding-bottom: 90px;
}

.form-section {
  padding-left: 30%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
}

.GIT_Label {
  border-right: 1.5px solid lightgrey;
  padding-top: 100px;
  left: 10%;
}

.GIT_Label2 {
  display:none;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-row .input-group {
  flex-basis: 48%;
}

.contact-form .input-group {
  margin-bottom:30px;
  position: relative;
}

.contact-form input, .contact-form textarea{
  border: 0;
  width: 100%;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background: #f5f5f5;
  font-size: 16px;

}

label {
  height: 100%;
  position: absolute;
  left: 0;
  top: 15px;
  padding: 10px;
  cursor: text;
  color: grey;
  transition: 0.2s;
}

.contact-form button {
  background: #659999;
  color: white;
  padding: 15px;
  font-size: 18px;
  border: 0;
  width: 160px;
  margin: 20px auto 0;
  border-radius: 30px;
  cursor: pointer;
}

input:focus~label, input:valid~label {
  top: -35px;
  font-size: 14px;
}

textarea:focus~label, textarea:valid~label {
  top: -35px;
  font-size: 14px;
}

.map {
  padding-left: 40px;
}

@media screen and (max-width: 920px){
  .carousel-inner {
    width: 100%;
    height: 550px;
  }

  .parallax_container {
    max-width: 100%;
  }

  .info{
    left: 95px;
  }

  .bottom_button {
    right: 0;
  }

  footer h6 {font-size: 2vw;}

  footer a {font-size: 1vw;}

  #double li  { 
    width:50%;
  }

  .fixed-footer .row{
    width: 100%;
  }

  .nav2 {
    display: flex;
  }

  a-nav {
    display: none;
  }

}

@media screen and (min-device-width: 551px) and (max-device-width: 768px) { 

  .contact_section .row{
    display: flex;
    flex-direction: column;
  }

  .GIT_Label2 {
    width: 100%;
    display: contents;
    padding-bottom: 30px;
  }

  .GIT_Label {
    display: none;
  }

  #double li {
      width: 100%;
  }

  .logo-part {
    padding-left: 20px;
  }

  footer .col-sm-4 {
    flex-basis: 30%;
  }

  .bottom_button{
    right: 0;
    bottom: 0;
    width: 40%;
    position: relatve;
    /* margin-left: 180px; */
    z-index: 15;
    padding:0;
    font-size: 3vw;
  }

  footer h6 {font-size: 2vw;}

  footer a {font-size: 1vw;}
}


@media screen and (max-width: 550px){
  .carousel-inner {
    width: 100%;
    height: 250px;
  }

  /* Main Content */
  .parallax_container {
    margin-left: 0;
    width: 100%;
    font-size: 18px;
    margin-bottom: 0;
    z-index: 10;
  }

  .content_section1{
    width: 100%;
    background-attachment: fixed;
  }

  .flat_back{
    width: 70%;
  }

  .info{
    z-index: 2;
    position: absolute;
    color: Black;
    top: 242px;
    left: 45px;
    width: 80%;
    height: 560px;
    background: white;
    opacity: 0.9;
    padding: 25px;
    transition: opacity 2s;
  }

  #case-manager_list {
    font-size: small;
  }
  
  #partnership_list {
    font-size: small;
  }
  /*.parallax{
    position: fixed;
    padding: 200px 35px;
    background: transparent;
  } */
  
  .bottom_button{
    left: 20%;
    bottom: 90px;
    width: 50%;
    position: relatve;
    /* margin-left: 180px; */
    z-index: 15;
    padding:0;
    font-size: 3vw;
  }

  .content_section2{
    padding-bottom: 80px;
  }

  .about_section{
    padding-left: 20px;
    padding-right: 20px;
  }

  
  .GIT_Label2 {
    width: 100%;
    display: contents;
    padding-bottom: 30px;
  }

  .GIT_Label {
    display: none;
  }

  .form-section {
    padding-left: 5%;
  }
  
  .contact-form {
    width: 96%;
  }

  .fixed-footer{
    display: none;

  }

  .alt-footer {
    display: block;
    padding-left: 10%;
    padding-right: 10%;
    height: 120px;
    
  }

  .alt-footer p {
    padding-top: 20px;
    font-size: 3vw;
  }
}


@media screen and (max-width: 350px){
  .info{
    left: 20px;
    top: 300px;
    width: 93%;
    height: 660px;
  }

  .nav2 {
    visibility: hidden;
  }

}

/* Animation Keyframes */

@-webkit-keyframes Gradient {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@-moz-keyframes Gradient {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes Gradient { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.scale-in-center {
  -webkit-animation: scale-in-center 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
          animation: scale-in-center 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-3-14 14:33:4
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
 @-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
