@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: FrutigerLTStd-Light;
    src: url(fonts/FrutigerLTStd-Light.otf);
}

@font-face {
    font-family: FrutigerLTStd-Medium;
    src: url(fonts/FrutigerLTStd-Medium.otf);
}

@font-face {
    font-family: FrutigerLTStd-Bold;
    src: url(fonts/FrutigerLTStd-Bold.otf);
}

*,
*:before,
*:after,
*:hover,
*:active,
*:focus {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition: 1s opacity ease-in-out;
}

button {
    outline: 0;
}


blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

input,
button {
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    cursor: pointer;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="search"],
input[type="password"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

small,
sup,
sub {
    font-size: 80%;
}

sup {
    vertical-align: super;
}

sub {
    vertical-align: sub;
}

del,
strike,
s {
    text-decoration: line-through;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 0;
}

html, 
body {
	margin: 0;
	padding: 0;
	-moz-text-size-adjust: inherit;
	-webkit-text-size-adjust: inherit;
	text-size-adjust: inherit;
	overflow-x: hidden;
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
	background: #C0E3F6 url("images/background-tiled.jpg") repeat-y fixed center;
	font-family: FrutigerLTStd-Light;
	font-size: 22px;
	color: #191c20;
	letter-spacing: 1px;
}

h3 {
	font-family: FrutigerLTStd-Medium;
}

b,
strong {
	font-family: FrutigerLTStd-Bold;
}

a {
	color: #002790;
}

a:hover {
	text-decoration: none;
}

img {
	border: 0;
}

p {
	margin: 20px 0;
	padding: 0;
}

.alignleft {
	float: left;
	padding: 0 10px 10px 0;	
}

.alignright {
	float: right;
	padding: 0 0 10px 10px;	
}

.aligncenter {
	text-align: center;
	margin: 0 auto;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
 
.clearfix:after {
  clear: both;
}
 
.clearfix {
  zoom: 1; /* for IE 6 and 7 */
}

.anchor {
	margin-top: -100px !important;
}

@media all and (max-width: 1786px) {

	body {
		font-size: 20px;
	}

}

@media all and (max-width: 1470px) {

	body {
		font-size: 18px;
	}

}


/*****************************************/
/* ANIMATIONS */
/*****************************************/

.to-animate.fade-in {
	opacity: 0;
}

.animate.fade-in {
	opacity: 1;
}

.to-animate.slide-left {
	left: -100px !important;
}

.animate.slide-left {
	left: 0 !important;
}

.to-animate.slide-right {
	right: -100px !important;
}

.animate.slide-right {
	right: 0 !important;
}

.to-animate.slide-up {
	margin-top: 100px !important;
}

.animate.slide-up {
	margin-top: 0 !important;
}

.to-animate.slide-down {
	margin-top: -100px !important;
}

.animate.slide-down {
	margin-top: 0 !important;
}

/*****************************************/
/* TO TOP */
/*****************************************/

#to-top {
  position: fixed;
  display: none;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: #14395F;
  border-radius: 10px;
  cursor: pointer;
  z-index: 999;
}

.arrow-up {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff; /* arrow color */
}

@media all and (max-width: 1366px) {
    
    #to-top {
	  width: 40px;
	  height: 40px;
	}

	.arrow-up {
	  position: absolute;
	  top: 15px;
	  left: 10px;
	  border-left: 10px solid transparent;
	  border-right: 10px solid transparent;
	  border-bottom: 10px solid #fff; /* arrow color */
	}
   
}

/*****************************************/
/* HEADER */
/*****************************************/

#header {
	position: fixed;
	padding: 50px;
	width: 100%;
	height: auto;
	background: #2766B0;
	z-index: 999;
}

#header.condensed {
	padding: 20px 50px;
}

@media all and (max-width: 1024px) {

	#header {
		padding: 20px 50px;
	}

}

/*****************************************/
/* DDL LOGO */
/*****************************************/

.logo-ddl {
	float: left;
	padding: 0 50px 0 0;
}

.logo-ddl img {
	width: 488px;
	height: auto;
}

