/* Navbar */
@import url("https://fonts.googleapis.com/css?family=Work+Sans:400,600");
body {
  /* margin: 0; */
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
}

.container1 {
  width: 80%;
  /* margin: 0 auto; */
}

header {
  background: #ffffff;
}

header::after {
  content: "";
  display: table;
  clear: both;
}

.logo {
  float: left;
  color: rgb(0, 108, 255);
}

nav {
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 70px;
  /* padding-top: 23px; */
  position: relative;
}

nav .anc1 {
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

nav .anc1:hover {
  color: #000;
}

nav .anc1::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #7982e3;

  position: absolute;
  top: 10;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav .anc1:hover::before {
  width: 100%;
}

/* Home */

.home-div {
  /* background-color: rgb(67,128,241); */
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.alt-img {
  border-radius: 20px;
}
.alt-img1 {
  border-radius: 20px;
}
.alt-img1:hover {
  scale: 1.1;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.para-home {
  color: rgb(143, 143, 143);
}

.icon1 {
  font-size: 40px;
  color: rgb(255, 255, 255);
}
.head-ic {
  margin: 0 !important;
  padding: 0 !important;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

.container-hover {
  /* min-height: 10vh; */
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  margin: 0px;
}

.card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  overflow: hidden;
}

.card .backgroundEffect {
  bottom: 0;
  height: 0px;
  width: 100%;
}

.card:hover {
  color: #fff;
  transform: scale(1.025);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px;
}

.card:hover .backgroundEffect {
  bottom: 0;
  height: 320px;
  width: 100%;
  position: absolute;
  z-index: -1;
  background: #1b9ce3;
  animation: popBackground 0.3s ease-in;
}

@keyframes popBackground {
  0% {
    height: 20px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
  }

  50% {
    height: 80px;
    border-top-left-radius: 75%;
    border-top-right-radius: 75%;
  }

  75% {
    height: 160px;
    border-top-left-radius: 85%;
    border-top-right-radius: 85%;
  }

  100% {
    height: 320px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
  }
}

.card .pic {
  position: relative;
}

.card .pic img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 70px;
  background-color: #1b9ce3;
  color: white;
  position: absolute;
  bottom: 0px;
  transition: all ease;
}

.card .date .day {
  font-size: 14px;
  font-weight: 600;
}

.card .date .month,
.card .date .year {
  font-size: 10px;
}

.card .text-muted {
  font-size: 12px;
}

.card:hover .text-muted {
  color: #fff !important;
}

.card .content {
  padding: 0 20px;
}

.card .content .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: #1b9ce3;
  border-radius: 25px;
  font-size: 12px;
  border: none;
}

.card:hover .content .btn {
  background: #fff;
  color: #1b9ce3;
  box-shadow: #0000001a 0px 3px 5px;
}

.card .content .btn .fas {
  font-size: 10px;
  padding-left: 5px;
}

.card .content .foot .admin {
  color: #1b9ce3;
  font-size: 12px;
}

.card:hover .content .foot .admin {
  color: #fff;
}

.card .content .foot .icon {
  font-size: 12px;
}

.txt-sty {
  font-weight: 400;
  padding: 3px;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 5px;
  font-family: "Monoton", sans-serif;
  font-style: normal;
}
.img-ho:hover{
    scale: 1.05;
    border-radius: 10px;
    transition: 1000ms;
}

.btncha{
    background-color: rgba(153, 205, 237, 0.907);
}

.btncha:hover{
    background-color: rgba(100, 148, 237, 0.734);
    transition: 1s;
}

.btncha:focus{
    background-color: #1b9ce3;
    color: white;
    transition: 1s;
}

.count1{
    font-size: 40px;
    font-weight: 100;
    font-style: normal;
}
.count2{
    font-size: 20px;
    font-weight: 100;
    font-style: italic;
}

/* .testimonial */

h2 {
	color: #333;
	text-align: center;
	text-transform: uppercase;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	position: relative;
	margin: 30px 0 60px;
}
h2::after {
	content: "";
	width: 100px;
	position: absolute;
	margin: 0 auto;
	height: 3px;
	background: #8fbc54;
	left: 0;
	right: 0;
	bottom: -10px;
}
.col-center {
	margin: 0 auto;
	float: none !important;
}
.carousel {
	padding: 0 70px;
}
.carousel .carousel-item {
	color: #999;
	font-size: 14px;
	text-align: center;
	overflow: hidden;
	min-height: 290px;
}
.carousel .carousel-item .img-box {
	width: 135px;
	height: 135px;
	margin: 0 auto;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 50%;
}
.carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.carousel .testimonial {
	padding: 30px 0 10px;
}
.carousel .overview {	
	font-style: italic;
}
.carousel .overview b {
	text-transform: uppercase;
	color: #7AA641;
}
.carousel-control-prev, .carousel-control-next {
	width: 40px;
	height: 40px;
	margin-top: -20px;
	top: 50%;
	background: none;
}
.carousel-control-prev i, .carousel-control-next i {
	font-size: 68px;
	line-height: 42px;
	position: absolute;
	display: inline-block;
	color: rgba(0, 0, 0, 0.8);
	text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel-indicators {
	bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 12px;
	height: 12px;
	margin: 1px 3px;
	border-radius: 50%;
	border: none;
}
.carousel-indicators li {	
	background: #999;
	border-color: transparent;
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.carousel-indicators li.active {	
	background: #555;		
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}

.hovcont:hover{
    color: #395ad1fe;
    transition: 1s;
}