@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Nunito:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

p {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #6c757d;
}

.r-p {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-sec {
    background: #f8f9fa;
}

.r-btn {
    padding: 5px 20px;
    background-color: #ee8683 !important;
    color: #fff !important;
}

/******************* Preloader *********************/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99998;
}

.preloader::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #000;
    transition: 1s;
}

.preloader::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: #000;
    transition: 1s;
}

.preloader.complete::before {
    bottom: -50%;
}

.preloader.complete::after {
    top: -50%;
}

.preloader.complete {
    visibility: hidden;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid rgba(255, 25, 255, 0.1);
    border-top: 10px solid #ee8683;
    animation: animate 1.5s infinite linear;
    z-index: 99999;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/******************* navbar *********************/
nav.r-nav {
    background: transparent;
    padding: 20px 0;
    transition: all 0.5s;
}

nav .navbar-brand {
    font-size: 30px;
    color: #fff;
}

nav .navbar-nav li a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    letter-spacing: 0.05rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif
}

nav .navbar-nav li {
    margin-left: 15px;
}

nav.r-nav.stickyadd {
    background: #fff !important;
    padding: 15px 0;
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease-in-out;
}

nav.stickyadd .navbar-brand {
    color: #000;
    font-size: 40px;
    transition: all 0.5s;
}

nav.stickyadd .navbar-nav .nav-link {
    color: #000 !important;
}

.navbar .hamburger {
    color: #fff;
}

nav.stickyadd .hamburger {
    color: #000;
}

/******************* header *********************/
header {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/sample7/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-box {
    max-width: 700px;
    color: #fff;
}

.content-box h4 {
    font-size: 30px;
}

.content-box h1 {
    font-size: 52px;
}

.content-box a {
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 5px 25px;
}

.content-box a:hover {
    color: #000;
    background: #fff;
    transition: all 0.5s;
}

.content-box p {
    color: #fff;
}

/******************* About Us *********************/
.about li a {
    color: #000;
    display: inline-block;
    height: 42px;
    width: 42px;
    font-size: 20px;
    border: 2px solid #d4d4d4;
    border-radius: 50%;
    transition: all 0.5s;
    text-align: center;
}

.about li a:hover {
    color: #ee8683;
}

/******************* Skills *********************/
.exp-class .progress {
    height: 10px;
    border-radius: 20px;
    font-size: 10px;
}

.progress-bar {
    background-color: #ee8683 !important;
}

.exp-class label {
    font-size: 20px;
    margin: 10px;
}

/******************* Services Section *********************/
.card,
.card-header {
    background: #f8f9fa !important;
}

.card-header {
    border: none !important;
}

.services-class .card-header i {
    font-size: 50px;
}

.service-border {
    height: 2px;
    width: 40px;
    margin: 15px auto;
    background: #e65f78;
}

/******************* Testimony *********************/
.testimony-class .test-item {
    max-width: 500px;
    margin: 50px auto;
}

.testimony-class .test-item .test-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.testimony-class .test-item i {
    color: gray;
}

.test-item p.test-name {
    font-size: 11px;
}

/******************* Work *********************/
.work .card-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
}

/******************* Contact Us *********************/
.contact .r-icon {
    font-size: 50px;
    text-align: center;
}

/******************* Footer *********************/
footer {
    height: 200px;
    background-color: #333333;
}

footer .r-icon a {
    font-size: 20px;
    color: #848484;
    padding: 10px;
    border: 1px solid #848484;
    border-radius: 50%;
}

footer .r-icon a:hover {
    border: 1px solid #eee;
    color: #eee;
    transition: all 1s;
}