#header.condensed .logo-ddl img {
	width: 200px;
}

@media all and (max-width: 1786px) {
    
    .logo-ddl img {
		width: 400px;
	}
   
}

@media all and (max-width: 1440px) {
    
    .logo-ddl img {
		width: 360px;
	}
   
}

@media all and (max-width: 1380px) {
    
    .logo-ddl img {
		width: 320px;
	}
   
}

@media all and (max-width: 1200px) {
    
    .logo-ddl img {
		width: 260px;
	}
   
}

@media all and (max-width: 960px) {
    
    .logo-ddl img {
		width: 200px;
	}
   
}

/*****************************************/
/* NAVIGATION */
/*****************************************/

nav#navigation ul {
	list-style: none;
	margin: 44px 0 0 0;
	padding:0;
}

.condensed nav#navigation ul {
	margin: 14px 0 0 0;
}

nav#navigation ul li {
	display: inline-block;
}

nav#navigation ul li a {
	padding: 0 30px;
	font-size: 34px;
	color: #fff;
	text-decoration: none;
}

.condensed nav#navigation ul li a {
	font-size: 26px;
}

@media all and (max-width: 1800px) {
    
    nav#navigation ul {
		margin: 34px 0 0 0;
   }

   nav#navigation ul li a {
		font-size: 30px;
	}

}

@media all and (max-width: 1610px) {
    
    nav#navigation ul {
		margin: 38px 0 0 0;
   }

   nav#navigation ul li a {
	   	padding: 0 20px;
		font-size: 26px;
	}

}

@media all and (max-width: 1380px) {
    
    nav#navigation ul {
		margin: 30px 0 0 0;
   }

   nav#navigation ul li a {
		font-size: 20px;
	}

}

@media all and (max-width: 1200px) {
    
    nav#navigation ul {
		margin: 20px 0 0 0;
   }

   nav#navigation ul li a {
	   	padding: 0 10px;
		font-size: 16px;
	}

}

@media all and (max-width: 1124px) {

	#header.condensed nav#navigation ul li a {
		font-size: 20px;
	}

}


@media all and (max-width: 1024px) {
	nav#navigation {
		display: none;
	}
}

/*****************************************/
/* MOBILE */
/*****************************************/

#hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 40px;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	display: none;
}

#header.condensed #hamburger {
	top: 20px;
}


@media all and (max-width: 1024px) {

	#hamburger {
		top: 20px;
		display: block;
	}
}

#hamburger .bar {
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

#hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
#hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

#side-menu {
  width: 300px;
  background: #14395F;
  color: white;
  position: fixed;
  top: 0;
  left: -300px;
  height: 100%;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
}
#side-menu ul {
  list-style: none;
  padding: 0;
}
#side-menu ul li {
  padding: 15px 20px;
}
#side-menu ul li a {
  color: white;
  text-decoration: none;
}

#side-menu.active {
  left: 0;
}

/*****************************************/
/* SECTION */
/*****************************************/

.section {
	scroll-margin-top: 90px;
	position: relative;
	float: left;
	padding: 100px 50px 0 50px;
	width: 100%;
	height: auto;
}

.section-header {
	margin: 0;
	clear: both;
	float: left;
	height: 160px;
}

.section-header .text-container {
	float: left;
	width: 350px;
	height: 160px;
	background: #14395F;
	display: flex;
	align-items: center;   /* Vertical centering */
	justify-content: center; /* Horizontal centering */
	text-align: center; /* Optional: center text inside */
}

.section-header .text-container h2 {
	font-size: 36px;
	color: #fff;
}

.section-header img {
	float: left;
}

.section-text {
	clear: both;
	float: left;
	margin: 50px 0 0 0;
	width: 50%;
}

.section-text p:first-of-type {
	font-family: FrutigerLTStd-Medium;
}

@media all and (max-width: 640px) {

	.section {
		scroll-margin-top: 50px;
	}

	.section-header {
		height: 100px;
	}

	.section-header .text-container {
		width: 180px;
		height: 100px;
	}

	.section-header .text-container h2 {
		font-size: 22px;
	}

	.section-header img {
		height: 100px;
	}
}

