*{
	margin: 0;
	padding: 0;
	font-family: "Montserrat";
}





/*--------- smooth scroll ----------*/

html { 
scroll-behavior: smooth;
}

#navbar {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure it stays on top */

}

.scrolled {
    background-color: #f8f8ff;  /* Change to your desired color */

}




/*--------- home background ----------*/
.header {
	height:  100vh;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: relative;
	align-items: center;
}


.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Covers the full width of the header */
    height: 100%; /* Covers the full height of the header */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)); /* Darkens the video */
    z-index: -1; /* Places the gradient above the video */
}



/*----- home background video -----*/

.header video{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -2;
}


@media(min-aspect-ratio: 16/9){
	.header video{
		width: 100%;
	}
}




/*----- navigation  -----*/
nav{
	display: flex;
	padding: 9px 5%;
	justify-content: space-between;
	align-items: center;
	background-color: #f8f8ff ;
}



/*----- logo size -----*/
nav img{
	width: 100px;
}



nav .fas{
	display: none;
}




/*-----  nav-links -----*/
.nav-links{
	flex: 1;
	text-align: left;
	padding-left: 5%;

}

.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 10px 20px;
	position: relative;
	font-weight: 600;
}

.nav-links ul li a{
	color: #000000 ;
	text-decoration: none;
	font-size: 13px;
}




.h-right a{
	vertical-align: middle;
	font-size: 18px;
	color: #000;
	margin-left: 5px;
	transition: all .50s ease;	
}


.h-right a:hover{
	color: #4682b4;
	transform: translateY(-5px);
}

.h-right .fas{
	display: inline-block;
}





/*------------ sub menu 1 ----------*/

.sub-menu-1{
	display: none;
}

.nav-links ul li:hover .sub-menu-1{
	display: block;
	position: absolute;
	background: #f8f8ff;
	margin-top: 0px;
	margin-left: -15px;
}

.nav-links ul li:hover .sub-menu-1{
	display: block;
	margin: 5px;
}


.nav-links ul li:hover .sub-menu-1 ul li{
	width: 150px;
	padding: 10px;
	border-bottom: 1px dotted rgba(0, 136, 169, 0.8);
	background: transparent;
	border-radius: 0;
	text-align: left;

}


.nav-links ul li:hover .sub-menu-1 ul li:last-child{
	border-bottom: none;
}

.nav-links ul li:hover .sub-menu-1 ul li a:hover{
	color: #ff4500 ;
}


.nav-links ul li a:hover{
	color: rgba(0, 136, 169, 1.0);
}

.nav-links ul li a::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #0000ff ;
	display: block;
	margin: auto;
	transition: .5s;
}




/*--------- content header ----------*/
.header .content{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%,15%);
	text-align: center;
	display: none;

}

.header .content.active{
	display: block;
}

.header .content h1{
	font-size: 35px;
	font-weight: 900;
	text-transform: uppercase;
}

.header .content p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: #fff;
}


/*--------- button sa baba ng background ----------*/

.header .slider-navigation{
 	z-index: 888;
 	position: relative;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	transform: translateY(750px);
 	margin-bottom: 12px;
}


.header .slider-navigation .nav-btn{
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
	transition: 0.3s ease;
}

/*--------- video slider sa background video ----------*/


.header .slider-navigation .nav-btn.active{
	background: #2696E9;
}


.header .slider-navigation .nav-btn:not(:last-child){
	margin-right: 20px;
}


.header .video-slide{
	position: absolute;
	width: 100%;
	clip-path: circle(0% at 0 50%);
}

.header .video-slide.active{
	clip-path: circle(150% at 0 50%);
	transition: 2s ease;
	transition-property: clip-path;
}


.header .slider-navigation .nav-btn:hover{
	transform: scale(1.3);
}






/*--------- hero button (Submit Application) ----------*/
.careers_sa .hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 2px solid #4682b4;
	padding: 12px 34px;
	font-size: 14px;
	background: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 10px;
}

.careers_sa .hero-btn:hover{
	border: 1px solid #c80815;
	background: #c80815;
	transition: 1s;
}


nav .fas{
	display: none;
}


/*----- Responsive Screen -----*/

