/* Custom Stylesheet */
/**
 * Use this file to override Materialize files so you can update
 * the core Materialize files in the future
 *
 * Made By MaterializeCSS.com
 */

nav ul a,
nav .brand-logo {
  color: #444;
}

p {
  line-height: 2rem;
}

.sidenav-trigger {
  color: #26a69a;
}

.parallax-container {
  min-height: 500px;
  line-height: 0;
  height: auto;
  color: rgba(255,255,255,.9);
}
  .parallax-container .section {
    width: 100%;
  }

@media only screen and (max-width : 992px) {
  .parallax-container .section {
    position: absolute;
    top: 40%;
  }
  #index-banner .section {
    top: 10%;
  }
}

@media only screen and (max-width : 600px) {
  #index-banner .section {
    top: 0;
  }
}

.icon-block {
  padding: 0 15px;
}
.icon-block .material-icons {
  font-size: inherit;
}

footer.page-footer {
  margin: 0;
}


/*--------------------------------------*/
#index-banner{
  min-height: 600px !important;
}
html {
  scroll-behavior: smooth;
}

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



@keyframes slides {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  background-color: #EEEEEE;

}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}


.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
  padding: 20px;
}


/*--------------------------------------*/
:root {
  --primary-color: #0088c2!important;
  --secondary-color: #28255a!important;
  --gray-color: #333333!important;
}

.text-primary{
  color: var(--primary-color);;
}
.text-secondary{
  color: var(--secondary-color);
}
.bg-primary{
  background-color: var(--primary-color);;
}
.bg-secondary{
  background-color: var(--secondary-color);
}
.bg-primary-btn{
  background-color: var(--primary-color);;
}
.bg-primary-btn:hover{
  background-color: var(--secondary-color);;
}

.form-div{
  width: 80%;
}



input[type=text]:not(.browser-default):focus:not(:read-only) + label{
  color: var(--primary-color);
}

input[type=text]:not(.browser-default):focus:not(:read-only){
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 1px 0 0 var(--primary-color);
}

textarea.materialize-textarea:focus:not(:read-only){
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 1px 0 0 var(--primary-color);
}


input[type=number]:not(.browser-default):focus:not(:read-only) + label{
  color: var(--primary-color);
}

input[type=number]:not(.browser-default):focus:not(:read-only){
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 1px 0 0 var(--primary-color);
}

input[type=email]:not(.browser-default):focus:not(:read-only) + label{
  color: var(--primary-color);
}

input[type=email]:not(.browser-default):focus:not(:read-only){
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 1px 0 0 var(--primary-color);
}
input[type="checkbox"]:checked + span:not(.lever):before {
  border-right: 2px solid var(--primary-color)!important;
  border-bottom: 2px solid var(--primary-color)!important;
}

.border-top-bottom{
  border-top: solid 1px rgba(51, 51, 51, 0.12); border-bottom: solid 1px rgba(51, 51, 51, 0.12);
}

.container.main{
  min-height: 50vh;
}

button:focus {
  outline: none;
  background-color: var(--primary-color)!important;
}

[type="radio"]:checked + span:after {
  background-color: var(--primary-color)!important;
}