@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
$main-green: #79dd09 !default;
$main-green-rgb-015: rgba(121, 221, 9, 0.1) !default;
$main-yellow: #bdbb49 !default;
$main-yellow-rgb-015: rgba(189, 187, 73, 0.1) !default;
$main-red: #bd150b !default;
$main-red-rgb-015: rgba(189, 21, 11, 0.1) !default;
$main-blue: #0076bd !default;
$main-blue-rgb-015: rgba(0, 118, 189, 0.1) !default;

/* This pen */


.dark {
	background: #110f16;
}


.light {
	background: #f3f5f7;
}

a, a:hover {
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
	margin: 2rem 0;
	text-transform: uppercase;
	text-align: center;
	font-size: 2.5rem;
}

/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;

  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;

	&.dark {
		background-color: #18151f;
	}
	&.light {
		background-color: #e1e5ea;
	}

	.t-dark {
		color: #18151f;
	}

  a {
    color: inherit;
  }



	.small {
		font-size: 80%;
	}

  .postcard__title {
    font-size: 1.75rem;
  }

  .postcard__img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  .postcard__img_link {
    display: contents;
  }

  .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
  }

  .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
  }

  .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
		padding: 0;
    justify-content: center;

    .tag__item {
      display: inline-block;
      background: rgba(83, 83, 83, 0.4);
      border-radius: 3px;
      padding: 2.5px 10px;
      margin: 0 5px 5px 0;
      cursor: default;
      user-select: none;
      transition: background-color 0.3s;

      &:hover {
        background: rgba(83, 83, 83, 0.8);
      }
    }
  }

  &:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
  }

  &:hover .postcard__bar {
    width: 100px;
  }
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;

    .postcard__title {
      font-size: 2rem;
    }

    .postcard__tagbox {
      justify-content: start;
    }

    .postcard__img {
      max-width: 300px;
      max-height: 100%;
      transition: transform 0.3s ease;
    }

    .postcard__text {
      padding: 3rem;
      width: 100%;
    }

    .media.postcard__text:before {
      content: "";
      position: absolute;
      display: block;
      background: #18151f;
      top: -20%;
      height: 130%;
      width: 55px;
    }

    &:hover .postcard__img {
      transform: scale(1.1);
    }

    &:nth-child(2n+1) {
      flex-direction: row;
    }

    &:nth-child(2n+0) {
      flex-direction: row-reverse;
    }

    &:nth-child(2n+1) .postcard__text::before {
      left: -12px !important;
      transform: rotate(4deg);
    }

    &:nth-child(2n+0) .postcard__text::before {
      right: -12px !important;
      transform: rotate(-4deg);
    }
  }
}
@media screen and (min-width: 1024px){
		.postcard__text {
      padding: 2rem 3.5rem;
    }

		.postcard__text:before {
      content: "";
      position: absolute;
      display: block;

      top: -20%;
      height: 130%;
      width: 55px;
    }

  .postcard.dark {
		.postcard__text:before {
			background: #000000;
		}
  }
	.postcard.light {
		.postcard__text:before {
			background: #ffffff;
		}
  }
}

/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
	background: $main-green;
	color: black;
}
.green .postcard__title:hover {
	color: $main-green;
}
.green .postcard__bar {
	background-color: $main-green;
}
.green::before {
	background-image: linear-gradient(
		-30deg,
		$main-green-rgb-015,
		transparent 50%
	);
}
.green:nth-child(2n)::before {
	background-image: linear-gradient(30deg, $main-green-rgb-015, transparent 50%);
}

.postcard .postcard__tagbox .blue.play:hover {
	background: $main-blue;
}
.blue .postcard__title:hover {
	color: $main-blue;
}
.blue .postcard__bar {
	background-color:black;
}
.blue::before {
	background-image: linear-gradient(-30deg, $main-blue-rgb-015, transparent 50%);
}
.blue:nth-child(2n)::before {
	background-image: linear-gradient(30deg, $main-blue-rgb-015, transparent 50%);
}

.postcard .postcard__tagbox .red.play:hover {
	background: $main-red;
}
.red .postcard__title:hover {
	color: $main-red;
}
.red .postcard__bar {
	background-color: $main-red;
}
.red::before {
	background-image: linear-gradient(-30deg, $main-red-rgb-015, transparent 50%);
}
.red:nth-child(2n)::before {
	background-image: linear-gradient(30deg, $main-red-rgb-015, transparent 50%);
}

