/* 
    source: https://www.w3schools.com/howto/howto_js_sidenav.asp
*/

/* The side navigation menu */
.panel {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.panel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.panel a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.panel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
/* #main {
    transition: margin-left .5s;
    padding: 20px;
} */

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .panel {padding-top: 15px;}
    .panel a {font-size: 18px;}
}


/*  */

#copy {
    /* height: 30%; 
    top: 70%;
    left: 70%;
    right: 0;
    bottom: 0; */
    padding-top: 60px; /* Place content 60px from the top */
    /* padding-left: 20px; */
    font-size: 15px;
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: hidden; /* Disable vertical scroll */
}
#copy h3 p {
    padding: 5px;
}
#copy a {
    padding: 0;
    text-decoration: none;
    font-size: 15px;
    color: #818181;
    display: block;
    transition: 0.3s
}


/* 
    Contact Me
*/

#cv4mk-contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    width: 100%;
    float: left;
  }
  #cv4mk-contact .video, #cv4mk-contact .choose {
    display: inline-block;
  }
  @media screen and (max-width: 768px) {
    #cv4mk-contact .video, #cv4mk-contact .choose {
      width: 100% !important;
    }
  }
  #cv4mk-contact .video {
    display: table;
    width: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
  }
  @media screen and (max-width: 768px) {
    #cv4mk-contact .video {
      display: none;
    }
  }
  #cv4mk-contact .choose {
    width: 50%;
    padding: 4em;
  }
  @media screen and (max-width: 768px) {
    #cv4mk-contact .choose {
      width: 100%;
      padding: 4em 1em;
    }
  }
  
  .fh5co-video {
    overflow: hidden;
  }
  @media screen and (max-width: 992px) {
    .fh5co-video {
      height: 450px;
    }
  }
  .fh5co-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }



  .form-control {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    border: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: 300;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
  }
  .form-control:focus, .form-control:active {
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.8);
  }

  input[type="text"] {
    height: 50px;
  }
  
  .form-group {
    margin-bottom: 30px;
  }

  .form-control input{
    border:1px solid #b0b0b0;
	padding:3px 5px 4px;
	color:#979797;
	width:190px;
  }


.btn {
    margin-right: 4px;
    margin-bottom: 4px;
    font-family: "Space Mono", Arial, serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
  }
  .btn.btn-md {
    padding: 8px 20px !important;
  }
  .btn.btn-lg {
    padding: 18px 36px !important;
  }
  .btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  
  .btn-primary {
    background: #FF9000;
    color: #fff;
    border: 2px solid #FF9000;
  }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #ff9b1a !important;
    border-color: #ff9b1a !important;
  }
  .btn-primary.btn-outline {
    background: transparent;
    color: #FF9000;
    border: 2px solid #FF9000;
  }
  .btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
    background: #FF9000;
    color: #fff;
  }
  
  .btn-success {
    background: #5cb85c;
    color: #fff;
    border: 2px solid #5cb85c;
  }
  .btn-success:hover, .btn-success:focus, .btn-success:active {
    background: #4cae4c !important;
    border-color: #4cae4c !important;
  }
  .btn-success.btn-outline {
    background: transparent;
    color: #5cb85c;
    border: 2px solid #5cb85c;
  }
  .btn-success.btn-outline:hover, .btn-success.btn-outline:focus, .btn-success.btn-outline:active {
    background: #5cb85c;
    color: #fff;
  }


  .row-pb-md {
    padding-bottom: 4em !important;
  }
  
  .row-pb-sm {
    padding-bottom: 2em !important;
  }
  
  .nopadding {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .col-padding {
    padding: 6px !important;
    margin: 0px !important;
  }




  #services {
    align-content: center;
    align-items: center;
    align-self: center;

    padding-bottom: 60px;
  }

  #services h3{
    color: #fff;
    text-decoration: underline;
  }