@import url('https://fonts.googleais.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

body, section{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.42857143;
}
/*********** Preloader *****************/
#preloader{
    background: #000;
    z-index: 3;
}

#preloader .center{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.ring{
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}
@keyframes ring{
    0%{
        transform: rotate(0deg);
        box-shadow: 1px 5px 2px #0000ff;
    }
    50%{
        transform: rotate(180deg);
        box-shadow: 1px 5px 2px #0000ff;
    }
    100%{
        transform: rotate(360deg);
        box-shadow: 1px 5px 2px #0000ff;
    }
}
.ring:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255,255,255,.3) ;
}
#preloader span{
    color: #737373;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 200px;
    animation: text 3s ease-in-out infinite;
}
@keyframes text{
    50%{
        color:#000 ;
    }
}


/*********** Navbar *****************/
.nav-bar nav{
    background: #000000;
    display: block;
    z-index: 2;
}
.nav-bar nav:after{
    content: '';
    clear: both;
    display: table;
}
.nav-bar nav .logo{
    float: left;
    color: white;
    font-size: 27px;
    font-weight: 600;
    line-height: 70px;
    padding-left: 60px;
}

.nav-bar nav ul{
    float: right;
    list-style: none;
    margin: 16px 40px 16px 0px;
    position: relative;
}
.nav-bar nav ul li{
    display: inline-block;
    background: black;
    margin: 0 5px;
}
.nav-bar nav ul li a{
    color: white;
    text-decoration: none;
    line-height: 70px;
    font-size: 18px;
    padding: 8px 15px;
}
.nav-bar nav ul li a:hover{
    color:white;
    border-radius: 5px;
    box-shadow:0 0 5px #0000ff,
               0 0 5px #0000ff;                              
}
.nav-bar nav ul ul li a:hover{
         box-shadow: none;
         color: blue;
}
.nav-bar nav ul ul{
    position: absolute;
    top: 90px;
    border-top: 3px solid blue;
    opacity: 0;
    visibility: hidden;
    transition: top 0.3s;
}
.nav-bar nav ul ul ul{
    border-top: none;
}



.nav-bar nav ul li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
}


.nav-bar nav ul ul li{
    position: relative;
    margin: 0px;
    width: 150px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(0, 0, 255, 0.080);
}
.nav-bar nav ul ul li a{
    line-height: 50px;
}


.nav-bar nav ul ul ul li{
    position: relative;
    top: -70px;
    left: 150px;
}
.nav-bar .fa-plus{
    margin-left: 40px;
    font-size: 15px;
}
.nav-bar .show, .nav-bar .icon, .nav-bar nav input{
    display: none;
}



/*********** Circle *****************/
#about{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    min-height: 80vh;
}

.square
{
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content
{
    position: relative;
    padding: 40px 60px;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    z-index: 1000;
}
.content a
{
    position: relative;
    display: inline-block;
    margin-top: 10px;
    border: 2px solid #fff;
    padding: 6px 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;   
}

.content a:hover
{
    background: #fff;
    color: #333;
}

.square span:nth-child(1)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.5s;
    animation: animate 6s linear infinite;
}

.square:hover span:nth-child(1)
{
    border: none;
    background: rgba(0,0,255,0.8);
}

.square span:nth-child(2)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.5s;
    animation: animate 4s linear infinite;
}

.square:hover span:nth-child(2)
{
    border: none;
    background: rgba(0,0,255,0.8);
}

.square span:nth-child(3)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.5s;;
    animation: animate2 10s linear infinite;
}

.square:hover span:nth-child(3)
{
    border: none;
    background: rgba(0,0,255,0.8);
}

@keyframes animate
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}

@keyframes animate2
{
    0%
    {
        transform: rotate(360deg);
    }
    100%
    {
        transform: rotate(0deg);
    }
}