@media(max-width: 700px){
	.text-box h1{
		font-size: 20px;
	}

	.nav-links ul li{
		display: block;
	}

	.nav-links{
		position: absolute;
		background: #f44336;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: .5s;
	}


	nav .fas{
		display: inline-block;
		color: #000;;
		margin: 00px;
		font-size: 22px;
		cursor: pointer;
	}

	.nav-links ul{
		padding: 30px;
	}

	.header media{
		width: 100%;
	}

	.h-right .fas{
	display: none;
	}

	.nav-links ul li:hover .sub-menu-1 ul li{
	width: 90px;
	padding: 5px;
	border-bottom: 1px dotted rgba(0, 136, 169, 0.8);
	background: transparent;
	border-radius: 0;
	text-align: left;
	}

	.nav-links ul li:hover .sub-menu-1 ul li a:hover{
	color: #ff4500 ;
	}
}


/*-----home page products-----*/
.products{
	width: 100%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;
	text-align: center;
}


.products h1{
	margin: auto;
	font-size: 33px;
	color: rgba(0, 136, 169, 0.8);
	font-weight: 600;
	position: relative;
	z-index: 1;
	display: inline-block;
	padding-bottom: 20px;
}


 .products h1::after{
	content: '';
	width: 50px;
	height: 35px;
	background: linear-gradient(#4682b4, #fff);
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
	transform: rotate(10deg);
	border-top-left-radius: 55px;
	border-bottom-right-radius: 55px;
}



.products h2{
	font-size: 38px;
	font-weight: 900;
	text-align: left;
	padding-left: 100px;
	padding-right: 90px;

}

.products h3{
	font-size: 25px;
	font-weight: 800;
	padding-top: 10px;
	text-align: left;
	padding: 10px 100px 30px;
}



/*.row1{
	display: flex;
	width: 100%;
}*/

/*.row2{
	display: flex;
	width: 100%;
	background: linear-gradient(#d3d3d3 , #fff);
}
*/




/*----- products hover-----*/

.row1 {
    display: flex;
    width: 100%;
    align-items: center; /* Keep items vertically aligned */
    padding: 0px; /* Add spacing inside the row */
    background: #f7f7f7; /* Default background color */
    transition: background 1s ease, color 1s ease; /* Smooth transition for hover effects */
}

.row1:hover {
    background: #002366; /* Change background color on hover */
    color: #fff; /* Change text color on hover */
}


.row2 {
    display: flex;
    width: 100%;
    align-items: center; /* Keep items vertically aligned */
    padding: 0px; /* Add spacing inside the row */
    background: #f7f7f7; /* Default background color */
    transition: background 1s ease, color 1s ease; /* Smooth transition for hover effects */
}

.row2:hover {
    background: #002366; /* Change background color on hover */
    color: #fff; /* Change text color on hover */
}

.img-col1 {
    flex: 0 0 30%; /* Fix the width of the image column (e.g., 30% of the row width) */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    position: relative; /* Maintain relative positioning for future adjustments */
}

.img-col1 img {
    max-width: 100%; /* Ensure the image scales within its container */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block;
}

.products-col1 {
    flex: 1; /* Allow this column to take up the remaining space */
    padding-left: 20px; /* Add spacing between the image and text */
}

.products-col1 h2,
.products-col1 h3 {
    margin: 0;
    color: inherit; /* Dynamically adjust color on hover */
    transition: color 0.3s ease; /* Smooth text color transition */
}

.hero-btn {
    border: 1px solid #002366; /* Default border color */
    background: transparent;
    color: #002366; /* Default text color */
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 1s ease; /* Smooth transition for hover effects */
}


.row1:hover .hero-btn {
    border: 1px solid #fff; /* Change border color on hover */
    background: #002366; /* Ensure the background matches the row */
    color: #fff; /* Change text color on hover */
}

.inquiry-btn {
    display: inline-block;
    margin-top: 10px;
    border: 1px solid #002366; /* Default border color */
    background: transparent;
    color: #002366;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.row1:hover .inquiry-btn {
    border: 1px solid #fff;
    background: #002366;
    color: #fff;
}
.row2:hover .hero-btn {
    border: 1px solid #fff; /* Change border color on hover */
    background: #002366; /* Ensure the background matches the row */
    color: #fff; /* Change text color on hover */
}

.inquiry-btn {
    display: inline-block;
    margin-top: 10px;
    border: 1px solid #002366; /* Default border color */
    background: transparent;
    color: #002366;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.row2:hover .inquiry-btn {
    border: 1px solid #fff;
    background: #002366;
    color: #fff;
}





.img-col1{
	flex-basis: 50%;
}

.img-col1 img{
	display: block;
	width: 100%;
	margin: auto;
}


/*-----home page products box-border-----*/


.products-col1 {
/*  background-color: #fff;*/
  padding: 20px; /* Ensure 30px padding on all sides */
  border-radius: 8px; /* Rounded corners */
/*  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
  transition: box-shadow 0.3s ease, transform 0.3s ease; */
  text-align: center; /* Center-align the text */
  max-width: 600px; /* Limit the width of the box */
  margin: 20px auto; /* Center the box horizontally with spacing */
  padding-top: 80px;
}

/*.products-col1:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); 
  transform: translateY(-5px); 
}*/

.products-col1 h2, 
.products-col1 h3 {
  margin: 5px 0; /* Add spacing between text elements */
}

.products-col1 .hero-btn, 
.products-col1 .inquiry-btn {
  display: inline-block; /* Ensure buttons don't stretch */
  margin: 5px 0; /* Add spacing between the button and other elements */
}






/*-----home page products line-----*/
.product-divider {
  width: 100%; /* Adjust width as needed */
  height: 1px; /* Line thickness */
  background-color: #000; /* Line color */
  border: none; /* Removes default border */
  margin: 20px auto; /* Centers the line and adds spacing */
}



/***** features plan button *****/
.products .hero-btn{
	display: inline-block;
	font-weight:700;
	text-decoration: none;
	color: #c80815;
	border: 1px solid #c80815;
	padding: 10px 25px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 30px;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin-top: 10px;
}

.products .hero-btn:hover{
	border: 1px solid #c80815;;
	background: #c80815;
	transition: 1s;
	color: #fff;
}


/***** Inquiry button *****/
.products .Inquiry .inquiry-btn{
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	border: 1px solid #c80815;
	padding: 5px 30px;
	font-size: 12px;
	background: #c80815;
	position: relative;
	cursor: pointer;
	border-radius: 15px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.products .inquiry-btn:hover{
	transform: translateY(-2px);
}


/*--------- see more product background image ----------*/
.sub-header2 {
	height:  30vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)), url(img/background.jpg);
	background-position: center;
	background-size: cover;
	align-items: center;
	color: #fff;
}

