* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: outfit-c;
    outline: none;
}

body {
    color: #fff;
    background-color: #000;
    font-family: outfit-c, Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: butler;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 26px;
}

.container {
    max-width: 1166px;
    margin: 0 auto;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    flex-wrap: wrap;

}

header ul {
    padding-left: 10px;

}

header ul li {
    list-style: none;
    display: inline-block;
    margin: 20px;
    font-size: 18px;


}

header ul li a {
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    color: rgb(222, 218, 218);

}

.logo img {
    width: 70px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s;
}

.logo img:hover {
    box-shadow: 0 0 10px 2px #414040;
}

.banner {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 80%, #000), url(flag\ edit2.jpeg) no-repeat;
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: flex-end;
}

.banner .text {
    text-align: center;
    padding-bottom: 100px;
    /* font-size: 2rem; */
}

.banner h1 {
    line-height: 80px;
    font-weight: 300;
    margin-bottom: 10px;

}

.banner .text p{
    margin-top: 10px;
    font-size: 1.2 rem;
}
.btn {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 60px;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 60px;
    z-index: 9;
    margin-top: 50px;
    transition: all ease 0.5s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    opacity: .9;
    z-index: -1;
    transition: all ease 0.5s;
}

.btn:hover {
    color: #fff;
}

.btn:hover::before {
    top: 0;
    height: 100%;
}

.brandlogo {
    padding: 30px 0;
}

.brandlogoinner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.sec1 {
    position: relative;
    padding: 80px 0;
}

.sec1 h3 {
    text-transform: uppercase;
    line-height: 40px;
}

.sec1 p {
    line-height: 32px;
}

.sec1-inner {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec1 .text {
    width: 47%;
}

.sec1 .textleft {
    text-align: right;
    letter-spacing: 2px;
}

.sec1 .textright {
    text-align: left;
}

.sec1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, #fff, transparent);
}

.sec1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, #fff, transparent);
}

.sec2 {
    padding: 100px 0 0;
}

.sec2 h2 {
    text-transform: uppercase;
}

.sec2 p {
    line-height: 30px;
}

.sec2-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.sec2-inner .img {
    width: 500px;
}

.img img {
    width: 500px;
}

.sec2-inner .text {
    width: 50%;
    margin-left: -65px;
    z-index: 9;
}

.sec2 .textinner {
    position: relative;
    margin: 55px 0 0 190px;
}

.sec2 .textinner::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -30px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, transparent, #fff);
}

.left-right-sec:nth-child(even) .text {
    margin: -65px;
    text-align: right;
}

.left-right-sec:nth-child(even) .textinner {
    margin: 55px 190px 0 0;
}

.left-right-sec:nth-child(even) .textinner::before {
    left: inherit;
    right: -30px;
}

.sec3 {
    padding: 150px 0 0;
}

.sec3 h3 {
    text-transform: uppercase;
    max-width: 60%;
}

.sec3-slider {
    margin-top: 90px;
}

.sec3-slider .item img {
    width: 100%;
    padding: 0 6px;
}

.sec4 {
    padding: 100px 0;

}

.sec4 h2 {
    text-transform: uppercase;

}

.sec4-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 90px;
}

.box img {
    width: 200px;
}

footer {
    position: relative;
    padding: 50px 0;
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
}

.footer-inner {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 900px;
}

.footer-inner .col {
    padding-right: 50px;
    margin-top: 20px;
  
}

footer ul {
    margin-left: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 3px;
    font-size: 2rem !important; 
}

footer ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, #fff, transparent);
}

footer::after {
    content: '';
    position: absolute;
    bottom: .1;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, transparent, #fff, transparent);
}

@media screen and (max-width: 1080px) {
    .textinner {
        display: none;
    }

    .text h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1px;
        margin-bottom: -10px;
        font-family: outfit-c;
        
    }
    .text h2{

        font-size: 2rem;
        font-weight: 500;
    }

.text p{
    margin-top: 10px;
}
    
    .sec1-inner {
        width: 400px;
        margin-inline: auto;
       
    }
    .sec1-inner .text{
        /* padding-right: 10px; */
    }
    .leftmenu {
        display: none;
    }

    .rightmenu {
        display: none;
    }

    .logo {

        margin-inline: auto;
    }

    .banner {
        padding-top: 200px;
        align-items: center;
    }
    .banner h1 {
        font-size: 2rem;
    }
    .banner .text {
        padding-top: 150px;
        font-size: 0.9rem;
    }
    .sec2-inner .text {
        margin-block: -45px;

    }
    footer{
        padding: 20px;

    }
    footer ul li a{
        font-size: 0.5rem;
    }


}