@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none; 
    list-style: none;

}
body {
    font-family: "Hanken Grotesk", sans-serif;
}

.wrapper {
    width: 1201px;
    margin: 0 auto;
}


/* header-top starts */

.header-top {
  background: #f5f5f5; 
  width: 100%;
  height: 42px;
}

.header-top .wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top h3 {
   font-size: 14px;
   font-weight: 400px;
   line-height: 14px;
   color: #666666;
}

.header-top  .links,
.header-top  .links div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top  .links div {
    gap: 6px;
    padding: 0 16px;
    border-left: 1px solid #d9d9d9;
}

.header-top  .links div:first-child {
    border-left: none;

}

.header-top  .links div p {
     font-size: 14px;
     line-height: 18px;
     color: #666666;
}

.header-top  .links div p span {
    font-weight: 600;

}
/* header-top ends */



/* header-logo starts */
.header-logo .wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo .logo {
    display: flex;
    gap: 16px;
}

.header-logo .right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo .right .search {
   width: 507px;
   height: 48px;
   border-radius: 10px;
   background: #f3f9fb;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 16px;
}

.header-logo .right .search img {
    cursor: pointer;
}

.header-logo .right .search input {
    width: 85%;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #666666;
    background: transparent;
    border: none;
    outline: none;
}

.header-logo .right .search input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #666666;
}

.header-logo .right .form,
.header-logo .right .form div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo .right .form div {
    gap: 6px;
}

.header-logo .right .form div:first-child {
    padding-right: 20px;
    border-right: 1px solid #d9d9d9;
}
.header-logo .right .form div a{
    color: #666666;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}
/* header-logo ends */



/* header-bottom top section starts */
.header-bottom .top {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding-top: 17px;
    padding-bottom: 16px;
}
.header-bottom .top ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.header-bottom .top ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    border-radius: 18px;
    background: #f3f9fb;
    cursor: pointer;
    transition: all .3s ease;
}
.header-bottom .top ul li:hover {
    background: #008fcc;
}
.header-bottom .top ul li:hover a{
    color: #ffffff;

}
.header-bottom .top ul li:hover div.img {
    background-image: url(img/header-bottom/ArrowDown2.png);
    
}
.header-bottom .top ul li a{
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #222222;
    margin-right: 6px;
}
.header-bottom .top ul li div.img {
    width: 18px;
    height: 18px;
    background-image: url(img/header-bottom/ArrowDown1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* header-bottom top section ends */