.sub-header2 .text-box h1 {
	margin-top: -100px;
	text-align: center;
}

.sub-header2 .text-box p {
	text-align: center;
}





/***** See more products button *****/
.Seemore{
	padding-top: 80px;
	padding-bottom: 50px;
}


.products .home-btn{
	font-weight:700;
	text-decoration: none;
	color: #fff;
/*	border: 1px solid #c80815;*/
	padding: 12px 24px;
	font-size: 14px;
	background: #c80815;
	position: relative;
	cursor: pointer;
	border-radius: 30px;
	margin: 30px;

}

.products .home-btn:hover{
	border: 1px solid #c80815;
	background-color: #c80815;
	transition: 1s;
	color: #fff;

}



@media(max-width: 700px){


	.products .row1{
		flex-direction: column;
	}
	.products .row2{
		flex-direction: column;
	}
}




/*----- customers title -----*/

.custitle{
	padding-top: 0px;
	text-align: center;
}

.custitle h1{
	margin: auto;
	font-size: 33px;
	color: rgba(0, 136, 169, 0.8);
	font-weight: 600;
	position: relative;
	z-index: 1;
	display: inline-block;
}


 .custitle h1::after{
	content: '';
	width: 50px;
	height: 35px;
	background: linear-gradient(#4682b4, #fff);
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
	transform: rotate(10deg);
	border-top-left-radius: 55px;
	border-bottom-right-radius: 55px;
}


/*----- customers -----*/
.customers{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50vh;
	flex-direction: column;
}


.scroll{
	position: relative;
	display: flex;
	width: 1000px;
	overflow: hidden;
	gap: 100px;
	-webkit-mask-image: linear-gradient(90deg,transparent,#fff 20%,#fff 80%,transparent);
}

.scroll div{
	white-space: nowrap;
	animation: animate var(--t) linear infinite;
	animation-delay: calc(var(--t) * -1);
}

.scroll div:nth-child(2){
	animation: animate2 var(--t) linear infinite;
	animation-delay: calc(var(--t) / -2);
}


@keyframes animate{
	0%{
		transform: translateX(100%);
	}
	100%{
		transform: translateX(-100%);
	}
}

@keyframes animate2{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-220%);
	}

}


