/*teamcreative.events*/

body{
    margin: 0;
    font-family: 'Chivo', sans-serif;
}
#header{
    background-image: url('images/background1.jpg');   
    background-repeat: no-repeat; 
    width: 100%;
    height: 620px;
}
#row1{
    --bs-gutter-x: none;
}
.team-logo{
    padding-top: 20px;
	  width: 315px;
}

@media screen and (max-width: 1350px){
	.team-logo{
		width: 250px;
	}
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 3.5rem;
}
#navbarNav{
    padding-top: 25px;
    padding-left: 215px;
}
.nav-item a{
    font-family: "chivo";
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #c1c1c1;
}

.nav-item a {
    position: relative;
    display: block;
    padding: 16px 0;
    margin: 0 12px;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 28px; 
    font-weight: 500;
    transition: color 0.1s,background-color 0.1s,padding 0.2s ease-in;
    color: #ffffff;
}
.nav-item a:hover{
  color:#F27024
}
.nav-item a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #e4007d;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: color 0.1s,transform 0.2s ease-out;
}
.nav-item a:active::before {
    background-color: #000;
}
.nav-item a:hover::before, a:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
#text-column{
    padding-top: 126px;
}
@media screen and (max-width: 1350px){
	#text-column{
		padding-top: 20px;
	}
}
#text1{
    font-size: 50px;
    color: white;
    line-height: 3rem;
    font-family: 'Chivo', sans-serif;
}
@media screen and (max-width: 1350px){
	#text1{
		font-size: 31px;
	}
}
#text2{
    font-size: 50px;
    color: #F27024;
}
@media screen and (max-width: 1350px){
	#text2{
		font-size: 31px;
	}
}
#text3{
    font-family: "Segoe UI";
    font-size: 20px;
    color: white;
}
@media screen and (max-width: 1350px){
	#text3{
		font-size: 14px;
	}
}
.carousel{
    padding-top: 40px;
}

@media screen and (max-width: 1350px){
	.carousel{
		padding-top: 15px;
	}
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}
.carousel-indicators {
    bottom: -50px;
}
#icon-group{
    background: #F27024;
    height: 118px;
    width: 40px;
    line-height: 2.5rem;
    text-align: center;
	border-radius: 12px 0px
} 

@media screen and (max-width: 1350px){
	#icon-group{
		background: #F27024;
		line-height: 0rem;
		height: 0px;
		width: 0px;
		padding-top: -30px;
	}
}

#icon-group1{
    background: #F27024;
    top: 400px;
    width: 150px;
    height: 40px;
    text-align: center;
    padding-top: 5px;
	margin-top: -7px;
	margin-left: 105px;
	border-radius: 12px 0px
}

.icons-image{
    width: 25px;
}
#logos-position{
    padding-left: 82px;
    padding-top: 145px;
}

@media screen and (max-width: 1350px){
	#logos-position{
		padding-left: 0px;
		padding-top: 45px;
	}
}

#second-carosel{
    padding-bottom: 50px;
}
.para-content{
    text-align: center;
    color: #f16f21;
    font-size: 40px;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 35px;
    font-family: 'Chivo', sans-serif;
}

@media screen and (max-width: 1350px){
	.para-content{
		font-size: 30px;
	}
}

.content-first{
    font-size: 16px;
    text-align: justify;
    padding-bottom: 20px;
    line-height: 30px;
    font-family: 'Chivo', sans-serif;
}
#image-green{
    background-image: url('images/image-green.jpg');
	width: 100%;
}
#scroll-text{
	padding-top: 20px;
	padding-bottom: 40px;
    margin-top: 40px;
}
#logo-scroll{
    width: 250px;
}

.flipX {
    animation: 3s anim-flipX ease infinite;
  }
  @keyframes anim-flipX {
    0% {
      opacity: 0;
      transform: rotateX(90def);
    }
    50% {
      opacity: 1;
      transform: rotateX(720deg);
    }
    100% {
      /* animate nothing to pause animation at the end */
      opacity: 1;
      transform: rotateX(720deg);
    }
  }

  .lineUp {
    animation: 3s anim-lineUp ease-out infinite;
  }
  @keyframes anim-lineUp {
    0% {
      opacity: 0;
      transform: translateY(80%);
    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 1;
      transform: translateY(0%);
    }
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }

  .flipY {
    animation-name: spin, depth;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 8s;
  }
  @keyframes spin {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(-360deg);
    }
  }
  @keyframes depth {
    0% {
      text-shadow: 0 0 black;
    }
    25% {
      text-shadow: 1px 0 black, 2px 0 black, 3px 0 black, 4px 0 black, 5px 0 black;
    }
    50% {
      text-shadow: 0 0 black;
    }
    75% {
      text-shadow: -1px 0 black, -2px 0 black, -3px 0 black, -4px 0 black,
        -5px 0 black;
    }
    100% {
      text-shadow: 0 0 black;
    }
  }

  .pop-outin {
    animation: 4s anim-popoutin ease infinite;
  }
  
  @keyframes anim-popoutin {
    0% {
      color: black;
      transform: scale(0);
      opacity: 0;
      text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    25% {
      color: red;
      transform: scale(2);
      opacity: 1;
      text-shadow: 3px 10px 5px rgba(0, 0, 0, 0.5);
    }
    50% {
      color: black;
      transform: scale(1);
      opacity: 1;
      text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      /* animate nothing to add pause at the end of animation */
      transform: scale(1);
      opacity: 1;
      text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
    }
  }

.para-content2{
    text-align: justify;
    font-size: 16px;
    line-height: 30px;
	padding-top: 35px;
    font-family: 'Chivo', sans-serif;
}
.image-event-experience{
    width: 1000px;
    height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer{
    background: #3d3d3d;
    color: white;
    text-align: center;
}
.footer-content{
    padding-top: 40px;
    padding-bottom: 40px;
	margin-bottom: 0rem;
    font-family: 'Chivo', sans-serif;
}



