/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/*==================================
        1. Theme default css
===================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.75rem;
}

:root {
  --primary-bg: #e63a27;
  --secondary-bg: #01234f;
  --footer-bg: #082346;
  --nav-active-color: #e63a27;
  --nav-color: #01234f;
  --btn-bg: #e63a27;
  --btn-color: #ffffff;
  --btn-hover: #01234f;
  --btn-border: 2px solid #e63a27;
  --link: #e63a27;
  --link-hover: #01234f;
  --icon-color: #e63a27;
  --border: 1px solid #dedede;
  --text-color: #282828;
  --mute-text: #949494;
  --text-white: #ffffff;
  --body-font-family: "Source Sans 3", sans-serif;
  --top-title: #e63a27;
  --semi-title: #01234f;
  --title-color: #01234f;
  --top-title-font-family: "Playfair Display", serif;
  --title-font-family: "Playfair Display", serif;
  --semi-title-font-family: "Playfair Display", serif;
  --hero-font-family: "Playfair Display", serif;
  --hero-sec-color: #e63a27;
  --box-shadow: 0 3px 5px #e7e7e7;
  --line-height: 1.75rem;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--line-height);
  color: var(--text-color);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  color: var(--title-color);
  font-family: var(--title-font-family);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

h1,
.h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 1.2rem;
  line-height: 1.4;
}

h5,
.h5 {
  font-size: 1.1rem;
  line-height: 1.4;
}

h6,
.h6 {
  font-size: 1rem;
  line-height: 1.5;
}

p {
  font-family: var(--body-font-family);
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 1rem;
  text-align: justify;
}

img {
  max-width: 100%;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

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

i {
  font-size: 13px;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

/*===========================
    All Title Style
===========================*/
.top-title {
  color: var(--top-title);
  font-size: 1.5rem;
  padding-left: 40px;
  position: relative;
  margin-bottom: 1rem;
  font-family: var(--title-font-family);
  font-weight: 700;
}
.top-title::before {
  content: "";
  position: absolute;
  border: 2px solid var(--top-title);
  width: 30px;
  background: var(--top-title);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.section-top-title {
  display: inline;
  color: var(--top-title);
  font-size: 1.5rem;
  padding: 0 40px;
  position: relative;
  font-family: var(--top-title-font-family);
  margin-bottom: 1rem;
}
.section-top-title::before {
  content: "";
  position: absolute;
  border: 2px solid var(--top-title);
  width: 30px;
  background: var(--top-title);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-top-title::after {
  content: "";
  position: absolute;
  border: 2px solid var(--top-title);
  width: 30px;
  background: var(--top-title);
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.semi-title {
  font-family: var(--semi-title-font-family);
  color: var(--semi-title);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--title-font-family);
  color: var(--title-color);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.title {
  font-family: var(--title-font-family);
  color: var(--title-color);
  font-size: 3rem;
  width: 100%;
  margin-bottom: 1rem;
}

/*=======================================
        All BTN Style & Links
=========================================*/
.custom-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border: var(--btn-border);
  font-family: var(--body-font-family);
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: var(--btn-bg);
  color: var(--btn-color);
  border-color: var(--btn-bg);
}
.custom-btn:hover {
  color: var(--btn-color);
  background: var(--btn-hover);
  border-color: var(--btn-hover);
}

.hero-custom-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border: var(--btn-border);
  font-family: var(--body-font-family);
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: var(--btn-hover);
  color: var(--btn-color);
  border-color: var(--btn-hover);
}
.hero-custom-btn:hover {
  color: var(--btn-color);
  background: var(--btn-bg);
  border-color: var(--btn-bg);
}

.border-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border: var(--btn-border);
  font-family: var(--body-font-family);
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: var(--btn-bg);
  border-color: var(--btn-bg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.border-btn:hover {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--btn-color);
  background: var(--btn-hover);
  border-color: var(--btn-hover);
}

.custom-link {
  display: inline-block;
  font-weight: 700;
  color: var(--link);
  font-family: var(--body-font-family);
  cursor: pointer;
}
.custom-link:hover, .custom-link:focus {
  color: var(--link-hover);
}
.custom-link:hover i, .custom-link:focus i {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 0 0 4px;
}

/*===========================
        Overlay Style
===========================*/
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#1e2024));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #1e2024);
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: rgba(60, 60, 60, 0.45);
  z-index: 1;
}

/*=======================================
            About us section
=========================================*/
.left-img {
  width: 600px;
  height: 560px;
  overflow: hidden;
}
.serv{
    height: 370px;
}
.left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=======================================
            Services section
=========================================*/
.services {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.services .services-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 416px;
}
.services .services-card img {
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

/*=======================================
            Achivement section
=========================================*/
.box {
  height: 150px;
  position: relative;
  padding: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box .orange {
  position: absolute;
  background: var(--primary-bg);
  width: 80px;
  height: 120px;
  top: 0;
  border-radius: 0 0 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box .orange img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box .semi-title {
  margin-left: 100px;
  color: var(--primary-bg);
}
.box .semi-title,
.box p {
  margin-left: 100px;
  font-weight: bold;
}

/*=======================================
            Testimonials section
=========================================*/
.testimonial__slider {
  margin: 0 -15px;
}
.testimonial__slider .slick-slide {
  margin: 0 15px;
}

.testimonial {
  height: 320px;
}
.testimonial .box-orange {
  bottom: 0;
  left: 0;
  height: 80px;
  width: 70%;
  background: var(--primary-bg);
}
.testimonial .box-orange::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 0;
  border-top: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 80px solid var(--primary-bg);
}
.testimonial .box-orange img {
  position: absolute;
  height: 120px;
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 2rem;
  left: 3rem;
  border: 5px solid #ffffff;
  border-radius: 5px;
}
.testimonial .stars {
  bottom: 6rem;
  left: 12rem;
}
.testimonial .stars li i {
  color: var(--primary-bg);
}
.testimonial .name {
  color: var(--text-white);
  bottom: 1.5rem;
  left: 12rem;
  font-size: 1rem;
}
.testimonial .quotes {
  content: "";
  right: 0;
  bottom: 0;
  width: 20%;
  height: 150px;
  background-image: url("http://localhost/swoyambhuproduction/public/images/quotes.png");
  background-repeat: no-repeat;
  background-position: center;
}

/*=======================================
        home blog section
=========================================*/
.card img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .author li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--mute-text);
}
.card .author li i {
  color: var(--secondary-bg);
}

