@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--secondry-font);
}

:root {
    --primary-font: "Barlow", sans-serif;
    --secondry-font: "Arimo", sans-serif;
    --primary-color: #3a745c;
    --secondary-color: #f2463e;
    --third-color: #1e98db;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: #eee;
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.mainheading {
    margin: 20px 0 40px;
    text-align: center;
}

.mainheading h2 {
    font-size: 26px;
    color: #000;
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}

.mainheading h2:before {
    content: "";
    display: inline-block;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    position: relative;
    right: 10px;
    bottom: 5px;
}

.mainheading h2:after {
    content: "";
    display: inline-block;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    position: relative;
    left: 10px;
    bottom: 5px;
}

.mainheading a {
    background: #055fb229;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    text-decoration: underline;
}

/* topheader section style start */

.header .topheader .topheadbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .topheader .topheadbox .topheadleft {}

.header .topheader .topheadbox .topheadleft ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .topheader .topheadbox .topheadleft ul li {}

.header .topheader .topheadbox .topheadleft ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f4f4f4;
    font-family: var(--primary-font);
}

.header .topheader .topheadbox .topheadleft ul li a svg {
    width: 20px;
    fill: #fff;
}

.header .topheader .topheadbox .topheadleft ul li a svg path {
    fill: #fff;
}

.header .topheader .topheadbox .topheadmiddle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logobox .loginbtn {margin: 10px 0;}

.footer-logobox .loginbtn a {
    padding: 8px 10px;
    background: #fff;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
    transition: all .3s ease;
    text-transform: capitalize;
    /* animation: blinking 1s linear alternate infinite; */
    margin: 10px 0px;
    font-size: 18px;
}

.header .topheader .topheadbox .topheadmiddle .social-list {}

.header .topheader .topheadbox .topheadmiddle .social-list li {}

.header .topheader .topheadbox .topheadmiddle .social-list li a {}

.header .topheader .topheadbox .topheadright {}

.header .topheader .topheadbox .topheadright .registrationbtn {}

.header .topheader .topheadbox .topheadright .registrationbtn a {
    background: #000000;
    padding: 5px 20px;
    color: #fff;
    border-radius: 5px;
    font-family: var(--primary-font);
}

/* topheader section style start */

/* middleheader section style start */

.header {}

header.header {}

.header .topheader {}

.header .topheader {
    padding: 10px 0px;
    background: var(--primary-color);
}

.middleheaderbox {
    padding: 10px 0px;
    box-shadow: 2px 1px 10px 0px rgb(0 0 0 / 23%);
}

.middleheaderbox .middleheaderboxx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middleheaderbox .middleheaderboxx .headerlogo {
    width: 5%;
}

.middleheaderbox .middleheaderboxx .headerlogo a {}

.middleheaderbox .middleheaderboxx .headerlogo a img {
    width: 100%;
}

.middleheaderbox .middleheaderboxx .logorightcontent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.middleheaderbox .middleheaderboxx .logorightcontent h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
    font-family: var(--primary-font);
}

.middleheaderbox .middleheaderboxx .logorightcontent h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    font-family: var(--primary-font);
}

.middleheaderbox .middleheaderboxx .logorightcontent h6 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 18px;
    margin: 10px 0 0;
    font-family: var(--primary-font);
}

.middleheaderbox .middleheaderboxx .registrationbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.middleheaderbox .middleheaderboxx .registrationbox a {
    padding: 8px 25px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    transition: all .3s ease;
    animation: blinking 1s linear alternate infinite;
    width: max-content;
}

@keyframes blinking {
    0% {
        opacity: .6
    }

    50% {
        opacity: .9
    }

    100% {
        opacity: .6
    }
}

/* .middleheaderbox .registrationbox a:hover {background: var(--secondary-color);} */

.middleheaderbox .logorightcontent p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    font-family: var(--primary-font);
}

/* middleheader section style end */

/* mobile btn style start */