.postcard .postcard__tagbox .yellow.play:hover {
	background: $main-yellow;
	color: black;
}
.yellow .postcard__title:hover {
	color: $main-yellow;
}
.yellow .postcard__bar {
	background-color: $main-yellow;
}
.yellow::before {
	background-image: linear-gradient(
		-30deg,
		$main-yellow-rgb-015,
		transparent 50%
	);
}
.yellow:nth-child(2n)::before {
	background-image: linear-gradient(
		30deg,
		$main-yellow-rgb-015,
		transparent 50%
	);
}

@media screen and (min-width: 769px) {
	.green::before {
		background-image: linear-gradient(
			-80deg,
			$main-green-rgb-015,
			transparent 50%
		);
	}
	.green:nth-child(2n)::before {
		background-image: linear-gradient(
			80deg,
			$main-green-rgb-015,
			transparent 50%
		);

	}

	.blue::before {
		background-image: linear-gradient(
			-80deg,
			$main-blue-rgb-015,
			transparent 50%
		);
	}
	.blue:nth-child(2n)::before {
		background-image: linear-gradient(80deg, $main-blue-rgb-015, transparent 50%);
	}

	.red::before {
		background-image: linear-gradient(-80deg, $main-red-rgb-015, transparent 50%);
	}
	.red:nth-child(2n)::before {
		background-image: linear-gradient(80deg, $main-red-rgb-015, transparent 50%);
	}

	.yellow::before {
		background-image: linear-gradient(
			-80deg,
			$main-yellow-rgb-015,
			transparent 50%
		);
	}
	.yellow:nth-child(2n)::before {
		background-image: linear-gradient(
			80deg,
			$main-yellow-rgb-015,
			transparent 50%
		);
	}
}

.wag-col-white{
color: #ffffff;
}
/* IMPACT - By DistinctiveThemes */

@import url(http://fonts.googleapis.com/css?family=Lato:400,700,300);

.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

.hide-text {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.input-block-level {
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#hr-1 {
    border-top: 1px solid rgb(248, 246, 246) !important;
    border-bottom: 1px solid rgb(253, 251, 251) !important;
}



.btn-transparent {
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
}

.btn-transparent:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

a:hover,
a:focus {
    color:brown;
    text-decoration: none;
    outline: none;
}

.dropdown-menu {
    margin-top: -1px;
    min-width: 180px;
}



.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16/9 ratio */
    padding-top: 30px;
    /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

blockquote {
    background-color: #fff;
}




/*  SKILLS
/*-----------------------------------------------------------------------------------*/

.tile-progress {
    background-color: #303641;
    color: #fff;
}

.tile-progress {
    background: #00a65b;
    color: #fff;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.tile-progress .tile-header {
    padding: 15px 20px;
    padding-bottom: 40px;
    text-align: center;
}

.tile-progress .tile-progressbar {
    height: 4px;
    background: rgba(0, 0, 0, 0.18);
    margin: 0;
}

.tile-progress .tile-progressbar span {
    background: #fff;
}

.tile-progress .tile-progressbar span {
    display: block;
    background: #fff;
    width: 0;
    height: 100%;
    -webkit-transition: all 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -moz-transition: all 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    -o-transition: all 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
    transition: all 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.tile-progress .tile-footer {
    padding: 10px 20px;
    text-align: left;
    -moz-background-clip: padding;
    border-radius: 0 0 3px 3px;
    background-clip: padding-box;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    float: left;
    position: relative;
    margin-top: -30px;
}

.tile-progress.tile-red {
    background-color: #fff;
    color: #202020;
}

.tile-progress .tile-progressbar span {
    background: #202020;
}

.tile-progress.tile-red .tile-footer {
    background: #050100;
    color: #fff;
}

.tile-progress.tile-cyan {
    background-color: #fff;
    color: #202020;
}

.tile-progress.tile-cyan .tile-progressbar span {
    background: #202020;
}

.tile-progress.tile-cyan .tile-footer {
    background: #00b29e;
    color: #fff;
}

.tile-progress {
    background-color: #fff;
    color: #202020;
}

.tile-progress .tile-progressbar span {
    background: #202020;
}

.tile-progress .tile-footer {
    background: #303641;
    color: #fff;
}

.tile-progress.tile-pink {
    background-color: #fff;
    color: #202020;
}

.tile-progress.tile-pink .tile-progressbar span {
    background: #202020;
}

.tile-progress.tile-pink .tile-footer {
    background: #ec3b83;
    color: #fff;
}




/*  TESTIMONIALS
/*-----------------------------------------------------------------------------------*/

#quote-carousel .carousel-indicators {
    right: 50%;
    top: auto;
    bottom: 0;
    margin-right: -19px;
}

#quote-carousel .carousel-indicators li {
    background: silver;
}

#quote-carousel .carousel-indicators .active {
    background: #333;
}

#quote-carousel img {
    width: 250px;
    height: 100px;
}

