@font-face {
  font-family: futura;
  src: url(../css/FuturaPTBook.otf);
}
body{
  font-family: futura;
	padding: 0;
	margin: 0;
}
* {
  box-sizing: border-box;
}
.grid{
	display: grid;
	}

  main{
    overflow: hidden;
    max-width: 100%;
    height: auto;
  }

  /* clients brand slide */

  
 /* clients
  
  */
.clients{
  margin: 30px 0 80px 0;
  overflow: hidden;
}
.clients>h1{
  text-align: center;
  margin-bottom: 10px;
}

  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-250px * 7));
              transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-250px * 7));
              transform: translateX(calc(-250px * 7));
    }
  }
  .slido {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    margin: auto;
    overflow: hidden;
   width: 100%;
  }
  .slido::before{
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 90px;
    position: absolute;
    width: 300px;
    z-index: 2;
  }
  .slido::before {
    right: 0;
    /* top: 120%; */
    -webkit-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
  }
  .slide>img{
    max-width: 100%;
    height: auto;
  }
  /* .slido::before {
    left: 0;
    background-color: green;
    /* top: 0; */
  
  .slido .slide-track {
    -webkit-animation: scroll 50s linear infinite;
            animation: scroll 50s linear infinite;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(250px * 14);
    overflow: hidden;
  }
  .slide-track .slide{
    margin-right: 30px;
  }

/* SERVICES*/


.service-content{
	padding-bottom: 80px;
}
.service-content-grid {
	grid-template-columns: 1fr 1fr 1fr;
	padding: 80px 0px ;
	text-align: center;
	align-items: baseline;
}
.service-content-grid  img{
	padding: 30px 40px;
	border-bottom: 3px solid #000;
}
.service-content-grid  img{
	font-size: 18px;
	line-height: 16px;
	letter-spacing: .5px;
}
.service-content-grid >div:hover{
	transform: scale(1.1);
	transition: .2s;
}

/* partners */
.details-grid content h2{
	font-size: 25px;
	line-height: 32px;
}


/* hero */
/* .hero{
  float: left;
    margin: 0% 6%;
    max-height: 25em;
    position: relative;
    vertical-align: middle;
    width: 55%;
}
 */
p.first{
  font-size: 50px;
line-height: 48px;
margin-bottom: 25px;
}
p.second{
  font-size: 38px;
line-height: 48px;
margin-bottom: 25px;

}
 .hero-text {
   z-index:5;
   overflow: hidden;
  text-align: left;
  position: absolute;
  top: 18%;
  left: 5%;
  transform: translate(50px, 50px);
  color: white;
}

/* contact */
.contact-details{
	background-color: #000;
	padding: 50px 0 30px 0;
}
.contact-details h1{
	color: #fff;
	font-size: 48px;
line-height: 16px;
letter-spacing: .5px;
padding: 50px 0;
border-bottom: 2px solid #fff;
}
.address{
	justify-content: flex-start;
}

.address>ul{
	
	justify-content: space-between;
}
#map{
	margin-left: 10px;
	font-size: 14px;
	color: #fff;
	
}
#map:hover{
	color: #003BDE;
transition: .2s;
}

.address li{
	font-size: 18px;
line-height: 16px;
letter-spacing: .5px;
	padding: 30px 50px 70px 0 ;
	color: #fff;
}

/* careers */
.careers{
	width: 70%;
	margin: auto;
}
/* accordion */

.accordion_child{
	overflow: hidden;
}
.accordion {
  margin-top: 60px;
  /* padding-bottom: 100px; */
}
.accordion_content {
  width: 70%;
  overflow: hidden;
  margin: auto;
}
.accordion_content > h3 {
  font-weight: 600;
  font-size: 38px;
  line-height: 48px;
  color: #0073a1;
}

details {
  min-height: 5px;
  margin: 0 auto 30px auto;

  transition: all 0.3s;
}

/* details + details {
  margin-top: 20px;
} */

/* details[open] {
	min-height: 50px;
	background-color: #f6f7f8;
	box-shadow: 2px 2px 20px rgba(0,0,0,.2);
  }
   */
details p {
  font-size: 16px;
  line-height: 24px;
  color: #091540;
  padding: 30px 25px 50px 25px;
}

summary {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 25px;
  align-items: center;
  letter-spacing: 0.5px;
  border: 1px solid #000;

  color: #000;
}
.careers-details{
  overflow: hidden;
}

summary:focus {
  outline: none;
  /* box-shadow: 0 0 0 4px #f6f7f8, 0 0 0 5px rebeccapurple; */
}

summary::-webkit-details-marker {
  display: none;
}

.control-icon {
  transition: 0.3s ease;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: 0.3s ease;
}

details[open] .control-icon-expand {
  display: none;
}

details[open] summary:hover::after {
  animation: pulse 1s ease;
}

@keyframes pulse {
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width:918px){
.contact-details{
  margin-bottom: 120px;
}
}
@media only screen and (max-width: 850px){


.hero-text>p.first {
  font-size: 40px;
  margin-bottom: 5px
  }
  .hero-text>p.second {
    font-size: 25px;
    margin-bottom: 0;
  }
  .third{
    margin-top: 0;
  }
  .carousel-control h4.left, .carousel-control h4.right {
    font-size: 15px;
  }
}

@media only screen and (max-width: 850px)

{
  .hero-text>p.first {
    font-size: 30px;
}
.hero-text>p.second {
  font-size: 20px
}
.hero-text .third>a {
  font-size: 15px
}
.hero-text .third>a>span
{padding: 2px 8px;
}
}
@media only screen and (max-width: 768px){

.service-content-grid {
  grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 542px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width:646px){
.clients{
  margin-bottom: 130px;
}
}
@media only screen and (max-width:500px){
	.contact-details h1{
font-size: 35px;
  }
  
}
@media only screen and (max-width: 514px){
  .hero-text{
    left: 5%;
    transform: translate(10px,50px);
  }
}
@media only screen and (max-width: 445px){
 
.slido::before{
width: 200px;
}
}
@media only screen and (max-width: 375px){
.hero-text>p.first {
    font-size: 25px;
}
.carousel-control {
  width: 35%;}
  .contact-details h1 {
    font-size: 30px;
    padding-top: 0;
  }
}
/* @media only screen and (max-width: 2660px)

{
	p.first {
		font-size: 100px;
		margin-bottom: 65px;
  }
  p.second {
    font-size: 50px;
    margin-bottom: 50px
}
.third>a{
  font-size: 30px;
}
.third span{
  margin-left: 15px;
  padding: 10px 20px;
}
.third span>img{
width: 20px;
vertical-align: middle;
height: 25px;
}
.hero-text{
  top: 60%;
  transform: translate(100px, 100px);
}

} */
