/* Website: sudarsanam central school
Author: Weberge by ipsr 
Style.css*/

/********** CSS **********/
:root {
    --primary: #0D1282;
    --secondary: #D71313;
    --dark: #0A1D33;
    --dark2: #14052C;
    --dark3: #333333;
    --light:#606E7D;
    --bg-light: #F0F6FC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

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

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 7px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}


/************************ Common ************************/

section {
    padding: 60px 0px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-light {
    color: var(--light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}


h1 {
    font-size: 48px;
    font-weight: 600;
}

h2 {
    /* font-size: 40px;
    color: var(--secondary);
    margin-bottom: 25px;
    z-index: 99; */

}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 17px;
    font-weight: 400;
    color: var(--light);
    line-height: 24px;
    margin-bottom: 20px;
}

a, i {
    /* font-size: 17px; */
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -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;

}

a:hover {
    color: var(--secondary);
}

img {
    width: auto;
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.border10{
    border-radius: 10px;
}
.border25{
    border-radius: 25px;
}

/* Content Styles */
.content {
    /* display: none; */
    /* Hide content initially */
}
.section-title{
    font-size: 34px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

.section-title-white{
    font-size: 40px;
    margin-bottom: 20px;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    border-radius: 7px;
    border: none;
    text-transform: capitalize;
    /* display: inline-block; */
    padding: 5px 25px;
    min-height: 45px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -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;
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-primary,
.btn-outline-primary:hover {
    border-color: var(--primary) !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff !important;
    background-color: var(--primary);
    border: none !important;
    /* border-color: #000; */
    box-shadow: none;
    border-color: var(--primary) !important;

}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: var(--primary);
    /* border-color: #000; */
    border: none !important;
    border-color: var(--primary) !important;
}

.btn-white {
    background-color: white;
    color: var(--primary) !important;
    z-index: 99;
}

.btn-white:hover {
    color: white !important;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.learn-more{
    text-align: center;
    background: var(--secondary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -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;
}
.learn-more:hover{
    background: var(--primary);
    color: white;
}
.read-more {
    font-weight: 500 !important;
    color: var(--secondary);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -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;
}


.read-more i{
    font-size: 17px;
    padding-left: 3px;
    top: 7px;
    color: var(--secondary);
}
.read-more:hover, .read-more:hover i{
    color: var(--primary);
}

.read-more-link {
  text-decoration: none;
  position: relative;
  /* display: inline-block; */
  font-size: 18px;
  color: var(--primary);
  overflow: hidden; 
  transition: background-position 370ms ease;
  font-weight: 500 !important;
  text-transform: capitalize;
} 

.read-more-link::before {
  position: absolute;
  content: attr(data-content);
  color: var(--secondary);
  text-decoration: underline;
  clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  transition: clip-path 370ms ease;
}

.read-more-link:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);  
}

.read-more-link i{
    position: absolute;
    font-size: 16px;
    padding-left: 7px;
    top: 7px;
    color: var(--primary);
}
.read-more-link:hover i {
  transform: translateX(4px); 
  color: var(--secondary);
}

/************************ Header************************/
header {
    z-index: 999;
    /* position: absolute; */
    /* padding: 10px 50px; */
    top: 0;
    left: 0;
    right: 0;
    color: white;
    /* background: white; */
}
.main-menu-sec {
    padding: 5px 50px;

}
/* ------- Top-Sec ------ */
.top-links{
    justify-content: end;
}
.top-links li a{
    color: white;
    text-transform: capitalize;
}
.top-links li a:hover{
    color: var(--secondary) !important;
}
.contact-top {
    /* display: flex;
    justify-content: end; */
    align-items: center;
    padding: 0px 50px;
}

.contact-top ul {
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
}
.contact-top li{
    list-style: none;
}
.contact-top i {
    padding-right: 10px;
    margin-right: 5px;
    color: white;
}

.contact-top a {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.contact-top a:hover, .contact-top nav ul li a:hover {
    color: var(--secondary) !important;
}

.contact-top a:hover i {
    color: var(--secondary);
}
.social1{
    justify-content: end;
}
ul.social-top{
    display: flex !important;
    padding: 0;
    margin: 0;
    gap: 0;
}
ul.social-top li{
    list-style: none;
    padding: 8px 10px;
    background-color: var(--secondary);
}
ul.social-top i{
    color: white;
    font-size: 15px;
    padding: 0;
    margin: 0;
}
ul.social-top i:hover{
    color: var(--secondary);
}
/* ---------------------------- */
.logo {
    padding: 0;
}

.logo img {
    height: 70px;
    width: auto;
    margin-bottom: 0;
    border-radius: 0px;
}


/* ------------- custom nav --------------- */

.custom-nav a {
    font-size: 15px;
    color: var(--dark);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    font-weight: 500;
}

.custom-nav .submenu {
    position: absolute;
    display: block;
    background: #fff;
    z-index: 9;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    top: 20px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    padding: 10px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .submenu.open {
    opacity: 1;
    /* top: 35px; */
    pointer-events: all;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .navbar {
    gap: 12px;
}
nav ul {
    margin-bottom: 0;
    padding: 0px;
}
nav ul li {
    list-style: none;
    position: relative;

}
nav ul li.active a {
    color: var(--primary);
}

.custom-nav ul li a:hover {
    color: var(--primary) !important;
}

.custom-nav .submenu .submenu {
    left: 100%;
    top: 0;
}

.custom-nav .navbar .has-child>a::after {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.custom-nav .navbar .has-child:hover::after {
    color: var(--primary) !important;
}


.custom-nav .navbar .submenu a {
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
	font-size: 15px;
}
.top-nav a{
    color: white !important;
}
.top-nav .navbar{
    padding: 0;
}
nav.custom-nav {
    display: flex;
    justify-content: end;
    /* background-color: var(--primary); */
    padding: 5px 0px !important;
    color: white;
	z-index: 999999;
    position: relative;
}

nav.custom-nav .navbar>li:nth-last-child(-n+4) .submenu {
    left: auto;
    right: 0;
}
nav.custom-nav .navbar>li:nth-last-child(-n+4) .submenu .submenu.level2 {
    right: 100%;
}
.nav-btn1{
    gap: 10px;
}
/* .topNav-btn,
.mainNav-btn{
    display: none;
} */
.mainNav-btn{
    display: none;
}
/* .topNav-btn{
    background: transparent;
    border: 1px solid var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: var(--primary); 
    outline: none;
    padding:0 !important;
} 
.topNav-btn svg circle{
    stroke: var(--primary);
} */

/* .mainNav-btn {
    display: none;
} */


.mainNav-btn {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: none;
    margin-right: 10px;
    color: #fff;
    outline: none;
    padding: 0 !important;
}


.menu-overlay {
    display: none;
}

.menu-overlay {
    display: block;
    width: 0%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 0;
}

.menu-open .menu-overlay {
    width: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 1;
}


.submenu a {
    color: var(--dark) !important;
}


/************************ Banner ************************/
.banner {
    padding: 0px;
    position: relative;
    /* height: calc(100vh - 120px); */
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner1 {
    position: relative;
    height: 100vh;
    background-size: cover;
    object-fit: cover;
    background-position: center;
}

.banner1 .overlay {
    /* background: linear-gradient(#000000e0, #00000000); */
    background: #0000008a;
    content: '';
    display: block;
    position: absolute;
    /* opacity: 0.2; */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 999;
    color: white;
    text-align: center;
}

.banner h1 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 40px;
	text-shadow: 2px 2px 8px #190202;
}
.banner p {
    display: block;
    font-size: 20px;
    color: white;
    margin-top: 20px;
    text-shadow: 2px 2px 8px #190202;
	margin-bottom: 25px;
	padding: 0 10%;
}
.banner-content .learn-more{
    text-align: center;
    background: var(--secondary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-transform: capitalize;
}
.banner-content .learn-more:hover{
    color: var(--primary);
}

/************************ Features ************************/
.features{
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    margin-top: -100px;
    z-index: 9;
}
.features1{
    padding: 20px 20px;
    gap: 20px;
}
.features-sec:first-child{
    background: #4F91DD;
}
.features-sec:nth-child(2){
    background: #F25334;
}
.features-sec:last-child{
    background: #F45088;
}
.features1 img {
    margin-bottom: 20px;
    height: 65px;
    width: auto;
}
.features1 h3 {
   font-size: 24px;
   font-weight: 500;
}

.features1 p {
    color: white;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/************************ Welcome ************************/
.welcome{
    position: relative;
}

.welcome::before{
    position: absolute;
    background-image: url(../img/about-bg.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    content: '';
    width: 85px;
    height: 180px;
    top: 0;
    left: 0;
    z-index: 99;
}

.welcome p{
    margin-bottom: 30px;
}
.welcome img{
    height: 98%;
    width: auto;
    object-fit: cover;
    object-position: center;
    position: relative;
   /* right: 60px;*/
    top: 20px;
}
.abt-img-sec{
    position: relative;
}
 .welcome .years{
    position: absolute;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -25px;
    right: 0;
    background: var(--secondary);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
 }

 .welcome .years h3{
    font-size: 30px;
    font-weight: 500;
    margin: 0;
 }
 .welcome .years h3 span{
    font-size: 20px;
    font-weight: 400;
 }
 .welcome .years h4{
    font-size: 18px;
    font-weight: 400;
    margin: 0;
 }


 /************************ Admission ************************/

.admission{
    padding-bottom: 85px;
    background: var(--linear);
    position: relative;
    background-image: url(../img/admission-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;

    padding: 50px 0px;
    position: relative;
}
.admission::before{
    background: #0D1282;
    opacity: 0.9;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.admission .container{
    z-index: 99;
}
.admission h3{
    font-size: 26px;
    font-weight: 500;
}
.admission h5{
    font-size: 18px;
    font-weight: 400;
}
.admission .learn-more{
    background: transparent;
    border: 1px solid white;
}
.admission .learn-more:hover{
    color: var(--secondary);
}

/************************ News ************************/

.news-main{

}

.news-main .item {
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); */
    background-color: white;
    /* padding: 20px; */
    position: relative;
    border-radius: 5px;
}

.news-main img {
    height: 230px;
    object-fit: cover;
    background-position: center;
    object-fit: cover;
    object-position: center;
    position: relative;
}
.news-info {
    padding: 15px 15px 25px;
    min-height: 250px;
}
.news-info h3{
    font-size: 23px;
    color: var(--dark);
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-main h6{
    font-size: 15px;
    color: var(--secondary);
    font-weight: 400;
}
.news-main h6 i{
    color: var(--secondary);
    padding-right: 3px;
}
.news-info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.news-info a.read-more {
    position: absolute;
    bottom: 25px;
    right: 25px;
}
.news-main .learn-more{
    /* position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%); */

    /* margin: 0 auto;
    display: block;
    width: 120px; */
}

/************************ Facilities ************************/
.facilities {
    position: relative;
}
.facilities::after{
    position: absolute;
    background-image: url(../img/facilities-bg.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    content: '';
    width: 85px;
    height: 180px;
    top: 0;
    right: 0;
    z-index: 99;
}
.facilities img{
    height: 430px;
    object-fit: cover;
}
.facility{
    justify-content: center;
    align-items: center;
    display: flex;
}
.facility1 {
    padding: 20px 0px;
}
.facility2{
    gap: 15px;
    align-items: center;
}
.facilities-icon{
    background: var(--primary);
    height: 75px;
    width: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.facilities-icon img{
    height: 35px;
    width: 35px;
    margin: 0;
    object-fit: contain;
}
.facilities p{
    margin: 0;
}
 /************************ Counter ************************/

 .counter-sec{
    padding-bottom: 85px;
    background: var(--linear);
    position: relative;
    background-image: url(../img/counter-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;

    padding: 50px 0px;
    position: relative;
}
.counter-sec::before{
    background: #0D1282;
    opacity: 0.9;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.count {
    border-radius: 5px;
    /* margin-bottom: 10px; */
    border: 1px solid white;
    width: 100%;
}
.counter-sec h3 {
    display: block;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 28px;
    color: white;
}
.counter-sec h4 {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: white;
}

.counter-sec img{
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}


.counter-sec1{
    position: relative;
}


/************************ Gallery ************************/
.gallery-grid-container {
    display: grid;
    gap: 10px;
        grid-template-areas:
        'photo1 photo1 photo2 photo3'
        'photo4 photo5 photo6 photo6';
    /* grid-template-columns: 33% 33% 31%; */
}
.photos{
    position: relative;
    border-radius: 5px;
    position: relative;
  }
  .photos img{
    min-height: 220px;
    max-height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    object-position: top;
    margin: 0;
    border-radius: 5px;
  }

 .photos:first-child{
    grid-area: photo1;
  }
  .photos:nth-child(2){
    grid-area: photo2;
  }
  .photos:nth-child(3){
    grid-area: photo3;
  }
   .photos:nth-child(4){
    grid-area: photo4;
  }
  .photos:nth-child(4){
    grid-area: photo5;
  }
  .photos:last-child{
    grid-area: photo6;
  } 
  
/* ------------Image Hover Effects------------- */

.wg-box-content {
    position: relative;
    width: 99%;
    /* max-width: 400px; */
    /* margin: auto; */
    overflow: hidden;
  }
  
  .wg-box-content .wg-box-content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  
  .wg-box-content:hover .wg-box-content-overlay{
    opacity: 1;
  }
  
  .wg-box-content-image{
    width: 100%;
  }
  
  .wg-box-content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .wg-box-content:hover .wg-box-content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  
  .wg-box-content-details h3{
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
  }
  
  .wg-box-content-details p{
    color: #fff;
    font-size: 0.8em;
  }
  
  .wg-box-fadeIn-bottom{
    top: 80%;
  }

  /************************ Testimonials ************************/
  .testimonials{
    position: relative;
    background-image: url(../img/testimonial-bg.jpg);
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel{
    margin-bottom: 30px;
}
.testimonial-carousel .owl-stage {
    display: flex;
}
.testimonials .item{
    padding: 40px 40px 20px 40px;
    border-radius: 10px;
    position: relative;
    height: 100%;
}
.testimonials .item::after{
    position: absolute;
    content: "";
    width: 55px;
    height: 55px;
    background-image: url(../img/testimonial-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
}
.testimonial-user{
    gap: 15px;
}
.testimonials img{
    height: 80px;
    width: auto !important;
    border-radius: 10px;
    border: 2px solid var(--secondary);
}
.testimonial-info{
    padding: 10px 0px;
    gap: 15px;
}
.testimonials h3{
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: 600;
}
.testimonials h6{
    font-size: 17px;
    font-weight: 500;
    color: var(--primary);
}
.testimonials p{
	color: var(--light);
    margin-bottom: 20px;
    line-height: 30px;
    font-family: "Merriweather", serif;
    font-style: italic;
    font-size: 15px;
    font-weight: 600;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;*/
}

/************************ Owl Carousel - carousel controls - All ************************/

.news-carousel .owl-dots, .news-carousel .owl-dots{
    display: flex !important;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.news-carousel .owl-dot span, .news-carousel .owl-dot span{
    background-color: var(--primary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 10px;
}
.news-carousel .owl-dot.active span{
    background-color: var(--primary);
    opacity: 1;
}

.testimonial-carousel .owl-dots{
    display: flex !important;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.testimonial-carousel .owl-dot span{
    background-color: var(--secondary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 10px;
}
.testimonial-carousel .owl-dot.active span{
    background-color: var(--secondary);
    opacity: 1;
}

/* .testimonial-carousel .owl-dots{
    display: flex !important;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.testimonial-carousel .owl-dot span{
    background-color: white;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 10px;
}
.testimonial-carousel .owl-dot.active span{
    background-color: white;
    opacity: 0.5;
} */
 

/************************ Footer ************************/
footer{
    position: relative;
    padding: 60px 0px 20px;
    background: white;
    display: flex;
    align-items: center;
    z-index: 99;
}


footer h6{
    /* color: white; */
    font-weight: 500;
    margin-bottom: 5px;
}
footer p{
    margin-bottom: 0;
}

footer p,
footer a,
footer ul li {
    color: var(--light);
    font-size: 16px;
    font-weight: 400;
}
footer .social{
    padding-left: 50px;
}
footer .social ul{
    margin: 0;
    gap: 10px;
}
footer .social ul li a{
    border-radius: 5px;
    border: 1px solid;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    border-color: var(--secondary);
    color: var(--secondary);

}
footer .social ul li a:hover{
    border-color: var(--primary);
}
footer .social ul li i {
    font-size: 17px;
        color: var(--secondary);

}
footer .social ul li a:hover i{
    color: var(--primary);

}


footer a:hover {
    color: var(--secondary);
}


.address, .footer-contact {
    margin-bottom: 20px;
    align-items: baseline;
    gap: 15px;
}

footer .address i, footer .footer-contact i{
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
}

footer a:hover, footer li:hover{
    color: var(--primary)
}
.address ul{
    align-items: center;
    display: flex;
}
.address li{
    font-size: 20px;
    margin: 0 !important;
}

footer ul {
    padding: 0px;
    margin: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 5px;
}

.copyright {
    border-top: 1px solid #C2C8CD;
}

.copyright p {
    font-size: 15px;
    padding: 0px;
}

.ipsr img {
    height: 25px;
    margin: 0;
    border-radius: 0;
}

.ipsr img:hover {
    opacity: 0.5;
}

.ipsr p,
.ipsr a {
    padding: 0px;
    margin: 0;
}

.ipsr p,
.ipsr a {
    font-size: 8px !important;
}
/************************  ************************/
