/* Choose Us */

.choose {
  background-color: #f3f3f3;
}

.choose .section-title p {
  text-align: left;
  font-style: italic;
  color: #666;
}

.choose .choose-content {
  padding: 40px;
}

.choose .icon-box+.icon-box {
  margin-top: 40px;
}

.choose .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

.choose .icon-box .icon svg {
  color: #034792;
  font-size: 32px;
}

.choose .icon-box:hover .icon {
  background: #034792;
}

.choose .icon-box:hover .icon svg {
  color: #fff;
}

.choose .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.choose .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.choose .icon-box .title a:hover {
  color: #034792;
}

.choose .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.choose .video-box {
  position: relative;
}

.choose .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1859a9 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.choose .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.choose .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.choose .play-btn:hover::after {
  border-left: 15px solid #1859a9;
  transform: scale(20);
}

.choose .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
     transform: scale(0.6, 0.6);
     opacity: 1;
  }
  100% {
     transform: scale(1, 1);
     opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
     transform: scale(0.6, 0.6);
     opacity: 1;
  }
  100% {
     transform: scale(1, 1);
     opacity: 0;
  }
}


/* packages-list */

.packages-list {
  text-align: center;
}

.packages-list .breadcrumb {
  background: transparent;
  color: #fff;
  padding: 0;
}

.packages-list .pic {
  position: relative;
  overflow: hidden;
}

.packages-list .pic img {
  width: 100%;
  height: auto;
  transition: all 0.2s ease 0s;
}

.packages-list:hover .pic img {
  transform: translateY(15px);
}

.packages-list .packages-media {
  width: 100%;
  position: absolute;
  bottom: -19%;
  padding: 10px 10px;
  background-color: rgba(4, 4, 4, 0.78);
  transition: all 0.35s ease 0s;
}

@media (max-width: 768px) {
  .packages-list .packages-media {
     bottom: -12%;
  }
}

.packages-list:hover .packages-media {
  bottom: 0px;
}

.packages-list .breadcrumb-item+.breadcrumb-item::before {
  content: "-";
  color: #fff;
}

.packages-list .description {
  margin: 0px;
  color: #fff;
  font-weight: 200;
  font-size: 14px;
  margin-bottom: 10px;
}

.packages-list .packages-button .btn {
  color: #fff;
}

.packages-list .packages-button .btn-warning {
  background-color: #f6bf00;
  border-color: #f6bf00;
  color: #212529;
}

.packages-list .packages-button .btn-success {
  background-color: #4ab150;
  border-color: #4ab150;
}

.packages-list .team-social {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  position: relative;
  top: 2%;
}

.packages-list .team-social li {
  display: inline-block;
  margin: 0 5px 0 0;
}

.packages-list .team-social li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: block;
  color: #fff;
  font-size: 18px;
  transition: all 1.3s ease 0s;
}

.packages-list .team-social li a:hover {
  background: #fff;
  color: #1859a9;
}

.packages-list .packages-prof {
  margin-top: 0px;
  border: 1px solid #ccc;
}

.packages-list .post-title a {
  text-transform: capitalize;
  color: #000;
  transition: all 0.2s ease 0s;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.packages-list .post-title a:hover {
  text-decoration: none;
  color: #034792;
}

.packages-list .post {
  color: #1859a9;
  font-size: 18px;
}

@media screen and (max-width: 990px) {
  .packages-list {
     margin-bottom: 30px;
  }
}

/* main-heading */

.main-heading {
  position: relative;
  margin: 0 auto;
  width: 80%;
  text-align: center;
}

.main-heading .mft-heading{
	font-size: 32px;
    font-weight: 100;
}

.main-heading .mft-heading-two{
	font-size: 16px;
    font-weight: 100;
}

.heading-subheading {
  color: #1859a9;
  font-family: 'Courgette', cursive;
  font-size: 20px;
  font-weight: 400;
}

.heading-subheading:before {
  content: "";
  width: 40px;
  height: 2px;
  background: #ddd;
  display: inline-block;
  margin-right: 10px;
}

.heading-subheading:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ddd;
  display: inline-block;
  margin-left: 10px;
}

/* select-topic */
.select-topic .card-body .card-title{
	font-size: 18px;
}
.select-topic .card-body a.hover-fx {
  font-size: 36px;
  display: inline-block;
  cursor: pointer;
  margin: 15px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  color: #1859a9;
  background-color: rgba(0, 0, 0, 21%);
  transition: 300ms;
  text-decoration: none;
}

.hover-fx:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  box-sizing: content-box;
  box-shadow: 0 0 0 3px #ef6d57;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 300ms;
}

.select-topic .card-body:hover .hover-fx {
  background-color: #ef6d57;
  color: #fff;
}

.select-topic .card-body:hover .hover-fx:after {
  opacity: 1;
  transform: scale(1.15);
}
.select-topic .border-right {
    border-right: 1px solid #dee2e6;
}
.select-topic .border-bottom-style {
    border-bottom: none;
}
@media screen and (max-width: 990px) {
  .select-topic .border-right {
		border-right: none;
		border-bottom: 1px solid #dee2e6;
	}
	.select-topic .border-bottom-style{
		border-bottom: 1px solid #dee2e6;
	}
}

/* Gallery Style */

.mft-gallery > ul > li a {
	display: block;
	overflow: hidden;
	position: relative;
}
.mft-gallery > ul > li a > img {
	transition: transform 0.15s ease 0s;
	transform: scale3d(1, 1, 1);
	height: auto;
	width: 100%;
}
.mft-gallery > ul > li a:hover > img {
	transform: scale3d(1.1, 1.1, 1.1);
}
.mft-gallery > ul > li a:hover .mft-gallery-poster > img {
	opacity: 1;
}
.mft-gallery > ul > li a .mft-gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 0.15s ease 0s;
}
.mft-gallery > ul > li a .mft-gallery-poster > img {
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transition: opacity 0.3s ease 0s;
}
.mft-gallery > ul > li a:hover .mft-gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
}
.mft-gallery .justified-gallery > a > img {
	transition: transform 0.15s ease 0s;
	transform: scale3d(1, 1, 1);
	height: 100%;
	width: 100%;
}
.mft-gallery .justified-gallery > a:hover > img {
	transform: scale3d(1.1, 1.1, 1.1);
}
.mft-gallery .justified-gallery > a:hover .mft-gallery-poster > img {
	opacity: 1;
}
.mft-gallery .justified-gallery > a .mft-gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 0.15s ease 0s;
}
.mft-gallery .justified-gallery > a .mft-gallery-poster > img {
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transition: opacity 0.3s ease 0s;
}
.mft-gallery .justified-gallery > a:hover .mft-gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
}
.mft-gallery .video .mft-gallery-poster img {
	height: 48px;
	margin-left: -24px;
	margin-top: -24px;
	opacity: 0.8;
	width: 48px;
}
.mft-gallery.dark > ul > li a {
	border: 3px solid #04070a;
}
.home .mft-gallery {
	padding-bottom: 80px;
}
#lg-download, .lg-thumb-outer, #lg-counter {
	display: none;
}
#lightgallery .col-lg-4.col-sm-4 {
	padding: 3px;
}
.list-unstyled .col-lg-3 {
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 15px;
}