:root {

    --primary-color: #00355E;
    --second-color: #F1F1F1;
    --color-white: #ffff;
    --color-dark: #000;
    --color-text: #4D4D4D;
    --color-input: #8b8b8b;
}

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

body {
    background-color: var(--color-white);
}


.address {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
}

.address .container span i {
    color: var(--color-white);
    font-size: 20px;
    margin-right: 9px;
}

.address .container span a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 20px;
    margin: 30px;
    transition: color .8s;
}

.address .container span a:hover {
    color: var(--color-text);
}

@media (max-width:600px) {
    .address {
        display: none;
    }

    .address .container span {
        line-height: 2;
    }

    .address .container span a i {
        font-size: 15px;
    }

    .address .container span a {
        font-size: 12px;
        margin: 0;
    }
}

/* Header section */
header {
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--second-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    transition: 0.7s;
  }
  
  header .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
  
  header .container .navigation {
    position: relative;
    line-height: 75px;
  }
  
  header .container .navigation .menu {
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
  }
  
  header .container .navigation .menu .menu-item > a {
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    margin: 20px;
    padding: 25px 0;
  }
  
  header .container .navigation .menu .menu-item > a:hover {
    color: rgba(9, 10, 76, 0.9);
    transition: 0.3s;
  }
  
  header .container .navigation .menu .menu-item .sub-menu {
    position: absolute;
    background-color: var(--primary-color);
    top: 74px;
    line-height: 40px;
    list-style: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s;
    transition-property: transform, opacity;
  }
  
  header .container .navigation .menu .menu-item .sub-menu .sub-item {
    box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
    padding: 10px;
  }
  
  header .container .navigation .menu .menu-item .sub-menu .sub-item > a {
    color:var(--color-white);
    font-size: 14px;
    text-decoration: none;
    padding: 10px 10px 0 10px;
  }
  header .container .navigation .menu .menu-item .sub-menu .sub-item:hover {
    background: #031f37;
  }
  
  header .container .navigation .menu .menu-item:hover .sub-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
  }
  
  .menu-item .sub-menu .sub-item:last-child {
    border-radius: 0px 0px 8px 8px;
  }
  
  .menu-btn {
    display: none;
  }
  
  @media (max-width: 1060px) {
    header {
      padding: 15px 20px;
      position: relative !important;
    }
    header .container .navigation .menu {
      position: fixed;
      z-index: 100000;
      display: block;
      background: #23232b;
      min-width: 350px;
      height: 100vh;
      top: 0;
      right: -100%;
      padding: 90px 50px;
      overflow-y: auto;
      visibility: hidden;
      transition: 0.5s;
      transition-property: right, visibility;
    }
    header .container .navigation .menu .menu-item {
      position: relative;
    }
    header .container .navigation .menu .menu-item > a:hover {
      color: var(--primary-color);
    }
    header .container .navigation .menu .menu-item .sub-menu {
      opacity: 1;
      position: relative;
      top: 0;
      transform: translateX(10px);
      background: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      overflow: hidden;
      display: none;
    }

    header .container .navigation .menu .menu-item > a {
        color: var(--color-white);
    }
    header .container .navigation .menu .menu-item .sub-menu .sub-item {
      box-shadow: none;
    }
    header .container .navigation .menu .menu-item .sub-menu .sub-item > a:hover {
      color: var(--color-input);
      transition: 0.4s;
    }
    header .container .navigation .menu .menu-item .sub-menu .sub-item:hover {
      background: none;
    }
    header .container .navigation .menu .menu-item:hover .sub-menu {
      transform: translateX(10px);
    }
    header .container .navigation .menu.active {
      right: 0;
      visibility: visible;
    }
    header .container .close-btn {
      position: absolute;
      background: url(./image/close-btn.png) no-repeat;
      width: 40px;
      height: 40px;
      background-size: 25px;
      background-position: center;
      top: 0;
      left: 0;
      margin: 25px;
      cursor: pointer;
    }
    header .container .menu-btn {
      background: url(./image/menu-burger.png) no-repeat;
      width: 60px;
      height: 60px;
      background-size: 50px;
      background-position: center;
      cursor: pointer;
      display: block;
    }
  }
/* Header section */



/* carousel */

.carousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7) {
    left: calc(67% + 800px);
    opacity: 0;
}





.list .item .content {
    position: absolute;
    top: 50%;
    left: 247px;
    transform: translateY(-50%);
    width: 700px;
    text-align: left;
    color: var(--color-white);
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 70px;
    /* background-color: red; */
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

/* .content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
} */

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.btn button {
    padding: 20px 30px 20px 30px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-dark);
    border-radius: 12px;
    transition: .8s;
}

