@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

:root {
  --heading-font: "Raleway", sans-serif;
  --para-font: "Ubuntu", sans-serif;
}

:root {
  --primary-color: rgb(28 116 187);
  --secondary-color: #00ba66;
  --accent-color: #eb5424;
  --bg-color: #192138;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--para-font);
  color: rgb(119, 119, 119);
}

button {
  font-family: var(--para-font);
}

:focus {
  box-shadow: none !important;
  border: none !important;
}

/* ========================header navbar====================== */
/* top header  */
.top-header {
  background-color: var(--primary-color);
  /* border-radius: 0 60px 0 60px; */
  color: white;
}

.header .logo img {
  height: 70px;
}

.header .info-card {
  color: white !important;
}

.header .info-card h6 {
  font-size: 16px !important;
  font-weight: 600;
}

.header .info-card p {
  font-size: 15px !important;
  color: white;
}

.header-contact .phone .icon i {
  font-size: 30px;
  color: var(--secondary-color);
}

.header-contact .phone {
  border-right: 2px solid var(--secondary-color);
}

.header-contact .phone .title {
  color: var(--secondary-color);
}

.header-contact .user .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.info-card .icon {
  color: var(--secondary-color);
  font-size: 16px;
}

.social-icons i {
  font-size: 16px;
  color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

.social-icons i:hover {
  color: var(--secondary-color);
  cursor: pointer;
}

.social-icons .icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: white;
}

.header-hambar .three-dot .icon {
  height: 40px;
  width: 50px;
  font-size: 30px;
  /* color: ; */
}

.header-hambar .three-dot .login-btn {
  background-color: rgb(231, 231, 231);
  height: 50px !important;
  transition: all 0.3s ease-in-out;
}

.header-hambar .three-dot .login-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* header therr dot  */

.side-three-bar {
  background-color: white;
  z-index: 8;
  transition: all 0.3s ease-in-out;
}

.isOn {
  display: none;
}

.side-three-bar .info-card h6 {
  font-size: 16px !important;
  font-weight: 600;
}

.side-three-bar .info-card p {
  font-size: 15px !important;
}

/* ========================navbar section====================== */

.navbar ul li {
  font-size: 18px;
  padding: 5px 0px;
  position: relative !important;
  transition: all 0.5s ease-in-out;
}

.navbar ul li:hover a {
  color: var(--secondary-color);
}

.navbar ul li::after {
  content: "";
  height: 2px;
  width: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--accent-color);
  transition: all 0.5s ease-in-out;
}

.navbar ul li:hover::after {
  width: 100%;
}

.active {
  border-bottom: 2px solid var(--accent-color);
}

.active:hover::after {
  width: 0% !important;
}

@media (min-width: 992px) {
  .dropdown > .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    display: block;
    transition: all 0.1s ease-out;
  }
  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    padding: 20px 0;
    display: block;
    transition: all 0.3s ease-in-out;
  }

  .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-item {
    color: #000000;
    padding: 10px 15px;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
  }

  .dropdown-item::before {
    content: "→ ";
    position: absolute;
    left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #008a17;
  }

  .dropdown-item:hover {
    background-color: #ffffff;
    padding-left: 30px;
  }

  .dropdown-item:hover::before {
    opacity: 1;
    left: 15px;
  }

  .navbar .nav-link {
    font-size: 16px;
    color: #000000;
  }
}

/* ================side navbar ======================== */
.side-navbar {
  z-index: 10;
  width: 350px;
  left: -350px;
  /* background-color: white; */
  background-color: var(--primary-color);
  height: 100vh;
  transition: all 0.5s ease-in-out;
}

.side-navbar .img-logo {
  background-color: white;
}

.side-navbar .img-logo img {
  height: 70px;
}

.side-navbar .img-logo .close-Btn {
  width: 50px !important;
  height: 35px;
  background-color: rgb(231, 231, 231);
  /* color: ; */
  font-size: 25px;
  padding: 10px 0px;
}

.side-navbar .side-navs li {
  color: white;
  width: 100% !important;
  font-size: 18px;
  list-style-type: none;
  padding: 15px 10px;
  cursor: pointer;
}

.side-navbar .side-dorp-down-manu {
  font-size: 16px;
  margin: 10px 5px;
  transition: all 0.3s ease-in-out;
  /* background-color: var(--primary-color); */
}

.side-navbar .side-dorp-down-manu .sub-navs .sub-nav {
  margin: 10px 0px;
  /* color: gray !important; */
}

