@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
    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: #333;
    text-decoration: none;
}

h1, h2{
    font-weight: 300;
    line-height: 1.2;
}

p {
    margin: 10px 0;
}

img {
    width: 100%
}

/* navbar */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: #333;
    color: white;
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 15px;
}

.navbar h1{
    display: flex
}


.navbar ul{
    display: flex;
    padding: 0 0 5px 5px;
}

.navbar ul li a{
    color: #fff;
    padding: 10px 10px 2vw;
    margin: 0px 5px;}

.navbar ul li a:hover {
    border-bottom: limegreen 2px solid;

}

.navbar .logo {
    font-weight: 400;
}

/* Header */
.hero {
    background: url('./img/Goat_Painting.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    

}

.hero .content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
}

.hero .content h1{
    font-size: 55px;
    color: white;
}

.hero .content p {
    font-size: 23px;
    max-width: 600px;
    margin: 20px 0 30px;
    opacity: 100%;
    color: white;
}

.hero::before {
    z-index: 1;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);

}

.hero *{
    z-index: 100;
}

/* icons */
.icons {
    padding: 30px;

}

.icons h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.icons i {
    background-color: aqua;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    margin: 2rem;
}

/* blog */
.blog {
    color: white;
}

/* about */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: white;
    color: #333;
    padding: 10vh;
    margin-top: 25px;
    height: 100%

}

/* flex grid */
.column {
    display: "flex";
    flex-direction: "column";
}
.row {
    display: "flex";
    flex-direction: "row"
}


.flex-columns .column-2{
    background-color: aqua;
    color: black;
    height: 100%;
}
.flex-columns .column-1{
    height: 100%;
    
}
.flex-columns .column-1 p {
    margin: 0 5vw
}
.flex-columns .column-2 p {
    margin: 0 5vw
}
.flex-columns {
    height: 100%;
}

.column-2 {
    background-color: #333;
    color: white;
}

.contact .column-2 {
    background-color: aqua;
    color: #333;
}
/* Callback form */
.callback-form {
    padding: 0;
  background-size: 100%

}





.callback-form .form-control {
    margin: 15px 10px;
    width: 35vw
}

.column .contact-form{
    
    
    margin: 0;
  padding: 0
}
.column-1 img {
    size: cover;
}
.contact .column-1 {
    height: 100%;
    width: 100%;
}
.contact .column-2 {
    height: 100%;
    width: 100%; 
    
}




.callback-form input {
    width: 100%;
    padding: 4px;
   
    border: #f5f5f5 1px solid;
}

.callback-form .btn {
    padding: 12px;
    margin-top: 20px
}

.callback-form input:focus {
    border: #333 5px solid;
}
/* pictures */
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #333;
    width: 100vw;
}
.section img {
   width: 85%;
}
.picintro {
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: aqua;
}
/* footer */
.footer {
    display: flex;
    flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   height: 100px;
   z-index: 1000;
   color: white;
   position: relative;
   background-color: #333;

}
.social {
    display: flex;
    flex-direction: row;
   align-items: center;
   justify-content: center;
   text-align: center;
   height: 100px;
   z-index: 1000;
   color: white;
   position: relative;
}
.social *{
    padding-left: 10px;
}

.footer a{
    color: white;
}

.footer a:hover{
    color: aqua;
}


.footer {
    display: flex;
    align-self: center;
    justify-self: bottom;
}

/* mobile */


@media(max-width: 900px) {
    .navbar {
        flex-direction: column;
        height: 120px;
        padding: 20px;
        max-width: 100%;
        align-content: center;
        align-self: left;
    }
    .navbar ul {
        justify-content: space-between;
        align-items: center;
        align-self: center;
    }
    .navbar ul li {
    margin: 0 5px;}
    
    .navbar ul li a {
        margin: 0 0 3px;
        padding: 10vw 10px
    }

  

    .icons {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }
    
    .flex-items div {
        margin: 0;
        width: 70vw;
    }
   
    
    .flex-items {
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        align-content: center;
        max-height: 100%;
        margin-left: 0;
        padding-left: 0;

       
    }
    
    
    
   
    
   
    .row {
        
        margin-left: 0;
        padding-left: 0;
        width: 100%;

    }
    
   
   
    
    .hero {
        height: 150vh;
    }
    .navlist {
        align-self: left;
        align-content: left;
    }

    .icons{
  
    align-content: center; 
      
    }
    
}

/* blog */
.blogs{
    background: url(./pictures/world-map.jpeg) no-repeat center center/cover;
height: 80vh;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20vh;
}
.intropar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20vh 10vh 10vw 10vw;
}



.bg-light {
    background-color: rgb(11, 23, 48);
    color: #333;
}

.bg-light h1{ color: black}
.bg-light p{color: black}
.bg-light h3{color: black}

.intro {
    padding: 10px 5px;
}
.intro h2 {
    padding: 5px 0
}
.intro p {
    padding: 10vh 10vh 10vw 10vw
}
#blog .navbar {
    width: 100vw
}

@media(max-width: 768px){
    .intro {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 0;
    }
}

/* contact form */
.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.flex-columns .column img {
    size: contain;
}
.flex-columns .row {
    display: flex;
    height: 600px;

}
.flex-columns .row .column {
    height: 100%;
    width: 50vw;

}

.flex-columns .row .column .bg-dark{
    background-color: rgb(92, 91, 91);
    color: #fff
}

@media(max-width: 900px){
    .blogs {
        height: 120vh
    }
}