.btn button:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}

/* .content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: var(--primary-color);
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: var(--primary-color);
    color: #fff;
    border-color: #14ff72cb;
} */


@keyframes animate {

    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */


/* next prev arrows */

.arrows {
    position: absolute;
    top: 60%;
    left: 67%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover {
    background: #fff;
    color: #000;
}




@keyframes runningTime {

    from {
        width: 0%;
    }

    to {
        width: 100%;
    }

}


/* Responsive Design */

@media screen and (max-width: 999px) {


    .list .item .content {
        left: 0;
        text-align: center;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

    .content .des {
        font-size: 16px;
    }

}

@media screen and (max-width: 690px) {

    .carousel .list .item {
        top: 65%;
    }

    .list .item .content {
        top: 20%;
        width: 100%;
        padding: 20px;
    }

    .carousel .list .item:nth-child(3) {
        left: 45%;
    }

    .carousel .list .item:nth-child(4) {
        left: calc(45% + 200px);
    }

    .content .title,
    .content .name {
        font-size: 40px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }

    .arrows {
        top: 77%;
        left: 47%;
    }
}




/* Section About */

.st-about {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    margin-bottom: 15rem;

    .container {
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .content-text {
            .text {
                >h1 {
                    font-size: 20px;
                    font-weight: 100;
                }

                >h2 {
                    font-size: 50px;
                    font-weight: 700;
                    margin: 20px 0 20px 0;

                }

                >p {
                    font-size: 20px;
                    font-weight: 300;
                    margin-bottom: 50px;
                }


            }

            .btn {
                >button {
                    background-color: var(--primary-color);
                    color: var(--color-white);
                }

                >button:hover {
                    background-color: var(--color-dark);
                }
            }


        }
    }


}

@media(max-width: 600px) {
    .st-about {
        height: 100%;
        margin: 0;

        .container {
            flex-direction: column;

            .content-text {
                text-align: center;

                .text {
                    padding: 20px;

                    >h1 {
                        font-size: 20px;
                    }

                    >h2 {
                        font-size: 30px;
                    }

                    >p {
                        font-size: 15px;
                    }
                }
            }

            .content-img {

                >img {
                    width: 300px;
                    height: auto;
                }
            }

        }
    }
}

/* Finish Section About */


/* Section Services */
.st-services {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .content-text {
        width: 100%;
        padding: 50px 0 150px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: var(--primary-color);
        align-items: center;
        z-index: 0;
    }

    .content-text h1,
    p {
        font-size: 50px;
        color: var(--color-white);
        font-weight: 500;
    }

    .content-text p {
        font-size: 17px;
        font-weight: 100;
        margin-top: 25px;
    }


    .container {
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;



        .cards {
            display: grid;
            grid-template-columns: repeat(4, minmax(100px, 1fr));
            gap: 20px;
            z-index: 10;
            margin-top: -90px;
        }

        .cards .card-one,
        .card-two,
        .card-three,
        .card-four,
        .card-five,
        .card-six,
        .card-seven,
        .card-eight,
        .card-nine,
        .card-ten,
        .card-eleven,
        .card-twelve {
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 100%;
            padding: 40px;
            width: 100%;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
            text-align: center;



            .card-text h1 {
                padding-left: 100px;
                padding-right: 100px;
                font-size: 30px;
            }

            .btn a {
                text-decoration: none;
                font-size: 16px;
                padding: 14px;
                background-color: var(--primary-color);
                color: var(--color-white);
                border-radius: 12px;
                transition: background .5s;
            }

            .btn a:hover {
                background-color: var(--color-dark);
            }
        }

        .card-one {
            background-image: url(./image/cards/card01.png);
        }

        .card-two {
            background-image: url(./image/cards/Card02.png);
        }

        .card-three {
            background-image: url(./image/cards/card03.png);
        }

        .card-four {
            background-image: url(./image/cards/card04.png);
        }

        .card-five {
            background-image: url(./image/cards/card05.png);
        }

        .card-six {
            background-image: url(./image/cards/card06.png);
        }

        .card-seven {
            background-image: url(./image/cards/card07.png);
        }

        .card-eight {
            background-image: url(./image/cards/card08.png);
        }

        .card-nine {
            background-image: url(./image/cards/card09.png);
        }

        .card-ten {
            background-image: url(./image/cards/card10.png);
        }

        .card-eleven {
            background-image: url(./image/cards/card01.png);
        }

        .card-twelve {
            background-image: url(./image/cards/card12.png);
        }


    }



}

@media (max-width: 600px) {
    .st-services {
        height: 100%;
    }

    .st-services .content-text {
        text-align: center;
    }
    .st-services .container .cards{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .st-services .container .cards, .card-one, .card-two, .card-three, .card-four, .card-five, .card-six, .card-seven, .card-eight, .card-nine, .card-ten, .card-eleven, .card-twelve{
        width: 60%;
    }

}

/* FinishSection Services */


/* Section Contact */
.st-contact {
    width: 100%;
    height: 100vh;
    display: flex;
    margin-top: 20rem;
    justify-content: center;
    align-items: center;
    margin-top: 20rem;

    .container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: center;


        .contact-maps {

            .content {
                .text {


                    >h1 {
                        font-size: 40px;
                        font-weight: 600;
                        color: var(--primary-color);
                    }

                    >p {
                        width: 80%;
                        font-size: 20px;
                        font-weight: 300;
                        color: var(--color-text);
                        margin: 10px 0 70px 0;
                    }

                    >ul {
                        list-style: none;
                        font-size: 20px;
                        font-weight: 300;
                        margin-bottom: 40px;

                        >li {
                            line-height: 1.5;

                            >a {
                                font-size: 20px;
                                text-decoration: none;
                                color: var(--color-text);
                                transition: color .5s;
                            }

                            >a:hover {
                                color: var(--primary-color);
                            }
                        }
                    }
                }
            }

        }

        .contact-form {
            >form {
                display: flex;
                flex-direction: column;
                width: 500px;
                height: 100%;

                .row {
                    display: flex;
                    width: 100%;
                    gap: 10px;

                    .column {
                        flex: 1;
                    }
                }

                label {
                    display: block;
                    margin-bottom: 5px;
                    color: var(--primary-color);
                    font-size: 18px;
                    font-weight: 600;
                }


                input,
                select,
                textarea {
                    width: 100%;
                    margin-bottom: 40px;
                    padding: 10px;
                    box-sizing: border-box;
                    border-radius: 10px;
                    border: 1px solid var(--color-input);
                }

                input[type="submit"] {
                    color: var(--color-white);
                    font-size: 18px;
                    background-color: var(--primary-color);
                    transition: background .5s;
                    cursor: pointer;
                }

                input[type="submit"]:hover {
                    background-color: var(--color-dark);
                }


            }

        }
    }
}

@media (max-width: 600px) {
    .st-contact {
        margin-top: 80px;
        height: 100%;
    }
    .st-contact .container {
        flex-direction: column;
        display: block;
    }
    .st-contact .container .contact-maps .content .text{
        text-align: center;
    }
    .st-contact .container .contact-maps .content .text p{
        width: 100%;
    }
    .st-contact .container .contact-form form{
        width: 100%;
        padding: 20px;
    }
}

/* Section Contact Finish*/

/* Section Patrners*/
.st-partners {
    width: 100%;
    height: 50vh;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width:600px) 
{
    .st-partners{
        .swiper-slide img{
            width: 80%;
        }
    }
}

.st-partners .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.st-partners .container .text {
    text-align: center;
    color: #fff;
}

.st-partners .container .text h1 {
    font-size: 40px;
    font-weight: 600;
}

.st-partners .container .text p {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-top: 90px;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* Section Patrners Finish*/


/* Section Footer*/

footer {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}



footer .container .content-about .about-text {
    width: 60%;
}

footer .container .content-about .about-text h1,
p {
    margin: 10px 0 20px 0;
    font-size: 20px;
    font-weight: 200;
}

footer .container .content-about .about-text p {
    font-size: 18px;
}

.container .menus {
    width: 100%;
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
}

.menus .content-header h1 {
    font-size: 25px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.menus .content ul li {
    list-style: none;
}

.menus .content ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.8;
    transform: color .8s;
}

.menus .content ul li a:hover {
    color: var(--primary-color);
}


.copyright {
    background-color: var(--primary-color);
    text-align: center;
    padding: 40px;
}

.copyright h1 {
    font-size: 18px;
    font-weight: 200;
    color: var(--color-white);
    margin-bottom: 20px;
}

.copyright span {
    font-size: 18px;
    font-weight: 200;
    color: var(--second-color);
}

.copyright span a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    margin-left: 10px;
    transition: color .8s;
}

.copyright span a:hover {
    color: var(--color-text);
}

@media (max-width:600px) {
    footer{
        height: 100%;
    }
    footer .container{
        flex-direction: column;
        margin: 25px;
    }
    .container .menus {
        flex-direction: column;
        row-gap: 20px;
    }


    .copyright {
        padding: 25px;
    }
    .copyright h1{
        font-size: 15px;
    }
}

/* Finsh Section Footer*/