@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins: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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: "Nunito Sans", serif; */

/* font-family: "Poppins", serif; */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    /* background-image: url(../images/pattern.jpg);
    background-size: cover; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #191e24;
    font-family: 'Poppins', sans-serif;
}

p {
    color: #777777;
    margin: 0;
    font-weight: 300;
}

ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

a {
    display: block;
    text-decoration: none;
}

.green {
    color: #212c7c;
}

.blue {
    color: #212c7c !important;
}

/* web header */

.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90000;
    background: #fff;
}

.page-loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.loader {
    width: 140px;
    height: 140px;
    border-top: 8px solid #212c7c;
    border-bottom: 8px solid #212c7c;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin-counterclockwise 2s infinite linear;
}

@keyframes spin-counterclockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    };
}

.loader-inner {
    width: 90px;
    height: 90px;
    border-right: 8px solid #212c7c;
    border-left: 8px solid #212c7c;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-radius: 50%;
    animation: spin-clockwise 1s infinite linear;
}

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    };
}

.web-header {
    width: 100%;
    background-color: #fff;
}

.fixed-header {
    width: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 5;
    top: 0;
    box-shadow: 2px 4px 8px rgba(73, 73, 73, .15);
}

#toTop.show {
    opacity: 1;
    visibility: visible;
}

#toTop {
    position: fixed;
    right: 18px;
    bottom: 50px;
    background: #ed2224;
    color: #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    -o-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    padding: 0 10px;
}

.nav-link {
    color: #191e24;
    padding: 0 0 5px 0 !important;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: all .3s ease-in-out;
    font-family: "Nunito Sans", serif;
}

.nav-link.active {
    color: #ed2224 !important;
    position: relative;
}

.nav-link.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ed2224;
}

.nav-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ed2224;
    transition: all .3s ease-in-out;
}

.nav-link:hover {
    color: #ed2224;
}

.nav-link:hover::before {
    width: 100%;
}

/* banner sec */

.web-banner-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.web-banner-box {
    position: relative;
}

.web-banner-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #191e2440;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}

.slick-dots li {
    padding: 0 4px;
}

.slick-dots li button {
    background: transparent;
    border: 2px solid #fff;
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
}

.slick-dots li.slick-active button {
    background-color: #fff;
}

/* web banner text */

.web-banner-text {
    padding: 46px 0;
}

.web-banner-text-inner p {
    font-size: 26px;
    text-align: center;
    font-weight: 500;
}

.facility-box {
    width: 100%;
    height: 100%;
    padding: 30px 30px 60px 30px;
    /* box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1); */
    background: #212c7c;
    position: relative;
    color: #fff;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.facility-box:hover {
    transform: translateY(-10px) !important;
}

.facility-box h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin: 11px 0;
}

.facility-box p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 11px;
}

.facility-box ul li {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding-left: 19px;
    position: relative;
}

.facility-box ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #fff;
}

.readmore-btn {
    position: absolute;
    bottom: 21px;
    left: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid;
    transition: all .3s ease-in-out;
}

.readmore-btn i {
    margin-left: 5px;
    font-size: 13px;
}

.readmore-btn:hover {
    color: #ed2224;
}

/* about us sec */

.about-sec {
    padding: 70px 0;
    /* background-image: url(../images/pattern.jpg);
    background-size: cover; */
}

.about-img-cont h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-img-cont p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 12px;
}

.about-read-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #212c7c;
    color: #212c7c;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 18px;
    transition: all .3s ease-in-out;
}

.about-read-btn:hover {
    background: #212c7c;
    color: #fff;
}

/* quality serc */

.quality-sec {
    /* background: #8fc843; */
    padding: 40px 0;
}

.quality-box {
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #212c7c;
    border-radius: 10px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
}

.quality-box h3 {
    font-size: 24px;
    color: #000;
    margin: 9px 0px;
}

.quality-box p {
    font-weight: 500;
}

.tab-inner-img-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tab-img-box {
    width: 25%;
}

