﻿@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Oswald:wght@600&display=swap');

*{
    padding:0;
    margin:0;
    box-sizing:border-box;
}

/*#about, #vision, #services, #team, #testi, #success, #privacy,
#refund, #terms,#gallery,#legal,#business,#contact{
    background-color: #fa80728c;
}*/

p{
    text-align:justify;
}

/*Header*/

nav {
    background-image: linear-gradient(to right,#ED4264,#FFEDBC);
}

nav img {
    width: 60px;
    height: 60px;
    margin-top: -15px;
    margin-right: 5px;
}

nav span{
    font-size:40px;
    font-weight:bold;
    padding-right:100px;
}

.nav-link {
    font-size: 20px;
    font-weight: bold;
    padding-left: 30px!important;
}

#active {
    font-size: 21px !important;
    color: #000000;
}

#active1 {
    font-size: 21px !important;
    font-weight: bold;
    color: #ED4264;
}

/*Image*/

#bg {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #fff !important;
    padding-top: 300px;
    padding-bottom: 150px;
}

#bg h1{
    color:white!important;
    font-size: 75px;
    font-weight: 800;
    text-align: center;
    width:50%;
    margin-left:25%;
    padding-bottom:20px;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4));
}

/*About*/

.text-effect{
    color: transparent;
    background: repeating-radial-gradient(circle at 100% 100%, rgba(255, 190, 11, 0.5) 4%, 
                rgba(255, 190, 11, 0.5) 8%, rgba(251, 86, 7, 0.5) 8%, rgba(251, 86, 7, 0.5) 12%, 
                rgba(255, 0, 110, 0.5) 12%, rgba(255, 0, 110, 0.5) 16%, rgba(131, 56, 236, 0.5) 16%, 
                rgba(131, 56, 236, 0.8) 20%, rgba(58, 134, 255, 0.5) 20%, rgba(58, 134, 255, 0.5) 24%), 
                repeating-radial-gradient(circle at 0% 100%, rgba(255, 190, 11, 0.7) 4%, 
                rgba(255, 190, 11, 0.9) 8%, rgba(251, 86, 7, 0.7) 8%, rgba(251, 86, 7, 0.9) 12%, 
                rgba(255, 0, 110, 0.7) 12%, rgba(255, 0, 110, 0.9) 16%, rgba(131, 56, 236, 0.8) 16%, 
                rgba(131, 56, 236, 0.8) 20%, rgba(58, 134, 255, 0.8) 20%, rgba(58, 134, 255, 0.8) 24%);
    background-size: 250px 250px;
    background-position: 0 0;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    font-family: 'Viga', sans-serif;
    font-size: 100px;
    font-weight: 800;
    letter-spacing:2px;
    text-align: center;
    animation: stripes 3s linear infinite;
}
@keyframes stripes{
    100% { background-position: 250px 0, 250px 0, 100px 0; }
}
@media only screen and (max-width: 990px){
    .text-effect{ font-size: 80px; }
}
@media only screen and (max-width: 767px){
    .text-effect{ font-size: 60px; }
}
@media only screen and (max-width: 576px){
    .text-effect{ font-size: 45px; }
}

#img {
    padding: 10px;
    border: 10px solid #ED4264;
}

/*Vision*/

