
@import url('https://fonts.googleapis.com/css2?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&display=swap');

html{
	scroll-behavior: smooth;
}

*{
	box-sizing: border-box;
	text-decoration: none;
	outline: none;
	font-family: 'Poppins', sans-serif !important;
}

body{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	 
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #F3BD0B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #d9a408;
  transform: scale(1.1);
}

.gallery-container {
    column-count: 4;
    column-gap: 10px;
    padding: 20px;
}

.gallery-item {
    display: inline-block;
    margin-bottom: 4px;
    width: 100%;
    break-inside: avoid;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    cursor: pointer;
}



    /*.gallery-item img:hover {
        transform: scale(1.05);
    }*/

    @media (max-width: 1024px) {
        .gallery-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .gallery-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .gallery-container {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    /* Lightbox Modal */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
      
    }

    .lightbox-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .lightbox img {
        max-width: 80%;
        max-height: 80%;
        border: 2px solid #FFFFFF;
        border-radius: 5px;
      
    }

    .lightbox.active {
        display: flex;
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: white;
        background-color: rgba(0,0,0,0.3);
        border: none;
        cursor: pointer;
        z-index: 10000;
        padding: 10px 22px;
        border-radius: 50%;
    }

    .nav-arrow.left {
        left: 20px;
    }

    .nav-arrow.right {
        right: 20px;
    }

   .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
    }

    /*@media (max-width: 768px) {
        .gallery-container {
            column-count: 2;
        }
    }

    @media (max-width: 480px) {
        .gallery-container {
            column-count: 1;
        }
    }*/

    
.card-outline{
    
    border: 1px solid #D8D8D8;
    padding: 7px ;
    border-radius: 7px;
    margin: 8px;
    
    
}


.navbar-toggler{
	border: none !important; 
}

.atag.active {
  background-color: #D9AA11; /* or your theme color */
  
  /*border-bottom: 3px solid #F3BD0B;*//* Optional underline effect */
	text-decoration: none;
	padding: 16px 30px;
    
}

.call-us-font{
    font-size: 14px;
    line-height: 17px;
}



.offcanvas{
    background-image: linear-gradient(45deg, #00041D, #001E6A);
    color: #FFFFFF;
}

.btn-close{
   
    background-color: #FFFFFF;
    
}

  

.nav-link{
    color: #FFFFFF;
}

/* Fix dropdown position inside offcanvas */
  .offcanvas .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
  }

  .offcanvas .dropdown-menu.show {
    display: block;
  }


/* Default color */
.navbar-nav .nav-link {
  color: white; /* Default black */
  transition: color 0.3s ease;
}

/* Change active menu item color */
.navbar-nav .nav-link.active {
  color: #F3BD0B !important;
}

/* Optional: Change hover color */
.navbar-nav .nav-link:hover {
  color: #F3BD0B;
}



.top-sticky{
    position: sticky;
    top: 0px;
    z-index: 1050;  
}


.offcanvas-header{
    border-bottom: solid 1px #5E5E5E;
}

    .carousel-item {
            position: relative;
            transition: transform 2s ease-in-out, opacity 1s ease-in-out;
        }

        .carousel-inner {
            display: flex;
			
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
			
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            border-radius: 10px;
            width: 70%;
			
			
        }
        .carousel-caption h3 {
            font-size: 2rem;
        }
        .carousel-caption p {
            font-size: 1.2rem;
        }


  .carousel-heading {
    border: 2px solid #F3BD0B;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 8px;
  }

.logo{
	height: 80px;
	width: auto;
}

.top-nav{
	margin-left: 5%;
	margin-right: 5%;
	padding-top: 8px;
	padding-bottom: 8px;
	
}

.margin3{
	margin-left: 5%;
	margin-right: 5%;
    display: flex;
    justify-content: center;
  
}
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #F3BD0B;
    padding: 15px;
    margin: 0;
    margin-top: 15px;
    border: none;
	border-radius: 0;
    width: 1000px; /* Increased width for three columns */
    max-width: 95vw;
    z-index: 1000;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  }

 /* Dropdown Content (Hidden by Default) */
.dropdown-content {
    margin-top: 15px;
  display: none;
  position: absolute;
  background-color: #F3BD0B;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}



/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #FFFFFF;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}


  .mega-menu-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; /* Centers columns in case of uneven numbers */
  }