.item blockquote {
    border-left: none;
    margin: 0;
    background-color: transparent;
    border-color: #101010;
}

.item blockquote img {
    margin-bottom: 10px;
}

.item blockquote p:before {
    content: "\f10d";
    font-family: Fontawesome;
    float: left;
    margin-right: 10px;
}

.testimonial-list-item:hover blockquote {
    border-left: 4px solid #0a0a0a;
}

.quote-author-list {
    max-width: 95px;
    height: auto;
    padding: 10px 0 10px 15px;
    margin-right: 19px;
    position: relative;
}

.ticketResolution{
    width:300%;
}
@media screen and (min-width:768px) {
    #quote-carouse {
        margin-bottom: 0;
        padding: 0 40px 30px;
        margin-top: 30px;
    }
    #main-slider .carousel,
    #main-slider .carousel-inner,
    #main-slider .carousel-inner .item,
    #main-slider .carousel-inner .item .container,
    #main-slider .carousel-inner .item .row,
    #main-slider .carousel-inner .item .row .col-sm-12 {
        height: 100vh;
    }

}

@media screen and (max-width:769px) {
    #quote-carousel .carousel-indicators {
        bottom: -20px !important;
    }
    #quote-carousel .carousel-indicators li {
        display: inline-block;
        margin: 0 5px;
        width: 15px;
        height: 15px;
    }
    #quote-carousel .carousel-indicators li.active {
        margin: 0 5px;
        width: 20px;
        height: 20px;
    }
    .navbar-brand-resize{
        display: block;
        padding: 5px 15px;
        line-height: 50px;
    }
    .navbar-brand{
        display: none;
    }
    .logo-details-resize{
        display:none;
    }
    .navbar-brand-resize{
        padding: 15px 15px;
    }
    .ticketResolution{
        width:100%;
    }
}
@media screen and (max-width:2560px) and (min-width:770px){

    .navbar-brand{
        display: block;
    }
    .navbar-brand-resize{
        display: none;
    }
    .wag-para2{
    display:none;
    }
}

@media screen and (max-width:1030px)
{
    .navbar-brand{
        padding:10px 0 0 0;
    }

}
@media screen and (max-width:990px) and (min-width:770px) {

    .logo-hide{
        display: none;
    }
}

@media screen and (max-width:460px) {

    .navbar-header{
        font-size:16px;
    }
    .ticketResolution{
        width:100%;
    }

}

@media screen and (max-width:430px) {

    .logo-hide{
        font-size:12px;
        display: none;
    }
    .hwp-fs-26{
        font-size: 26px;
    }
    .navbar-brand-resize{
        padding: 15px 15px;
    }
   .package-details{
       display:none;
   }
   .icon{
        margin-left:120px !important;
   }
   .icon-2{
        margin-left:145px !important;
   }
   .tile-progress .tile-header{
       text-align:left !important;
   }
   .text-center-430{
       text-align:center !important;
   }

   .image-center{
       margin-left:40%;
   }
}

@media screen and (max-width:380px) {
    .hwp-mh{
        max-height: 150px;
    }
    .hwp-fs-26{
        font-size: 24px;
    }
    P,
    h3.aawd-1{
        margin-bottom: 30px;
    }
}

@media all and (max-width: 768px) {
    #content-wrapper {
        margin-bottom: 0 !important;
    }
    #footer-wrapper {
        position: relative !important;
    }

    .wag-para1 {
    display:none;
    }
    .wag-para2 {
        display:show;
        }


}

.text-left{
    text-align: left;
    color: #fff;
}

.text-justify{
    text-align: justify;
}
.orange-color{
    color:rgb(14, 13, 13);
}
.black-color{
    color:rgb(10, 10, 10);
}
.text-left-1{
    color:#070707;
    text-align: left;
}

 .text-left-1{
      margin-top: 155px;
      color: #fcfcfc;
 }


.color-white{
    color:white;
}
.no-margin-1{
    background: #f7f7f7 url(images/appliction-1.jpg) !important;
    background-repeat: no-repeat !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    height: 450px !important;
}
.fa-check-circle{
    font-size:36px;
    color:#004aaf;
}
.fs-18{
    font-size: 18px;
}

.card-height{
    height: 150px !important;
}

.wag-text {
 text-align: justify;
 }

 .wag-size{
 padding-bottom: 35px;
     padding-top: 0px;
     text-align:center;
 }

 @media screen and (max-width:770px) and (min-width:430px){
.wag-img-height{
margin-top:210px;
}
 }

  @media screen and (max-width:1030px) and (min-width:769px){
 .wag-img-height{
 margin-top:110px;
 }
  }

  .wag-col-b{
  background: black;
  }

  .wag-col-w{
    background: white;
    }