:root{ --main-color: #D64B3D; }
.demo{ background: radial-gradient(#fff,#ccc); }
.main-timeline{ font-family: 'Poppins', sans-serif; }
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: 50%;
    padding: 0 0 0 30px;
    margin: 0 5px 15px 0;
    float: left;
    position: relative;
    z-index: 1;
}
.main-timeline .timeline-content{
    background-color: #fff;
    padding: 35px 75px 35px 40px;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.3);
    display: block;
    position: relative;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-content:before{
    content: '';
    height: 50%;
    width: 50px;
    background-color: #ED4264;
    transform: translateY(-50%);
    position: absolute;
    left: -30px;
    top: 50%;
    bottom: 15px;
    right: 15px;
    z-index: -1;
    clip-path: polygon(0 0, 30% 50%, 0 100%, 100% 100%, 100% 0);
}
.main-timeline .timeline-icon{
    color: #fff;
    background: #ED4264;
    font-size: 35px;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -40px;
    z-index: 1;
}
.main-timeline .title{
    color: #333;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.main-timeline .description{
    color: #777;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 20px;
    margin: 0;
}
.main-timeline .timeline:nth-child(even){
    padding: 0 30px 0 0;
    margin: 0 0 15px 5px;
    float: right;
}
.main-timeline .timeline:nth-child(even) .timeline-content{ padding: 35px 40px 35px 75px; }
.main-timeline .timeline:nth-child(even) .timeline-content:before{
    transform: translateY(-50%) rotateY(180deg);
    left: auto;
    right: -30px;
}
.main-timeline .timeline:nth-child(even) .timeline-icon{
    left: -40px;
    right: auto;
}
.main-timeline .timeline:nth-child(4n+2){ --main-color: #416F7F; }
.main-timeline .timeline:nth-child(4n+3){ --main-color: #373B3C; }
.main-timeline .timeline:nth-child(4n+4){ --main-color: #89348A; }
@media screen and (max-width:767px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: calc(100%);
        padding: 0 40px 0 30px;
    }
    .main-timeline .timeline:nth-child(even){ padding: 0 30px 0 40px; }
}
@media screen and (max-width:479px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 100%;
        padding: 40px 0 30px;
        margin: 0 0 30px;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content{
        text-align: center;
        padding: 70px 25px 35px;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before{
        transform: translateY(0) translateX(-50%) rotate(-90deg);
        left: 50%;
        right: auto;
        top: auto;
        bottom: -65px;
    }
    .main-timeline .timeline-icon, 
    .main-timeline .timeline:nth-child(even) .timeline-icon{
        transform: translateY(0) translateX(50%);
        top: -40PX;
        right: 50%;
        left: auto;
    }
}

/*Services*/

:root{ --main-color: #ED4264; }
.serviceBox{
    color: var(--main-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 35px 28px 25px;
    position: relative;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    border-radius: 25px;
    border: 10px solid var(--main-color);
    clip-path: polygon(65% 0, 100% 0, 100% 35%, 35% 100%, 0 100%, 0 65%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.serviceBox:after{
    border-width: 3px;
    clip-path: polygon(0 0, 60% 0, 55% 5%, 96% 44%, 100% 40%, 100% 100%, 40% 100%, 43% 95%, 5% 55%, 0 60%);
    top: 3px;
    bottom: 3px;
    right: 3px;
    left: 3px;
}
.serviceBox .service-icon{
    font-size: 40px;
    margin: 0 0 10px;
}
.serviceBox .title{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 10px;
}
.serviceBox .description{
    color: #555;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 0s;
}
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 40px; }
}

/*Team*/

.our-team{
    text-align: center;
    overflow: hidden;
    position: relative;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ED4264 0%, #FFEDBC 100%);
    padding-top: 35%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.52, 1.64, 0.37, 0.66) 0s;
}
.our-team:hover .team-content{ transform: translateY(0); }
.our-team .title{
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.our-team .post{
    display: block;
    font-size: 17px;
    color: #fff;
}
.our-team .social{
    padding: 0;
    margin: 0;
    list-style: none;
}
.our-team .social li{
    display: inline-block;
    margin-top: 30px;
}
.our-team .social li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #4c5462;
    margin-right: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease 0s;
}
.our-team .social li a:hover{
    background: linear-gradient(to right, #ED4264 0%, #FFEDBC 100%);
    color: #000;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}

/* testi */

.demo{ background: #fff; }
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: #ed4264;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #ed4264;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post {
    display: block;
    font-size: 14px;
    color: #ed4264;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #ed4264;
}

/*Success*/

:root{ --main-color: #FF3E5D; }
.counter{
    color: var(--main-color);
    background: var(--main-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 28px 20px 30px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.counter:before,
.counter:after{
    content: "";
    background: #fff;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: -5px;
    left: 50%;
    z-index: -1;
}
.counter:after{
    background: var(--main-color);
    width: 100%;
    height: 50px;
    border-radius: 0;
    transform: translateX(0);
    left: 0;
    bottom: 0;
}
.counter .counter-icon{
    font-size: 30px;
    margin: 0 auto 7px;
}
.counter h3{
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 7px;
}
.counter .counter-value{
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}
.counter.pink{ --main-color: #FF3E5D; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
} 


/*footer*/

footer {
    background-color:black;
    color:white;
}

footer img{
    width:60px;
    height:55px;
}

footer h2{
    color:#ED4264;
    margin-bottom:15px;
}

footer a{
    color:white;
    text-decoration:none;
}

footer a:hover{
    color:#ED4264;
    text-decoration:none;
}

footer i{
    font-size:25px;
}

footer i:hover{
    font-size:22px;
    color:#ED4264;
}

footer form{
    display:flex;
}

footer span{
    font-size:20px;
    color:#ED4264;
}

/*************** About Page **************/

#bg1 {
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url('../img/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding-top: 320px;
    padding-bottom: 250px;
}

#bg1 h1{
    color:white!important;
    font-size: 75px;
    font-weight: 800;
    text-align: center;
}

/*********** Contact Page ***********/

#contact .card {
    background-image: linear-gradient(to top left,white, #f5173f);
}

#contact .card:hover {
    background-image: linear-gradient(to top left,#f5173f,white);
}

#contact i {
    font-size: 40px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 50%;
    color: #f5173f;
    background-color: #fbb0bd;
}

#contact a {
    padding: 10px 30px;
    background-color: #f5173f;
    color: white;
    text-decoration: none;
    margin-left: 220px;
    font-weight: bold;
}

#contact a:hover {
    background-color: black;
}

#map {
    padding: 10px;
    border: 10px solid #f5173f;
}


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

    /*Header*/

    nav img {
        width: 40px;
        height: 40px;
        margin-top: -10px;
        margin-right: 0px;
    }

    nav span {
        font-size: 27px;
        padding-right: 0px;
    }

    .nav-link {
        font-size: 18px;
        padding-left: 0px;
    }

    /*Image*/

    #bg {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    #bg h1 {
        font-size: 30px;
        font-weight: 800;
        width:80%;
        margin-left:10%;
        padding-bottom:20px;
        padding-top:15px;
    }

    /*************** About Page **************/

    #bg1 {
        padding-top: 150px;
        padding-bottom: 90px;
    }

    #bg1 h1{
        font-size: 30px;
    }

    /*********** Contact Page ***********/

    #contact a {
        padding: 10px 30px;
        margin-left: 110px;
    }
}