.banner-text{
	font-size: 2rem;
	color: #F3BD0B;
	font-weight: 800;
}

.banner-text2{
	font-size: 2rem;
	color: #F3BD0B;
	font-weight: 800;
}

.small-section{
	padding: 48px;
}

.nav-container{
	background-color: #F3BD0B;
	color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 5%;
	
}


.atag{
	text-decoration: none;
	padding: 10px 30px;
	color: #000000;
	font-weight: 500;
	font-size: 15px;
	
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
	
}
hover{
	transition: all 0.5s;
}

hover:hover{
	transition: all 0.5s;
}

.atag:hover{
	background-color: #D9AA11;
	padding: 16px 30px;
}

h1{
	color: #111111;
}
h2{
	color: #222222;
}

p{
	color: #333333;
	line-height: 27px;
}

.row{
	display: flex;
	max-width: 1200px;
	margin: auto;
}

.row-1{
	display: flex;
	max-width: 1200px;
	margin: auto;
}

.col{
	flex: 1;
	padding: 20px;
}

.top-border{
	
	border-top: 15px solid #001E6A; 
}

.banner{
	
height: 700px;
}

.banner2{
	
	background: url("../Image/About Us Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-christlaya{
	
	background: url("../Image/Banner Christalaya.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-Jeevodaya{
	
	background: url("../Image/Banner Jeevodaya Mission Station, Arakere.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-preethinilaya{
	
	background: url("../Image/Preethi Nilaya (2 Folders)/Divya Jyothi School/Banner Strm.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}


.banner-about-us{
	
	background: url("../Image/About Us Banner Image.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}


.banner-Santhomebhavan{
	
	background: url("../Image/Santhome Public School, Bannur/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}


.banner-deeptinivaskalenahalli{
	
	background: url("../Image/Deepti Nivas, Kalenahalli/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}



.banner-swaralaya{
	
	background: url("../Image/Banner Swaralaya.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}


.banner-santhome-school-kokasmannur{
	
	background: url("../Image/Banner Santhome School, Kokasmannur.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}


.banner-santhome-public-school{
	
	background: url("../Image/Banner Santhome Public School & Pu College, Mandya.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-swanthana-counselling-centre{
	
	background: url("../Image/Swanthana Counselling Centre/Banner Swanthana Counselling Centre.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-karunya-sadan{
	
	background: url("../Image/Kaarunya Sadhan Manasadhara, Konanahalli/Banner Kaarunya Sadhan.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-santhome-school-bengaluru{
	
	background: url("../Image/Santhom School Bangalore/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-santhome-international-school-sathyamangalam{
	
	background: url("../Image/Santhome International School, Sathyamangalam/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-st-thomas-adilabad-mission{
	
	background: url("../Image/St Thomas Adilabad Mission of MST, Boath, Adilabad, Telangana/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-neredigonda-mission-centre-adilabad{
	
	background: url("../Image/Neredigonda Mission Centre in Adilabad Mission, Telangana/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-sevasadan-halagur{
	
	background: url("../Image/Sevasadan Halagur/Banner 2.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;

}

.banner-santhome-region-house{
    	background: url("../Image/Main Banner 3.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}


.banner-priest{
    	background: url("../Image/Santhome Regional House/Priest Banner img.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}


.banner-asha-sadan{
    	background: url("../Image/Asha Sadan/Banner.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-saint-carlo-acutis-eucharistic-center{
	   	background: url("../Image/Saint Carlo Acutis Eucharistic Center/Banner Strm.jpg");
	width:  auto;
	height: 350px;
	margin: 0px;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

  .column {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 220px; /* Ensures proper layout */
    max-width: 250px; /* Prevents stretching */
  }



  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    border-bottom: 1px solid #E1AD00;
    white-space: normal;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

.column a{
	text-decoration: none;
	color: #000000;
}


.main-box{
    
	max-width: 100%;
	height: 100%;
	 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	padding: 0px;
	
}

.square-box{

	background-color: #E1AD00;
	height: 120px;
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
	border-radius: 5px 5px 0px 0px;
}

.square-box img{
	width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid white;
            margin-top: 35px;
}

.hor-card{
	
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);;
	border-radius: 5px;
    overflow: hidden;
	
	
}

.card-text3 {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Adjust the number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.label {
    width: 140px; /* Fixed width to align colons */
    text-align: left;
  }

.card-border{
	border: 1px solid #CACACA;
	border-radius: 5px;
}



/* General Hidden Class */

.hidden {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Different Animations */
.fade-up {
  transform: translateY(200px);
}

.fade-right {
  transform: translateX(-200px);
}

.fade-left{
	transform: translateX(200px);
}

.zoom-in {
  transform: scale(0.8);
}

/* When in View, Apply Show Class */
.show {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.vertical-cent{
	
	display: flex;
	align-items: center;
	
}

.weight{
	font-weight: 280;
}

.card-structure{
	padding: 0px;	
}

.bi-check-circle-fill{
	color: #F3BD0B;
}

.icon-padding{
	padding-right: 15px;
}

.padding-left{
	padding-left: 50px;
}

.padding-right{
	padding-right: 30px;
}



section{
	margin-top: 150px;
	margin-bottom: 100px;
}

.main-text{
	font-size: 1.8rem;
	font-weight: 700;
}

.main-text1{
	font-size: 1.5rem;
	font-weight: 700;
}

.colour{
	color: #F3BD0B;
}
.text-p{
	text-align: justify;
	
}

.mission{
	background-image: linear-gradient(45deg, #00041D, #001E6A);
	padding: 100px 0px;
	
}

.mission1{
	background-color: #F1F2FF;
	padding: 100px 0px;
	
}

.mycard{
	border: 1px solid #A7A7A7;
}

.btn1{
	padding: 10px 25px;
	background-color: #F3BD0B;
	border: 1px solid #F3BD0B;;
	border-radius: 5px;
	
}

.btn1 a{
	color: #000000;
}

.btn1:hover{
	background-color: #FFFFFF;
	border: 1px solid #F3BD0B;
}

.btn2{
	border: solid 1px #F3BD0B;
	padding: 10px 25px;
	background: none;
	border-radius: 5px;
	
}

.btn2:hover{
	background-color: #F3BD0B;
	border: 1px solid #F3BD0B;
	color: #000000;
}

.btn3{
	border: solid 1px #F3BD0B;
	padding: 10px 25px;
	background: none;
	border-radius: 5px;
	color: #FFFFFF;
}

.btn3:hover{
	background-color: #F3BD0B;
	border: 1px solid #F3BD0B;
	color: #000000;
}

.team-title{
	font-size: 16px;
	font-weight: 600;
}


.chips{
    background-color: #EFEFEF;
    padding: 3px 3px;
    margin: 12px;
    border-radius: 20px;
   
}

.chips2{
    margin-top: 30px;
    
   
}

.chips3{
    
   
    margin: 12px;
    border-radius: 20px;
   
}

.card-outline p{
    font-size: 14px;
}

.neg-margin2{
	
	margin-left: -20%;
	
}


.form-container{
	background: #FFFFFF;
	width: 380px;
	padding: 30px;
	border: 1px solid #D5D5D5;
	border-radius: 20px;
	
}
.form-background{
    margin: 0px;
    background-image: url("../Image/large-metal-defocused-bridge.jpg");
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.add-form-container{
    background: #FFFFFF;
	width: 500px;
	padding: 30px;
	border: 1px solid #D5D5D5;
	border-radius: 20px;
    
    
}

.admin-top-container{
    background-image: linear-gradient(45deg, #00041D, #001E6A);
    /*background-color: #F3BD0B;*/
    margin: 0;
}

#priests_section, #incharges_section {
    transition: opacity 0.3s ease-in-out;
}



.add-btn{
    padding: 10px 30px;
}

.admin-top-container a{
    
    padding: 12px 30px;
}

   input.form-control {
        height: 40px;
    }
    /*button.btn {
        height: 50px;
    }*/

.contact-box{
    padding: 35px 15px 15px 15px;
    background: #FFFFFF;
    margin: 10px;
    border-radius: 15px;
    
}

input, select, textarea{
	width: 100%;
	padding: 9px;
	border: 1px solid #C7C7C7;
	outline: none;
	margin-top: 8px;
	background-color: #FFFFFF;
    border-radius: 5px;
}

input[type="submit"]{
	background-image: linear-gradient(45deg, #F3BD0B, #D9AA11);
	color: #000000;
	padding: 10px;
	border: 0;
	border-radius: 10px;
	font-size: 17px;
}
input[type="submit"]:hover{
	cursor: pointer;
	background-image: linear-gradient(45deg, #D9AA11, #F3BD0B);
    
}

.vanish{
		display: block;
	}



.text-justify{
	justify-content: center;
}

.hover{
	
	transition: all 0.5s;
}

.line-height{
	line-height: 45px;
}
.hover:hover{
	transform: translate(0px, -10px);
	
}

/*.img-container{
    
	display: flex;
	flex-wrap: wrap;
}
.section{
   
	flex: 25%;
	padding: 0px 3px;
}
.section img{
	width: 100%;
	margin: 3px 0px;
    border-radius: 8px;
}
*/

.img-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 13px; /* Optional: adds spacing between sections */
    
}

.section {
    display: flex;
    flex-direction: column;
    width: calc(25% - 6px); /* Adjust if you change gap */
    
}

.section img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

#lightbox-desc {
    color: #fff;
    margin-top: 10px;
}


footer a{
	
	padding: 0px 20px 10px 0px;
	opacity: 75%;
	transition: all 0.5s;
}

footer a:hover{
	opacity: 100%;
	
}
.footer-border{
	
	border-top: 1px solid #F3BD0B;
	opacity: 20%;
	
}
.mission-footer{
	background-image: linear-gradient(45deg, #00041D, #001E6A);
	padding: 60px 0px 7px 0px;
	
}

footer{
	margin-top: 150px;
}



@media (max-width:428px){

	section{
	padding: 0px;
		margin-top: 80px;
	margin-bottom: 80px;
	}
.banner{
	
height: 600px;
}
    
     .img-container {
            flex: 100%;
        }
    
	 .carousel-caption {
            padding: 0px;
            border-radius: 10px;
            width: 90%;}
            
.row{
	flex-wrap: wrap;
}
	.col{
	
	flex:100%;
	
}
		.banner-text{
	font-size: 1.5rem;
	
}
	.small-section{
	padding: 28px;
}


.banner-text2{
	font-size: 1.5rem;
	
}
	
	.section{
		flex: 100%;
	}
	
	.logo{
		height: 50px;
	}
	
	.hor-card{
		flex-direction: column;
	}
	
	.banner-text{
	font-size: 40px;

}

	.vanish2{
		display: none;
	}
	


	.main-text{
	font-size: 1.5rem;
	font-weight: 700;
}

.main-text1{
	font-size: 1.5rem;
	font-weight: 700;
}

	.hide{
		display: none;
	}
	
	.neg-margin2{
	
	margin-left: 0;
	
}

	
}

@media (max-width:768px){
	
	.carousel-caption h3 {
                font-size: 1.5rem;
            }
    
            .carousel-caption p {
                font-size: 1rem;
            }
    .carousel-caption {
            padding: 0px;
            border-radius: 10px;
            width: 90%;}
    
    .banner{ height: 600px;
}
	
	.banner-text{
	font-size: 1.5rem;
	
}

.banner-text2{
	font-size: 1.5rem;
	
}
	
	.hor-card{
		flex-direction: column;
	}
	.hor-card img{
		width: 100%;
	}
	.section{
		flex: 50%;
	}
	
	.tab-100 .col{
		flex: 100% !important;
	}
	
	.bottom-to-top{
		order: -1;
	}
	
	.logo{
		height: 70px;
	}
	
	.col{
		flex: 50%;
	}
	
}



 @media (max-width: 576px) {
            .carousel-caption h3 {
                font-size: 1.2rem;
            }
            .carousel-caption p {
                font-size: 0.9rem;
            }
	 .col{
	
	flex:100%;
	
}
	 .section{
		 flex: 100%;
	 }
        }

@media (max-width:1180px){

	
}

@media (max-width:934px){
	
	.mob .col{
		flex: 100%;
	}
}

@media (min-width:429px) and (max-width:934px){
	.row{
	flex-wrap: wrap;
	
}
	section{
	margin-top: 100px;
}
	
	.bottom-to-top{
		order: -1;
	}

		.banner-text{
	font-size: 40px;
	
}
	
	.vanish2{
		display: none;
	}
	

	
	.tab-50 .col{
	
	flex: 50%;
			
}

	
	.neg-margin2{
		
	width: 100%;
	margin-left: 0;
		
	
}

}

@media (min-width: 934px) {
    .navbar-toggler {
        display: none !important; /* Hides button above 933px */
    }
	
	
}

@media (max-width: 934px) {
    .vanish {
        display: none !important; /* Hides button below 933px */
    }
	
	
}


