@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #222;
  transition: 0.3s all ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

p {
  text-align: justify;
}

:focus, button:focus {
  outline: none;
  box-shadow: none !important;
}

::-moz-selection {
  color: #fff;
  background: #0B9AAF;
}

::selection {
  color: #fff;
  background: #0B9AAF;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #e6e6e6;
}

::-webkit-scrollbar-thumb {
  background-color: #0B9AAF;
  outline: 1px solid #0B9AAF;
  border-radius: 10px;
}

.p100 {
  padding: 100px 0px;
}

body {
  background: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.7em;
}

header {
  width: 100%;
  background-color: #fff;
}
header .desktop {
  width: 100%;
  padding: 10px 0px;
}
header .desktop .media {
  width: 100%;
  display: flex;
  align-items: center;
}
header .desktop .media a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  border: 1px solid #0B9AAF;
  border-radius: 50%;
  background-color: #FFF;
}
header .desktop .media a img {
  transition: 0.3s all ease-in-out;
}
header .desktop .media a:hover {
  background-color: #0B9AAF;
}
header .desktop .media a:hover img {
  scale: 1.2;
  filter: brightness(0) invert(1);
}
header .desktop .head-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .desktop .head-center .nav a {
  padding: 0px 18px;
}
header .desktop .head-center .nav a.active {
  color: #0B9AAF;
  font-weight: 600;
}
header .desktop .head-center .nav a:hover {
  color: #0B9AAF;
}
header .desktop .head-center .logo {
  padding: 0 30px;
}
header .desktop .donation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
header .desktop .donation a {
  padding: 10px 15px;
  background-color: #0B9AAF;
  display: flex;
  align-items: center;
  color: #FFF;
  border: 2px solid #0B9AAF;
}
header .desktop .donation a img {
  margin-right: 5px;
  transition: 0.3s all ease-in-out;
}
header .desktop .donation a:hover {
  background-color: transparent;
  color: #000;
}
header .desktop .donation a:hover img {
  filter: brightness(0) invert(0);
}

header .mobile {
  display: none;
}

