@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
/* @font-face {
    font-family: myFirstFont;
    src: url(sansation_light.woff);
 }
 
 * {
    font-family: myFirstFont;
 } */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	background: #fff;
	color: #333;
	line-height: 1.6;
}

ul {
    list-style: none;
}

a {
	color: #09F;
	text-decoration: none;
}

h1, h2 {
	font-weight: bold;
	line-height: 1.2;
	text-decoration: underline;
}

p {
	margin: 10px 0;
	text-justify: 50;
}

/* img {
    width: 100%;
} */

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #081049;
    color: #fff;
    opacity: 0.8;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar  a:hover {
    border-bottom: #558ed5 2px solid;
}
.navbar .logo a:hover{
	border-bottom: none;
	text-align: left;
}

.navbar ul {
    display: flex;
    font-size: 20px;
}

.navbar .logo img {
	height: 100%;
	width: 400px;
	object-fit: center center/cover;
	margin-top: 35px;
}
.navbar.board .logo img {
    height: 100%;
    width: 400px;
    object-fit: center center/cover;
    margin-top: 35px;
}

/* Header */
.hero {
    background: url('/img/assets/header.jpeg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: start;
    height: 100%;
    padding: 0 20px;
}

.hero .content h1 {
    font-size: 55px;
}

.hero .content p {
	font-size: 23px;
	max-width: 800px;
	margin: 20px 0 30px;
	text-align: justify;
	
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 500;
	right: 50;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.hero * {
    z-index: 10;
}

.hero.blog {
    background:#05396c;
    height: 40vh;
}

.hero.board{
    background: #558ed5;
    color: #fff;
    height: 40vh;
}

.hero.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #094797b0; */
    visibility: hidden;
}

.hero.contact{
	height: 40vh;
	background: #081049;
	text-align: left;
}

.hero.contact .logo{
   visibility: hidden;
}


/* Icons */
.icons {
    padding: 30px;
}

.icons h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.icons i {
    background-color: #28a745;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 15px;
}

.cases img:hover {
    opacity: 0.7;
}

.team img {
    border-radius: 50%;
}

/* Callback form
.callback-form {
    width: 50%;
    padding: 20px 0;
}

.callback-form label {
    display: block;
    margin-bottom: 5px;
}

.callback-form .form-control {
    margin-bottom: 15px;
}

.callback-form input {
    width: 50%;
    padding: 4px;
    height: 40px;
    border: #f5f5f5 1px solid;
}

.form-control textarea {
    width: 50%;
    padding: 4px;
    height: 40px;
    border: #f5f5f5 1px solid;
}

.callback-form input:focus {
    outline-color: #28a745;
}

.callback-form .btn {
    padding: 12px 0;
    margin-top: 20px;
} */

/* Post */
.post {
    padding: 50px 30px;
}

.post h2 {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: #ccc solid 1px;
}

.post .meta {
    margin-bottom: 30px;
}

.post img {
    width: 300px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer .map{
	justify-content: flex-start;
	/* [disabled]text-align: start; */
	align-items: flex-start;
	padding: 20px 20px;
	border-bottom: 1px solid white;
}
.footer .map img{
    margin-top: 20px;
}

.footer .map p{
    line-height: .8rem;
    font-size: 20px;
}

.footer .social{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color:#558ed5;
}

.footer .social > * {
    margin-right: 30px;
}

/* Mobile */
@media(max-width: 768px) {
    .hero{
        height: 120vh;
    }

    .hero .content{
        padding-top: 12em;
    }
    .hero .content h1{
        font-size: 50px;
    }
    .hero.blog {
        height: 50vh;
    }
    .navbar {
        flex-direction: column;
        height: 170px;
        padding: 20px;
    }
    .navbar .logo{
        justify-content: center;
        text-align: center;
        align-items: center;
        padding-bottom: 20px;
        width: 900px;
        margin-top: 0;
    }

    .navbar a {
        padding: 10px 10px;
        margin: 0 3px;
    }

    .flex-items {
        flex-direction: column;
    }

    .flex-columns .column, .flex-grid .column {
        flex: 100%;
        max-width: 100%;
    }

    .team img {
        width: 70%;
    }
    .holding-container{
        height: 800px;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        text-align: justify;
    }

    .holding-container .internalcontainerR img{
        width: 300px;
        margin-bottom: 20px;
    }
    .holding-container .internalcontainerL img{
        width: 400px;
    }
}

@media(max-width: 375px) {

    .hero.blog {
        height: 50vh;
    }

    .navbar .logo img{
        
        padding-right: 20px;
        width: 200px;
    }

    .navbar ul{
        margin-right: 18px;
    }
    
    .holding-container{
        height: 100%;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        text-align: justify;
    }

    .holding-container .internalcontainerR img{
        max-width: 300px;
        margin-bottom: 20px;
    }
    .holding-container .internalcontainerL img{
        width: 400px;
    }

    .footer .map img {
        padding-right: 20px;
    }

    .holding-grid{
        padding-top: 20px;
    }
}


/* PORTOFOLIO */
.portfolio h1{
    text-align: center;
    margin-top: 20px;
    font-size: 50px;
    font-weight: 500;
}

.holding-container h1{
    color: cornflowerblue;
    font-weight: 400;
    padding-left: 15px;
    letter-spacing: .2rem;
}
.box-1 h2{
    letter-spacing: .1rem;
    line-height: 2rem;
    font-weight: 500;
    padding-left: 10px;
    text-transform: uppercase;
}
.box-1 p,
.box-2 p{
	font-size: 24px;
	padding: 40px;
}

.holding-container .box-1 img{
    width: 400px;
    border-radius: 20%;
    padding:20px
    
}


form{
    width: 90%;
    max-width: 800px;
}

input, textarea{
    width: 100%;
    padding:10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;
    margin-bottom: 20px;
}


 /* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  color: white;
  padding: 02px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  font-size: 14px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
} 


* {
  box-sizing: border-box;
}

/* Style the search field */
form.example input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: # 000;
}

/* Style the submit button */
form.example button {
  float: left;
  width: 15%;
  padding: 10px;
  background: #2196F3;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

form.example button:hover {
  background: #0b7dda;
}

/* Clear floats */
form.example::after {
  content: "";
  clear: both;
  display: table;
}