/*********** Our Benefits*****************/
#our-benefits{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#000, #000 50%, #fff 50%, #fff 100%);
    min-height: 50vh;
}
.container-b
{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-template-rows:  minmax(auto, 240px);
    margin: 200px 40px 100px 40px;
    grid-auto-flow: dense;
    grid-gap: 120px;
}

.container-b .box-b
{
    display: grid;
    color: #fff;
    transition: 0.5s;   
    
}
.container-b .box-b .content-b{
    position: relative;
    width: 90%;
    height: 90%;
    background: #fff;
    padding: 20px 20px 0px 20px;
    justify-content: space-between;
    box-shadow: 0 15px 45px rgba(58, 51, 51, 0.2);
}

.container-b .box-b .content-b:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000ff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}
.container-b .box-b .content-b:hover:before
{
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}

.container-b .box-b .content-b h2 
{
    position: absolute;
    left: 20px;
    top: 40px;
    font-size: 4em;
    font-weight: 800;
    z-index: 1;
    opacity: 0.5;
    transition: 0.5s;
    color: #333;
}

.container-b .box-b .content-b:hover h2 
{
    opacity: 1;
    color: #fff;
    transform: translateY(-40px);
}
.container-b .box-b .content-b h3
{
    position: relative;
    font-size: 1.5em;
    z-index: 2;
    color: #333;
    transition: 0.5s;
    margin-left: 90px;
    margin-top: 60px;
}

.container-b .box-b .content-b p
{
    position: relative;
    z-index: 2;
    font-size: 1.20em;
    color: #555;
    transition: 0.5s;
}

.container-b .box-b:hover h3, .container-b .box-b:hover p
{
    color: #fff;
}





/*********** Our Services*****************/
#our-services{
    justify-content: center;
    align-self: center;
    min-height: 80vh;
    background: #fff;
}
#our-services h1{
    display: block;
    font-size: 48px;
    font-weight: bold;
    margin-top: 0px;
}

.container-fluid .box-s
{
    background: rgba(0,0,0,.075);
    padding: 5px;
    font-size: 18px;
    place-items: center;
    text-align: center;
    color: #000;
    transition: 0.5s;   
    border-radius: 15px;
}

.container-fluid .box-s:hover
{
    background: #0000ff;
    color: #fff;
}

.container-fluid .box-s img
{
    position: relative;
    max-width: 100px;
}


/*********** Our Team *****************/
#our-team{
    justify-content: center;
    align-self: center;
    min-height: 100vh;
    background: #000;
}
#our-team h1{
    display: block;
    font-size: 48px;
    font-weight: bold;
    margin-top: 20px;
    color: #fff;
}

.container-fluid .box-t
{
    background: #333;
    font-size: 16px;
    place-items: center;
    text-align: center;
    color: #fff;
    transition: 0.5s;   
    border-radius: 15px;
}

.container-fluid .box-t:hover
{
    background: #0000ff;
}

.container-fluid .box-t img{
    display: block;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    object-fit: cover;
    border-radius: 50%;
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8) ;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.container-fluid .box-t img:hover{
    -webkit-transform: scale(1, 1) ;
    transform: scale(1, 1);
}
.container-fluid .content-t .image-perfil{
    width: 140px;
    height: 140px;
    margin: auto;
}
.container-fluid .content-t .description{
    height: auto;
    margin: auto;
}

.title-t{
    color: #999999;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0px;   
}


/*********** Footer*****************/
footer{
    bottom: 0px;
    width: 100%;
    background: #000;
    color: #d9d9d9; 
    display: block;  
}

.main-content{
    display: flex;
}

.main-content .box-f{
    flex-basis: 50%;
    padding: 10px 20px;
}

.box-f h2{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.box-f .content-f{
    margin: 20px 0 0 0;
    position: relative;
}
.box-f .content-f:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
}
.box-f .content-f:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #0000ff;
    top: -10px;
}


.left .content-f p{
    text-align: justify;
    font-size: 14px;
}

