@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: #e6d822;
    --black-color: #000000;
    --border: 0.1rem solid rgba(255,255,255,0.4);
}

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2 ease;
}

/*! base html codes*/

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

body {
    background-color: var(--main-color);
}

section {
    padding: 3.5rem 7%;
}

.x-icon {
    background-color: transparent;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: #fff;
    background-color: var(--black-color);
    cursor: pointer;
}

.logo img {
    height: 10rem;
}

/* header start */
.header .logo img {
    height: 10rem;
}
.header {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    position: sticky;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    top: 0;
    z-index: 1000;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;
    font-weight: bold;
}

.header .navbar .active,
.header .navbar a:hover {
    border-color: var(--black-color);
    padding-bottom: 0.5rem;
}

.header .buttons button {
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
}
/* header end */
/* home start */
.home {
    min-height: 100vh;
    background: url(../images/backgroud.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -14.5rem;
    display: flex;
    align-items: center;
}
.home .content {
    max-width: 60rem;
}
.home .content h3 {
    font-size: 6rem;
    color: white;
}
.home .content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    color: white;
}
/* home end */
/* footer start */
.footer { background:#222222;width:100%; height:269px;float:left;color:white; font-family:arial;}
.footer #kutu b {font-size:14px;}
* {margin:0px;padding:0px;}
.footer_container{width:768px; height:175px; margin:30px auto;}
ul {list-style-type:none;margin:17px 0;padding:0px;}
#kutu {width:auto; height:125px; float:left;}
ul li {float:left;font-family:tahoma; font-size:12px; margin-bottom:8px; clear:left; color:#949798; }
#kutu:last-child li {float:left;clear:none;margin-right:10px;}
.mail{
    color:aqua;
}
/* footer end */