/*start rules*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 50px;
    text-transform: capitalize;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

header,
nav,
section,
footer {
    width: 1350px;
    margin: auto;
}

.content {
    width: 100%;
    height: 100%;
    padding: 0 10%;
}

/*end rules*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start header*/

header {
    height: 30px;
    background-color: #fdfdfd;
}

header .content {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .content .left-box {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

header .content .right-box {
    width: 20%;
}

header .content .right-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

header .content .left-box a,
header .content .left-box i,
header .content .right-box ul li a {
    font-size: 15px;
    color: gray;
}


header .content .left-box i {
    margin-right: 5px;
}

/*-----------------------------------------------------*/
@media (max-width :1280px) {

    header,
    nav,
    section,
    footer {
        width: 100%;
    }
}

@media (max-width :780px) {

    header,
    nav,
    section,
    footer {
        width: 100%;
    }
}

@media (max-width :480px) {

    header,
    nav,
    section,
    footer {
        width: 100%;
    }
}



@media (max-width :1280px) {
    header {
        width: 100%;
        background-color: #eee;
    }

    header .content {
        justify-content: space-between;
        padding-right: 30px;
    }

    header .content .left-box {
        width: fit-content;
        gap: 10px;
    }

    header .content .right-box ul {
        justify-content: flex-end;
        gap: 20px;
    }
}

@media (max-width :780px) {
    header {
        display: none;
    }

}

/*end header*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start nav bar*/


nav {
    height: 90px;
    background-color: white;
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
}

nav .content {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

nav .content .logo {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

nav .content .logo i {
    font-size: 40px;
    color: #fda12b;
    margin-right: 5px;
    display: unset;
}

nav .content .logo h1 {
    font-weight: 500;
    font-size: 40px;
    text-transform: uppercase;
}

nav .content .links {
    width: 40%;
    height: 100%;
}

nav .content .fa-solid {
    display: none;
}

nav .content .links ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav .content .links ul li a {
    color: gray;
    font-size: 18px;
    transition: 0.2s;
}

nav .content .links ul li a:hover {
    color: #fda12b;
}

nav .content .links ul .head-down-list .down-list li:hover {
    background-color: #fda12b;
}

nav .content .links ul .head-down-list .down-list li:hover a {
    color: #eee;
}

nav .content .links ul .head-down-list {
    position: relative;
}

nav .content .links ul .head-down-list:hover .down-list {
    visibility: visible;
    bottom: -237px;
    z-index: 1000;

}

nav .content .links ul .head-down-list .down-list::before {
    content: "";
    position: absolute;
    top: -30px;
    width: 50%;
    height: 30px;
    background-color: transparent;
}

nav .content .links ul .head-down-list .down-list {
    position: absolute;
    bottom: -300px;
    right: -110px;
    background-color: aqua;
    width: 170px;
    height: fit-content;
    display: inline;
    padding: 17px 0;
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    background-color: #eee;
    animation-delay: 1s;
    visibility: hidden;
    transition: 1.0s;
}

nav .content .links ul .head-down-list .down-list li {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    color: gray;
}




@media (max-width : 1280px) {
    nav {
        width: 100%;
        height: 50px;
    }

    nav .content {
        position: relative;
        align-items: center;
        justify-content: space-between;
    }

    nav .content .links {
        position: absolute;
        width: 100%;
        height: 250px;
        bottom: -249px;
        left: 0;
        padding: 30px 80px;
        display: flex;
        background-color: white;
        z-index: 100;
        display: none;
    }

    nav .content .fa-solid {
        display: unset;
        width: 50px;
        font-size: 30px;
    }

    nav .content i:hover+.links {
        display: unset;
    }

    nav .content .links ul {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width : 780px) {
    nav {
        width: 100%;
    }

    nav .content {
        position: relative;
        align-items: center;
    }

    nav .content .links {
        position: absolute;
        width: 100%;
        height: 250px;
        bottom: -249px;
        left: 0;
        padding: 30px 80px;
        display: flex;
        background-color: white;
        z-index: 100;
        display: none;
    }

    nav .content i {
        display: unset;
        font-size: 20px;
        transition: 0.5s;
    }

    nav .content i:hover+.links {
        display: unset;
    }

    nav .content .links ul {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:480px) {
    nav .content .logo h1 {
        display: none;
    }
}

/*end nav bar*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*start footer*/



footer {
    height: 500px;
    background-color: #182333;
}

footer .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .content .top {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
    flex-wrap: wrap;
}

footer .content .top .box1,
footer .content .top .box2,
footer .content .top .box3,
footer .content .top .box4 {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 5px;
}

footer .content .top .box1 h2,
footer .content .top .box2 h3,
footer .content .top .box3 h3,
footer .content .top .box4 h3 {
    width: 100%;
    height: 20%;
    font-size: 25px;
    color: white;
    display: flex;
    align-items: center;
}

footer .content .top .box1 h2 {
    font-size: 40px;
}

footer .content .top .box1 h2 i {
    color: #fda12b;
}

footer .content .top .box1 p,
footer .content .top .box2 ul,
footer .content .top .box3 ul,
footer .content .top .box4 .last {
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: gray;
}

footer .content .top .box4 .last {
    justify-content: flex-start;
    gap: 15px;
}

footer .content .top .box2 ul li a,
footer .content .top .box3 ul li a {
    color: gray;
    transition: 0.5s;
}

footer .content .top .box2 ul li a:hover,
footer .content .top .box3 ul li a:hover {
    color: white;
    letter-spacing: 1px;
}

footer .content .top .box2 ul {
    justify-content: flex-start;
    gap: 15px;
}

footer .content .top .box2 ul,
footer .content .top .box3 ul,
footer .content .top .box4 .last {
    margin-bottom: calc(10% + 32px);
}

footer .content .top .box1 .soceil {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
}

footer .content .top .box1 p {
    color: gray;
    justify-content: center;
}

footer .content .top .box4 .last form {
    background-color: transparent;
    height: 30%;
    display: flex;
    border: 1px solid white;
}

footer .content .top .box4 .last form input {
    width: 70%;
    height: 100%;
    border: unset;
    background-color: #182333;
    padding: 20px;
    text-transform: capitalize;
    font-size: 12px;
}

footer .content .top .box4 .last form button {
    width: 30%;
    height: 100%;
    background-color: #fda12b;
    color: white;
    text-transform: capitalize;
    border: unset;
}

footer .content .top .box1 .soceil a {
    width: 23%;
    height: 100%;
    color: #fda12b;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fda12b;
    transition: 0.5s;
}

footer .content .top .box1 .soceil a:hover {
    background-color: #fda12b;
    color: white;
}

footer .content .bottom {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .content .bottom p,
footer .content .bottom .by p {
    color: gray;
}

footer .content .bottom .by p span a {
    color: white;
}

footer .content .bottom .by p span a:hover {
    color: #fda12b;
}

footer .content .bottom .by {
    width: 30%;
}

footer .content .bottom .by {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


@media (max-width:1100px) {

    footer .content .top .box1,
    footer .content .top .box2,
    footer .content .top .box3,
    footer .content .top .box4 {
        width: 50%;
        height: 50%;
        padding: 20px;
    }


    footer .content .top .box1,
    footer .content .top .box2 {
        margin-bottom: 10px;
    }

    footer .content .top .box1 .soceil {
        width: 50%;
        height: 30%;
    }

    footer .content .top .box1 h2 {
        display: flex;
        gap: 10px;
    }

    footer .content .top .box4 .last form {
        height: fit-content;
        width: 80%;
    }

    footer .content .top .box4 .last form .btn,
    footer .content .top .box4 .last form input {
        height: 30px;
    }

    footer .content .top .box3 ul {
        gap: 5px;
    }

    footer .content .bottom .by {
        width: 50%;
    }
}

@media (max-width:550px) {
    footer {
        height: 1500px;
    }

    footer .content .top .box1,
    footer .content .top .box2,
    footer .content .top .box3,
    footer .content .top .box4 {
        width: 100%;
        height: 20%;
        padding: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    footer .content .top .box4 .last {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .content .top .box1 h2,
    footer .content .top .box2 h3,
    footer .content .top .box3 h3,
    footer .content .top .box4 h3 {
        justify-content: center;
    }
}

/*end footer*/
/*-------------------------------------------------------------------------------------------------*/