.left .content-f .social{
    margin: 20px 0 0 0;
}

.left .content-f .social a{
    padding: 0 2px;
    color: #d9d9d9;
}

.left .content-f .social a span{
    height: 40px;
    width: 40px;
    background: #1a1a1a;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}
.left .content-f .social a span:hover{
    background: #0000ff;
}

.center .content-f .fas{
    font-size: 16px;
    background: #1a1a1a;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.center .content-f .fas:hover{
    background: #0000ff;
}


.center .content-f .text{
    font-size: 14px;
    font-weight: 500;
    padding-left: 10px;
}

.center .content-f .phone{
    margin: 10px 0;
}

.right h2{
    text-align: center;
}

.right form .text{
    font-size: 14px;
    margin-bottom: 2px;
    color: #656565;
}

.right form .msg{
    margin-top: 10px;
}

.right form input, .right form password{
    width: 100%;
    font-size: 14px;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
}

.right form input:focus, 
.right form password:focus{
    outline-color: #3498db;
    color: #fff;
}

.right form input{
    height: 35px;
}

.right form .btn{
    margin-top: 10px;
}


.right form .btn1 button{
    float: left;
    height: 40px;
    width: 190px;
    border: none;
    outline: none;
    background: #f2f2f2;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    color: #000;
    border-radius: 10px;
}

.right form .btn2 button{
    float:right;
    height: 40px;
    width: 190px;
    border: none;
    outline: none;
    background: #f2f2f2;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    color: #000;
    border-radius: 10px;
}

.right form .btn1 button:hover,.right form .btn2 button:hover {
    background: #0000ff;
    color: #fff;
}

.bottom center{
    padding: 5px;
    font-size: 12px;
    background: #151515;
}
.bottom center span{
    color: #656565;
}

.bottom center a{
    color: #0000ff;
    text-decoration: none;
}

.bottom center a:hover{
    text-decoration: underline;
}
/*********** Contact *****************/
#contact{
    background:#000;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    margin-bottom: 110px;
}
.title-contact{
    box-align: center;
    justify-content: center;
    position: relative;
    top: 100px;
    left: 40%;
    display: block;
    width: 50%;
    margin: 0px;
}

.title-contact h1{
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    display: block;
}
/**#particles-js{
    position: absolute;
    background: #000;
    height: 100%;
    width: 100%;
}**/
.contact-info{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    grid-template-rows:  minmax(100px, auto);
    margin: 0px 40px;
    grid-auto-flow: dense;
    grid-gap: 10px;
}
.card{
    background: #333;
    display: grid;
    font-size: 16px;
    place-items: center;
    text-align: center;
    color: #fff;
    transition: 0.5s;   
    margin: 0 10px;
    height: 200px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    border-radius: 15px;
}

.card-icon{
    font-size: 20px;
    background: #0000ff;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px !important;
    border-radius: 50%;
    transition: 0.3s linear;
}
.card:hover .card-icon{
    background: none;
    color: #0000ff;
    transform: scale(1.6);
}

.card p{
    font-weight: 300;
    letter-spacing: 2px;
    max-height: 0;
    opacity: 0;
    transition: 0.3s linear;
}

.card:hover p{
    max-height: 60px;
    opacity: 1;
}
/*********** About-US *****************/
#about-us1{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
}
#about-us2{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
}
#about-us1 h2, #about-us2 h2{
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: bold;
}
#about-us1 .container, #about-us2 .container{
    text-align: justify;
    margin-top: 80px;
}
#about-us1 .img-wrap, #about-us2 .img-wrap{
    width: 100%;
}
#about-us1 .img-wrap img, #about-us2 .img-wrap img{
    width: 100%;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px #0000ff;
}
/*********** marketplace *****************/
#marketplace-1{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
}
#marketplace-2{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000;
}
#marketplace-1 h2, #marketplace-2 h2{
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: bold;
}
.container-m{
    text-align: justify;
    margin-top: 80px;
}
#marketplace-1 .img-wrap, #marketplace-2 .img-wrap {
    width: 100%;
}
#marketplace-1 .img-wrap img, #marketplace-2 .img-wrap img{
    width: 100%;
    padding: 10px;
}