.side-navbar .side-dorp-down-manu .sub-navs .sub-nav a {
  color: rgb(200, 200, 200) !important;
}

.side-navbar .side-navs li a {
  color: white;
  width: 100% !important;
}

.isDropdown {
  display: none;
}

/* ========================Cover-page section====================== */
.cover-slider-continer {
  z-index: 3;
}

.cover-slider .slider-img {
  height: 500px;
}

.cover-slider .nav-btn {
  /* background: linear-gradient(var(--secondary-color), var(--primary-color)); */
  height: 50px;
  font-size: 13px;
  width: 50px;
  color: rgb(218, 218, 218);
  border-radius: 50%;
  border: 1px solid rgb(201, 201, 201);
}
.cover-slider .nav-btn::after {
  font-size: 25px !important;
}
.cover-slider .slider-img img {
  object-fit: cover;
}

.slider-content {
  background-color: rgba(12, 61, 100, 0.9);
}

.slider-content .content {
  width: 70% !important;
  position: relative;
  z-index: 4;
  font-size: 18px;
  text-align: center;
}

.slider-content .content .title {
  font-size: 4em;
  font-weight: 900;
  color: var(--secondary-color);
}

.slider-content .content .para {
  color: rgb(255, 255, 255);
  font-size: 1em;
}

.slider-content .content button {
  color: white;
  font-size: 1em;
  padding: 1em 1.5em;
  position: relative;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}

.slider-content .content button:hover {
  background-color: var(--secondary-color) !important;
}

.slider-content .content .btn-demo {
  background-color: var(--secondary-color);
  border: none;
  padding: 17px 25px !important;
}

.slider-content .content .btn-demo:hover {
  background-color: var(--accent-color);
}

.cover-slider .nav-btn::after,
.cover-slider .nav-btn::before {
  font-size: 16px !important;
}

/* ======================== Facilities cards section====================== */
.facilities-section {
  margin-top: -120px !important;
  position: relative;
  z-index: 999;
}

.facilities-card {
  position: relative;
  transition: all 0.5s ease-in-out;
  border-radius: 12px !important;
  background: #fff;
}

.facilities-card:hover {
  transform: translatey(-20px);
}

.facilities-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: all 0.5s ease-in-out;
}

.facilities-card:hover::before {
  height: 100%;
  border-radius: 12px;
}

.facilities-card .card-icon .icon-box {
  height: 70px;
  width: 70px;
  color: white;
  background-color: var(--accent-color);
  font-size: 30px;
}

.facilities-card .card-content .card-title h4 {
  font-weight: 600;
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  padding: 20px 0;
}

.facilities-card:hover .card-title h4 {
  color: white;
}

.facilities-card .card-content .card-desc p {
  transition: all 0.5s ease-in-out;
}

.facilities-card:hover .card-desc p {
  color: rgb(231, 231, 231);
}

.facilities-card .card-content .card-btn button {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
}

.facilities-card .card-content .card-btn button .read-btn {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.facilities-card .card-content .card-btn button:hover .read-btn {
  transform: rotate(0deg);
}

/* ======================== about section====================== */
.about-container {
  margin: 50px 0px;
}

.section-title .icon {
  /* color: var(--accent-color); */
  color: #ababab;
}

.section-title .title {
  letter-spacing: 3px;
  font-weight: bold;
  color: #ababab;
}

.about-container .about-heading h1 {
  font-weight: 700;
}

.about-container .about-para p {
  font-size: 18px;
}

.about-container .about-btn button {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 10px 20px;
  color: white;
  font-size: 17px;
}

.mission-btn i {
  transition: all 0.3s ease-in-out;
}

.mission-btn:hover .mission-icon {
  transform: rotate(45deg);
}

.director-msg h5 {
  font-weight: 600;
}

.director-msg h5 i {
  color: var(--secondary-color);
}

.director-msg p {
  color: #0a99d8;
  font-size: 18px;
  
}

.director-msg p i {
  color: var(--accent-color) !important;
  font-size: 25px;
}

/* ======================== courses section====================== */
.courses-section {
  background-color: rgb(226, 224, 224);
}

.course-card {
  background-color: white;
  border-radius: 50px !important;
  height: 270px !important;
}

.section-heading h1 {
  font-weight: 700;
}

.section-heading h1 span {
  color: #0576a6;
  
}

.course-card .card-icon .icon-box {
  height: 100px;
  width: 100px;
  color: white;
  background-color: var(--secondary-color);
  font-size: 30px;
  /* top: -100px; */
  border: 10px solid rgb(226, 224, 224);
  transform: translatey(-50px);
  position: relative;
}

.course-card .card-icon .icon-box::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 0px 50% 0 0;
  box-shadow: 3px -10px rgb(226, 224, 224);
}