@media all and (max-width: 500px) {

	.section-header {
		height: 80px;
	}

	.section-header .text-container {
		width: 180px;
		height: 80px;
	}


	.section-header img {
		height: 80px;
	}

	.section-text {
		margin: 30px 0 0 0;
    }
    
}

/*****************************************/
/* PAGE 1 - HOME */
/*****************************************/

#home {
	padding: 0;
}

img.hero {
	float: left;
	width: 100%;
	height: auto;
}

#get-the-facts {
	position: absolute;
	margin: -75px 0 0 0;
	top: 35%;
	left: 50px;
	padding: 50px;
	width: 400px;
	height: 150px;
	font-family: FrutigerLTStd-Medium;
	font-size: 40px;
	text-transform: uppercase;
	color: #fff;
	background: #2766B0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	z-index: 99;
	box-shadow: 10px 10px 5px rgba(0,0,0,.5);
}

@media all and (max-width: 1440px) {

	#get-the-facts {
		padding: 40px;
		top: 45%;
		width: auto;
		height: 130px;
	}
}

@media all and (max-width: 1200px) {

	#get-the-facts {
		padding: 30px;
		height: 100px;
		font-size: 36px;
	}
}

@media all and (max-width: 1024px) {

	#home {
		height: 640px;
	}

	img.hero {
		width: 100%;
		height: 640px;
		object-fit: cover;
		object-position: bottom right;
	}

}

@media all and (max-width: 960px) {

	img.hero {
		width: 100%;
		height: 660px;
		object-fit: cover;
		object-position: bottom right;
	}

}

@media all and (max-width: 768px) {

	#get-the-facts {
		padding: 20px;
		top: 130px;
		height: 80px;
		font-size: 32px;
	}

}

/*****************************************/
/* PAGE 2 - ABOUT US */
/*****************************************/

.logo {
	margin: 50px 0 0 0;
}

.milk-packs {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: auto;
}

@media all and (max-width: 1440px) {

	.milk-packs {
		right: -100px;
		width: 60%;
	}
}

@media all and (max-width: 1366px) {

	.milk-packs {
		right: -170px;
		width: 70%;
	}
}

@media all and (max-width: 980px) {

	.milk-packs {
		top: 400px;
	}
}

@media all and (max-width: 768px) {

	#about-us .section-text {
		width: 100%;
	}

	.milk-packs {
		display: none;
	}
}

@media all and (max-width: 640px) {

	.logo {
		width: 90%;
	}

}

/*****************************************/
/* PAGE 3 - MILKY MYTHS */
/*****************************************/

.milk-milky-myths {
	position: absolute;
	bottom: -350px;
	right: 50px;
	width: 40%;
}

#milky-myths .grid {
	clear: both;
	float: left;
	margin: 50px 0 0 0;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr; /* 2 columns */
	gap: 20px;
	width: calc(100% - 100px);
	max-width: 1820px;
	margin: 0 auto;
}

.grid-item {
	float: left;
}

.grid-item .grid-image,
.grid-item .grid-text {
	float: left;
}

.grid-item .grid-image {
	width: 440px;
	text-align: center;
}

.grid-item .grid-image img {
	width: 100%;
	height: auto;
}

.grid-item .grid-text {
	width: calc(100% - 440px);
}

@media all and (max-width: 1640px) {

	.grid-item .grid-image {
		width: 320px;
	}

	.grid-item .grid-text {
		width: calc(100% - 320px);
	}

	.grid-item .grid-text img {
		width: 120px;
	}

}

@media all and (max-width: 1280px) {

	#milky-myths .section-text {
		width: 100%;
	}

	.milk-milky-myths {
		display: none;
	}

	.grid {
		grid-template-columns: 1fr; /* 2 columns */
	}

}

@media all and (max-width: 768px) {

	.grid-item .grid-image {
		width: 300px;
	}

	.grid-item .grid-text {
		width: calc(100% - 300px);
	}

}

