:root{
    --blue-: #1873B3;
    --lightblue-: #24ADDC;
    --green-: #3BA348;
    --lemon-: #94C540;
    --orange-: #F58423;
    --yellow-: #F3D218;
    --black-: #191A1C;
}
@font-face {
    font-family: 'Robo';
    src: url(/font/Roboto-Regular.ttf);
}
@font-face {
    font-family: 'Robo-medium-italic';
    src: url(/font/Roboto-MediumItalic.ttf);
}
@font-face {
    font-family: 'Robo-thin';
    src: url(/font/Roboto-Thin.ttf);
}
@font-face {
    font-family: 'Robo-medium';
    src: url(/font/Roboto-Medium.ttf);
}
@font-face {
    font-family: 'Robo-bold';
    src: url(/font/Roboto-Bold.ttf);
}
body{
    background: white;
    font-family: 'robo';
}
@font-face {
    font-family: "fred";
    src: url(../font/Fredoka-VariableFont_wdth\,wght.ttf);
 }
 .load{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    bottom: 0;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.load img{
    height: 150px;
    animation: scale 1.7s infinite;
}
.load.loader{
    display: none;
}
@keyframes scale {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
@media screen and (max-width: 768px) {
    .load img{
        height: 120px;
    }
}
@media screen and (max-width: 500px) {
    .load img{
        height: 100px;
    }
}
@media screen and (max-width: 300px) {
    .load img{
        height: 70px;
    }
}
.navbar {
    background: white;
    position: fixed;
    z-index: 1;
    border-bottom: 1.5px solid rgb(240, 228, 228);
    box-shadow: 4px -13px 50px rgb(209, 209, 209);
    width: 100%;
    }
    .navbar .nav-con{
        position: relative;
        overflow: hidden;
    }
    .navbar .nav-con .navbar-content{
        padding: 10px 70px;
        font-weight: 600;
    }
    .navbar .nav-con .navbar-content.flex-center-row{
        justify-content: space-between;
        gap: 20px;
    }
    .navbar .navbar-content > img{
        max-width: 130px;
    }
    .navbar .nav-con .navbar-content .flex-center-row{
        list-style-type: none;
        padding: 10px 10px;
        height: 60px;
        justify-content: center;
        gap: 30px;
        background-color: white;
        border-radius: 20px;
        padding: 5px 10px;
        margin-right: 20px;
        font-size: 20px;
    }
    .navbar .nav-con .navbar-content .flex-center-row a{
        display: block;
        text-decoration: none;
    }
    .navbar .nav-con .navbar-content .flex-center-row a li{
        color: var(--blue-);
        padding: 10px 10px;
        text-align: center;
        border-radius: 10px;
        background-color: white;
        font-weight: 400;
        font-family: 'fred';


    }
    .navbar .nav-con .navbar-content .flex-center-row a li::after{
        content: ' ';
        background-color: var(--blue-);
        width: 0%;
        height: 2px;
        display: block;
        color: white;
        font-weight: bold;
        margin: 0px auto;
        transition: 0.4s;
    }
    .navbar .nav-con .navbar-content .flex-center-row a li:hover::after{
        content: ' ';
        background-color: var(--orange-);
        width: 100%;
        height: 2px;
        display: block;
        color: white;
        font-weight: bold;
        margin: 0px auto;
    }
    .navbar .nav-con .navbar-content .icons a {
        text-decoration: none;
        list-style-type: none;
    }
    .navbar .nav-con .navbar-content .icons a li img{
        width: 30px;
        transition: 0.2s;
    } 
    .navbar .nav-con .navbar-content .icons a li img:hover{
        transform: scale(1.2);
    }
    .navbar .nav-con .navbar-content .icons.flex{
        justify-content: center;
        gap: 20px;
        margin-right: 0px;
        padding: 0px;
        align-items: center;
    }
 
    .sidebar{
        position: fixed;
        right: -100%;
        width: 100%;
        background: var(--blue-);
        height: 100vh;
        color: var(--orange-);
        font: 18px;
        font-weight: 500;
        transition: 0.4s;
        padding: 10px;
        border-radius: 10px;
        transition: 0.4s;
        font-family: 'robo-medium';
    }
    .sidebar a{
        text-decoration: none;
        list-style-type: none;
    }
    .sidebar a li{
        color: var(--blue-);
        border-bottom: 1px solid rgb(182, 182, 182);
        font-family: 'robo';
        padding: 20px 15px;
        transition: 0.3s;
        margin: 0px 10px;
        background-color: white;
    }
    .sidebar a li:active, .sidebar a li:hover{
        font-family: 'robo';
        padding: 20px 15px;
        color: white;
        font-family: 'Robo-medium-italic';
        margin: 0px 0px;
        text-decoration: underline;
    }
    .sidebar.hide{
        right: 0;
    }
    @media screen and (max-width: 500px) {
        .sidebar-con{
            left: 0;
        }
    }
    /* hamburger button */
    .navbar .nav-con .hamburg{
        display: none;
        margin-right: 20px;
    }
    .navbar .nav-con .hamburg::before,.navbar .nav-con .hamburg::after {
        content: " ";
        display: block;
        width: 40px;
        height: 6px;
        background-color: var(--blue-);
        border-radius: 5px;
        transition: 0.4s;
    }
    .navbar .nav-con .hamburg::after {
        margin-top: 6px;
    }
    .navbar .nav-con .hamburg-inner{
        width: 40px;
        height: 6px;
        background-color: var(--blue-);
        border-radius: 5px;
        margin-top:7px;
        opacity: 1;
    }
    .navbar .nav-con .hamburg-inner.rote{
        opacity: 0;
    }
    .navbar .nav-con .hamburg.rote::after{
        transform: rotate(-45deg) translate(8px,-12px);
    }
    .navbar .nav-con .hamburg.rote::before{
        transform: rotate(45deg) translate(5px,9px);
    }
    @media screen and (max-width: 500px) {
        .navbar .nav-con .hamburg::before,.navbar .nav-con .hamburg::after {
            content: " ";
            display: block;
            width: 35px;
            height: 4px;
            background-color: var(--blue-);
            border-radius: 10px;
            transition: 0.4s;
        }
        .navbar .nav-con .hamburg{
            display: none;
            margin-right: 5px;
        }
        .navbar .nav-con .hamburg-inner{
            width: 35px;
            height: 4px;
            background-color: var(--blue-);
            border-radius: 10px;
            margin-top: 5px;
            opacity: 1;
        }
        .navbar .nav-con .hamburg.rote::after{
            transform: rotate(-45deg) translate(6px,-8px);
        }
        .navbar .nav-con .hamburg.rote::before{
            transform: rotate(45deg) translate(5px,7px);
        }
    }


@media screen and (max-width: 1000px) {
    .navbar .nav-con .navbar-content{
        padding: 10px 20px;
    }
}
@media screen and (max-width: 900px) {
    .navbar .nav-con .navbar-content{
        padding: 10px 10px;
    }
    .navbar .nav-con .navbar-content .flex-center-row{
        gap: 10px;
    }
}
@media screen and (max-width: 768px) {
    .navbar .nav-con .navbar-content .flex-center-row{
        display: none;
    }
    .navbar .nav-con .hamburg{
        display: block;
    }
    .sidebar-con{
        display: block;
    }
    .navbar .nav-con .navbar-content .icons {
        display: none;
    }
    .navbar .navbar-content > img{
        max-width: 100px;
    }
}
@media screen and (max-width: 500px) {
    .navbar .nav-con .navbar-content.flex-center-row{
        gap: 5px;
    }
    .navbar .navbar-content > img{
        max-width: 80px;
    }
}
/* Products  */
.navbar .product-list {
    padding: 10px;
}
.navbar .product-list .flex{
    gap: 30px;
}
.navbar .product-list ul{
    list-style-type: none;
    font-size: 15px;    
}
.navbar .product-list ul a {
    display: block;
    text-decoration: none;
    color: white;
}
.navbar .product-list ul a::nth-child(3) li{
    display: block;
    text-decoration: none;
    color: white;
    background-color: red;
}
.navbar .product-list ul a li .drop{
    width: 8px;
    margin-left: 10px;
    margin-top: -55px;
    transition: 0.7s;
}
.navbar .product-list ul a li .drop.rote{
    transform: rotate(180deg);
}

/* banner */

.banner{
    overflow: hidden;
    position: relative;
    font-family: 'fred';
    height: 900px;
}
.banner .land{
   width: 100%;
}
.banner .port{
    width: 80%;
    display: none;
 }
 .banner .girl-img{
    position: absolute;
    top: 100px;
    right: 200px;
    margin-top: 60px;
    transform: scale(1.3);
 }
 .banner .print{
    position: absolute;
    left: 15%;
    top: 20%;
    font-size: 44px;
    font-weight: bold;
    padding: 20px;
 }
 .banner .print p:nth-child(1){
    text-align: center;
 }
 .banner .print p:nth-child(2){
    background: linear-gradient(90deg, var(--lightblue-),var(--blue-));
    color: white;
    border-radius: 10px;
    padding: 20px 100px;
    margin-bottom: 10px;
 }
 .banner .print p:nth-child(3){
    background: linear-gradient(90deg, var(--yellow-),var(--orange-));
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 20px 100px;
    margin-bottom: 10px;
    transform: rotate(5deg) translate(20px,-10px);
 }
 .banner .print p:nth-child(4){
    background: linear-gradient(90deg, var(--lemon-),var(--green-));
    color: white;
    text-align: center;
    margin-bottom: 10px;
    padding: 20px 100px;
    transform: rotate(-1deg) translate(20px,-10px);
    border-radius: 10px;
 }
 .banner .print p:nth-child(5){
    background: var(--black-);
    color: white;
    text-align: center;
    margin-bottom: 10px;
    padding: 20px 100px;
    border-radius: 10px;
    transform: translate(0px,-20px);

 }
 @media screen and (max-width:  1500px) {
    .banner .land{
        width: 100%;
        height: 100%;
     }
     .banner .girl-img{
        position: absolute;
        top: 100px;
        right: -2%;
        margin-top: 60px;
        transform: scale(1.3);
     }
}
@media screen and (max-width:  1200px) {

    .banner .land{
        width: 100%;
        height: 100%;
     }
     .banner .girl-img{
        right: -10%;
        transform: scale(1.3);
     }
     .banner .print{
        left: 10%;
     }
     .banner .print p:nth-child(2){
        padding: 20px 80px;
     }
     .banner .print p:nth-child(3){
        padding: 20px 80px;

     }
     .banner .print p:nth-child(4){
        padding: 20px 80px;
     }
     .banner .print p:nth-child(5){
        padding: 20px 80px;
     }
}
 @media screen and (max-width:  1000px) {
    .banner .girl-img{
        right: -13%;
        transform: scale(1.1);
     }
     
}
@media screen and (max-width:  900px) {
    .banner{
        height: 800px;
    }
    .banner .print{
        left: 10%;
     }
     .banner .girl-img{
        margin-top: -20px;
        right: -16%;
        transform: scale(1.0);
     }
     .banner .print p:nth-child(2){
        padding: 10px 50px;
     }
     .banner .print p:nth-child(3){
        padding: 10px 50px;

     }
     .banner .print p:nth-child(4){
        padding: 10px 50px;
     }
     .banner .print p:nth-child(5){
        padding: 10px 50px;
     }
}
@media screen and (max-width:  800px) {
    .banner .print{
        left: 5%;
        font-size: 34px;
     }
     .banner .girl-img{
        margin-top: 0px;
        right: -20%;
        transform: scale(0.9);
     }
     .banner{
        height: 800px;
    }
}
@media screen and (max-width: 768px) {
    .banner{
        height: 600px;
    }
    .banner .girl-img{
        margin-top: -20px;
        right: -30%;
        transform: scale(0.9);
        top: 50px;
     }
}
@media screen and (max-width: 630px) {
    .banner .girl-img{
        display: none;
    }
    .banner .print{
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 34px;
        width: 60%;
     }
     .banner .print p:nth-child(1){
        text-align: center;
     }
     .banner .print p:nth-child(1){
        color: var(--blue-);
        font-size: 44px;
        -webkit-text-stroke: 1px rgb(255, 255, 255); /* For Safari/WebKit browsers */
     }
}
@media screen and (max-width:  500px) {
     .banner .port{
        height: 500px;
        display: block;
        width: 100%;
     }
    .banner .girl-img{
        display: none;
    }
    .banner .print{
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 34px;
        width: 80%;
     }
     .banner .print p:nth-child(2){
        padding: 10px 30px;
        text-align: center;
     }
     .banner .print p:nth-child(3){
        padding: 10px 30px;
     }
     .banner .print p:nth-child(4){
        padding: 10px 30px;
        text-align: center;
     }
     .banner .print p:nth-child(5){
        padding: 10px 30px;
        text-align: center;
     }
     .banner .print{
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-size: 35px;
     }
}
@media screen and (max-width:  300px) {
    .banner .print{
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        width: 98%;
     }
}


/* section feature */
.feature{
    background-color: white;
    font-family: "fred";
    text-align: center;
    font-weight: 500;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 20px;
}
.feature .feature-con > p{
    font-size: 34px;
    margin-bottom: 30px;
    color: var(--blue-);
}
.feature .feature-con{
    padding: 20px 0px 100px 0px;
}
.feature .feature-con ul{
    display: flex;
    list-style-type: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.feature .feature-con ul li{
    width: 350px;
    cursor: pointer;
    transition: 0.4s;
}
.feature .feature-con ul li img{
    height: 80px;
    transition: 0.4s;
    margin-bottom: 10px;
}
.feature .feature-con ul li P:nth-child(2){
    color: var(--blue-);
    padding-bottom: 20px;
    border-bottom: 2px solid var(--orangeb-);
    position: relative;
}
.feature .feature-con ul li P:nth-child(3){
    color: var(--lightblue-);
    margin-top: 10px;
}
.feature .feature-con ul li P:nth-child(2)::after{
    content: ' ';
    background-color: var(--blue-);
    width: 100%;
    height: 2px;
    display: block;
    font-weight: bold;
    transition: 0.4s;
    position: absolute;
    margin: 20px auto;
    text-align: center;
}
.feature .feature-con ul li:hover P:nth-child(2)::after{
    content: ' ';
    background-color: var(--orange-);
    width: 100%;
    height: 2px;
    display: block;
    font-weight: bold;
    margin: 20px auto;
}
@media screen and (max-width: 1000px) {
    
}
@media screen and (max-width: 900px) {
    
}
@media screen and (max-width: 768px) {
   
}
@media screen and (max-width: 380px) {
    .feature{
        padding: 0px;
    }
    .feature .feature-con ul li{
        max-width: 250px;
        font-size: 20px;
        margin-bottom: 20px;
    }
    .feature .feature-con ul li img{
        height: 40px;
    }
}

/* showcase */
.container .text-con{
    display: flex;
    width: 100%;
    font-family: 'fred';
}
.container .text-con .text{
    flex: 1 1 50%;
    width: 100%;
    height: 500px;
    background-color: var(--blue-);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    color: white;
    line-height: 1.8;
    padding: 20px;
}
.container .text-con .text .texte{
    width: 500px;
}
.container .text-con .text .texte p a{
    display: block;
}
.container .text-con .text p:nth-child(1){
    font-size: 26px;
}
.container .text-con .text p:nth-child(2){
    font-size: 20px;
    color: rgb(231, 231, 231);
    margin: 30px 0px;
}
.container .text-con .text a{
    font-size: 24px;
    text-decoration: underline;
    display: block;
    color: white;
}
.container .text-con .text p a:hover{
    text-decoration: none;
}
.container .text-con .text .texte p a:after{
    content: ' ';
    background-color: var(--orange-);
    width: 0px;
    height: 2px;
    display: block;
    color: white;
    font-weight: bold;
    transition: 0.3s;
    margin-top: -8px;
}
.container .text-con .text p a:hover:after{
    content: ' ';
    background-color: var(--orange-);
    width: 160px;
    height: 2px;
    display: block;
    color: white;
    font-weight: bold;
}
.container .text-con .img{
    flex: 1 1 50%;
    width: 100%;
    overflow: hidden;
    height: 500px;
}
.container .text-con .img img{
    width: 100%;
    height: 550px;
}
.container .text-con .text:nth-child(2){
    background-color: rgb(0, 0, 0);
}
@media screen and (max-width:1200px) {
    .container .text-con .text .texte{
        width: 100%;
    }
    .container .text-con .text a{
        font-size: 20px;
      
    }
}
@media screen and (max-width: 900px) {
    .container .text-con .text .texte{
        width: 100%;
    }
    .container .text-con .img img{
        width: 600px;
    }
}
@media screen and (max-width:  768px) {
    .container .text-con{
        display: flex;
        width: 100%;
        font-family: 'fred';
        flex-wrap: wrap;
    }
    .container .text-con .text .texte{
        width: 100%;
    }
    .container .text-con .img img{
        width: 100%;
    }
    .container .text-con .text {
        width: 100%;
    }
    .container .text-con .text{
        flex: 1 1 100%;
    }
    .container .text-con .img{
        flex: 1 1 100%;
    }
    .container .text-con:nth-child(2){
        flex-wrap: wrap-reverse;
    }
    .container .text-con .text:nth-child(2){
        flex: 1 1 100%;
        background-color: rgb(0, 0, 0);
    }
}
@media screen and (max-width: 500px) {
    .container .text-con .text .texte{
        width: 100%;
        padding: 20px 0px;
    }
    .container .text-con .img img{
        width: 600px;
        height: 500px;
    }
    .container .text-con .text{
        flex: 1 1 50%;
        width: 100%;
    }
    .container .text-con .text p:nth-child(2){
        font-size: 20px;
        color: antiquewhite;
        margin: 10px 0px;
    }
}

/* section projects */
.project{
    padding: 50px 10px;
    overflow: hidden;
}
.project .merge{
    transition: 0.3s;
}
.project .over{
    margin: 0px 10px;
    overflow: hidden;
}
.project .view{
    text-decoration: none;
    display: block;
    font-size: 20px; 
    text-align: center;
    padding: 20px 10px;
    background: var(--blue-);
    max-width: 200px;
    margin: 0px auto;
    color: white;
    border-radius: 10px;
}
.project > h3{
    margin: 10px 0px 20px 20px;
    font-size: 24px;
    color: var(--blue-);
    text-align: center;
}
.project ul {
    list-style: none;
    padding: 20px;
    display: flex;
    gap: 10px;
    overflow: hidden;
}
.project ul li {
    width: 400px;
    height: 270px;
    background-color: #1873B3;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.project ul li img{
    width: 420px;
    background-color: #1873B3;
    margin-left: -20px;
}
.project ul li .project-text{
    position: absolute;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0), black);
    bottom: 0;
    line-height: 1.4;
    width: 100%;
    height: 180px;
    color: white;
    font-family: 'robo';
    padding: 0px 10px;
    transform: scale(1);
    opacity: 1;
    z-index: 0;
}
.project ul li .project-text h3{
    font-size: 22px;
    margin-top: 100px;
}
.project ul li .project-text p{
    font-size: 16px;
    color: white;
}
.project ul li .project-text .color{
    display: flex;
    justify-content: space-between;
    max-width: 250px;
    margin-top: 5px;
}
.project ul li:hover .project-text {
    
    transform: scale(4);
    opacity: 0;
    transition: 0.4s;
}
@media screen and (max-width: 768px) {
    .project ul li {
        width: 350px;
        height: 270px;
    }
    .project{
        padding: 20px;
        overflow: hidden;
    }
    .project ul {
        padding: 20px;
        gap: 10px;
    }
    .project .view{
        text-decoration: none;
        display: block;
        font-size: 20px; 
        text-align: center;
        padding: 10px 5px;
        background: var(--blue-);
        max-width: 160px;
        margin: 0px auto;
        border-radius: 10px;
    }
}
@media screen and (max-width: 500px) {
    .project ul li {
        width: 300px;
        height: 270px;
        background-color: #1873B3;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
    }
    .project{
        padding: 40px 0px 30px 0px;
        overflow: hidden;
    }
    .project ul {
        padding: 10px;
        gap: 10px;
    }
    .project > h3{
        margin: 20px 10px 30px 10px;
    }
    .project .view{
        text-decoration: none;
        display: block;
        font-size: 20px; 
        text-align: center;
        padding: 20px 5px;
        background: var(--blue-);
        max-width: 160px;
        margin: 20px auto;
        border-radius: 10px;
    }
}
/* section agency */
.agency{
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--lightblue-);
    font-family: 'robo';
    padding: 50px;
}
.agency .agency-top{
    max-width: 500px;
}
.agency .agency-con{
    padding: 50px;
}
.agency .agency-top p:nth-child(1){
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    color: rgb(196, 196, 196);
}
.agency .agency-top p:nth-child(2){
    font-size: 34px;
    color: var(--lightblue-);
    text-align: center;
    margin-top: 20px;
}
.agency .agency-con.flex-center-row{
    gap: 50px;
}
.agency .agency-con .agency-text{
    max-width: 400px;
    text-align: center;
    font-size: 20px;
}
.agency .agency-con .agency-text h3{
    font-size: 44px;
    letter-spacing: 8px;
    padding: 10px 0px;
    color: white;
}
.agency .agency-con .agency-text p:nth-child(2){
    padding: 10px 5px;
    font-style: italic;
    color: rgb(196, 196, 196);
    
}
.agency .agency-con .agency-text p{
    color: var(--lightblue-);
    text-transform: capitalize;
}

