/* Various customisations to the default Bootstrap styles to taylor them to our needs */
/* combined with a few useful extras like layout tables */

html {
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,'Fira Sans','Droid Sans','Helvetica Neue',sans-serif;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body {
/* 	background: url(../img/background.jpg) center no-repeat; */
	background-size: cover;
	background-attachment: fixed;
	background-image: radial-gradient(at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 80%), radial-gradient(at 50% 30%, #162140 0%, #0e1324 40%);
	background-color: #0d101a;
	color: #aeb0b8;
	margin: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.main-body {
	display:flex;
	flex-flow: column nowrap;
}
  
.header {
	flex: 0 0 auto;
}

.logo-banner {
    max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}


#logo {
    width: 100%;
    height: 100px;
    background: transparent url(../img/logo.svg);
    background-position-x: left;
    background-repeat: no-repeat;
}

.content
{
/* 	background: rgba(245, 245, 245, 0.8); */
	flex: 1 0 auto;
	margin-top:32px;
}

h1,h2 {
	margin-bottom:4px;
}

p {
	font-size:15px;	
}

a {
	text-decoration: none;
	color: inherit;
}

    
.container {
  padding: 18px 32px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  gap: 12px;
  max-width: 1280px;
}

.container div.product-main-container {
	flex:1;
}

.product-main-image {
	background-image: radial-gradient(at 40% 50%, #26445a 0%, rgba(0,0,0,0) 40%), radial-gradient(#002d40 0%, rgba(0,0,0,0) 60%);
}

.container div.product-container {
	flex:1;
}

.container div img {
	height:300px;
}

a.logo
{
	display: inline-block;
	width: 128px;
    height: 128px;
    float: right;
}

div.logo-banner p.lead
{
	display: inline-block;
	padding-left: 10px;
}

div.logo-banner h2.lead
{
    display: inline-block;
    padding-left: 10px;
    margin-top: 0px;
    font-size: 30px;
}

div.product-main-container h1 {
	line-height:1;
	color: #969db6;
	animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

div.product-main-container span {
	opacity: 0;
	animation: spanFadeIn 1.5s forwards;
	animation-delay:0.5s;
}

@keyframes spanFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

div.product-main-container h2 {
	margin-top:48px;
}

div.product-main-container p {
	margin-top:0;
	margin-bottom:24px;
}

.product-container {
	padding:16px;
	background-image: radial-gradient(at 10% 50%, #121b33 0%, rgba(255,255,255,0.05) 40%);
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	border-left:1px solid #121b33;
	border-radius:8px;
	min-height:160px;
}

.product-container h3 {
	margin-top:0;
	margin-bottom:8px;
	color:#fff;
}

.product-image {
	height:calc(100% - 30px);
	width:100px;
	float:left;
}
.product-server {
	background: url(../img/CatDV-admin.svg) center no-repeat;
}

.product-web {
	background: url(../img/CatDV-legacy.svg) center no-repeat;
}

.product-advanced {
	background: url(../img/CatDV-advanced.svg) center no-repeat;
}

.product-description {
	width:calc(100% - 120px);
	float:right;
}

.product-description p{
	margin-top:8px;
	min-height:80px;
}

a.product-link{
	border:1px solid #4d5fad;
	padding:6px 16px;
	border-radius: 4px;
	margin-top:18px;
	color:#fff;
	vertical-align:middle;
	cursor:pointer;
	transition:0.25s;
}

a.main-product-link {
	background-color:#4d5fad;
	border:1px solid #4d5fad;
	font-size:18px;
	padding:8px 32px;
	margin-bottom:12px;
	border-radius: 4px;
	color:#fff;
	vertical-align:middle;
	cursor:pointer;
	transition:0.25s;
	box-shadow:0 0 5px #2d4380;
}

a:hover.product-link, a:hover.main-product-link {
	border:1px solid #5667b4;
	background-color: #5667b4;
}

@media (max-width: 800px) 
	{
		#logo {
			background-position-x: center;
		}
		
		.container{
			flex-direction:column;
		}
		
		.container div img {
			height:240px;
		}
		
		.container div.product-main-container {
			text-align: center;
		}
		
		.product-image {
			height:150px;
		}
	}