@media all and (max-width: 640px) {

	.grid,
	.grid-item {
		width: 100%;
	}

	.grid-item .grid-image,
	.grid-item .grid-text {
		clear: both;
		width: 100% !important;
	}

}

/*****************************************/
/* PAGE 4 - HISTORY OF MILK */
/*****************************************/

#history-of-milk .section-text {
	width: 30%;
}


#history-of-milk .milk-containers {
	margin: 350px 0 0 0;
	position: absolute;
	top: 0;
	right: 100px;
	width: 50%;
}

@media all and (max-width: 1024px) {

	#history-of-milk .milk-containers {
		margin: 50px 0 0 0;
		position: static;
		float: left;
		width: 100%;
	}

	#history-of-milk .section-text {
		width: 100%;
	}

}

/*****************************************/
/* PAGE 5 - CONTACT US */
/*****************************************/

#contact-us {
	padding-bottom: 100px;
}

.milk-contact-form {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

#contact-us .section-text {
	width: 30%;
}

.contact-row,
.contact-row .icon,
.contact-row .text {
	float: left;
}

.contact-row {
	clear: both;
	margin: 0 0 40px 0;
}

.contact-row .icon {
	padding-right: 30px;
}

.contact-row .text a {
	color: #000;
	text-decoration: none;
}

.contact-row .text a:hover {
	text-decoration: underline;
}

#contact-form {
	float: right;
	width: 60%;
}

#contact-form-result {
	padding: 30px;
	width: 100%;
	color: #fff;
	background: rgba(68, 130, 194, .7);
	border-radius: 40px;
}

#contact-form-result,
#contact-form-form {
	margin: 0 auto;
	max-width: 640px;
}

@media all and (max-width: 1400px) {

	#contact-us .section-text,
	#contact-form {
		margin: 100px 0 0 0;
	}

}

@media all and (max-width: 1024px) {

	#contact-us .section-text,
	#contact-form {
		margin: 50px 0 0 0;
		clear: both;
		float: left;
		width: 100%;
	}

	.contact-row {
		clear: none;
		width: 50%;
	}

	#contact-us .contact-row:nth-of-type(3) {
		clear: both;
	}

	#contact-form-result,
	#contact-form-form {
		max-width: 100%;
	}

}

#contact-form-result {
	padding: 200px 0;
	display: none;
}

#contact-form-result p {
	margin: 0 auto 0 auto;
	text-align: center;
	width: 100%;
	max-width: 600px;
}

#contact-form-form {
	padding-bottom: 30px;
	float: left;
	width: 100%;
	color: #fff;
	background: rgba(68, 130, 194, .7);
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
}

.contact-form-top-text {
	padding: 30px;
	font-size: 22px;
	text-align: center;
	color: #fff;
	background: #14395F;
}

.contact-form-form-container {
	padding: 30px;
}

::placeholder,
::-webkit--placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
    font-size: 16px;
    color: #1d1e20;
}

.form-row {
	padding: 10px 0;
	float: left;
	width: 100%;
}

.form-column-half-width {
	float: left;
	width: 50%;
}

.form-column-half-width:first-of-type {
	padding-right: 40px;
}

@media all and (max-width: 500px) {

	.form-column-half-width {
		width: 100%;
	}

	.form-column-half-width:first-of-type {
		padding-right: 0;
		padding-bottom: 20px;
	}

}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
	margin: 5px 0;
	padding: 10px;
	font-family: FrutigerLTStd-Medium;
	font-size: 18px;
	width: 100%;
	color: #1d1e20;
	border: none;
	border-radius: 10px;
	background: #fff;
}

textarea {
	height: 100px;
}

input[type=submit] {
	margin: 0 auto;
	padding: 20px;
	width: 100%;
	font-family: FrutigerLTStd-Bold;
	font-size: 24px;
	color: #fff;
	background: #2766B0;
	display: block;
	border-radius: 30px;
}

.loading-animation {
    margin: 20px auto;
    border: 6px solid #ddd;
    border-radius: 50%;
    border-top: 6px solid #333;
    width: 60px;
    height: 60px;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}