@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

/* Obviously copy pasted code*/
header ,#eachJob {
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
  }
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


* {
    margin: 0px;
    padding: 0px;
}
*:focus {
    outline: none;
}

body {
    color: #eeeeee;
    background-color: #e6ecf9;
}
a {
    color: #eeeeee;
    text-decoration: none;
}
header {
    margin: 5px;
    height: 64vh;
    border-radius: 20px;
    border: 1px solid #28376a;
    background-color: #28376a;
}

#logoImage {
    width: 160px;
    height: 50px;
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}

nav {
    float: right;
    margin: 20px 25px 0px;
    background-color: #28376a;
}

nav li {
    list-style: none;
    display: inline;
    margin-right: 30px;
}

nav li a:hover {
    color: #cf566a;
}


nav  li a {
    font-size: 18px;
    font-weight: bold;
}


#intro {
    color: #eeeeee;
    margin: 20vh 10vh 0vh;
    font-size: 25px;
    width: 45%;
}

#intro p {
    margin-top: 20px;
    font-size: 20px;
}

#bannerImage {
    float: right;
    width: 20%;
    margin-top: -260px;
    margin-right: 160px;
}
#searchIcon {
    width: 25px;
    height: 25px;
    margin-top: 4px;
    margin-right: -12px;
    float: left;

}
#searchBox {
    width: 50vw;
    height: 70px;
    border-radius: 20px;
    background-color: #eeeeee;
    margin-left: 25%;
    margin-top: 150px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.4);
}

#searchBox input {
    height: 30px;
    width: 250px;
    border: none;
    padding: 0px 20px;
    background-color: transparent;
    font-size: 22px;
}



#searchJobKeyword {
    float: left;
    margin-left: 20px;
    border-right: 2px solid black;
    margin-top: 18px;
}
#searchJobLocation {
    float: left;
    margin-left: 10px;
    margin-top: 18px;
}

#searchBotton {
    height: 40px;
    float: right;
    width: 150px;
    border-radius: 20px;
    background-color: #cf566a;
    padding: 15px 30px;
    text-align: center;
    align-content: center;
}

#searchBotton:hover {
    color: black;
    background-color: #e45d74;
}

#searchBotton:hover button{
    color: black;
    background-color: #e45d74;
}

#searchBotton button {
    color: #eeeeee;
    border: none;
    font-size: 25px;
    font-weight: bold;
    background-color: transparent;
    margin-top: 5px;
}


/* Job Listings */

#jobListings {
    /*display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;*/
    height: 200vh;
    border-radius: 20px;
    padding-left: 4%;
    padding-top: 20px;
    background-color: #d9dfec1e;
    color: black;
    margin: 80px 24% 80px 20%;
    margin-bottom: 100px;
    background-color: #3d4b7805;
    height: fit-content;
    padding-bottom: 8px;
    
}

#jobsTitle  {
    font-size: 30px;
    margin-bottom: 10px;
    padding-left: 20px;
}

#companyLogos {
    float: left;
    width: 90px;
    height: 80px;
    margin: 10px auto;
    border-radius: 20px;
    align-self: center;
}


#eachJob {
    height: 100px;
    width: 89%;
    background-color: #d9dfeca2;
    border-radius: 20px;
    padding: 10px 30px 10px 10px;
    margin-bottom: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

#eachJob:hover {
    background-color: #c8cdda94;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

#companyNameAndAddress {
    float: left;
    margin-top: 22px;
    margin-left: 14px;    
}

#companyName {
    margin-bottom: 4px;
}


#eachJobExpanded {
    height: 540px;
    width: 89%;
    background-color: #d9dfeca2;
    border-radius: 20px;
    padding: 10px 30px 10px 10px;
    margin-bottom: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

#companyLogosExpanded {
    float: left;
    width: 250px;
    height: 190px;
    margin: 10px auto;
    border-radius: 20px;
    align-self: center;
    margin-left: 10px;
}

#companyNameAndAddressExpanded {
    text-align: left;
    margin-top: 230px;    
    margin-left: 20px;
}

#jobTitleAndTypeExpanded {
    margin-top: 20px;
    text-align: left;
    margin-left: 20px;
}