.mobiletooglemenubox {
    padding: 5px 0px;
    display: none;
}

.mob-menu-open {
    position: relative;
    z-index: 999999;
    top: 0;
    padding: 6px 5px 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* float: right; */
    right: 20px;
    right: 0;
}

.mob-menu-open span.bar {
    background: #000;
    height: 4px;
    width: 30px;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.middleheaderbox {
}

.mobiletooglemenubox .mobiletooglemenu {
    display: flex;
    align-items: center;
}

.mobiletooglemenubox .headerlogo {
    width: 20%;
}

.mobiletooglemenubox .headerlogo a {}

.mobiletooglemenubox .headerlogo a img {
    width: 100%;
}
.mobiletooglemenubox a.mobiletooglebtn {
    text-align: right;
    width: max-content;
    margin-left: auto;
    margin-right: 10px;
}

/* mobile btn style end */

/* mobilemenu style start */

.mobilemenu {
    background: var(--primary-color);
    transition: all .3s ease;
    height: 0;
    visibility: hidden;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.mobilemenu .mobilemenubox {
    padding: 0;
    margin: 0;
}

.mobilemenu .mobilemenubox ul {
    padding: 10px 0px;
}

.mobilemenu .mobilemenubox ul li {
    padding: 5px 0px 5px;
}

.mobilemenu .mobilemenubox ul li a {
    padding: 5px 5px;
    color: #fff;
    width: 100%;
    background: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobilemenu .mobilemenubox ul li .dropdown-btn {}

.mobilemenu .mobilemenubox ul li .dropdown-btn span {
    color: #fff;
}

.mobilemenu.show {
    overflow: auto;
    opacity: 1;
    visibility: visible;
    height: auto;
}

.mobilemenu .mobilemenubox ul li:hover {
    background: var(--primary-color);
}

.mob-menu-open span.bar:last-child {
    margin: 0;
}
.mobilemenu .mobilemenubox ul li .drop-down {
    background: #05539b;
    padding: 0 10px;
}
/* mobilemenu style start */

/* social icons section style start */

.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list li {}

.social-list li a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    color: #fff;
}

.social-list li a.facebook {
    background: #0866ff;
}

.social-list li a.instagram {
    background: #fe0b84;
}

.social-list li a.twitter {
    background: #000000;
}

.social-list li a.linkedin {
    background: #0077b5;
}

.social-list li a.youtube {
    background: #ff0000;
}

.social-list li a i {}

.social-list li a:hover {
    transform: translateY(-5px);
}

/* social icons section style start */

/* headermenu section style start */

.middleheaderbox {
    background: #fff;
}

.middleheaderbox .headermenu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.middleheaderbox .headermenu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.middleheaderbox .headermenu ul li {
    position: relative;
}

.middleheaderbox .headermenu ul li .drop-down {
    position: absolute;
    background: #fff;
    min-width: 190px;
    top: 100%;
    left: 0;
    transition: all .5s ease-in-out;
    opacity: 0;
    transform: translateY(50%);
    visibility: hidden;
    z-index: 99;
}

.middleheaderbox .headermenu ul li .drop-down ul {
    display: block;
}

.middleheaderbox .headermenu ul li:hover .drop-down {
    opacity: 1;
    visibility: visible;
    transform: unset;
}

.middleheaderbox .headermenu ul li .drop-down ul li {
    border-right: unset;
    border-bottom: 1px solid var(--secondary-color);
}
.middleheaderbox .headermenu ul li .drop-down ul li a {
    color: var(--bs-black);
}
.middleheaderbox .headermenu ul li .drop-down ul li a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.middleheaderbox .headermenu ul li:last-child {
    border: unset;
}

.middleheaderbox .headermenu ul li a {
    padding: 10px 10px;
    color: #000;
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1;
    transition: all .3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.middleheaderbox .headermenu ul li a i {
    font-size: 13px;
}

.button.focus-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff; /* green */
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  border: 3px solid var(--primary-color);
}

.button-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon svg {
  animation: heartBlink 1.2s infinite alternate ease-in-out;
}

.button-ripple {
  position: absolute;
  width: 200px;
  height: 100px;
  background: #41ff414d;
  animation: heartPulseRipple 1.2s infinite ease;
  transform: scale(0);
  z-index: 0;
}

@keyframes heartBlink {
  0% {
    color: var(--forth-color);
    transform: scale(1);
  }
  50% {
    color: var(--forth-color);
    transform: scale(1.25);
  }
  100% {
    color: var(--forth-color);
    transform: scale(1);
  }
}

@keyframes heartPulseRipple {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* headermenu section style end */

/* banner section style start */

.bannersection {}

.bannersection .bannerimg {}

.bannersection .bannerimg img {
    width: 100%;
}

/* banner section style end */

/* about section style start */

.main-heading {
    font-size: 40px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: capitalize;
}

.common-btn {
    background: var(--primary-color);
    color: #fff;
    font-family: var(--secondry-font);
    text-align: center;
    padding: 8px 15px;
    text-decoration: none;
    outline: none;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
}

.about {
    padding: 50px 0;
}
.about .abouttext {}

.about .abouttext h2 {
    margin: 0 0 10px;
}

.about .abouttext p {
    margin: 0 0 10px;
    font-family: var(--secondry-font);
    font-size: 16px;
    letter-spacing: .5px;
    color: #222;
    font-weight: 400;
}

.about .aboutdescription {
    padding: 20px 0 0;
}

.about .aboutdescription h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px;
}

.about .aboutdescription ul {
    list-style: disc;
    margin: 0 0 20px 30px;
}

.about .aboutdescription ul li {
    margin: 0 0 10px;
    font-family: var(--secondry-font);
    font-size: 16px;
    letter-spacing: .5px;
    color: #222;
    font-weight: 400;
}

.about .aboutdescription p {
    margin: 0 0 10px;
    font-family: var(--secondry-font);
    font-size: 16px;
    letter-spacing: .5px;
    color: #222;
    font-weight: 400;
}

/* about section style end */

/* gallery section style start */

.gallerysection {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.gallerysection .gallerysectionbox .gallerytext h6{font-size: 16px;font-family: var(--secondry-font);font-weight: 500;text-transform: capitalize;letter-spacing: .5px;}
.gallerysection .gallerysectionbox .gallerytext{
    text-align: center;
    padding: 15px;
    background: #fff;
}

.gallerysection .main-heading {
    color: #fff;
}

.gallerysection a.float-end {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallerysection .gallerysectionbox img {
    background: #fff;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.gallerysection .gallerysectionbox{
    padding: 12px;
}


.our-products{
    padding: 60px 0;
}

.slick-dots li.slick-active button:before {
    color: #fff;
}

.slick-dots li button:before {
    color: #fff;
    opacity: .50;
}

/* gallery section style end */

/* firstlook section style start */

.firstlook {
    padding: 60px 0;
    background: #eefff8;
}

.firstlook .alllist {
}

.firstlook .alllist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.firstlook .alllist li:before {
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
    background: transparent;
    border: 2px solid transparent;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: var(--secondary-color);
    left: 0;
}

/* firstlook section style end */

/* videos section style start */

.ex{
    background: #ffffff;
    padding: 50px 0px;
}
.ex .container {
    /* height: 480px; */
    /* background-color: yellowgreen; */
}

.ex .container .row .e1 iframe {
    border: 1px solid black;
    width: 100%;
    height: 350px;
    margin-top: 25px;
    border-radius: 23px;
}

.ex .container .row .e2 {
    border: 2px solid red;
    height: 355px;
    width: 270px;
    margin-top: 140px;
    left: 75px;
    border-radius: 0 125px 0 0;
    background-color: #CE292F;
}

.ex .container .row .e2 .e3 {
    /* border: 2px solid black; */
    height: 75px;
    width: 180px;
}

.ex .container .row .e2 .e4 {
    /* border: 2px solid black; */
    height: 80px;
    width: 167px;
    font-size: 25px;
}

.ex .container .row .e2 .e5 {
    /* border: 2px solid black; */
    height: 80px;
    width: 165px;
}

.ex .container .row .e2 .e3 {

    margin-top: 35px;
}

.ex .container .row .e2 .e3 p {
    color: white;
    text-align: center;
    font-size: 17px;
    text-align: justify;
}

.ex .container .row .e2 .e4 p {
    color: yellow;
    text-align: center;
}

.ex .container .row .e2 .e4 {
    margin-top: 45px;

}

.ex .container .row .e2 .e5 p {
    color: gray;
    font-size: 70px;
    position: relative;
    left: 93px;
}

.ex .container .row .e2 .e5 {
    margin-top: 2px;
    position: relative;
    left: 80px;
    bottom: -22px;
}

.ex .container .row h2 {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    padding: 20px;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.yt-card{
    border-radius: 14px;
    overflow: hidden;
    background: var(--primary-color);
    cursor: pointer;
}

.yt-thumb{
    position: relative;
}

.yt-thumb img{
    width: 100%;
    display: block;
    aspect-ratio: 16 / 12;
    height: auto;
}

.yt-play{
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.yt-content{
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--secondry-font);
}
.yt-content a {
    display: flex;
    gap: 10px;
}
.yt-content h4{
    color: #fff;
    font-size: 15px;
    margin: 0;
    line-height: unset;
    width: 80%;
}

.yt-thumb iframe{
    aspect-ratio: 16 / 12;
    height: auto!important;
}

/* videos section style end */

/* what we do section style start */

.whatwedosection {
    padding: 50px 0;
}

.whatwedosection .whatwedobox {
	padding: 15px;
}

.whatwedosection .whatwedobox .whatwedoimg {}

.whatwedosection .whatwedobox .whatwedoimg img {
    width: 100%;
}

.whatwedosection .whatwedobox .whatwedoinfo {
    margin: 20px 0;
}

.whatwedosection .whatwedobox .whatwedoinfo h2 {
    font-family: var(--primary-font);
    font-size: 24px;
    color: #061408;
    font-weight: 600;
    text-align: center;
    margin: 0 0 10px;
}

.whatwedosection .whatwedobox .whatwedoinfo p {
    text-align: center;
    font-weight: 500;
    color: #353535;
    font-size: 16px;
    font-family: var(--secondry-font);
    margin: 0 0 10px;
}

.whatwedosection .whatwedobox .whatwedoinfo a {
    width: max-content;
    padding: 5px 20px;
    margin: 0 auto;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--secondry-font);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* what we do section style end */

/* blogs section style start */

.blogsection {
    padding: 50px 0;
    background: #fff0f0;
}

.blogsection .blogbox {
    margin-bottom: 30px;
    padding: 10px;
}

.blogsection .blogbox img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.blogsection .blogbox .blogcontent {
    border-radius: 7px;
    background: #fff;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 20px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: -100px;
    z-index: 11;
    position: relative;
}

.blogsection .blogbox .blogcontent ul {
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.blogsection .blogbox .blogcontent ul li {
    display: inline-block;
    color: #535353;
    font-size: 15px;
    font-weight: 400;
    padding: 0px 10px;
}

.blogsection .blogbox .blogcontent ul li i {
    color: #F74F22;
    padding-right: 10px;
}

.blogsection .blogbox .blogcontent h3 {
    font-size: 15px;
    margin: 10px 0;
}
.blogsection .blogbox .blogcontent p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.blogsection .blogbox .blogcontent h3 a {
    color: #061408;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: .5px;
}

.blogsection .blogbox .blogcontent .blogbtn {}

.blogsection .blogbox .blogcontent .blogbtn a {
    color: #061408;
    font-size: 15px;
    font-weight: 500;
}

.blogsection .blogbox .blogcontent .blogbtn a i {
    margin-left: 10px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    background: #F74F22;
    border-radius: 100px;
    display: inline-flex;
    color: #fff;
    font-size: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* blogs section style end */

/* new footer style start */

.footer {
    background: #1d4e46;
}

.footer .footer-top {
    padding: 50px 0 100px 0;
}

.footer-bottom {
    background: #245f55;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: capitalize;
    letter-spacing: .5px;
}

.footer .footer-widget.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    outline: none
}

.footer .footer-widget .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-widget .footer-about-content p {
    color: #fff;
    margin-bottom: 15px;
}

.footer .footer-widget .footer-about-content p:last-child {
    margin-bottom: 0
}

.footer .footer-menu ul li {
    margin-bottom: 5px;
    position: relative
}

.footer .footer-menu ul li:last-child {
    margin-bottom: 0
}

.footer .footer-menu ul li a {
    color: #fff;
    font-size: 16px;
    position: relative;
    transition: all .4s ease 0s;
    font-weight: 400;
}

.footer .footer-widget.footer-menu ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-contact-info {
    color: #fff!important;
    font-size: 15px
}

.footer-contact-info p {
    margin: 10px 0px;
    display: flex;
}

.footer-contact-info .footer-address p {
    margin: 0;
}

.footer-contact-info p a {
    color: #fff!important;
    display: inline;
}

.footer-contact-info .footer-address {
    display: flex;
    margin: 10px 0px;
}

.footer-contact-info .footer-address span {
    margin-right: 20px
}

.footer-contact-info .footer-address span i {
    font-size: 16px;
}

.footer-contact-info .footer-address span i.fa-map-marker-alt {
    font-size: 20px
}

.footer-contact-info p i {
    margin-right: 15px;
    font-size: 18px;
}

.footer .footer-bottom .copyright {
    padding: 10px 0;
    text-align: center;
}

.footer .footer-bottom .copyright-text p {
    color: #dcdcdc;
    font-size: 16px;
    font-weight: 500;
}

.footer .footer-bottom .copyright-text p a {
    color: #dcdcdc;
    transition: all .4s ease 0s;
    display: inline;
}

.footer .footer-bottom .copyright-text p a:hover {
    color: #fff
}

.footer .footer-bottom .copyright-text p.title {
    font-weight: 400;
    margin: 10px 0 0
}

.footer .social-icon ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .social-icon ul li {
    margin-right: 15px
}

.footer .social-icon ul li:last-child {
    margin-right: 0
}

.footer .social-icon ul li a {
    color: #fff;
    display: inline-flex;
    font-size: 20px;
    transition: all .4s ease 0s
}

.footer .social-icon ul li a:hover {
    color: #ffffff;
}

/* new footer style end */

/* map section style start */

.map-section {}

.map-section.homepage {
    margin: 0 0 -10px;
}

.map-section .map-box {
    padding: 0;
    margin: 0;
}

.map-section .map-box iframe {
    width: 100%;
    height: 400px;
}

/* map section style end */

/* breadcrumb section style start */

.pagebreadcrumb{
    padding: 50px 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-position: 96% 50%;
    width: 100%;
}
.pagebreadcrumb:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.pagebreadcrumb .pagebreadcrumbbox {
    align-items: center;
}
.pagebreadcrumb .breadcrumb-col{display: flex;align-items: center;justify-content: center;flex-direction: column;padding: 70px 0 30px;}
.pagebreadcrumb .breadcrumb-col h1{
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 0px;
    font-size: 28px;
    text-transform: uppercase;
}
.pagebreadcrumb .breadcrumb-col .breadtagline{
    color: #000000;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.pagebreadcrumb .breadcrumbleft ul,
.pagebreadcrumb .breadcrumb-col ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pagebreadcrumb .breadcrumbleft ul li,
.pagebreadcrumb .breadcrumb-col ul li{
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
}
.pagebreadcrumb .breadcrumbleft ul li a,
.pagebreadcrumb .breadcrumb-col ul li a{
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}
.pagebreadcrumb .breadcrumbleft ul li:not(:first-child):before,
.pagebreadcrumb .breadcrumb-col ul li:not(:first-child):before{
    content: "";
    margin: 0 5px;
    color: #000;
    width: 15px;
    background: url("../images/double-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: contrast(0) grayscale(0);
}

.pagebreadcrumb .breadcrumbleft ul li:not(:last-child) a,
.pagebreadcrumb .breadcrumb-col ul li:not(:last-child) a{
    color: #919191;
    font-weight: 600;
}
.pagebreadcrumb .breadcrumbleft{
    padding: 1% 0;
}
.pagebreadcrumb .breadcrumbleft ul{}
.pagebreadcrumb .breadcrumbleft ul li{}
.pagebreadcrumb .breadcrumbleft ul li span{
    display: inline-block;
    color: #000;
    padding: 5px 5px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
}
.pagebreadcrumb .breadcrumbleft ul li a{}
.pagebreadcrumb .breadcrumbleft ul li:not(:first-child):before{}
.pagebreadcrumb .breadcrumbleft ul li:not(:last-child) a{}

/* breadcrumb section style end */

/* pagecontent style start */

.pagecontent{
    padding: 50px 0;    
}
.pagecontent{}
.messagebox .post{
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 30px;
    letter-spacing: 2px;
    position: relative;
}
.messagebox .post:before,
.messagebox .post:after{
    content: "";
    width: 8px;
    height: 8px;
    background: #005382;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 50px;
}
.messagebox .post:after{
    width: 100px;
    height: 2px;
    bottom: -7px;
    left: 15px;
}
.messagebox .type{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
}
.messagebox p{
    font-size: 16px;
    text-align: justify;
    font-weight: 400;
    color: #444;
    margin: 0 0 10px;
}
.messagebox ul {
    list-style: disc;
    margin: 0 0 0 30px;
}
.messagebox ul li{font-size: 16px;text-align: justify;font-weight: 400;color: #444;margin: 0 0 10px;}
.messagebox ul li ul {margin: 10px 0 0 30px;}
.messagebox .messages{}
.messagebox .messages p{
}
.messagebox .messages p.admissiontext {
    text-align: center;
    background: #ffffbc;
    font-size: 18px;
    padding: 20px 10px;
    font-weight: 400;
    color: #000;
    border-radius: 20px;
}

.messagebox .messages p a {
    display: inline;
    color: var(--primary-color);
    font-weight: 600;
}
.messagebox .messages p.admissiontext a {
    padding: 5px 20px;
    display: inline-block;
    margin: 10px 0;
    background: var(--primary-color);
    border-radius: 5px;
    color: #fff;
}
.messagebox p.lastbold{
    font-weight: 600;
    margin-top: 10px;
}
.messagebox p.firstbold{
    font-weight: 600;
    margin-bottom: 0;
}
.messageimg{
}
.messageimg img{width: 100%; border: 1px solid #eee;}
.messageimg .name{
    color: #005382;
    font-weight: 700;
    font-size: 20px;
    margin: 10px 0 5px;
    text-align: center;
}
.messageimg .degree{
    font-weight: 500;
    color: #606060;
    text-align: center;
    display: block;
}

.pagecontent .gallerybox {margin: 0 0 10px;}

.pagecontent .gallerybox a {}

.pagecontent .gallerybox a figure {
    overflow: hidden;
    height: 300px;
    position: relative;
}

.pagecontent .gallerybox a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pagecontent .gallerybox a figure span {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #d5888e;
    font-size: 16px;
    background: #372e56;
    position: absolute;
    color: #ffffff;
    right: 0;
    left: 0;
    bottom: 0;
    font-weight: 600;
}

/* pagecontent style end */

/* table style start */

.table-bordered {
    border: 1px solid #ddd;
}

table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5 !important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}
.table-hover>tbody>tr:hover>* {
    box-shadow: inset 0 0 0 9999px #f5f5f5;
}

.pagecontent table tbody tr td a {
    
color: #0d6efd;
}

/* table style end */

/* contact page style start */

/* CONTCT */ 

.cont-info{
    background: #ffffff;
    display: flow-root;
    padding: 20px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px 0 rgb(185 185 185 / 14%);
    min-height: 155px;
}
.cont-info .icon{
    float: left;
    padding-right: 15px;
    width: 55px;
}
.cont-info .icon svg{
    width: 40px;
    fill: var(--primary-color);
}
.cont-info .txt{
    float: left;
    width: calc(100% - 55px);
    /* width: calc(100% - 100px); */
}
.cont-info .txt span{
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 0;
    display: inline-block;
    color: var(--primary-color);
}
.cont-info .txt p{
    color: #000;
    font-size: 14px;
    margin-top: 0;
    word-wrap: break-word;
}
.cont-left, .cont-right{
    padding-top: 40px;
}
.cont-left{}
.cont-left span{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    display: block;
}
.cont-left h3{
    padding: 0px 0 29px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    white-space: nowrap;
    margin-top: 5px;
    color: var(--primary-color);
    margin-bottom: 0;
}
.cont-left h3:after,
.cont-left h3:before{
    content: "";
    width: 80%;
    display: inline-block;
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    background: #ededed;
    z-index: 1;
}
.cont-left h3:after{
    background: var(--primary-color);
    width: 35%;
    height: 2px;
}
.cont-left h3:before{}
.cont-left form{}
.cont-left form .fields{
    padding-bottom: 10px;
}
.cont-left form .fields :is(input, textarea){
    border-radius: 10px;
    padding: 10px 15px;
    border-width:2px;
    height: auto;
}
.cont-left form .fields :is(input, textarea)::placeholder{
    color: var(--third-color);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
.cont-left form .fields:is(input, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.cont-left form .fields-btn{}
.cont-left form .fields-btn input[type='submit']{
    padding: 12px 25px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    white-space: nowrap;
    box-shadow: 0 5px 20px 0 rgb(131 48 54 / 34%);
    letter-spacing: 1px;
    border-radius: 5px;
}
.cont-left form .fields-btn input[type='submit']:hover{
    background: var(--secondary-color);
}
.cont-right{}
.cont-right .map{}
.cont-right .map iframe{
    display: block;
    width: 100%;
    height: 460px;
    border-radius: 15px;
}

/* contact page style end */


.importantlinks {
    padding: 50px;
}

.importantlinks .impotantlinkhead {
    margin: 0 0 20px;
}

.importantlinks .impotantlinkhead h3 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    font-family: var(--primary-font);
    text-align: center;
}

.importantlinks .inpotantlinksbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.importantlinks .inpotantlinksbox .importantlinksinner {
    width: 32%;
}

.importantlinks .inpotantlinksbox .importantlinksinner a {
    background: var(--primary-color);
    color: #fff;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all .3s ease;
    font-size: 22px;
}

.importantlinks .inpotantlinksbox .importantlinksinner a:hover {
    background: var(--secondary-color);
}


.messagebox .messages .tablebox {}

.messagebox .messages .tablebox table {}

.messagebox .messages .tablebox table tbody {}

.messagebox .messages table tbody tr {
    border: 1px solid #000;
}

.messagebox .messages table tbody tr td {
    border: 1px solid #000;
    padding: 5px;
}

/* donate page style start */

.donatesection {
    padding: 50px 0;
}

.donatesection .donatebox {
    display: flex;
    align-items: center;
}

.donatesection .donatebox .donateleftbox {
    width: 70%;
    text-align: center;
}

.donatesection .donatebox .donateleftbox .donateleftheading {
    margin: 0 0 20px;
}

.donatesection .donatebox .donateleftbox .donateleftheading h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px;
    font-family: var(--primary-font);
}

.donatesection .donatebox .donateleftbox .donateleftheading h6 {
    font-size: 16px;
    font-family: var(--secondry-font);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.donatesection .donatebox .donateleftbox .donateinfo {
    background: #dbfff0;
    margin: 0 auto 20px;
    width: 60%;
    padding: 30px;
    border-radius: 10px;
}

.donatesection .donatebox .donateleftbox .donateinfo p {
    font-size: 16px;
    font-weight: 500;
}

.donatesection .donatebox .donaterightbox {
    width: 28%;
    display: none;
}

.donatesection .donatebox .donaterightbox .donateqrcode {
    text-align: center;
}

.donatesection .donatebox .donaterightbox .donateqrcode img {
    width: 70%;
}

/* donate page style end */

.blog-details {
    padding: 50px 0px;
}

.blog-details .blog-detailsbox {}

.blog-details .blog-detailsbox .blog-image {
    text-align: center;
    margin: 0 0 20px;
}

.blog-details .blog-detailsbox .blog-image img {
    width: 70%;
    border-radius: 15px;
    height: 400px;
    object-fit: contain;
}

.blog-details .blog-detailsbox .service-details-box {}

.blog-details .blog-detailsbox .service-details-box p {
    color: #373737;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
    text-align: justify;
    font-family: var(--secondry-font);
}
.blog-details .blog-detailsbox .service-details-box ul {
    margin: 0 20px;
    list-style: disc;
}
.blog-details .blog-detailsbox .service-details-box ul li {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}
.blog-details .blog-detailsbox .service-details-box h3{
    font-size: 22px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: #000;
    margin: 0 0 10px;
    line-height: normal;
}
.blogs-sidebox {
    box-shadow: 0px 0px 50px 3px rgba(232,232,232,0.7);
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--primary-color);
}

.blogs-sidebox h4 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    text-align: center;
}

.blogs-sidebox .blogs-boxx {
    background: #488d71;
    padding: 10px;
    border-radius: 10px;
}

.blogs-sidebox .blogs-boxx a {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.blogs-sidebox .blogs-boxx a .blogs-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogs-sidebox .blogs-boxx a .blogs-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.blogs-sidebox .blogs-boxx a .blogs-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blogs-sidebox .blogs-boxx a h5 {
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    color: #fff;
}
.blogs-sidebox .blogs-boxx a:hover .blogs-info h5 {
    color: var(--primary-color);
}

.blogs-sidebox .blogs-boxx a .blogs-info p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.blog-details .blog-detailsbox .service-details-box h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff !important;
}
.blog-details .blog-detailsbox .service-details-box h1:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}
.blog-details .blog-detailsbox .service-details-box h1:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
    right: -10px;
}

.blog-details .blog-detailsbox .service-details-box h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--primary-font);
    color: #000;
    margin: 0 0 10px;
    line-height: normal;
}

.blog-details .blog-detailsbox .service-details-box h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0 10px;
}

.servicesdetailsbox .blogs-sidebox .blogs-boxx a h5 {
    display: unset;
    -webkit-box-orient: unset;
    overflow: unset;
    -webkit-line-clamp: unset;
}

.table-bordered {
    border: 1px solid #ddd;
}

table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5 !important;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}
.table-hover>tbody>tr:hover>* {
    box-shadow: inset 0 0 0 9999px #f5f5f5;
}

.pagecontent table tbody tr td a {
    color: #0d6efd;
}
/* pagemessage section style start */

.successmessage {
    display: inline-flex;
    padding: 0px 10px;
    background: #309100;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.successmessage p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.pagemessage {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    z-index: 11;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    border-radius: 20px;
}

.pagemessage .warningmessage {
    background: #ff0000;
    color: #fff;
    padding: 7px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-transform: capitalize;
}

/* pagemessage section style end */