.tab-img-inner {
    width: 100%;
    position: relative;
    transition: all .3s ease-in-out;
}

.tab-img-inner:hover .tab-img-caption {
    opacity: 1;
    visibility: visible;
}

.tab-img-caption {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: #83b5bc73;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.tab-img-caption-inner {
    width: 100%;
    border: 1px solid #fff;
    padding: 48px 19px;
    text-align: center;
}

.tab-img-caption-inner .large-text {
    font-size: 22px;
}

.tab-img-caption p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.img-tab {
    border: 1px solid #ed2224;
    background: transparent;
    padding: 8px 23px;
    color: #ed2224;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 5px;
    transition: all .3s ease-in-out;
}

.img-tab:hover {
    background-color: #ed2224;
    color: #fff;
}

.img-tab.active {
    background-color: #ed2224;
    color: #fff;
}

.tab-inner-sec .nav-tabs {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.tab-sec {
    padding-top: 60px;
    padding-bottom: 60px;
}

.web-footer {
    background: #21356c8a;
    padding: 40px 0 21px 0;
}

.web-footer-left a {
    display: inline-block;
    margin-bottom: 10px;
}

.web-footer-left p {
    color: #fff;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
}

.social-media-sec {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.web-footer-center-heading {
    font-size: 21px;
    font-weight: 500;
    color: #212c7c;
    margin-bottom: 20px;
}

.web-footer-center ul li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    transition: all .3s ease-in-out;
}

.web-footer-center ul li a:hover {
    color: #ab110f;
    letter-spacing: 1px;
}

.web-footer-right ul li {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.web-footer-right ul li a {
    display: inline-block;
    color: #fff;
}

.web-footer-right ul li a:hover {
    color: #ab110f;
}

.web-footer-center {
    padding-left: 55px;
}

.web-footer-bottom {
    border-top: 1px solid #fff;
}

.web-footer-bottom p {
    font-size: 16px;
    color: #fff;
    padding-top: 19px;
    text-align: center;
    font-weight: 400;
}

.web-footer-inner {
    padding-bottom: 25px;
}


.social-media-sec li {
    margin: 0 5px;
}

.social-media-sec li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.facebook {
    background: #3b5998;
    color: #fff;
    border: 0;
}

.instragram {
   background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
    border: 0;
}

.youtube {
    background: #cd201f;
    color: #fff;
    border: 0;
}

.social-media-sec li a i {
    font-size: 15px;
}

/* about us sec */

.about-text-inner h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text-inner p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-text-inner ul {
    margin-bottom: 12px;
}

.about-text-inner ul li {
    padding-left: 35px;
    font-size: 17px;
    color: #212c7c;
    margin-bottom: 5px;
    position: relative;
}

.about-text-inner ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #86bd2e;
    top: 8px;
    left: 17px;
}

.about-text-sec {
    padding: 30px 0;
}

.director-box-inner img {
    width: 100%;
}

.director-box {
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 28px 10px;
    border-radius: 5px;
    position: relative;
    border: 2px solid #8fc843;
}

.director-box-inner-bottom {
    text-align: center;
    padding: 10px 0;
}

.director-box-inner-bottom h3 {
    font-size: 19px;
    color: #8fc843;
    margin-bottom: 10px;
}

.director-box-inner-bottom p {
    position: absolute;
    bottom: 14px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0);
    font-size: 16px;
    font-weight: 500;
}

.page-heading {
    text-align: center;
    font-size: 29px;
    text-transform: uppercase;
    margin-bottom: 31px;
}

.about-director-sec {
    margin-bottom: 20px;
}

.heading-inner-sec {
    text-align: center;
}

.title {
    display: inline-block;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    color: #5c5c5c;
    text-transform: uppercase;
}

.heading-sec {
    padding-top: 20px;
}



/* why choose sec */

.why-choose-box {
    width: 100%;
    height: 100%;
    border: 1px solid #86bd2e;
    color: #86bd2e;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: all .3s ease-in-out;
}

