body{
  margin: 0%;
  padding: 0%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* header start */

/* navigation start */
ul{
  list-style: none;
}

a{
  text-decoration: none;
}

header{
  position: sticky;
  top: 0px;
  background-color: #082f5b;
  max-width: 100%;
  z-index: 1000;
}

section{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(56, 165, 238, 0.5);
}

.header{
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container{
  flex: 1;
  display: flex;
  align-items: center;
  color: white;
  font-size: 1.5rem;
}

.logo-container h6{
  font-size: 1.5rem;
}

.logo-container img{
  width: 10vw;
  height: auto;
}
.nav-btn{
  padding-top: 4.5vh;
  flex: 3;
  display: flex;
}

.nav-links{
  flex: 2;
}

.logo{
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span{
  font-weight: 300;
}

.btn{
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid #fff;
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
  background-color: #fff;
  color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
  background-color: transparent;
  color: #fff;
}

.nav-links > ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link{
  position: relative;
}

.nav-link > a{
  line-height: 3rem;
  color: #fff;
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link > a > i{
  margin-left: .2rem;
}

.nav-link:hover > a{
  transform: scale(1.1);
}

.dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  width: 13rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  margin-left: -3rem;
}

.dropdown ul{
  position: relative;
}

.dropdown-link > a{
  display: flex;
  background-color: #fff;
  color: #3498db;
  padding: .5rem 1rem;
  font-size: 1rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover > a{
  background-color: #3498db;
  color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
  border-bottom: 1px solid #efefef;
}

.dropdown-link i{
  transform: rotate(-90deg);
}

.arrow{
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
  background-color: #3498db;
}

.dropdown-link{
  position: relative;
}

.dropdown.second{
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow{
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container{
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu{
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div{
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before{
  transform: translateY(-7px);
}

.hamburger-menu div:after{
  transform: translateY(7px);
}

#check{
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
  transform: translateY(0) rotate(45deg);
}

@keyframes animation{
  from{
      opacity: 0;
      transform: translateY(15px);
  }
  to{
      opacity: 1;
      transform: translateY(0px);
  }
}

@media (max-width: 920px){
  .hamburger-menu-container{
      display: flex;
  }

  #check{
      display: block;
  }

  .nav-btn{
      position: fixed;
      height: calc(100vh - 3rem);
      top: 3rem;
      left: 0;
      width: 100%;
      background-color: #69bde7;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      overflow-x: hidden;
      overflow-y: auto;
      transform: translateX(100%);
      transition: .65s;
  }

  #check:checked ~ .nav-btn{
      transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign{
      animation: animation .5s ease forwards var(--i);
  }

  .nav-links{
      flex: initial;
      width: 100%;
  }

  .nav-links > ul{
      flex-direction: column;
  }

  .nav-link{
      width: 100%;
      opacity: 0;
      transform: translateY(15px);
  }

  .nav-link > a{
      line-height: 1;
      padding: 1.6rem 2rem;
  }

  .nav-link:hover > a{
      transform: scale(1);
      background-color: #50a9d6;
  }

  .dropdown, .dropdown.second{
      position: initial;
      top: initial;
      left: initial;
      transform: initial;
      opacity: 1;
      pointer-events: auto;
      width: 100%;
      padding: 0;
      background-color: #3183ac;
      display: none;
  }
  
  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown{
      display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i{
      transform: rotate(360deg);
  }

  .dropdown-link > a{
      background-color: transparent;
      color: #fff;
      padding: 1.2rem 2rem;
      line-height: 1;
  }

  .dropdown.second .dropdown-link > a{
      padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a{
      padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)){
      border-bottom: none;
  }

  .arrow{
      z-index: 1;
      background-color: #69bde7;
      left: 10%;
      transform: scale(1.1) rotate(45deg);
      transition: .5s;
  }

  .nav-link:hover .arrow{
      background-color: #50a9d6;
  }

  .dropdown .dropdown .arrow{
      display: none;
  }

  .dropdown-link:hover > a{
      background-color: #3a91bd;
  }

  .dropdown-link:first-child:hover ~ .arrow{
      background-color: #50a9d6;
  }

  .nav-link > a > i{
      font-size: 1.1rem;
      transform: rotate(-90deg);
      transition: .7s;
  }

  .dropdown i{
      font-size: 1rem;
      transition: .7s;
  }
}
/* navigation end */

/* slide show start */
.slideshow{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slideshow-item{
  width: inherit;
  height: inherit;
  position: absolute;
  opacity: 0;
  animation:  carousel 61s infinite;
}

.slideshow-item:nth-child(1){
  animation-delay: 0;
}

.slideshow-item:nth-child(2){
  animation-delay: 12s;
}

.slideshow-item:nth-child(3){
  animation-delay: 24s;
}

.slideshow-item:nth-child(4){
  animation-delay: 36s;
}

.slideshow-item:nth-child(5){
  animation-delay: 48s;
}

.slideshow-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation:  zoom 26s infinite;
}

.slideshow-item:nth-child(1) img{
  animation-delay: 0;
}

.slideshow-item:nth-child(2) img{
  animation-delay: 5s;
}

.slideshow-item:nth-child(3) img{
  animation-delay: 10s;
}

.slideshow-item:nth-child(4) img{
  animation-delay: 15s;
}

.slideshow-item:nth-child(5) img{
  animation-delay: 20s;
}

.slideshow-item-text{
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(9, 49, 109, 0.815);
  color: white;
  padding: 10rem 5rem;
}

.slideshow-item-text h5{
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.slideshow-item-text p{
  font-size: 1.6rem;
  letter-spacing: 3px;
}

@keyframes carousel{
  25%{
      opacity: 1;
  }
  40%{
      opacity: 0;
  }
}

@keyframes zoom{
  100%{
    transform: scale(2);
  }
}

@media screen and (max-width:1000px){
  .slideshow-item-text{
    max-width: 70%;
    padding: 5rem 1rem;
  }
  .slideshow-item-text h5{
    font-size: 2rem;
  }
}

@media screen and (max-width:767px){
  .slideshow-item-text{
    max-width: 100%;
    padding: 2rem;
    top: initial;
    bottom: 0;
    transform: initial;
  }
  .slideshow-item-text h5{
    font-size: 2rem;
  }
  .slideshow-item-text p{
    font-size: 1.4rem;
  }
}
/* slide show end */

/* header end */

/* Service section start */
.home{
  display: flex;
  align-items: center;
  height: 30vh;
	width:100%;
}
.home:before{
	content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.9);
}
.home h3{
	position:absolute;
	font-size:74px;
	text-align: left;
  color:#009393;
  margin-left: 35%;
	font-weight:700;
}

@media only screen and (max-width:1000px){
    .home h3{
        margin: 0;
    }
}

@media only screen and (max-width:767px){
  .home h3{
      margin: 0;
  }
}

.stage{
	width: auto;
  margin-top: 15px;
  height: 100px;
  }
.cubespinner{
	-webkit-animation-name:spincube;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-duration:8s;
	animation-name:spincube;

	animation-timing-function:ease-in-out;
	animation-iteration-count:infinite;
	animation-duration:8s;
	-webkit-transform-style:preserve-3d;
	-moz-transform-style:preserve-3d;
	-ms-transform-style:preserve-3d;
	transform-style:preserve-3d;
	-webkit-transform-origin:40px 40px 0;
	-moz-transform-origin:40px 40px 0;
	-ms-transform-origin:40px 40px 0;
	transform-origin:40px 40px  0;
  }
.cubespinner div{
  position:absolute;
  width:400px;
  height:80px;
  text-align:center;
  color:#109393;
  font-family:'Raleway', sans-serif;
  font-size:65px;
  font-weight:700;
  margin-left: -35px;
  }
.cubespinner .face1{
  color:#f1c40f;
	-webkit-transform:translateZ(40px);
	-moz-transform:translateZ(40px);
	-ms-transform:translateZ(40px);
	transform:translateZ(40px);
	-webkit-backface-visibility: hidden;
}
.cubespinner .face2{
	color:#fff;
	-webkit-transform: rotateX(90deg) translateZ(40px);
	-moz-transform: rotateX(90deg) translateZ(40px);
	-ms-transform: rotateX(90deg) translateZ(40px);
	transform: rotateX(90deg) translateZ(40px);
	-webkit-backface-visibility: hidden;
}
.cubespinner .face3{
	color:#f85555;
	-webkit-transform:rotateX(180deg)  translateZ(40px);
	-moz-transform:rotateX(180deg)  translateZ(40px);
	-ms-transform:rotateX(180deg)  translateZ(40px);
	transform:rotateX(180deg)  translateZ(40px);
	-webkit-backface-visibility: hidden;
}
.cubespinner .face4{
	color:#fff;
	-webkit-transform:rotateX(270deg) translateZ(40px);
	-moz-transform:rotateX(270deg) translateZ(40px);
	-ms-transform:rotateX(270deg) translateZ(40px);
	transform:rotateX(270deg) translateZ(40px);
	-webkit-backface-visibility: hidden;
}


/*Cubical Flipping or rotation*/
@-webkit-keyframes spincube {
    from,to  { -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);}
    15%      { -webkit-transform: rotateX(90deg);}
    25%      { -webkit-transform: rotateX(90deg);}
    40%      { -webkit-transform: rotateX(180deg);}
    50%      { -webkit-transform: rotateX(180deg);}
    65%      { -webkit-transform: rotateX(270deg);}
	  75%      { -webkit-transform: rotateX(270deg);}
	  95%      { -webkit-transform: rotateX(360deg);}
	  100%      { -webkit-transform: rotateX(360deg);}
  }@keyframes spincube {
    from,to {
	  -webkit-transform: rotateX(0deg);
      -moz-transform: rotateX(0deg);
      -ms-transform: rotateX(0deg);
      transform: rotateX(0deg);
    }
    15% {
	  -webkit-transform: rotateX(90deg);
      -moz-transform: rotateX(90deg);
      -ms-transform: rotateX(90deg);
      transform: rotateX(90deg);
    }
	  25% {
	  -webkit-transform: rotateX(90deg);
      -moz-transform: rotateX(90deg);
      -ms-transform: rotateX(90deg);
      transform: rotateX(90deg);
    }
	  40% {
	  -webkit-transform: rotateX(180deg);
      -moz-transform: rotateX(180deg);
      -ms-transform: rotateX(180deg);
      transform: rotateX(180deg);
    }
	  50% {
	  -webkit-transform: rotateX(180deg);
      -moz-transform: rotateX(180deg);
      -ms-transform: rotateX(180deg);
      transform: rotateX(180deg);
    }
    65% {
	  -webkit-transform: rotateX(270deg);
      -moz-transform: rotateX(270deg);
      -ms-transform: rotateX(270deg);
      transform: rotateX(270deg);
    }
	  75% {
	  -webkit-transform: rotateX(270deg);
      -moz-transform: rotateX(270deg);
      -ms-transform: rotateX(270deg);
      transform: rotateX(270deg);
    }
	  90% {
	  -webkit-transform: rotateX(360deg);
      -moz-transform: rotateX(360deg);
      -ms-transform: rotateX(360deg);
      transform: rotateX(360deg);
    }
    100% {
	  -webkit-transform: rotateX(360deg);
      -moz-transform: rotateX(360deg);
      -ms-transform: rotateX(360deg);
      transform: rotateX(360deg);
    }
}


/* single service cards */
.allServicesContainer {
  color: #333;
  font-family: Arial, Helvetica, serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
  
.allServicesContainer h1 {
  background: #333;
  color: #fff;
  text-align: center;
  margin: 0 0 5% 0;
  padding: 0.5em;
    margin: 0 0 5% 0;
  }

.serviceBox {
  float: left;
  font-size: 1.2em;
  margin: 1% 0 0 1%;
  perspective: 800px;
  transition: all 0.3s ease 0s;
  width: 23.7%;
}

.serviceBox:hover .serviceCard {
  transform: rotateY( 180deg);
}

.serviceCard {
  background: rgba(34, 34, 34, 0.432);
  cursor: default;
  height: 300px;
  transform-style: preserve-3d;
  transition: transform 2s ease 0s;
  width: 100%;
  -webkit-animation: giro 1s 1;
  animation: giro 1s 1;
  }
  
  .serviceCard p {
    margin-bottom: 1.8em;
  }
  
  .serviceCard .front,
  .serviceCard .back {
    backface-visibility: hidden;
    box-sizing: border-box;
    color: white;
    display: block;
    font-size: 1.2em;
    height: 100%;
    padding: 0.8em;
    position: absolute;
    text-align: center;
    width: 100%;
  }
  
  .front{
    background-image: url("./images/service_card_front.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .front h3{
    margin-top: 30%;
    padding-bottom: .8vh;
    background-color: rgba(0, 0, 0, 0.527);
  }
  .serviceCard .front strong {
    background: #fff;
    border-radius: 100%;
    color: #222;
    font-size: 1.5em;
    line-height: 30px;
    padding: 0 7px 4px 6px;
  }
  
  .serviceCard .back {
    transform: rotateY( 180deg);
  }
  
  .serviceCard .back a {
    padding: 0.3em 0.5em;
    color: #fff;
    text-decoration: none;
    border-radius: 1px;
    font-size: 0.9em;
    transition: all 0.2s ease 0s;
  }
  
  .serviceCard .back a:hover {
    background: #fff;
    color: #333;
    text-shadow: 0 0 1px #333;
  }
  
  .serviceBox:nth-child(1) .serviceCard .back {
    background: cornflowerblue;
  }
  
  .serviceBox:nth-child(2) .serviceCard .back {
    background: orange;
  }
  
  .serviceBox:nth-child(3) .serviceCard .back {
    background: yellowgreen;
  }
  
  .serviceBox:nth-child(4) .serviceCard .back {
    background: tomato;
  }
  
  .cardBox:nth-child(2) .serviceCard {
    -webkit-animation: giro 1.5s 1;
    animation: giro 1.5s 1;
  }
  
  .serviceBox:nth-child(3) .serviceCard {
    -webkit-animation: giro 2s 1;
    animation: giro 2s 1;
  }
  
  .serviceBox:nth-child(4) .serviceCard {
    -webkit-animation: giro 2.5s 1;
    animation: giro 2.5s 1;
  }
  
  @-webkit-keyframes giro {
    from {
      transform: rotateY( 180deg);
    }
    to {
      transform: rotateY( 0deg);
    }
  }
  
  @keyframes giro {
    from {
      transform: rotateY( 180deg);
    }
    to {
      transform: rotateY( 0deg);
    }
  }

  @media screen and (max-width: 1000px) {
    .serviceBox {
      margin-left: 2.8%;
      margin-top: 3%;
      width: 46%;
    }
    .serviceCard {
      height: 285px;
    }
    .serviceBox:last-child {
      margin-bottom: 3%;
    }
    .cubespinner .face1 .face2 .face3 .face4{
      font-size: 2rem;
    }
    }
    .cubespinner .face1 .face2 .face3 .face4{
      font-size: 2rem;
    }
  
  @media screen and (max-width: 767px) {
    .serviceBox {
      margin-left: 2.8%;
      margin-top: 3%;
      width: 46%;
    }
    .serviceCard {
      height: 285px;
    }
    .serviceBox:last-child {
      margin-bottom: 3%;
    }
    .cubespinner .face1 .face2 .face3 .face4{
    font-size: 2rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .serviceBox {
      width: 94.5%;
    }
    .serviceCard {
      height: 260px;
    }
    .cubespinner .face1 .face2 .face3 .face4{
      font-size: 2rem;
    }
  }


/* Service section end */


/* About us section start */
.aboutUs{
  width: 100%;
  padding: 5vh;
  background-image: url(./images/background3.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.aboutUsHeader{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.527);
  width: 80%;
  margin-left: 10%;
  color: white;
  font-size: 35px;
}

.aboutUsHeader h3{
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 900;
}

.aboutUsContent{
  text-align: center;
  background-color: rgba(0, 0, 0, 0.541);
  width: 80%;
  margin-left: 10%;
  color: white;
}
.aboutUsContent h4, .aboutUsContent h2, .aboutUsHeader h3{
  padding: 2%;
}

@media screen and (max-width: 767px) {
  .aboutUsContent{
    width: 100%;
    margin: 0%;
  }
  .aboutUsHeader{
    width: 100%;
    margin: 0%;
  }
}

@media screen and (max-width: 480px) {
  .aboutUsContent{
    width: 100%;
    margin: 0%;
  }
  .aboutUsHeader{
    width: 100%;
    margin: 0%;
  }
}

/* our clients start */
.ourClientsSection{
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: rgba(255, 255, 255, 0.082);
}
.ourClintsHeder{
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4%;
  background-color: rgba(0,0,0,.5);
  color: white;
  width: 100%;
}
.single-logo img{
  border-radius: 50%;
}
.section-padding{
padding: 0;
}
.owl-dots {
text-align: center;
margin-top: 4%;
padding-bottom: 4%;
}
.owl-dot {
display: inline-block;
height: 15px !important;
width: 15px !important;
background-color: #878787 !important;
opacity: 0.8;
border-radius: 50%;
margin: 0 5px;
}
.owl-dot.active {
background-color: #000 !important;
}
  
/* our clients end */

/* Our team section start*/
.teamHeader{
  background-color: rgba(0, 0, 0, 0.527);
  width: 100%;
  color: white;
  font-weight: 900;
}
.team-item img{
  height: 45vh;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .team-item img{
    height: 60vh;
  }
  .team-item{
    padding-right: 20PX;
  }
}
@media screen and (max-width: 767px) {
  .team-item img{
    height: 60vh;
  }
}@media screen and (max-width: 480px) {
  .team-item img{
    height: 60vh;
  }
}
@media screen and (max-width: 767px) {
  .teamHeader h1{
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .teamHeader h1{
    font-size: 20px;
  }
}
.ourTeam{
  width: 100%;
  padding-top: 5vh;
  background-image: url(./images/backgroung1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.team {
  text-align: center
}

.section {
  padding: 60px 0
}

.section-title {
  text-align: center;
  font-size: 40px;
  position: relative;
  margin-bottom: 40px;
  margin-top: 0
}

.team .team-item {
  text-align: left;
  margin-bottom: 30px
}

.team .team-item figure {
  position: relative;
  overflow: hidden
}



.team .team-item figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(9, 9, 9, .6);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease
}

.team .team-item figure figcaption .info {
  position: absolute;
  color: #fff;
  float: left;
  bottom: 10px;
  left: 20px;
  margin-left: -80px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease
}

.team .team-item figure:hover figcaption {
  opacity: 1
}

.team .team-item figure:hover figcaption .info {
  margin-left: 0
}

.team .team-item figure figcaption .info h3 {
  font-size: 20px
}

.team .team-item figure figcaption .info p {
  color: #fff
}

.team .team-item figure:hover figcaption .social {
  margin-bottom: 0
}

.team .team-item figure figcaption .social {
  position: absolute;
  float: right;
  bottom: 28px;
  margin-bottom: -80px;
  right: 20px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease
}

.team .team-item figure figcaption .social a {
  color: #fff;
  font-size: 15px;
  width: 36px;
  height: 36px;
  background: #3f51b5;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  border-radius: 2px
}

/* Our team section end*/

/* testimonial start */
.testimonial{
  width: 100%;
  padding-top: 5vh;
  background-image: url(./images/background3.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial-header{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.589);
  color: white;
  font-size: 50px;
}
@media screen and (max-width: 1000px) {
  .testimonial-header h1{
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial-header h1{
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-header h1{
    font-size: 20px;
  }
}
.container-fluid {
  margin-top: 200px !important
}

p {
  font-size: 20px;
  line-height: 33px !important;
  color: #fff
}

.small {
  letter-spacing: 0.5px !important
}

.card {
  box-shadow: 0px 5px 16px rgba(223, 241, 223, 0.5);
  transition: 0.8s;
  background: #333;
  ;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 7px !important
}

.card-header,
.card-footer {
  border-radius: 7px !important
}

.card:after {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  z-index: 9999;
  height: 100%;
  pointer-events: none
}

.card-title img {
  z-index: 99999 !important
}

.card .layer {
  position: absolute;
  top: calc(100% - 5px);
  width: 100%;
  height: 100%;
  background: linear-gradient(#03a9f4, #e91ee3);
  left: 0;
  z-index: 1;
  transition: 0.5s
}

.card:hover {
  box-shadow: -5px 50px 100px rgba(223, 241, 223, 0.5)
}

.card:hover hr {
  background-color: #fff
}

.card:hover h4 {
  font-weight: 600
}

.card:hover p {
  font-weight: 600
}

.card:hover small {
  font-weight: 600
}

.card:hover .layer {
  top: 0
}

.card .content {
  position: relative;
  z-index: 2
}

.card .content .img-1 {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white !important
}

.card h4 {
  color: #fff;
  font-weight: 500
}

hr {
  background-color: rgb(117, 117, 117);
  width: 80% !important;
  transition: 1s
}

.bold {
  font-weight: 500
}

#quotes {
  opacity: 0.1;
  filter: alpha(opacity=40)
}

@media (max-width: 479px) {
  p {
      padding: 0 !important
  }

  .img-1 {
      margin-right: 0 !important
  }
}
/* testimonial end */


.contactForm {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+50,9105ff+50,9105ff+50 */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(
    -45deg,
    #ffffff 50%,
    #ff3700 50%,
    #ff3700 50%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    -45deg,
    #ffffff 50%,
    #ff3700 50%,
    #ff3700 50%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    135deg,
    #ffffff 50%,
    #ff3700 50%,
    #ff3700 50%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#9105ff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  font-size: 18px;
  width: 100%;
  height: 100vh;
}
.contactUsContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  background: #fff;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.151);
  border-radius: 0.5em;
}

.contactUsContainer h1 {
  color: #ff3700;
  font-weight: bold;
  margin: 0 0 30px;
  padding: 0;
  text-transform: uppercase;
}

.contactUsContainer input {
  outline: none;
  padding: 15px 15px;
  margin-bottom: 30px;
  font-size: 16px;
}

.contactUsContainer textarea {
  height: 80px;
  padding: 10px 15px;
  margin-bottom: 20px;
  resize: none;
  font-size: 16px;
}

.contactUsContainer input,
textarea {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #999;
}

.contactUsContainer button {
  background-color: #ff3700;
  font-size: 18px;
  outline: none;
  padding: 15px 30px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 0.5em;
  border: none;
  color: #fff;
  cursor: pointer;
}

.contactUsContainer button:hover {
  background-color: #cc2c00;
}

.contactUsContainer form div {
  position: relative;
}

.contactUsContainer form div label {
  position: absolute;
  top: 10px;
  left: 0;
  pointer-events: none;
  color: #999;
  transition: 0.3s;
}

.contactUsContainer input:focus ~ label,
.contactUsContainer textarea:focus ~ label,
.contactUsContainer input:valid ~ label,
.contactUsContainer textarea:valid ~ label {
  top: -12px;
  left: 0;
  color: #ff3700;
  font-size: 16px;
  font-weight: bold;
}

.contactUsContainer input:focus,
.contactUsContainer textarea:focus,
.contactUsContainer input:valid,
.contactUsContainer textarea:valid {
  border-bottom: 1px solid #ff3700;
}

/* Responsive codes */
@media only screen and (max-width: 1000px) {
  .contactUsContainer {
    width: 300px;
    padding: 60px;
  }

@media only screen and (max-width: 720px) {
  .contactUsContainer {
    width: 300px;
    padding: 25px;
  }

  input,
  textarea,
  label {
    font-size: 18px;
  }
}
}

/* social media icons */

.socialMediaIcons {
  background: #ff3700;
  font-family: 'Roboto Condensed', sans-serif;
  height: 50vh;
}

.socialMediaIcons ul {
  position: relative;
  top:50%;
  left:70%;
  transform:translate(-50%, -50%);
  display:flex;
  margin:0;
  padding:0;
}

.socialMediaIcons ul li {
  list-style:none;
  margin:0 5px;
}

.socialMediaIcons ul li a .fa {
  font-size: 40px;
  color: #262626;
  line-height:80px;
  transition: .5s;
  padding-right: 14px;
}

.socialMediaIcons ul li a span {
  padding:0;
  margin:0;
  position:absolute;
  top: 30px;
  color: #262626;
  letter-spacing: 4px;
  transition: .5s;
}

.socialMediaIcons ul li a {
  text-decoration: none;
  display:absolute;
  display:block;
  width:210px;
  height:80px;
  background: #fff;
  text-align:left;
  padding-left: 20px;
  transform: rotate(-30deg) skew(25deg) translate(0,0);
  transition:.5s;
  box-shadow: -20px 20px 10px rgba(0,0,0,.5);
}
.socialMediaIcons ul li a:before {
  content: '';
  position: absolute;
  top:10px;
  left:-20px;
  height:100%;
  width:20px;
  background: #b1b1b1;
  transform: .5s;
  transform: rotate(0deg) skewY(-45deg);
}
.socialMediaIcons ul li a:after {
  content: '';
  position: absolute;
  bottom:-20px;
  left:-10px;
  height:20px;
  width:100%;
  background: #b1b1b1;
  transform: .5s;
  transform: rotate(0deg) skewX(-45deg);
}

.socialMediaIcons ul li a:hover {
  transform: rotate(-30deg) skew(25deg) translate(20px,-15px);
  box-shadow: -50px 50px 50px rgba(0,0,0,.5);
}

.socialMediaIcons ul li:hover .fa {
  color:#fff;
}

.socialMediaIcons ul li:hover span {
  color:#fff;
}

.socialMediaIcons ul li:hover:nth-child(1) a{
  background: #3b5998;
}
.socialMediaIcons ul li:hover:nth-child(1) a:before{
  background: #365492;
}
.socialMediaIcons ul li:hover:nth-child(1) a:after{
  background: #4a69ad;
}

.socialMediaIcons ul li:hover:nth-child(2) a{
  background: #00aced;
}
.socialMediaIcons ul li:hover:nth-child(2) a:before{
  background: #097aa5;
}
.socialMediaIcons ul li:hover:nth-child(2) a:after{
  background: #53b9e0;
}

.socialMediaIcons ul li:hover:nth-child(3) a{
  background: #dd4b39;
}
.socialMediaIcons ul li:hover:nth-child(3) a:before{
  background: #b33a2b;
}
.socialMediaIcons ul li:hover:nth-child(3) a:after{
  background: #e66a5a;
}

.socialMediaIcons ul li:hover:nth-child(4) a{
  background: #0a66c2;
}
.socialMediaIcons ul li:hover:nth-child(4) a:before{
  background: #0a66c2;
}
.socialMediaIcons ul li:hover:nth-child(4) a:after{
  background: #0a66c2;
}

@media screen and (max-width: 1000px) {
  .socialMediaIcons ul{
    display: inline-block;
  }
  .socialMediaIcons{
    height: 70vh;
  }
}

@media screen and (max-width: 767px) {
  .socialMediaIcons ul{
    display: inline-block;
    left: 50%;
  }
  .socialMediaIcons{
    height: 70vh;
  }
}

@media screen and (max-width: 480px) {
  .socialMediaIcons ul{
    display: inline-block;
  }
  .socialMediaIcons{
    height: 70vh;
  }
}
/* footer */

.col_white_amrc { color:#FFF;}
footer { width:100%; background-color:#02153d; min-height:250px; padding:10px 0px 25px 0px ;}
.pt2 { padding-top:40px ; margin-bottom:20px ;}
footer p { font-size:16px; color:#CCC; padding-bottom:0px; margin-bottom:8px;}
.mb10 { padding-bottom:15px ;}
.footer_ul_amrc { margin:0px ; list-style-type:none ; font-size:14px; padding:0px 0px 10px 0px ; }
.footer_ul_amrc li {padding:0px 0px 5px 0px;}
.footer_ul_amrc li a{ color:#CCC;font-size: 16px;}
.footer_ul_amrc li a:hover{ color:#fff; text-decoration:none;}
.fleft { float:left;}
.padding-right { padding-right:10px; }

.footer_ul2_amrc {margin:0px; list-style-type:none; padding:0px;}
.footer_ul2_amrc li p { display:table; }
.footer_ul2_amrc li a:hover { text-decoration:none;}
.footer_ul2_amrc li i { margin-top:5px;}

.bottom_border { border-bottom:1px solid #323f45; padding-bottom:20px;}
.foote_bottom_ul_amrc {
	list-style-type:none;
	padding:0px;
	display:table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.foote_bottom_ul_amrc li { display:inline;}
.foote_bottom_ul_amrc li a { color:#999; margin:0 12px;}

.social_footer_ul { display:table; margin:15px auto 0 auto; list-style-type:none;  }
.social_footer_ul li { padding-left:20px; padding-top:10px; float:left; }
.social_footer_ul li a { color:#CCC; border:1px solid #CCC; padding:8px;border-radius:50%;}
.social_footer_ul li i {  width:20px; height:20px; text-align:center;}

@media screen and (max-width: 1000px) {
  .foote_bottom_ul_amrc{
    display: inline-block;
  }
  footer{
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .foote_bottom_ul_amrc{
    display: inline-block;
  }
  footer{
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .foote_bottom_ul_amrc{
    display: inline-block;
  }
  footer{
    width: 100%;
  }
}

.phoneCall {
  position: fixed;
  top: 70%;
  left: 95%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  margin-right: -8vw;
  border-radius: 7px;
}

.phoneCall a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  font-size: 20px; 
}
.phoneCall img{
  height: auto;
  width: 4vw;
  border-radius: 50%;
  background-color: #03e9f4;
  box-shadow: 0px 0px 5px #03e9f4, 0px 0px 25px #03e9f4, 0px 0px 50px #03e9f4, 0px 0px 100px #03e9f4;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005); 
}

.phoneCall:hover{
  margin-right: 19vw;
  left: 86%;
  background-color: #03e9f4;
  color: #050801;
}

@media screen and (max-width: 1000px) {
  .phoneCall{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .phoneCall{
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .phoneCall{
    display: none;
  }
}