/*********** Responsive Template *****************/
@media (max-width: 968px) {
    .nav-bar nav ul{
        margin-right: 0px;
        float: left;
    }
    .nav-bar nav .logo{
        padding-left: 30px;
        width: 80%;
    }
    .nav-bar nav ul li, nav ul ul li{
        display: flex;
        width: 80%;
    }
    .nav-bar nav ul ul{
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    .nav-bar nav ul ul ul li{
        position: static;
    }
    .nav-bar nav ul ul a{
        padding-left:40px;  
    }
    .nav-bar nav ul ul li{
        border-bottom: 0px;
    }
    .nav-bar nav ul ul ul a{
        padding-left:80px;  
    }
    .nav-bar .show{
        display: block;
        color: white;
        font-size: 18px;
        padding: 0 20px;
        line-height: 70px;
        cursor: pointer;
    }
    .nav-bar .show:hover{
        color: blue;
    }
    .nav-bar .icon{
        display: block;
        color: white;
        position: absolute;
        right: 40px;
        line-height: 70px;
        font-size: 25px;
        cursor: pointer;
    }
    .nav-bar nav ul li a:hover{
        box-shadow: none;
    }
    .nav-bar .show + a, ul{
        display: none;
    }
    [id^=btn]:checked + ul{
        display: block;
      
    }
        .square
        {
        position: relative;
        width: 300px;
        height: 310px;
        display: flex;
        justify-content: center;
        align-items: center;
         }
        #about .content
        {
            padding: 40px 30px;
            width: 90%;
            height: 90%;
            margin-top: auto;
            line-height: normal;
        }
        #about .content p
        {
            font-size: 14px;
        }
        .square span:nth-child(1), .square span:nth-child(2), .square span:nth-child(3)
        {
            width: 275px;
            height: 275px;
        }
        #about .content a {
            margin-top: 0px;
        }

        .container-b
        {
            min-height: 100vh;
            grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
            grid-template-rows:  minmax(auto, auto);
            grid-gap: 80px;
            margin: 100px 0px;
        } 
        .container-b .box-b
        {
        grid-column: unset !important;
        grid-row: unset !important;
        }
        .container-b .box-b .content-b{
        box-shadow: 0 15px 45px rgba(58, 51, 51, 0.1);
        }
        .container-s
        {
        grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
        grid-template-rows:  minmax(auto, auto);
        } 
        .container-s .box-s
        {
        grid-column: unset !important;
        grid-row: unset !important;
        }
        .container-t
        {
            grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
            grid-template-rows:  minmax(auto, auto);
        } 
        .container-t .box-t
        {
        grid-column: unset !important;
        grid-row: unset !important;
        }
        .container-t .content-t .description{
            height: 240px;
            margin: auto;
        }
     footer{
        position: relative;
        bottom: 0px;
        }
    .main-content{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .main-content .box-f{
        margin: 5px 0;
    }
    .right form .btn1 button, .right form .btn2 button{
        width: 120px;
    }
    #contact{
        min-height: 100vh;
        margin-bottom: 0px;
    }
    .title-contact{
        top: 30px;
        left: 30%;
        width: 50%;
    }
    .contact-info
    {
        grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
        grid-template-rows:  minmax(auto, auto);
    } 
    .card
    {
    grid-column: unset !important;
    grid-row: unset !important;
    }
    #about-us1 .img-wrap, #about-us2 .img-wrap{
        margin-bottom: 60px;
    }
    #about-us1{
        height: 220vh;
    }
    #about-us2{
        height: 160vh;
    }
    #marketplace-1{
        height: 170vh;
    }
    #marketplace-2{
        height: 140vh;
    }
}






