@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

* {
	//margin: 0;
	//padding: 0;
	box-sizing: border-box;
}

html {
	font-family: 'Arima Madurai';
}
	
body {
	font-family: "Roboto", sans-serif;
	background-color: #f7f7f7;
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.custom-nav {
	background: #ffffff;
	box-shadow: 0 2px 44px 0 rgba(0, 0, 0, 0.04);
	padding: 15px 0;
	position: relative;
}

.custom-nav .main-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.custom-nav .main-nav .nav-logo img {
	height: 60px;
}
@media only screen and (max-width: 567px) {
	.custom-nav .main-nav .nav-logo img {
		height: 50px;
	}
}

/** Small devices (landscape phones, 576px and up) **/
@media (min-width: 576px) {
	.custom-nav .main-nav {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

/** Medium devices (tablets, 768px and up) **/
@media (min-width: 768px) {
	.custom-nav .main-nav {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/** Large devices (desktops, 992px and up) **/
@media (min-width: 992px) {
	.custom-nav .main-nav {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

/**Extra large devices (large desktops, 1200px and up) **/
@media (min-width: 1200px) {
	.custom-nav .main-nav {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

@media only screen and (min-width: 767px) {
	.custom-nav .main-nav .nav-text h3 {
		margin-bottom: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
@media only screen and (max-width: 767px) {
	.custom-nav .main-nav .nav-text h3 {
		margin: 10px 0px;
	}
}

.nav-btn a.btn:link,
.nav-btn a.nav-btn:visited {
	text-decoration: none;
	display: inline-block;
	min-width: 100px;
	border-radius: 50px;
	padding: 10px 2px;
	text-align: center;
	transition: all 0.3s ease-in;
	color: #ffffff;
}
.nav-btn a.btn-1 {
	background: #2cadb3;
}
.nav-btn a.btn-1:hover {
	opacity: 0.7;
}

.nav-btn a.btn-2 {
	background: #ec1c24;
}
.nav-btn a.btn-2:hover {
	opacity: 0.7;
}

.text-block-container {
	padding: 40px 0px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

@media only screen and (max-width: 767px) {
  .text-block-container {
    flex-direction: column;
  }
}
.text-block {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}
.one{
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .one {
   margin-bottom: 10px;
  }
}
.boxes {
	padding: 60px 0;
}

.box-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.box {
	border: 0px;
	border-radius: 15px;
	box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.07);
	transition: 0.3s ease-in-out;
	text-align: center;
	padding: 20px 9px;
	background: #ffffff;
	margin: 10px; /* and that, will result in a 10px gap */
	flex: 0 1 200px;
}
@media only screen and (max-width: 469px) {
	.box {
		flex-basis: 130px;
	}
}
.box:hover {
	transform: translateY(-10px);
	box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125) !important;
}

.boxes .box .icon-box img {
	height: 90px;
}

.boxes .box .title-box a {
	text-decoration: none;
	display: inline-block;
	//margin-top: 20px;
	font-size: 25px;
}

.new_shipping-container {
    display: flex;
    height: 80px;
    border: 1px solid #9ba4a9;border-top-width: 1px;
    border-radius: 5px;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 1% 0 1%;
    width: 800px;
    margin: 10px 0;
}
.new_shipping-logo {
    width: 50px;
    margin: 0 10px;
}
.new_shipping-text {
    color: #02aaf3;
    margin: 0 10px;
    font-size: 14px;
    text-align: center;
}
.new_shipping-button {
    padding: 5px;
    border-radius: 5px;
    color: #33b96a;
    background-color: #fff;
    border: 2px solid #33b96a;
    margin: 0 10px;
    transition: .5s;
    text-align: center;
}

	p.vinRed{
		color:#EA0E0E;
		font-weight:bold;
	}
	p.vinGreen{
		color:#90A602;
		font-weight:bold;
	}