.course-card .card-icon .icon-box::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 50% 0 0 0;
  box-shadow: -3px -10px rgb(226, 224, 224);
}

.courses-slider .swiper-slide {
  padding-top: 50px !important;
}

.course-card .card-title h6 {
  font-weight: 600;
  font-size: 18px;
}

.course-card .btn a {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 10px 20px;
  color: white;
  font-size: 17px;
}

.course-card .btn button .read-btn {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.course-card .btn button:hover .read-btn {
  transform: rotate(0deg);
}

.section-slider .nav-btn {
  background: linear-gradient(var(--secondary-color), var(--primary-color));
  height: 50px;
  bottom: 0% !important;
  width: 50px;
  color: white;
  top: 80%;
  /* position: none !important; */
}

.section-slider .nav-btn::after {
  font-size: 20px !important;
}

.section-slider .left-btn {
  left: 40% !important;
}

.section-slider .right-btn {
  right: 40% !important;
}

.section-slider .swiper-pagination {
  bottom: 11% !important;
}

.section-btn button .view-all {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.section-btn button:hover .view-all {
  transform: rotate(0deg);
}

.section-btn button {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 10px 20px;
  color: white;
  font-size: 17px;
}

.section-btn button:hover {
  color: white;
}

/* ======================== Contact section====================== */
.contact-section {
  margin: 100px 0px !important;
}

.contact-form-wrapper {
  position: relative;
  border-radius: 10px !important;
  font-weight: 400;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.contact-form-wrapper form label {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  font-size: 18px;
}

.contact-form-wrapper form input:focus {
  outline: 1px solid #ced4da;
}

.contact-form-wrapper form textarea:focus {
  outline: 1px solid #ced4da;
}

/* .contact-img {
    border-top: 6px solid var(--secondary-color);
    border-radius: 10px !important;
} */

/* ======================== news section======================== */
.news-section {
  border: 1px solid var(--primary-color) !important;
}

.news-section .section-heading {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.news .news-para i {
  color: var(--primary-color);
  font-size: 30px;
}

.news .news-para p {
  /* color: var(--primary-color); */
  font-size: 18px;
}

.publish .icon-box {
  height: 50px;
  width: 50px;
  color: white;
  background-color: var(--accent-color);
  font-size: 20px;
}

.publish-info .publish-title {
  font-weight: 600;
}

.news-btn button,
.gallery-btn button {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 10px 20px;
  color: white;
  font-size: 17px;
}

.news-btn button:hover,
.gallery-btn button:hover {
  color: white;
}

.news-btn button .view-all,
.gallery-btn button i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.news-btn button:hover .view-all,
.gallery-btn button:hover i {
  transform: rotate(0deg);
}

/* ======================== feedback section======================== */
.feedback-section {
  background-color: rgb(226, 224, 224);
}

.feedback .card-btn button {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
}

.feedback .card-btn button .read-btn {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.feedback .card-btn button:hover .read-btn {
  transform: rotate(0deg);
}

.feedback-slider {
  padding-top: 50px;
}

.feedback-card {
  border-radius: 30px;
  background-color: white;
}

.feedback-card .icon-box {
  top: -50px;
}

.feedback-card .icon {
  height: 100px;
  width: 100px;
  color: var(--accent-color);
  background-color: white;
  font-size: 30px;
  border: 1px solid var(--accent-color);
  /* transform: translatey(-50px); */
  /* position: absolute; */
  /* left: 25%; */
}

.feedback-card .quotation i {
  font-size: 40px;
}

.feedback-info h5 {
  color: var(--secondary-color);
}

/* ======================== gallery section======================== */
.gallery-section {
  margin: 100px 0px !important;
}

.gallery-card {
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hover-box-overlay {
  opacity: 0;
  transition: all 0.3s;
}

.gallery-card:hover .hover-box-overlay {
  opacity: 1;
}

/* ======================== Footer section======================== */
.footer-section {
  background: linear-gradient(45deg, rgb(14, 61, 99), #01683a);
  padding: 50px 0;
}

.footer-section .heading {
  font-weight: 600;
}

.footer-section h1 {
  font-weight: 800;
  /* color: var(--accent-color); */
}

.footer-sections ul {
  list-style: none;
}

.footer-sections ul li {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  font-family: var(--para-font);
}

.footer-sections ul li:hover {
  list-style: none;
  transform: translatex(10px);
}

.footer-sections ul li a {
  color: rgb(231, 231, 231);
}

.footer-sections ul li:hover a {
  color: rgb(180, 180, 180);
}

.footer-btns button {
  color: white;
  font-size: 17px;
  padding: 15px 25px;
  position: relative;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}

.footer-btns button:hover {
  background-color: rgb(12, 61, 100);
  color: white;
}

.footer-btns .btn-demo {
  background-color: var(--secondary-color);
  border: none;
  padding: 17px 25px !important;
}

.footer-btns .btn-demo:hover {
  background-color: var(--accent-color);
}

.footer-section .about-desc p {
  color: rgb(231, 231, 231);
  font-size: 18px;
}

.copyright-container {
  font-size: 18px;
}

.copyright-container .copyright-line span {
  color: var(--secondary-color);
}
.copyright-container .social-links .icons .icon {
  height: 40px;
  width: 40px;
  background-color: #00ba66;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.copyright-container .social-links .icons .icon:hover {
  background-color: rgba(12, 61, 100, 0.8);
}

/*index page end here  */

/* ====================Cover page==================== */
.cover-page {
  height: 300px;
}

.cover-page .cover-img img {
  object-fit: cover;
}

.cover-page .cover-content {
  background-color: rgba(12, 61, 100, 0.9);
}

.cover-page .content-box .page-title h1 {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-weight: 700;
}

.cover-page .page-navigation {
  font-size: 18px;
  color: gray;
}

.page-navigation .home-page a {
  color: rgb(231, 231, 231);
}

/*======================= about page section ===================== */

.about-company {
  background-color: #f8f8f8;
}
.about-section {
  /* background: #1781ac; */
}
.about-section .facilities-card .card-content .card-title h4 {
  font-weight: normal !important;
  font-size: 30px !important;
}

.about-card {
  margin-bottom: 50px !important;
}

.about-card .title .icon {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 20px;
}

.about-card .title .btn {
  background-color: white;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgb(231, 231, 231);
}

.about-card .title .btn:hover {
  background-color: rgb(231, 231, 231);
}

.about-card .title .exp-btn {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.about-card .title:hover .exp-btn {
  transform: rotate(0deg);
}

.dots div {
  height: 30px;
  width: 30px;
  background-color: rgb(231, 231, 231);
}

.company-vision {
  background-color: rgb(231, 231, 231);
}

.company-card {
  margin-bottom: 50px !important;
}

.company-vision .company-card {
  background-color: white;
}

.company-card .icon {
  height: 100px;
  width: 100px;
  background-color: white;
  color: var(--secondary-color);
  font-size: 30px;
  border: 1px solid var(--secondary-color);
  transform: translatey(-50px);
  transition: all 0.5s ease-in-out;
}

.company-card .icon:hover {
  color: white;
  background-color: var(--secondary-color);
}

.company-card .title h1 {
  color: var(--secondary-color);
  font-weight: 600;
}

/* ======================== contact page ====================== */
.get-card .icon {
  height: 60px;
  width: 60px;
  border: 1px solid var(--secondary-color);
}

.get-card .icon i {
  font-size: 20px;
  -webkit-text-stroke: 2px var(--secondary-color);
  color: transparent;
}

.get-card .title h4 {
  font-weight: 600;
  color: rgb(62, 62, 62);
}

.get-card .desc p {
  font-size: 18px;
}

.contact-form {
  background-color: #f8f8f8;
}

.contact-form-wrapper {
  background-color: white;
}

.contact-form .section-heading h2 {
  font-weight: 600;
  color: rgb(62, 62, 62);
}

/* ======================== result page ====================== */
.form {
  background-color: #f8f8f8;
}

.form button {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
}

.page-form-certificate {
  background-color: white;
  color: gray;
}

.page-form-certificate input {
  background-color: transparent !important;
}

.page-form .input {
  background-color: white;
  color: gray;
}

.page-form .input input {
  /* width: 75% !important; */
  border: 0;
}

input:focus {
  outline: none;
}

.page-form .input button {
  width: 25% !important;
}

.page-form .input button:hover {
  color: white;
}

/* ======================== institute  page ====================== */
.courses-container {
  background-color: #f8f8f8;
}

.courses-container .catagary-title {
  /* background-color: white; */
}

.courses-container .catagary-title i {
  color: var(--secondary-color);
}

.courses-container .facilities-card {
  /* height: 300px; */
  background-color: white;
}

.courses-container .facilities-card .card-title h4 {
  font-weight: normal !important;
}

/* ======================== course-datails-page page ====================== */
.course-datails-page {
  background-color: rgb(240, 240, 240);
}

.course-datails-page .details-title .title {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.details-title .title i {
  font-size: 25px;
}

.details-catagary div {
  transition: all 0.3s ease-in-out;
}

.details-catagary div:hover {
  cursor: pointer;
  background-color: white;
  /* color: white; */
}

.activeCatagary {
  background-color: white;
}

.activeCatagary p {
  color: black !important;
}

.course .course-title i {
  font-size: 20px;
  color: var(--accent-color);
}

.course .course-title .heading span {
  color: var(--secondary-color);
}

.details-catagary div:hover p {
  /* color: white; */
}

.details-course {
  height: 750px;
  overflow-y: scroll;
}

.details-course .course-card .icon-box {
  border-color: rgb(240, 240, 240) !important;
}

.details-course .course-card .card-icon .icon-box::before {
  box-shadow: 3px -10px rgb(240, 240, 240) !important;
}

.details-course .course-card .card-icon .icon-box::after {
  box-shadow: -3px -10px rgb(240, 240, 240) !important;
}

.details-course .all-course {
  display: none;
}

.activeCategoryCourse {
  display: block !important;
}

/* ======================== institute  page ====================== */
.gallery-page {
  background-color: rgb(240, 240, 240);
}

/*====================== course details page  ===================*/

.course-details-section .all-course {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
}
.details-card .title .heading {
  font-weight: 700;
  color: var(--secondary-color);
}
.all-course .title h3 {
  color: white;
}
.all-course .courses div {
  border: 1px dashed rgb(220, 220, 220);
}
.all-course .courses div a {
  color: rgb(220, 220, 220);
}

.all-course .courses div:hover {
  border: 1px dashed white;
}

.all-course .courses div:hover a {
  color: white;
}

.all-course h4 {
  font-weight: 800;
}

/*============================= Gallery popup ============================*/
.gallery-popup {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: rgb(210, 210, 210);
  z-index: 100;
}
.gallery-popup .popup-header {
  font-size: 20px;
}
.gallery-popup .popup-header .pop-btn button {
  color: rgb(200, 200, 200);
  font-size: 20px !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.gallery-popup .popup-header .pop-btn button:hover {
  color: white;
}
.pop-img .img-nav {
  font-size: 30px;
}
.pop-img .img-nav .icon {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.pop-img .img-nav .icon:hover {
  /* background-color: rgba(12, 61, 100); */
  cursor: pointer;
  color: white;
}
.pop-img .img-nav .left-btn {
  left: 5%;
}
.pop-img .img-nav .right-btn {
  right: 5%;
}
.active-gallery-popup {
  display: none;
}
.gallery-popup .pop-img .img {
  width: 60% !important;
  height: 40% !important;
  margin: auto !important;
}
.gallery-popup .pop-img .img img {
  object-fit: cover;
}

/**********************************************/
.search{
position: relative;
box-shadow: 0 0 40px rgba(51, 51, 51, .1);
 
}

.search input{

height: 60px;
text-indent: 25px;
border: 2px solid #d6d4d4;


}


.search input:focus{

box-shadow: none;
border: 2px solid blue;


}

.search .fa-search{

position: absolute;
top: 20px;
left: 16px;

}

.search button{

position: absolute;
top: 5px;
right: 5px;
height: 50px;
width: 110px;
background: blue;

}

.sidebar{
	background:#1cb5f8;
	padding:30px;
}
.sidebar h2{
	font-size:24px;
	font-weight:600;
	color:#fff;
}
.sidebar ul{
	list-style: none;
    padding: 0px;
}
.sidebar li{
	background:#fff;
	padding:20px;
	margin-bottom:5px;
	border-radius: 30px;
	transition: 0.3s;
}
.sidebar li a{
	color:#000066;
	font-weight:600;
	font-size:15px;
	transition: 0.3s;
	text-decoration:none;
}
.sidebar li a i{
	color:#d81d0e;
	padding-right:5px;
	font-size:20px;
	transition: 0.3s;
}
.sidebar li:hover{
	background:#07648b;
}
.sidebar li:hover a{
	color:#fff;
}
.sidebar li:hover i{
	color:#009541;
	padding-right:15px;
}
