@import url("https://fonts.googleapis.com/css?family=Acme|Lobster|Patua+One|Rubik|Sniglet");

* {
    box-sizing: border-box;
}

header,
section {
    overflow-x: visible;
}

:root {
    --Rubik: "Rubik", cursive;
    --Patua: "Patua One", cursive;
    --light-black: #2e2c2caf;
    --bggradient: linear-gradient(to bottom, #000000, #4d4848);
    --light-gray: rgba(255, 255, 255, 0.877);
}

body {
background:	var(--bggradient);
overflow-x: hidden;
}

header a {
    font-family: var(--Patua);
    font-size: 0.9em;
    color: whitesmoke;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.btn {
    transform: translateY(-4%);
}

header .nav-item:last-child {
    padding-right: 10.5em;
}

header .nav-item {
    padding: 0.9em;
}

header .navbar-brand {
    padding-left: 8rem;
}

header .navbar-brand:hover {
    color: rgb(116, 114, 114);
}

header .nav-link:hover {
    color: rgb(116, 114, 114);
}

header .row .col-md-7 {
    padding: 22vmin 1vmin;
    padding-bottom: 35vmin;
}

header .row .col-md-5 {
    padding: 4.2vmin 1vmin;
}

header .row .col-md-5 img {
    width: 90%;
}

 /* header {
    background: #7a7a7a;
     fallback for old browsers 
    background: var(--bggradient);
}  */

header .container .col-md-7 {
    font-family: "Rubik", sans-serif;
}

header .container .col-md-7 h6 {
    padding: 1vmin;
    letter-spacing: 4px;
}

header .container .col-md-7 h1 {
    font-size: 8.5vmin;
    font-weight: bold;
    padding: 0.1em 0em;
}

header .container .col-md-7 p {
    padding: 1vmin 5vmin;
}

.primary-btn {
    border-radius: 30px;
    font-weight: bold;
}

/********** section 1 **************/

.section-about {
    padding: 20vmin 0vmin;
}

.section-about .row .col-md-6 .section1 img {
    opacity: 0.8;
    width: 80%;
    border-radius: 0.2em;
}

.section-about .row .col-md-6:last-child {
    position: relative;
}

.section-about .row .col-md-6 .panel {
    position: absolute;
    top: 7vmin;
    left: -18vmin;
    background: white;
    border-radius: 3px;
    text-align: left;
    padding: 13vmin 5vmin 20vmin 10vmin;
    box-shadow: 0px 25px 42px rgba(0, 0, 0, 0.2);
    font-family: var(--Rubik);
    z-index: 1;
}

.section-about .row .col-md-6 .panel h1 {
    font-weight: bold;
    padding: 0.4em 0;
    font-size: 2em;
}

.section-about .row .col-md-6 .panel p {
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.5);
}


.section-4 .teamfind {
    background: rgb(255, 255, 255);
    display: inline-block;
    border-radius: 3em;
    padding: 2vmin 4.5vmin;
    margin: 1em;
}

.section-4 .teamfind h3 {
    font-size: 4vmin;
}

.section-4 .teamfind p {
    font-size: 2vmin;
}

/*section 5*/

.section-5 .bg-image {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-5 .bg-image::before {
    content: "";
    background-image: url('../assets/background.jpg');
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.75;
}

/*other*/

.border-radius {
    border-radius: 340px;
    width: 60%;
}

footer {
    background: rgb(12 11 11);
    overflow-x: hidden;
    padding: 14vmin 18vmin;
}

footer p>span {
    color: #747474;
}

footer input {
    border: none !important;
}

footer input::placeholder {
    color: white !important;
}

footer .input-group .input-group-text {
    background: var(--bggradient);
    border: none;
}

footer .column i {
    color: #5f5f5f;
}

/* It is Adjacent sibling combinator */

footer .column i+i {
    padding: 0 0.5em;
}

footer .fab:hover {
    color: rgb(116, 114, 114);
}

a:hover i,
a,
i {
    text-decoration: none !important;
}

footer .fab {
    color: white;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.815);
    z-index: 9999;
    transition: all 1.5s ease;
}