.scroll div span{
	display: inline-block;
	margin: 10px;
	letter-spacing: 0.1em;
/*	text-transform: uppercase;*/

	color: #000;
	padding: 5px 10px;
	border-radius: 5px;
	transition: .5s;
	font-size: 15px;
}

.scroll div span:hover{
	background: #fff; 
	cursor: pointer;
}

.imgbx img{
	display: inline-block;
	max-width: 100px;
	scale: 0.7;
	opacity: 0.6;
/*	gap: 100px;*/

}

.imgbx img:hover{
	opacity: 1;
}



/*--------- about page background image ----------*/
.sub-header {
	height:  45vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7),rgba(4, 9, 30, 0.7)), url(img/background.jpg);
	background-position: center;
	background-size: cover;
	align-items: center;
	color: #fff;
}


.sub-header .text-box p {
	margin-top: 10px;
	text-align: center;
	font-size: 15px;
}

.logo-center {
    width: 250px; /* Adjust the size as needed */
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
    padding-top: 9%;
 }







/*--------- navigation size & space ----------*/
nav{
	display: flex;
	padding: 9px 5%;
	justify-content: space-between;
	align-items: center;
	background-color: #f8f8ff ;
}



/*----- logo size -----*/
nav img{
	width: 100px;
}




/*-----  navbar -----*/
.nav-links{
	flex: 1;
	text-align: left;
	padding-left: 5%;

}

.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 10px 20px;
	position: relative;
	font-weight: 600;
}

.nav-links ul li a{
	color: #000000 ;
	text-decoration: none;
	font-size: 13px;
}



.h-right a{
	vertical-align: middle;
	font-size: 20px;
	color: #000;
	margin-right: 18px;
	margin-left: 5px;
	transition: all .50s ease;
	
}


.h-right a:hover{
	color: #4682b4;
	transform: translateY(-5px);
}






/*------------ sub menu 1 ----------*/

.sub-menu-1{
	display: none;
}

.nav-links ul li:hover .sub-menu-1{
	display: block;
	position: absolute;
	background: #f8f8ff;
	margin-top: 0px;
	margin-left: -15px;
}

.nav-links ul li:hover .sub-menu-1{
	display: block;
	margin: 5px;
}


.nav-links ul li:hover .sub-menu-1 ul li{
	width: 150px;
	padding: 10px;
	border-bottom: 1px dotted rgba(0, 136, 169, 0.8);
	background: transparent;
	border-radius: 0;
	text-align: left;

}


.nav-links ul li:hover .sub-menu-1 ul li:last-child{
	border-bottom: none;
}

.nav-links ul li:hover .sub-menu-1 ul li a:hover{
	color: #ff4500 ;
}






/*--------- text color pointer in Home/about/service/contacts  ----------*/

.nav-links ul li a:hover{
	color: rgba(0, 136, 169, 1.0);
}

.nav-links ul li a::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #0000ff ;
	display: block;
	margin: auto;
	transition: .5s;
}






/*--------- header button (products & service)  BMS ----------*/
.header .hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 16px;
	background: #c80815;
	position: relative;
	cursor: pointer;
	border-radius: 10px;
}

.header .hero-btn:hover{
	border: 1px solid #4682b4;;
	background: #4682b4;
	transition: 1s;
}


nav .fas{
	display: none;
}

/*--------- header button (products & service)  BMSC ----------*/

.header .hero-btns{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 16px;
	background: #4682b4;
	position: relative;
	cursor: pointer;
	border-radius: 10px;
}

.header .hero-btns:hover{
	border: 1px solid #c80815;;
	background: #c80815;
	transition: 1s;
}