.why-choose-box:hover {
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) !important;
}

.why-choose-box i {
    font-size: 35px;
}

.why-choose-box h3 {
    font-size: 22px;
    margin: 11px 0;
}

.why-choose-box p {
    font-size: 17px;
    font-weight: 500;
}

.why-choose-sec {
    padding: 60px 0 20px 0;
}

/* hard ware sec */

.hardware-sec {
    padding: 40px 0;
}

.hardware-cont-sec h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hardware-cont-sec p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hardware-cont-sec ul {
    margin-bottom: 12px;
}

.hardware-cont-sec ul li {
    padding-left: 35px;
    font-size: 17px;
    color: #212c7c;
    margin-bottom: 5px;
    position: relative;
}

.hardware-cont-sec ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #86bd2e;
    top: 8px;
    left: 17px;
}

.accordion-button::after {
    display: none;
}

.accordion-header {
    margin: 0 !important;
    border: 0;
}

.accordion-button {
    padding: 20px 0;
    font-size: 19px;
    font-weight: 600;
    color: #212c7c;
    background-color: transparent !important;
    justify-content: space-between;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button .minus {
    display: block;
}

.accordion-button .plus {
    display: none;
} 

.accordion-button.collapsed .plus {
    display: block;
}

.accordion-button.collapsed .minus {
    display: none;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.accordion-item:last-child {
    border: 0;
}

.accordion-body {
    padding: 0px 0 22px 0;
}

.accordion-body p {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.hardware-bottom-slider {
    margin: 0 -10px;
}

.hardware-bottom-box {
    padding: 0 10px;
}

.hardware-bottom-sec {
    padding-bottom: 40px;
}

.hardware-bottom-box-inner {
    border: 1px solid #212c7c;
    padding: 5px;
    border-radius: 5px;
}

.hardware-img-sec img {
    width: 100%;
}

.hardware-cont-sec h4 {
    font-size: 20px;
    margin-bottom: 17px;
    color: #86bd2e;
}

.contact-map-inner {
    width: 100%;
    height: 300px;
}

.contact-map-inner iframe {
    width: 100%;
    height: 100%;

}

.contact-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #212c7c;
    border-radius: 10px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: #212c7c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.contact-icon-box i {
    font-size: 20px;
}

.contact-box h3 {
    font-weight: 500;
    font-size: 22px;
    margin: 11px 0;
}

.contact-box p {
    font-size: 15px;
    font-weight: 400;
}

.contact-box p a {
    font-size: 16px;
    font-weight: 400;
    color: #777777;
    display: inline-block;
}

.contact-box p a:hover {
    color: #212c7c;
}

.contact-us-sec {
    padding: 70px 0;
}

.hardware-bottom-box-inner img {
    width: 100%;
}

.footer-learge-text {
    font-size: 19px;
    margin-bottom: 16px;
}

.choose-list {
    font-size: 21px;
    margin-bottom: 10px;
}

.meterials-box h4 {
    font-size: 23px;
    position: relative;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 28px;
}

.meterials-box h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 13px;
    height: 10px;
    background-color: #212c7c;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.meterials-box ul li {
    font-size: 21px;
    margin-bottom: 10px;
}

.testimonials-sec {
    width: 100%;
    background: #212c7c;
    padding: 77px 0 72px 0;
}

.testimonials-inner-sec h2 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 600;
}

.testimonials-outer {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.testimonials-text p {
    font-size: 19px;
    color: #fff;
    margin-bottom: 20px;
}

.testimonials-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonials-img img {
    width: 100%;
}

.client-name {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}

.client-title {
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 4px;
}

.testimonials-name {
    padding-left: 10px;
}

.testimonials-outer .slick-dots {
    bottom: -30px;
}

.testimonials-outer .slick-dots li button {
    background: transparent;
    border: 2px solid #fff;
    font-size: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    padding: 0;
}

.testimonials-outer .slick-dots li.slick-active button {
    background-color: #fff;
}

.slick-prev {
    font-size: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #212c7c;
}