@media screen and (max-width: 1200px) {
    .agency .agency-con{
        padding: 20px;
    }
    .agency .agency-con.flex-center-row{
        gap: 20px;
    }
    .agency .agency-con .agency-text p:nth-child(2){
        padding: 10px 5px;
        font-style: italic;
    }
}
@media screen and (max-width: 768px) {
    .agency .agency-con{
        padding: 20px;
    }
    .agency .agency-con.flex-center-row{
        gap: 20px;
        flex-wrap: wrap;
    }
    .agency .agency-con .agency-text p:nth-child(2){
        padding: 10px 5px;
        font-style: italic;
    }
    .agency .agency-top p:nth-child(2){
        font-size: 28px;
        color: #1873B3;
       
    }
}
@media screen and (max-width: 500px) {
    .agency{
        padding: 50px 20px;
    }
    .agency .agency-con{
        padding: 10px;
        margin: 20px 0px;
    }
    .agency .agency-con.flex-center-row{
        gap: 10px;
        flex-wrap: wrap;
    }
    .agency .agency-con .agency-text p:nth-child(2){
        padding: 10px 5px;
        font-style: italic;
    }
    .agency .agency-top p:nth-child(2){
        font-size: 24px;
        color: #1873B3;
       
    }
}
/* talk */
.talk-section{
    background-color: rgb(235, 235, 235);
    font-size: 20px;
    padding: 70px 10px;
    display: flex;
}
.talk-section .talk{
    padding: 0px 15px;
}
.talk.middle{
    width: 1500px;

}
.talk.flex-center-row{
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.talk .talk-con{
   max-width: 300px;
}
.talk .talk-con p{
    margin-top: 10px;
    line-height: 1.8;
}
.talk .talk-con p:nth-child(2){
    margin-top: 20px;
}
.talk .talk-con p:nth-child(1){
    font-weight: bold;
}
.talk .talk-con .icon{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 30px 30px 30px;
    grid-gap: 20px;
    align-content: center;
}
.talk .talk-con .icon a{
    text-decoration: none;
}
.talk .talk-con .icon a li{
    list-style-type: none;
}
.talk .talk-con .icon a li img{
    max-width: 50px;
}
@media screen and (max-width: 1200px) {
    .talk-section{
        font-size: 20px;
        padding: 50px 10px;
    }
}
@media screen and (max-width: 768px) {
    .talk.flex-center-row{
        flex-wrap: wrap;
    }
}


/* header seven */
.header-seven{
    background-color: white;
    color: black;
    padding: 20px;
    width: 100%;
    font-size: 20px;
    font-family: 'robo';
}
.header-seven .sec7{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 50px;
}
.header-seven .sec7 .sec7-header{
    display: flex;
    flex-direction: column;
    line-height: 1.9;
    margin-top: 20px;
    width: 300px;
}
.header-seven .sec7 .sec7-header h3{
    margin:  10px 0px;
}
.header-seven .sec7 .sec7-header p{
    font-size: 20px;
    color: rgb(91, 91, 91);
    font-weight: 500;
}
.header-seven .sec7 .page a{
    text-decoration: none;
    color: rgb(91, 91, 91);
    font-size: 20px;
    font-weight: 500;

}
.header-seven .sec7 .res a{
    text-decoration: none;
    color: rgb(91, 91, 91);
    font-size: 20px;
    font-weight: 500;

}
@media screen and (max-width: 768px) {
    .header-seven .sec7{
        padding-left: 10px;
    }
    .header-seven .sec7 .sec7-header{
        margin-top: 5px;
    }
    .header-seven .sec7 .sec7-header h3{
        margin:  2px 0px;
    }
    
}
@media screen and (max-width: 500px) {
    .header-seven .sec7{
        flex-wrap: wrap;
    }
}
/* footer section */
.footer{
    /* background-color: rgba(24, 115, 179,0.6); */
    background-color: #90b3cda4;
    /* border-bottom: 1px solid rgba(255, 255, 255,0.5);
    border-top: 1px solid rgba(255, 255, 255,0.5); */
    font-size: 14px;
}

/* .footer::after{
    content: " ";
    display: block;
    height: 10px;
    width: 100%;
    background-color: #94C540;
} */
.footer .info-page{
    padding: 40px;
    margin: 0px 40px;
}
.footer .info-page.flex{
    justify-content: center;
    gap: 30px;
}
.footer .info-page ul{
    list-style-type: none;
    width: 250px;
    line-height: 1.6;
}
.footer .info-page ul h3::after{
    content: "";
    display: block;
    height: 5px;
    width: 30px;
    border-radius: 5px;
    background-color: rgba(24, 115, 179,0.5);
}
.footer .info-page ul h3{
    color: black;
}
.footer .info-page ul a{
    text-decoration: none;
    display: block;
}
.footer .info-page ul  li{
    color: rgb(58, 58, 58);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0px;
    transition: .2s;
    font-family: "robo-medium";
}

.footer .info-page ul a li:hover{
    font-family: 'robo-medium-italic';
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 900px) {
   
}
@media screen and (max-width: 768px) {
    .footer .info-page.flex{
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media screen and (max-width: 570px) {
    .footer .info-page.flex{
        flex-wrap: wrap;
        
    }
}
/* partner section */

.footer .last-footer{
    background-color: var(--blue-);
    color: whitesmoke;
    padding: 30px 10px;
    text-align: center;
    font-family: 'robo';
    font-size: 18px;
}
/* animate */
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 1;
    transition: all 2s ease;
}
.reveal.active{
    transform: translateY(0px);
    opacity: 1;

}