.banner {
  width: 100%;
}
.banner .carousel-item {
  position: relative;
  height: 630px;
}
.banner .carousel-item .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .carousel-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0B9AAF;
  opacity: 0.4;
}
.banner .carousel-item .carousel-caption {
  width: 100%;
  display: flex !important;
  height: 100%;
  align-items: center;
  justify-content: center;
  right: 0 !important;
  left: 0 !important;
}
.banner .carousel-item .carousel-caption .banner-content {
  width: 50%;
  animation-name: fadeInUp;
  animation-duration: 2.2s;
  animation-fill-mode: both;
}
.banner .carousel-item .carousel-caption .banner-content .banner-icon {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.banner .carousel-item .carousel-caption .banner-content h5 {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.banner .carousel-item .carousel-caption .banner-content h6 {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  font-weight: 700;
}
.banner .carousel-item .carousel-caption .banner-content p {
  color: #FFF;
  text-align: center;
}
.banner .carousel-item .carousel-caption .banner-content a {
  padding: 12px 20px;
  background-color: #FFF;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #FFF;
}
.banner .carousel-item .carousel-caption .banner-content a:hover {
  background-color: transparent;
  color: #FFF;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.banner .carousel-item .carousel-caption .fadeInUp {
  animation-name: fadeInUp;
}

.p-60 {
  padding: 60px 0px;
}

.about-sec {
  width: 100%;
  background: #FFF url(../images/aboutbg.png) no-repeat right;
  overflow: hidden;
}
.about-sec .about-img-sec {
  position: relative;
}
.about-sec .about-img-sec .img1 {
  width: 360px;
  position: absolute;
  left: 0;
  top: 0;
}
.about-sec .about-img-sec .img1 img {
  width: 100%;
  border-radius: 20px;
}
.about-sec .about-img-sec .img2 {
  width: 360px;
  position: absolute;
  right: 0;
  top: 90px;
}
.about-sec .about-img-sec .img2 img {
  width: 100%;
  border-radius: 20px;
}
.about-sec .about-content {
  width: 100%;
  background: url(../images/christianity.svg) no-repeat left top;
  padding: 60px 0px 60px 60px;
}
.about-sec .about-content h1 {
  font-size: 20px;
  text-transform: uppercase;
  color: #711B00;
  font-weight: 500;
}
.about-sec .about-content h3 {
  font-size: 40px;
  font-weight: 600;
}
.about-sec .about-content a {
  padding: 12px 20px;
  background-color: #0B9AAF;
  color: #FFF;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #0B9AAF;
}
.about-sec .about-content a:hover {
  background-color: transparent;
  color: #000;
}

.heading-title {
  text-align: center;
}
.heading-title h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #711B00;
  font-weight: 500;
  text-align: center;
}
.heading-title h4 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.sisters-sec {
  width: 100%;
  overflow: hidden;
}
.sisters-sec .box {
  width: 100%;
  padding: 20px;
}
.sisters-sec .box .icon-sec {
  width: 100%;
  height: 133px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.sisters-sec .box .icon-sec::before {
  content: "";
  position: absolute;
  width: 133px;
  height: 133px;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(to bottom, #85f6f6 0%, #ffffff 100%);
  border-radius: 50%;
}
.sisters-sec .box .icon-sec img {
  position: absolute;
  z-index: 9;
  top: 60px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s all ease-in-out;
}
.sisters-sec .box h4 {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}
.sisters-sec .box p {
  text-align: center;
}
.sisters-sec .box:hover .icon-sec img {
  top: 40px;
}

.owl-nav, .owl-dots {
  display: none;
}

.donate-sec {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  padding: 150px 0px;
}
.donate-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.donate-sec .icon {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.donate-sec .icon .icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #0B9AAF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}
.donate-sec .icon .icon-box img {
  position: relative;
  z-index: 9;
}
.donate-sec .icon .icon-box::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #FFF;
  animation: sonarWave 2s linear infinite;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}
.donate-sec h5 {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  color: #FFF;
  position: relative;
  z-index: 9;
}
.donate-sec h6 {
  font-family: "Dancing Script", cursive;
  font-size: 26px;
  text-align: center;
  color: #FFF;
  position: relative;
  z-index: 9;
  margin-bottom: 20px;
}
.donate-sec a {
  padding: 12px 20px;
  background-color: #FFF;
  color: #000;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #FFF;
  position: relative;
  z-index: 9;
}
.donate-sec a:hover {
  background-color: transparent;
  color: #FFF;
}

.gallery-sec {
  width: 100%;
}
.gallery-sec h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #711B00;
  font-weight: 500;
  text-align: center;
}
.gallery-sec h4 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}
.gallery-sec .box {
  width: 100%;
  height: 523px;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-sec .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.gallery-sec .box:hover img {
  scale: 1.03;
}
.gallery-sec .tile-sec {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.gallery-sec .tile-sec .box1 {
  width: 50%;
  height: 253px;
  padding: 0px 10px;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-sec .tile-sec .box1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.gallery-sec .tile-sec .box1:hover img {
  scale: 1.03;
}
.gallery-sec .link a {
  padding: 12px 20px;
  background-color: #0B9AAF;
  color: #FFF;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #0B9AAF;
}
.gallery-sec .link a:hover {
  background-color: transparent;
  color: #000;
}

footer {
  width: 100%;
  background-color: #005663;
}
footer .f-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 30px 0px;
}
footer .f-content h6 {
  font-size: 34px;
  color: #FFF;
  font-weight: 600;
}
footer .box {
  padding: 30px 0px;
}
footer .box h5 {
  font-size: 20px;
  color: #FFF;
  font-weight: 600;
}
footer .box p {
  color: #5CD3E5;
  text-align: left;
  margin: 0;
}
footer .box p a {
  color: #5CD3E5;
  text-align: left;
  display: inline-block;
}
footer .box .media {
  width: 100%;
  display: flex;
  margin-top: 10px;
}
footer .box .media a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  border: 1px solid #0B9AAF;
  border-radius: 50%;
}
footer .box .media a img {
  transition: 0.3s all ease-in-out;
}
footer .box .media a:hover {
  background-color: #0B9AAF;
}
footer .box .media a:hover img {
  scale: 1.2;
  filter: brightness(0) invert(1);
}
footer .box h6 {
  font-size: 23px;
  text-align: left;
  font-weight: 600;
  margin-top: 5px;
}
footer .box h6 a {
  color: #5CD3E5;
}
footer hr {
  border-color: #0B9AAF;
}
footer .f-nav {
  padding: 20px 0px;
  display: flex;
  flex-wrap: wrap;
}
footer .f-nav a {
  color: #5CD3E5;
  padding: 0px 12px;
}
footer .f-nav a:hover {
  color: #FFF;
}
footer .copyright {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
footer .copyright p {
  margin: 0;
  color: #5CD3E5;
}

.inner-banner {
  width: 100%;
  padding: 80px 0px;
  background-image: url(../images/innerbanner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.inner-banner h1 {
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  color: #0B9AAF;
}
.inner-banner nav {
  display: flex;
  justify-content: center;
  margin: 0;
}
.inner-banner nav .breadcrumb {
  margin: 0;
}

.about-wrapper {
  width: 100%;
}
.about-wrapper .about-sec1 {
  width: 100%;
  background: #FFF url(../images/aboutbg.png) no-repeat right;
}
.about-wrapper .about-sec1 .about-img-sec {
  width: 500px;
  float: left;
  position: relative;
  margin-right: 37px;
  margin-bottom: 100px;
}
.about-wrapper .about-sec1 .about-img-sec .img1 {
  width: 360px;
}
.about-wrapper .about-sec1 .about-img-sec .img1 img {
  width: 100%;
  border-radius: 20px;
}
.about-wrapper .about-sec1 .about-img-sec .img2 {
  width: 360px;
  position: absolute;
  right: 0;
  top: 90px;
}
.about-wrapper .about-sec1 .about-img-sec .img2 img {
  width: 100%;
  border-radius: 20px;
}
.about-wrapper .about-sec1 .about-content h1 {
  font-size: 20px;
  text-transform: uppercase;
  color: #711B00;
  font-weight: 500;
}
.about-wrapper .about-sec1 .about-content h3 {
  font-size: 40px;
  font-weight: 600;
}
.about-wrapper .about-sec1 .about-content a {
  padding: 12px 20px;
  background-color: #0B9AAF;
  color: #FFF;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #0B9AAF;
}
.about-wrapper .about-sec1 .about-content a:hover {
  background-color: transparent;
  color: #000;
}
.about-wrapper .ministries-sec {
  width: 100%;
  padding: 20px 0px 60px 0px;
  overflow: hidden;
}
.about-wrapper .ministries-sec .box {
  width: 100%;
  padding: 20px;
}
.about-wrapper .ministries-sec .box .icon-sec {
  width: 100%;
  height: 133px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.about-wrapper .ministries-sec .box .icon-sec::before {
  content: "";
  position: absolute;
  width: 133px;
  height: 133px;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(to bottom, #85f6f6 0%, #ffffff 100%);
  border-radius: 50%;
}
.about-wrapper .ministries-sec .box .icon-sec img {
  position: absolute;
  z-index: 9;
  top: 60px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s all ease-in-out;
}
.about-wrapper .ministries-sec .box h4 {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}
.about-wrapper .ministries-sec .box p {
  text-align: center;
}
.about-wrapper .ministries-sec .box:hover .icon-sec img {
  top: 40px;
}

.team-sec {
  width: 100%;
}
.team-sec .box {
  width: 100%;
  justify-content: center;
  display: grid;
  margin-bottom: 30px;
}
.team-sec .box .photo-sec {
  width: 200px;
  margin-bottom: 12px;
  border: 1px solid #000;
}
.team-sec .box .photo-sec img {
  width: 100%;
}
.team-sec .box .content {
  width: 100%;
}
.team-sec .box .content h6 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
}
.team-sec .box .content p {
  text-align: center;
}

.news {
  width: 100%;
}
.news .news-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
  border-bottom: 1px solid #e5e5e5;
}
.news .news-box .date-sec {
  width: 90px;
  padding-right: 30px;
}
.news .news-box .date-sec .date {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news .news-box .date-sec .date .month {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}
.news .news-box .date-sec .date .day {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding: 5px 0px;
}
.news .news-box .date-sec .date .year {
  text-align: center;
}
.news .news-box .content {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.news .news-box .content .event-img img {
  width: 300px;
}
.news .news-box .content .event-txt {
  padding-right: 50px;
}
.news .news-box .content .event-txt h4 {
  font-size: 22px;
  font-weight: 700;
}
.news .news-box .content .event-txt .time {
  color: #0B9AAF;
  margin-bottom: 10px;
}
.news .col-lg-12:last-child .news-box {
  border-bottom: none;
}

.gallery {
  width: 100%;
}
.gallery .img-box {
  width: 100%;
  height: 192px;
  margin-bottom: 30px;
}
.gallery .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-sec {
  width: 100%;
}
.contact-sec .box {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #FFF;
  padding: 20px;
  border: 1px solid #d1eaef;
  margin-bottom: 10px;
}
.contact-sec .box .icon {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.contact-sec .box .icon img {
  width: 60px;
  transition: 0.3s all ease-in-out;
}
.contact-sec .box h5 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.contact-sec .box p {
  text-align: center;
  margin: 0;
}
.contact-sec .box p a {
  color: #000;
  text-decoration: none;
}
.contact-sec .box:hover .icon img {
  scale: 1.12;
}

.form-area {
  width: 100%;
  padding: 50px 0px;
  background-color: #f0f4f7;
}
.form-area .contact-form {
  padding: 30px;
  background-color: #FFF;
}
.form-area .contact-form h5 {
  font-size: 34px;
  font-weight: 600;
}
.form-area .contact-form h6 {
  font-size: 20px;
  font-weight: 600;
}
.form-area .contact-form .form-group input {
  width: 100%;
  height: 60px;
  border: 1px solid #e2e2e2;
  box-shadow: 2px 3px 6px #e2e2e2;
  border-radius: 10px;
}
.form-area .contact-form .form-group textarea {
  border: 1px solid #e2e2e2;
  box-shadow: 2px 3px 6px #e2e2e2;
  border-radius: 10px;
  resize: none;
}
.form-area .contact-form .form-group .btn_theme {
  background-color: #0B9AAF;
  padding: 15px 25px;
  border-radius: 6px;
  color: #FFF;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
  height: 57px;
  line-height: 28px;
}

@media (max-width: 1400px) {
  header .desktop .head-center .nav a {
    padding: 0px 14px;
  }
}
@media (max-width: 1100px) {
  header .desktop .head-center .nav a {
    padding: 0px 8px;
  }
  .banner .carousel-item .carousel-caption .banner-content h6 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  header .desktop {
    display: none;
  }
  header .mobile {
    display: block;
  }
  .navbar-brand img {
    width: 62px;
  }
  .navbar-toggler-icon {
    background-image: url(../images/nav.svg);
  }
  .navbar-toggler {
    border: none;
    padding: 0px;
  }
  .navbar-nav .nav-link {
    text-align: center;
    font-weight: 400;
    color: #000;
  }
  .navbar-nav .nav-link.active {
    font-weight: 600;
    color: #0B9AAF;
  }
  .about-sec .about-img-sec {
    display: flex;
    justify-content: space-between;
  }
  .about-sec .about-img-sec .img1, .about-sec .about-img-sec .img2 {
    width: 49%;
    position: relative;
    top: 0;
  }
  .about-sec .about-content {
    width: 100%;
    background: none;
    padding: 20px 0px 20px 0px;
  }
  .p-60 {
    padding: 30px 0px;
  }
  .about-sec .about-content h3, .sisters-sec .heading-title h4, .donate-sec h5, .gallery-sec h4 {
    font-size: 30px;
  }
  footer .f-content {
    justify-content: center;
    text-align: center;
    padding-bottom: 10px !important;
  }
  footer .box {
    text-align: center;
    padding: 20px 0px;
  }
  footer .box p, footer .box h6 {
    text-align: center;
  }
  footer .box .media {
    justify-content: center;
  }
  footer .f-nav, footer .copyright {
    justify-content: center;
    padding: 10px 0px;
  }
  .donate-sec {
    padding: 60px 0px;
  }
  .contact-sec .box {
    height: auto;
  }
  .form-area .contact-form h5, .form-area .contact-form h6 {
    text-align: center;
  }
  .form-area .contact-form {
    padding: 20px;
  }
  .form-area .contact-form h5 {
    font-size: 24px;
  }
  .form-area .contact-form h6 {
    font-size: 16px;
  }
  .form-area .contact-form .form-group .btn_theme {
    width: 100%;
  }
  .about-wrapper .about-sec1 .about-img-sec {
    width: 100%;
    margin-right: 0px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .about-wrapper .about-sec1 .about-img-sec .img1 {
    width: 48%;
  }
  .about-wrapper .about-sec1 .about-img-sec .img2 {
    width: 48%;
    top: 0;
  }
}
@media (max-width: 768px) {
  .banner .carousel-item .carousel-caption .banner-content {
    width: 100%;
  }
  .carousel-control-prev, .carousel-control-next {
    display: none;
  }
  .about-sec .about-content h3, .heading-title h4, .sisters-sec .box h4, .donate-sec h5, .gallery-sec h4 {
    font-size: 22px;
    text-align: center;
  }
  .about-sec .about-content h1 {
    text-align: center;
  }
  .about-sec .about-content {
    text-align: center;
  }
  .heading-title {
    margin-bottom: 0px !important;
  }
  .sisters-sec .box .icon-sec img {
    top: 34px !important;
  }
  .sisters-sec .box .icon-sec {
    margin-bottom: 20px;
  }
  .gallery-sec .box {
    height: 253px;
  }
  .gallery-sec .tile-sec {
    display: block;
  }
  .gallery-sec .tile-sec .box1 {
    width: 100%;
    padding: 0px 0px;
  }
  .donate-sec {
    padding: 30px 0px;
  }
  .inner-banner h1 {
    font-size: 28px;
  }
  .inner-banner {
    padding: 50px 0px;
  }
  .news .news-box {
    display: block;
  }
  .news .news-box .date-sec {
    width: 140px;
    padding-right: 0px;
    margin-bottom: 10px;
  }
  .news .news-box .date-sec .date .month, .news .news-box .date-sec .date .year {
    color: #FFF;
    font-weight: 400;
  }
  .news .news-box .date-sec .date .day {
    font-size: 18px;
    position: relative;
    padding-right: 10px;
    color: #FFF;
    font-weight: 400;
  }
  .news .news-box .date-sec .date .day::after {
    content: ",";
    position: absolute;
    right: 0;
    color: #FFF;
  }
  .news .news-box .date-sec .date {
    display: block;
    background-color: #711B00;
    padding: 1px 10px;
  }
  .news .news-box .content {
    width: 100%;
    flex-direction: column;
  }
  .news .news-box .content .event-img {
    width: 100%;
    margin-bottom: 10px;
  }
  .news .news-box .content .event-txt {
    padding-right: 0px;
  }
  .news .news-box .content .event-img img {
    width: 100%;
  }
  .about-wrapper .about-sec1 .about-content h3, .about-wrapper .about-sec1 .about-content h1 {
    font-size: 25px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .banner .carousel-item {
    height: 530px;
  }
  .banner .carousel-item .carousel-caption .banner-content h6 {
    font-size: 27px;
  }
  .banner .carousel-item .carousel-caption .banner-content h5 {
    font-size: 20px;
  }
  .team-sec .box .photo-sec {
    width: 124px;
  }
  .team-sec .box .content h6 {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */