/* @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Merriweather, Tahoma, sans-serif;
}
body {
    width: 100vw;
    max-width: 100%;
}
.first {
    color: #222;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 120vh;
}
.bg{
    position: relative;
    width: 100%;
    height: 100%;
}
.bg .flow{
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
}
.bg img{
    top: 0;
    width: 100%;
    height: 100%;
}
.text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.text h1 {
    font-size: 70px;
    margin: 280px 20vw 0 60px;
}
.text p {
    font-size: 24px;
    margin: 20px 30vw 0 60px;
    letter-spacing: 1.5px;
}
.text button {
    font-size: 20px;
    margin: 30px 30vw 0 60px;
    background-color: transparent;
    outline: none;
    border: none;
}
.text button a {
    text-decoration: none;
    color: #222;
    padding: 15px;
    border: 2px solid #222;
    border-radius: 8px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
    transition: all 0.2s ease;
    z-index: 100;
}
.navbar.colored {
    background-color: #fff;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.navbar.transparent {
    background-color: transparent;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5px;
}
.logo img{
    height: 80px;
    width: 320px;
    margin-left: 20px;
}
nav ul{
    display: flex;
    list-style: none;
}
nav ul li{
    padding: 62px 0px 62px 20px;
    font-size: 17px;
}
nav ul li a{
    font-weight: 100;
    font-size: 17px;
    cursor: pointer;
    text-decoration: none;
    color: #EE771A;
    transition: all 0.2s ease;
}
nav ul li a:hover{
    text-decoration: underline;
    color: #2E4F9D;
}
.a {
    color: #2E4F9D;
}
.hamburger {
    display: none;
    cursor: pointer;
    margin: 40px;
    width: 30px;
}
.bar1, .bar2, .bar3 {
    width: 30px;
    height: 2px;
    border-radius: 20px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}
.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
    background-color: #e71717;
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
    background-color: #e71717;
}
.second {
    width: 100vw;
    max-width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}
.info-1, .img-1 {
    width: 42vw;
}
.info-1 h1{
    margin-top: 20px;
    font-size: 45px;
    color: #333;
}
.info-1 p{
    font-size: 18px;
    margin: 30px 0;
    letter-spacing: 1.5px;
    line-height: 25px;
    color: #666;
}
.img-1 img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.third {
    padding-top: 100px;
    width: 100%;
    background-color: #2E4F9D;
    clip-path: polygon(33% 0, 66% 15%, 100% 0, 100% 100%, 0 100%, 0 15%);
}
.third h1 {
    margin: 50px 0 10px 60px;
    font-size: 37px;
    color: white;
}
.img-2 {
    padding: 0 60px 60px 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.info-2 {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
}
.info-2 div {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-2 div h2{
    font-size: 30px;
}
.info-2 div p{
    font-size: 18px;
    margin-top: 20px;
    line-height: 25px;
}
.info-2 img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.third button {
    font-size: 17px;
    background-color: transparent;
    outline: none;
    border: none;
    text-align: left;
    margin-top: 25px;
}
.third button a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    border: 2px solid white;
    border-radius: 8px;
}
.fourth {
    background-color: #e9f1f1;
    width: 100%;
    height: auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
}
.fourth h1{
    font-size: 40px;
}
.fourth p{
    margin: 15px 2rem;
    line-height: 30px;
    text-align: center;
}
.fourth button {
    font-size: 17px;
    background-color: transparent;
    outline: none;
    border: none;
    margin-top: 20px;
}
.fourth button a {
    text-decoration: none;
    color: #333;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 8px;
}
.fifth {
    width: 100%;
    padding: 100px 60px 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}
.fifth img{
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 20px;
}
.sixth {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    padding-bottom: 30px;
}
.sixth h2{
    font-size: 40px;
    margin: 20px;
}
.sixth p{
    width: 50%;
    line-height: 30px;
    text-align: center;
}
.sixth button {
    font-size: 20px;
    margin: 40px 0;
    background-color: transparent;
    outline: none;
    border: none;
}
.sixth button a {
    text-decoration: none;
    color: #222;
    padding: 15px;
    border: 2px solid #222;
    border-radius: 8px;
}
.map {
    width: 100%;
    height: 55vh;
    background-color: #EE771A;
}
.seventh {
    position: relative;
    width: 100%;
    height: 100vh;
    color: #222;
}
.bg-2{
    width: 100%;
    height: 100%;
}
.flow-2{
    position: absolute;
    top: 0;
    background-color: rgba(240, 240, 240, 0.8);
    width: 100%;
    height: 100%;
    z-index: 5;
}
.bg-2 img{
    width: 100%;
    height: 100%;
    z-index: 1;
}
.text-2 {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}
.text-2 h1 {
    font-size: 40px;
    text-align: center;
    margin-top: 100px;
    width: 60vw;
}
.text-2 p {
    font-size: 20px;
    letter-spacing: 1.5px;
    width: 60vw;
    text-align: center;
    margin: 20px 0;
}
.text-2 button {
    font-size: 20px;
    background-color: transparent;
    outline: none;
    border: none;
    margin-top: 30px;
}
.text-2 button a {
    text-decoration: none;
    color: #222;
    padding: 15px;
    border: 2px solid #222;
    border-radius: 8px;
}
.footer {
    color: #333;
    font-size: 18px;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
}
.address {
    width: 50%;
}
.bottom-navbar ul{
    display: flex;
    list-style: none;
}
.bottom-navbar ul li{
    padding: 0 10px;
}
.bottom-navbar ul li a{
    color: #333;
    text-decoration: none;
}
.bottom-navbar ul li a:hover{
    color: #333;
    text-decoration: underline;
}

/* page of products and services */

.first-p {
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin: 0;
}
.second-p {
    background-color: #f2f8f8;
    padding-top: 20px;
}
.second-p h1,
.third-p h1 {
    margin: 50px 0 20px 60px;
    font-size: 37px;
    color: black;
}
.img-2-p,
.img-3-p {
    padding: 0 60px 60px 60px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.info-2-p {
    position: relative;
    width: 31%;
}
.info-2-p img{
    width: 100%;
    height: 300px;
    border-radius: 20px;

}
.info-2-p div {
    width: 100%;
    height: 100%;
    padding: 20px 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.third-p {
    background-color: #fff;
    padding: 20px 0;
}
.info-3-p {
    position: relative;
    width: 47%;
    color: #333;
}
.info-3-p img{
    width: 100%;
    border-radius: 20px;
}
.info-3-p h2{
    margin: 15px 0;
}
.info-3-p p{
    line-height: 25px;
}
.fourth-p {
    width: 100%;
    background-color: #2E4F9D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
}
.fourth-p h2{
    font-size: 40px;
    color: white;
    margin: 80px 0 20px 0;
}
.info-4-p{
    position: relative;
    width: 30%;
}
.info-4-p img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.info-4-p div{
    width: 100%;
    height: 100%;
    padding: 45px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
}
.info-4-p div p{
    color: white;
    text-align: center;
    margin-bottom: 20px;
    line-height: 25px;
    font-size: 18px;
    font-weight: lighter;
}
.info-4-p div button{
    font-size: 18px;
    background-color: transparent;
    outline: none;
    border: none;
    margin-top: 30px;
}
.info-4-p div button a{
    text-decoration: none;
    color: white;
    padding: 10px;
    border: 2px solid white;
    border-radius: 8px;
}
/* page of About us */

.first-a {
    margin-top: 145px;
    padding: 100px 0;
    width: 100%;
    background-color: #2E4F9D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.first-a h2{
    color: white;
    font-size: 60px;
    margin: 20px 0;
}
.first-a P{
    color: white;
    width: 700px;
    text-align: center;
    margin-bottom: 60px;
    line-height: 30px;
    font-size: 20px;
}
.first-a img{
    width: 620px;
    height: 350px;
    border-radius: 20px;
}
.second-a {
    width: 100%;
    padding: 60px;
    display: flex;
    background-color: #f2f8f8;
}
.para-a-1{
    width: 50%;
    margin: 20px 0;
    line-height: 25px;
    font-size: 19px;
    color: #555;
}
.para-a-1 p{
    margin: 20px 0;
    line-height: 25px;
    font-size: 19px;
    padding-right: 35px;
}
.img-a-1 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 35px;
}
.img-a-1 img{
    width: 100%;
    height: 400px;
    border-radius: 20px;
}
.third-a {
    background-color: #2E4F9D;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: white;
}
.third-a h2{
    font-size: 50px;
    margin-bottom: 20px;
}
.third-a p{
    padding: 10px 10%;
    line-height: 25px;
    font-size: 18px;
    text-align: center;
}
.fourth-a {
    width: 100%;
    padding: 100px 60px;
    background-color: #EE771A;
}
.fourth-a h2{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
    color: white;
}
.img-a-2 {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.info-a-2 {
    width: 31%;
    color: white;
}
.info-a-2 img{
    width: 100%;
    height: 250px;
    border-radius: 20px;
}
.info-a-2 h3{
    font-size: 25px;
    margin: 20px 0;
}
.info-a-2 p{
    line-height: 25px;
}
.fifth-a {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
}
.fifth-a h2{
    font-size: 40px;
    margin: 20px 0;
    width: 700px;
}
.fifth-a p{
    width: 700px;
    line-height: 25px;
}

/*  Page of Contact */

.h-60 {
    height: 60px;
}
.first-c {
    width: 100%;
    height: 100%;
    margin-top: 145px;
    padding: 0 60px 60px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
form {
    width: 47%;
    color: #333;
}
.alert_success {
    margin: 5px;
    padding: 12px;
    border-radius: 7px;
    background-color: rgba(30, 255, 0, 0.3);
    color: green;
    text-align: center;
}
.alert_danger {
    margin: 5px;
    padding: 12px;
    border-radius: 7px;
    background-color: rgba(255, 0, 0, 0.3);
    color: red;
    text-align: center;
}
.line-contact {
    width: 100%;
    display: flex;
}
.textarea-1{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.textarea-2 {
    width: 100%;
    padding: 5px;
}
.line-contact div label{
    margin: 10px 5px 5px 5px;
}
.line-contact div input{
    height: 40px;
    border: none;
    border-radius: 7px;
    margin: 0 5px;
    padding: 7px;
    background-color: #eee;
}
.line-contact div input:focus,
.line-contact textarea:focus{
    outline: none;
    border: 1px solid #2E4F9D;
}
.line-contact textarea {
    width: 100%;
    height: 120px;
    border: none;
    padding: 7px;
    border-radius: 7px;
    margin: 5px 0 10px 0;
    background-color: #eee;
}
.line-contact p {
    font-size: 13px;
    margin: 5px 30px 0 5px;
}
.line-contact a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}
.line-contact input[type="submit"]{
    padding: 10px 45px;
    margin: 5px;
    font-size: 17px;
    border: 2px solid #333;
    border-radius: 7px;
    background-color: transparent;
    cursor: pointer;
}
.form-info {
    width: 47%;
    color: #333;
}
.form-info h2{
    margin: 30px 0;
    font-size: 30px;
}
.form-info p{
    line-height: 25px;
    font-size: 16px;
    font-weight: 100;
}
.second-c {
    width: 100%;
    padding: 60px;
    color: #333;
}
.second-c h2{
    font-size: 40px;
    margin-bottom: 40px;
}
.day {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
}
.day.today {
    border-radius: 7px;
    background-color: #e9f1f1;
}
.day span{
    font-size: 18px;
    font-weight: 700;
    margin-left: 20px;
    width: 170px;
}
.third-c {
    width: 100%;
    height: 350px;
    background-color: #666;
}

/* page of category one */

.category-one {
    margin-top: 140px;
    padding: 60px;
    text-align: center;
    background-color: #f2f8f8;
}
.category-one h1{
    font-size: 40px;
    margin: 60px 10px;
    color: #333;
}
.one-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:2rem;
}
.product {
    text-align: center;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    outline: .1rem solid #2E4F9D;
    outline-offset: -1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product:hover{
    outline: .2rem solid #EE771A;
    outline-offset: 0;
}
.product img{
    height: 14rem;
    transition: all 0.3s ease;
}
.product:hover img{
    transform: scale(.9);
}
.product h3{
    padding:.5rem 0;
    font-size: 1.3rem;
    color:#444;
}
.product:hover h3{
    color:#EE771A;
}
.products-preview{
    position: fixed;
    top:0; left:0;
    min-height: 100vh;
    width: 100%;
    background: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}
.products-preview .preview{
    display: none;
    padding:2rem;
    text-align: center;
    background: #fff;
    position: relative;
    margin:2rem;
    width: 40rem;
}
.products-preview .preview.active{
    display: inline-block;
}
.products-preview .preview img{
    height: 25rem;
}
.products-preview .preview .fa-times{
    position: absolute;
    top:1rem; 
    right:1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.products-preview .preview .fa-times:hover{
    transform: rotate(90deg);
}
.products-preview .preview .fa-times img{
    width: 100%;
    height: 100%;
}

.first-partner {
    position: relative;
    margin-top: 145px;
    width: 100%;
    height: 100vh;
    color: #222;
}
.fp-bg{
    width: 100%;
    height: 100%;
}
.fp-flow{
    position: absolute;
    top: 0;
    background-color: rgba(240, 240, 240, 0.8);
    width: 100%;
    height: 100%;
    z-index: 5;
}
.fp-bg img{
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fp-text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}
.fp-text h1 {
    font-size: 60px;
    text-align: center;
    margin-top: 100px;
    width: 60vw;
}
.fp-text p {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.5px;
    width: 60vw;
    text-align: center;
    margin: 20px 0;
}

/* responsive */

@media screen and (max-width: 1023px) {
    .logo img{
        height: 40px;
        width: 160px;
        margin-left: 30px;
    }
    .navbar nav{
        display: none;
    }
    .hamburger{
        display: inline-block;
    }
    .first {
        height: 340px;
    }
    .text {
        width: 100%;
        height: 100%;
    }
    .text h1 {
        font-size: 40px;
        margin: 130px 60px 0 60px;
    }
    .text p {
        font-size: 20px;
        margin: 20px 60px 0 60px;
    }
    .second {
        width: 100%;
        padding: 60px;
        margin-top: 40px;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .info-1, .img-1 {
        width: 100%;
    }
    .img-1 img {
        border-radius: 25px;
    }
    .third {
        clip-path: polygon(33% 0, 66% 7%, 100% 0, 100% 100%, 0 100%, 0 7%);
    }
    .img-2 {
        grid-template-columns: 1fr 1fr;
    }
    .info-2 {
        border-radius: 30px;
        overflow: hidden;
    }
    .fourth h1{
        font-size: 40px;
    }
    .fourth p{
        margin: 15px 5rem;
    }
    .fifth {
        width: 100%;
        padding: 60px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .fifth img{
        border-radius: 30px;
    }
    .seventh {
        width: 100%;
        height: 400px;
    }
    .text-2 h1 {
        font-size: 30px;
        width: 90vw;
        margin-top: 20px;
    }
    .text-2 p {
        font-size: 18px;
        width: 80vw;
    }
    .footer {
        display: flex;
        flex-direction: column-reverse;
        padding: 60px;
        height: auto;
    }
    .address {
        width: 100%;
    }
    .bottom-navbar{
        width: 100%;
        margin: 40px 0;
    }
    .bottom-navbar ul{
        display: flex;
        flex-direction: column;
        list-style: none;
    }
    .bottom-navbar ul li{
        padding: 20px 0;
    }
}
@media screen and (max-width: 767px) {

}