.horizontal-card {
  border: var(--border);
}
.horizontal-card .semi-title{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.horizontal-card img {
  height: 255px;
  width: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .side-bar {
  top: 100px;
}
.card .card-body a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card .card-body a .semi-title{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*=======================================
        Choose Navbar 
=========================================*/
.choose h3 {
  padding-bottom: 7px;
  border-bottom: 3px solid var(--primary-bg);
}
.choose .title {
  color: var(--top-title);
}
.choose .title span {
  font-size: 1rem;
  color: var(--semi-title);
  font-family: var(--body-font-family);
}
.choose .c-border {
  border-bottom: 3px solid #dedede;
}
.choose .c-border::before, .choose .c-border::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background: #dedede;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.choose .c-border::before {
  left: 0;
}
.choose .c-border::after {
  right: 0;
}
.choose ul li i {
  margin-right: 15px;
  color: var(--mute-text);
}
.choose ul li .active {
  color: var(--icon-color);
}
.choose .custom-btn {
  width: 100%;
}

/*=======================================
            contact form
=========================================*/
form button {
  width: 100%;
}

/*=======================================
            Hero Slider
=========================================*/
.hero {
  overflow: hidden;
}
.hero .hero__slider {
  height: 100%;
}
.hero .hero__slider .item .hero-caption {
  z-index: 9;
  position: absolute;
  top: 35%;
  left: 10%;
  -webkit-transform: translate(-20%, -10%);
          transform: translate(-20%, -10%);
  color: var(--text-white);
  font-family: var(--title-font-family);
}
.hero .hero__slider .item .hero-caption span {
  color: var(--top-title);
}
.hero .hero__slider .item img {
  height: 750px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
    object-position: center top;
}

/*===========================
    slider button Style
===========================*/
.slick-slider:hover .slick-arrow {
  display: block;
}
.slick-slider .slick-arrow {
  display: none;
  position: absolute;
  z-index: 9;
  top: calc(50% - 25px);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: var(--text-white);
  border: 1px solid #ffffff;
}
.slick-slider .slick-next {
  right: 30px;
}
.slick-slider .slick-prev {
  left: 30px;
}

/*===========================
    portfolio style
===========================*/
.portfolio a{
  width: 100%;
}
.portfolio a img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===========================
    profile style
===========================*/
.profile__slider {
  margin: 0 -15px;
}
.profile__slider .slick-slide {
  margin: 0 15px;
}

.mission-card .mission {
  width: 330px;
  height: 350px;
  overflow: hidden;
  background: #FFF4F3;
}
.mission-card .mission img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=======================================
        Banner breadcrumb 
=========================================*/
.banner .banner-title {
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9;
}
.banner .banner-title .breadcrumb li {
  color: var(--text-white);
}
.banner .banner-title .breadcrumb li a {
  color: var(--primary-bg);
}

/*=======================================
            contact page
=========================================*/
.con-box .icon {
  width: 80px;
  height: 80px;
}
.con-box .icon i {
  color: var(--top-title);
  font-size: 2rem;
}
.con-box .dec ul li i{
  font-size: 25px;
  color: #e63a27;
}
/*=======================================
        Mobile and Desktop Navbar 
=========================================*/
header {
  -webkit-box-shadow: 0 5px 10px #abc8ee;
          box-shadow: 0 5px 10px #abc8ee;
  height: 84px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .navbar {
  height: 100%;
}
header .navbar .navbar-brand img {
  height: 80px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .navbar .navbar-nav .nav-item {
  padding: 10px 15px;
  position: relative;
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  color: var(--nav-color);
  padding: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--nav-active-color);
  border-bottom: 3px solid var(--nav-active-color);
  width: 100%;
}
header .navbar .navbar-nav .nav-item .active {
  color: var(--nav-active-color);
  border-bottom: 3px solid var(--nav-active-color);
  width: 100%;
  font-weight: 500;
}
header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  margin-top: 10px;
  left: 0;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  display: block;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover, header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  background-color: #e63a27 !important;
  color: #fff !important;
}
header .navbar .nav-item .fa-search {
  font-size: 1.2rem;
  cursor: pointer;
}

/*=======================================
              Footer 
=========================================*/
footer {
  background: var(--footer-bg);
}
footer .footer-logo {
  width: 100px;
  height: 130px;
}
footer .footer-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer p {
  color: var(--text-white);
}
footer h4 {
  font-size: 1.5rem;
  padding-bottom: 15px;
  border-bottom: 3px solid #dedede;
}
footer .social li a i {
  font-size: 2rem;
}
footer ul li i {
  color: var(--text-white);
  padding-right: 7px;
}
footer ul li{
  color: var(--text-white);
}
footer ul li a {
  color: var(--text-white);
}
footer .copy-right {
  border-top: 3px solid #000c1c;
  height: 60px;
  color: #ffffff;
}/*# sourceMappingURL=main.css.map */