#description {
    margin-top: 20px;    
    margin-left: 20px;
    font-size: 25px;
    text-align: left;
    font-weight: bold;
}


#jobTitleAndType {
    float: right;
    margin-top: 25px;
    text-align: right;
}

#jobTitle {
    margin-bottom: 6px;
}


/* Job Types and Roles */
#jobTypeAndRole {
    width: 14vw;
    float: left;
    color: black;
    margin: 85px 2%;

}

/* Job Types */
#jobTypes {
    width: 80%;
    margin-bottom: 12%;
    border-radius: 20px;
    padding: 20px 4% 40px 25%;
    background-color: #3d4b7805;
}

#jobTypes:hover, #jobRoles:hover, #emailSubscription:hover, #recentSearches:hover {
    background-color: #3d4b7810;
}

#jobTypeTitle {
    font-size: 26px;
    margin-bottom: 10px;
    padding-left: 20px;
}

#jobTypeAndRole h6{
    font-size: 18px;
}

#jobTypeAndRole input{
    float: left;
    margin-top: 6px;
    margin-right: 10px;
    margin-left: 20px;
}


#jobDescription {
    margin-top: 10px;    
    margin-left: 20px;
    text-align: left;
    font-weight: bold;
}

/* Job Roles */
#jobRoles {
    width: 90%;
    border-radius: 20px;
    background-color: #3d4b7805;
    padding: 20px 4% 40px 14%;
}

#jobRoleTitle {
    font-size: 26px;
    margin-bottom: 10px;
    padding-left: 40px;
}


/* Email Subs And Recent Searches */
#emailSubsAndRecentSearches {
    float: right;
    color: black;
    position: absolute;
    top: 640px;
    right: 40px;
    margin-bottom: 14%;
}

#emailSubscription {
    border-radius: 20px;
    padding: 20px 40px 40px 40px;
    background-color: #3d4b7805;
    margin-bottom: 8%;
}
#emailSubscription h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}
#emailSubscription input {
    border: none;
    border-radius: 20px;
    width: 80%;
    padding: 10px 20px;
    margin-bottom: 10px;
}
#emailSubscription button {
    border: none;
    font-size: 17px;
    color: white;
    padding: 10px 30px;
    margin-left: 20%;
    border-radius: 20px;
    background-color: #cf566a;
}

#emailSubscription button:hover {
    background-color: #e45d74;
}

#emailSubscription button:hover {
    color: black;
    background-color: #e45d74;
}


#recentSearches {
    border-radius: 20px;
    padding: 20px 40px 40px 40px;
    background-color: #3d4b7805;

}

#recentSearches h1 {
    font-size: 26px;
    font-weight: bold;
    margin-left: 10%;
    margin-bottom: 20px;
}

#recentSearches h4 {
    margin-left: 25%;
}

#recentSearches h4:hover {
    color: #cf566a;
}

#noJobsFound {
    margin-top: 4%;
    margin-left: -50px;
    text-align: center;
    font-size: 30px;
    color: #cf566a;
}

#applyBtn {
    padding: 10px 80px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 20px;
    background-color: #e45d74;
    color: white;
    border: none;
    margin-top: 25px;
    float: left;
    margin-bottom: 100px;
    margin-left: 20px;
}

#applyBtn:hover {
    background-color: #cf566a;
}

#undoApplyBtn {
    padding: 10px 80px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 20px;
    background-color: green;
    color: white;
    border: none;
    margin-top: 25px;
    float: left;
    margin-bottom: 100px;
    margin-left: 20px;
    display: none;
}

#undoApplyBtn:hover {
    background-color: rgb(4, 161, 4);
}

#returnBtn {
    padding: 10px 80px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 20px;
    background-color: #e45d74;
    color: white;
    border: none;
    margin-top: 25px;
    float: left;
    margin-bottom: 100px;
    margin-left: 20px;
}

#returnBtn:hover {
    background-color: #cf566a;

}

/* Footer */
footer {
    margin-top: 500px;
    padding-top: 10px;
    height: 4vh;
    text-align: center;
    background-color: #28376a;
}