nav .fas{
	display: none;
}


@media(max-width: 700px){
	.text-box h1{
		font-size: 20px;
	}

	.nav-links ul li{
		display: block;
	}

	.nav-links{
		position: absolute;
		background: #f44336;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -250px;
		text-align: left;
		z-index: 2;
		transition: .5s;
	}

	nav .fas{
		display: block;
		color: #000;;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}

	.nav-links ul{
		padding: 30px;
	}
}




	




/*--------- CI About US ----------*/
.about-us{
	width: 80%;
	margin: auto;
	padding-top: 80px;
	text-align: left;
}


.about-col{
	flex-basis: 47%;
	padding: 10px 2px;
}

.about-col img{
	width: 100%;
}

.about-col h1{
	padding-top: 0;
}

.about-col p{
	padding: 20px 0px;
	font-size: 15px;
	text-indent: 20px;
	word-spacing: 0.3em;
	text-align: justify;
}



.row{
	display: flex;
	justify-content: space-between;
}


@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}






/*--------- careers ----------*/
.careers{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 5%;
}

.careers-col{
	flex-basis:29%;
	border-radius: 0px;
	margin-bottom: 5%;
	margin-top: 15px;
	text-align: left;	
}

.careers-col img{
	width: 100%;
	border-radius: 0px;
}


.careers p{
	padding-bottom: 10px;
	font-size: 13px;
	text-align: justify;
	word-spacing: 0.1em;
	text-indent: 25px;
}

.careers h4{
	padding-bottom: 40px;
	font-size: 13px;
	font-weight: normal;
}

.careers h3{
	margin-top: 16px;
	margin-bottom: 15px;
	color: rgba(0, 136, 169, 0.8);
	text-align: left;
	font-size: 16px;
}
.careers h2{
	text-align: center;
	margin-top: 16px;
	margin-bottom: 8px;
	color: rgba(0, 136, 169, 0.8);
	font-size: 16px;
}


 .careers h1{
	text-align: center;
	margin: auto;
	font-size: 23px;
	color: rgba(0, 136, 169, 0.8);
	font-weight: 600;
	position: relative;
	z-index: 1;
	display: inline-block;
	padding-bottom: 10px;
}


 .careers h1::after{
	content: '';
	width: 50px;
	height: 35px;
	background: linear-gradient(#4682b4, #fff);
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
	transform: rotate(10deg);
	border-top-left-radius: 55px;
	border-bottom-right-radius: 55px;
}




/*--------- careers submit application ----------*/
.careers_sa {
	margin: 1px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(img/careers.jpg);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 50px 0;
	margin-top: 6%;
}

.careers_sa h3{
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
	font-weight: 600;
	font-size: 13px;
/*	font-weight: normal;*/
}

.careers_sa h1{
	color: #fff;
	margin-bottom: 25px;
	padding: 0;
	font-weight: 600;
	font-size: 25px;
}


/*----- footer -----*/
.container{
	max-width: 1170px;
	margin: auto;
	padding-left: 8%;
}

.row{
	display: flex;
	flex-wrap: wrap;
}

.footer ul{
	list-style: none;
}

.footer{
	margin-top: 100px;
	background-color: #24262b;
	padding:70px 0 ;
}

.footer-col{
	width: 30%;
	padding: 0 15px;
}

.footer-col h4{
	font-size: 18px ;
	color: #ffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}

.footer-col h4:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	background-color: #b31b1b; 
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}

.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}

.footer-col ul li a{
	font-size: 14px;
/*	text-transform: capitalize;*/
	color: #fff;
	text-decoration: none;
	font-weight: 300;
	color: #bbb;
	display: block;
	transition: all 0.3s ease;
}

.footer-col ul li a:hover{
	color: #fff;
	padding-left: 8px;
}

/*----- icons -----*/
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #fff;
	transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffff;
}


.footer .bottom-bar{
	background: transparent;
	text-align: center;
	margin-top: 50px;
	color: #fff;
	font-weight: 300;
}




/*----- responsive footer -----*/
@media(max-width: 700px){
	.footer-col{
		width: 50%;
		margin-bottom: 30px;
	}
}

@media(max-width: 574px){
	.footer-col{
		width: 100%;
	}
}

