

/*******************************/

/********* General CSS *********/

/*******************************/

body
{
    color: #797979;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

p
{
    font-family: DM Sans;
}

h1,
h2, 
h3, 
h4,
h5, 
h6
{
    color: #414141;
}

a
{
    color: #313131;
    transition: .3s;
    font-family: DM Sans;
}

.btn:focus,
.form-control:focus
{
    box-shadow: none;
}

.container-fluid
{
    max-width: 1366px;
}

.btn
{
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #EF233C;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
    background-color: #1725e4;
}

.btn:hover
{
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}

#loader
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show
{
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader
{
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #EF233C;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin{
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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

.back-to-top
{
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 55px;
    z-index: 9;
    background-color: transparent!important;
}

.back-to-top i
{
    color: #ffffff;
}

.back-to-top:hover i
{
    color: #414141;
}

/**********************************/

/*********** Nav Bar CSS **********/

/**********************************/

.navbar
{
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky
{
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand
{
    margin: 0;
    font-size: 36px;
    line-height: 0px;
    font-weight: 700;
    transition: .5s;
}

.navbar .navbar-brand img
{
    max-width: 100%;
}

.navbar .dropdown-menu
{
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px)
{
    .navbar
    {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        border-bottom: 1px dashed rgba(256, 256, 256, .2);
        z-index: 9;
    }
    .navbar.nav-sticky
    {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    .navbar .navbar-brand
    {
        color: #ffffff;
    }
    .whitelogo
    {
        display: inline-block;
    }
    .bluelogo
    {
        display: none;
    }
    .darklogo
    {
        display: none;
    }
    .navbar.nav-sticky .navbar-brand
    {
        color: #1725e4;
    }
    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus
    {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus
    {
        color: #414141;
    }
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active
    {
        color: white;
    }
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active
    {
        color: #EF233C;
    }
}

@media (max-width: 991.98px)
{
    .navbar
    {
        padding: 15px;
        background: #ffffff !important;
    }
    .navbar .navbar-brand
    {
        color: #1725e4;
    }
    .whitelogo
    {
        display: none;
    }
    .bluelogo
    {
        display: inline-block;
    }
    .lightlogo
    {
        display: none;
    }
    .navbar .navbar-nav
    {
        margin-top: 15px;
    }
    .navbar a.nav-link
    {
        padding: 5px;
    }
    .navbar .dropdown-menu
    {
        box-shadow: none;
    }
}

/*******************************/

/********** Hero CSS ***********/

/*******************************/

.hero
{
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.75)), url(../img/banner3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 255, 0.75);
    padding: 120px 0 40px;
    margin-bottom: 50px;
}

.hero .container-fluid
{
    padding: 0;
}

.hero .hero-image
{
    position: relative;
    text-align: right;
    padding-right: 75px;
}

.hero .hero-image img
{
    max-width: 80%;
    max-height: 80%;
}

.hero .hero-content
{
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 60px;
    padding-top: 70px;
}

.hero .hero-text p
{
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.hero .hero-text h1
{
    color: #ffffff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero .hero-text h2
{
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    background-color: white;
    padding: 5px 7px 3px;
}

.hero .hero-text .typed-text
{
    display: none;
}

.hero .hero-text .typed-cursor
{
    font-size: 35px;
    font-weight: 300;
    color: #ffffff;
}

.hero .hero-btn .btn
{
    margin-top: 35px;
    color: #EF233C;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.hero .hero-btn .btn:hover
{
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child
{
    margin-right: 10px;
}

@media (max-width: 991.98px)
{
    .hero
    {
        padding-top: 60px;
    }
    .hero .hero-content
    {
        padding: 0 15px;
    }
    .hero .hero-text p
    {
        font-size: 20px;
    }
    .hero .hero-text h1
    {
        font-size: 45px;
    }
    .hero .hero-text h2
    {
        font-size: 15px;
    }
    .hero .hero-btn .btn
    {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px)
{
    .hero
    {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero,
    .hero .hero-text,
    .hero .hero-btn
    {
        width: 100%;
        text-align: center;
    }
    .hero .hero-text p
    {
        font-size: 18px;
    }
    .hero .hero-text h1
    {
        font-size: 35px;
    }
    .hero .hero-text h2
    {
        font-size: 15px;
    }
    .hero .hero-btn .btn
    {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px)
{
    .hero .hero-text p
    {
        font-size: 16px;
    }
    .hero .hero-text h1
    {
        font-size: 30px;
        line-height: 31px;
    }
    .hero .hero-text h2
    {
        font-size: 15px;
    }
    .hero .hero-btn .btn
    {
        padding: 8px 10px;
        letter-spacing: 0;
    }
}

/*******************************/

/******* Section Header ********/

/*******************************/

.section-header
{
    position: relative;
    margin-bottom: 55px;
}

.section-header p
{
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black;
    background: white;
}

.section-header p::before
{
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #EF233C;
    z-index: -1;
}

.section-header p::after
{
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #EF233C;
    z-index: 1;
}

.section-header h2
{
    font-size: 30px;
    text-align: center;
    color: #333;
    width: 50%;
    margin: 0 auto 6;
}

@media (max-width: 767.98px)
{
    .section-header h2
    {
        font-size: 20px;
    }
}

/*******************************/

/********** About CSS **********/

/*******************************/

.about
{
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
}

.about .col-lg-6
{
    padding: 0;
}

.about .section-header
{
    margin-bottom: 30px;
}

.about .about-img
{
    position: relative;
    height: 100%;
    text-align: center;
    padding-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.about .about-img img
{
    position: relative;
    width: 330px;
    height: 330px;
    object-fit: cover;
    border-radius: 1000px;
}

.about .about-content
{
    padding: 0 60px;
}

.about .about-text p
{
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    color: #333;
    line-height: 30px;
}

.about .skills
{
    margin-bottom: 30px;
}

.about .skill-name
{
    margin-top: 15px;
}

.about .skill-name p
{
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child
{
    float: right;
}

.about .progress
{
    height: 10px;
    border-radius: 10px;
    background-color: #e32d49;
}

.about .progress .progress-bar
{
    width: 0px;
    background: #1725e4;
    border-radius: 10px;
    transition: 2s;
}

.about .about-text a.btn
{
    margin-top: 15px;
}

@media (max-width: 991.98px)
{
    .about .about-content
    {
        padding: 45px 15px 0 15px;
    }
}

/*******************************/

/******* Experience CSS ********/

/*******************************/

.experience
{
    position: relative;
    padding: 20px 0 15px;
    margin-top: 30px;
}

.experience .timeline
{
    position: relative;
    width: 100%;
}

.experience .timeline::after
{
    content: '';
    position: absolute;
    width: 2px;
    background: #EF233C;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item
{
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 10px;
}

.experience .timeline .timeline-item.left
{
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right
{
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after
{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #EF233C;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after
{
    left: -8px;
}

.experience .timeline .timeline-item::before
{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 46px;
    right: 10px;
    z-index: 1;
    border: 10px solid;
    border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before
{
    left: 10px;
    border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date
{
    position: absolute;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    display: none;
    border-radius: 30px;
    background-image: linear-gradient(45deg, #4d3ae4 0%, hsl(310,74%,45%) 50%, #f33f60 100%);
}

.experience .timeline .timeline-item.left .timeline-date
{
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date
{
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text
{
    padding: 20px;
    background: #ffffff;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
    border-right: 4px solid #0a06f1;
}

.experience .timeline .timeline-item.right .timeline-text
{
    border-right: none;
    border-left: 5px solid #0a06f1;
    color: white;
}

.experience .timeline .timeline-text h2
{
    margin: 0 0 5px 0;
    font-size: 17px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4
{
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.experience .timeline .timeline-text p
{
    margin: 0;
    font-size: 13px;
}

@media (max-width: 767.98px)
{
    .experience .timeline::after
    {
        left: 8px;
    }
    .experience .timeline .timeline-item
    {
        width: 100%;
        padding-left: 38px;
    }
    .experience .timeline .timeline-item.left
    {
        padding-right: 0;
    }
    .experience .timeline .timeline-item.right
    {
        left: 0%;
        padding-left: 38px;
    }
    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after
    {
        left: 0;
    }
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before
    {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date
    {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text
    {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}

/*******************************/

/********* Service CSS *********/

/*******************************/

.service
{
    position: relative;
    width: 100%;
    padding-bottom: 75px;
    padding-top: 5px;
}

.service .service-item
{
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    transition: ease-out 0.5s;
    margin-top: 30px;
    background-color: #ebf3ff;
    padding: 30px;
    border-radius: 7px;
}

.service .service-items:hover
{
    box-shadow: inset 800px 0 0 0 #EF233C;
}

.service .service-icon
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service .service-icon i
{
    position: relative;
    font-size: 50px;
    transition: .3s;
    color: #0a06f1;
}

.service .service-text
{
    position: relative;
    padding: 0 10px 0 25px;
}

.service .service-text p
{
    margin: 0;
    font-size: 18px;
    transition: 1s;
    color: #333;
}

@media (max-width: 575.98px)
{
    .service .service-text h2
    {
        font-size: 13px;
        margin-bottom: 5px;
        line-height: 18px;
    }
    .service .service-text p
    {
        padding-left: 10px;
        padding-right: 20px;
        font-size: 15px;
    }
}

/*******************************/

/******** Portfolio CSS ********/

/*******************************/

.portfolio
{
    position: relative;
    padding: 60px 0 80px;
    margin-bottom: 0px;
    background-color: #f2f5fa;
}

.portfolio #portfolio-filter
{
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-filter li
{
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #EF233C;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #EF233C;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active
{
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}

.portfolio .portfolio-item
{
    position: relative;
}

.portfolio .portfolio-wrap
{
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 1px #ccc;
    padding: 40px 20px 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: white;
}

.portfolio .portfolio-img
{
    position: relative;
}

.portfolio .portfolio-img img
{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: .5s;
}

.portfolio .portfolio-item:hover img
{
    margin-left: 15px;
}

.portfolio .portfolio-text
{
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .12);
    margin-top: 15px;
}

.portfolio .portfolio-text h3
{
    width: calc(100% - 70px);
    font-size: 11px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: auto;
}

.portfolio .portfolio-text a.btn
{
    width: 50px;
    height: 50px;
    padding: 0 0 2px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 100;
    background-color: #1725e4;
}

.portfolio .portfolio-item:hover a.btn
{
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}

/*******************************/

/********* Banner CSS **********/

/*******************************/

.banner
{
    position: relative;
    width: 100%;
    margin: 45px 0;
    padding: 90px 0;
    background: #EF233C;
}

.banner .container
{
    max-width: 750px;
    text-align: center;
}

.banner .section-header
{
    margin-bottom: 20px;
}

.banner .section-header p
{
    color: #414141;
    background: transparent;
}

.banner .section-header p::after
{
    display: none;
}

.banner .section-header h2
{
    color: #ffffff;
}

.banner .section-header h2 span
{
    color: #414141;
    font-size: 50px;
}

.banner .banner-text p
{
    font-size: 18px;
    color: #ffffff;
}

.banner .banner-text .btn
{
    margin-top: 15px;
    color: #EF233C;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.banner .banner-text .btn:hover
{
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

/*******************************/

/********* Pricing CSS *********/

/*******************************/

.services
{
    position: relative;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 65px;
}

.price .row
{
    padding: 0 15px;
}

.price .col-md-4
{
    padding: 0;
}

.price .price-item
{
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
    padding-bottom: 50px;
}

.price .featured-item
{
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    z-index: 1;
}

.price .price-header,
.price .price-body,
.price .price-footer
{
    position: relative;
    text-align: center;
}

.price .price-header
{
    padding: 45px 0 30px 0;
    color: #414141;
}

.price .price-item.featured-item .price-header
{
    color: #EF233C;
}

.price .price-title h2
{
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
}

.price .price-prices h2
{
    font-size: 25px;
    font-weight: 700;
    margin-left: 10px;
    background-image: linear-gradient(45deg, #4d3ae4 0%, hsl(310,74%,45%) 50%, #f33f60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price .price-prices h2 small
{
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    margin-top: 9px;
    margin-left: -12px;
}

.price .price-prices h2 span
{
    margin-left: 1px;
    font-size: 18px;
    font-weight: 400;
}

.price .price-item.featured-item h2
{
    color: #EF233C;
}

.price .price-body
{
    padding: 0 0 20px;
}

.price .price-description ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-description ul li
{
    padding: 10PX 0 10px;
    border-top: 1px dotted;
}

.price .price-item .price-action
{
    padding-bottom: 45px;
}

.price .price-item .price-action .btn
{
    color: #ffffff;
    box-shadow: inset 0 0 0 50px #414141;
    background-color: #1725e4;
}

.price .price-item .price-action .btn:hover
{
    color: #414141;
    background: transparent;
    box-shadow: inset 0 0 0 0 #414141;
    border-color: #414141;
}

.price .price-item.featured-item .price-action .btn
{
    color: #ffffff;
    background: #EF233C;
    box-shadow: inset 0 0 0 50px #EF233C;
}

.price .price-item.featured-item .price-action .btn:hover
{
    color: #EF233C;
    background: transparent;
    box-shadow: inset 0 0 0 0 #EF233C;
    border-color: #EF233C;
}

/*******************************/

/*********** Team CSS **********/

/*******************************/

.team
{
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    display: none;
}

.team .team-item
{
    position: relative;
    background: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.team .team-img
{
    position: relative;
    width: 50%;
    overflow: hidden;
}

.team .team-img img
{
    position: relative;
    width: 100%;
    transition: .5s;
    border-radius: 30px;
}

.team .team-text
{
    position: relative;
    width: 50%;
    padding: 0 30px;
}

.team .team-text h2
{
    color: #EF233C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 1s;
}

.team .team-text h4
{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 1s;
}

.team .team-text p
{
    margin-bottom: 20px;
    transition: 1s;
}

.team .team-social
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .team-social a.btn
{
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: normal;
    margin-right: 5px;
}

.team .team-item:hover
{
    box-shadow: inset 800px 0 0 0 #EF233C;
}

.team .team-item:hover .team-img img
{
    transform: scale(1.2);
}

.team .team-item:hover .team-text h2,
.team .team-item:hover .team-text h4,
.team .team-item:hover .team-text p
{
    color: #ffffff;
}

.team .team-item:hover .team-social a.btn
{
    background: #ffffff;
}

.team .team-item:hover .team-social a.btn:hover
{
    border-color: #ffffff;
}

@media (max-width: 575.98px)
{
    .team .team-text
    {
        padding: 0 15px;
    }
    .team .team-text h2
    {
        font-size: 16px;
        margin-bottom: 0;
    }
    .team .team-text h4
    {
        margin-bottom: 5px;
    }
    .team .team-text p
    {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
}

/*******************************/

/******* Testimonial CSS *******/

/*******************************/

.testimonial
{
    position: relative;
    padding: 70px 0 90px;
    margin-left: 0;
    margin-right: 0;
    background-image: url('../img/5624633.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.testimonial .container
{
}

.testimonial .testimonial-icon
{
    margin-bottom: 45px;
    text-align: center;
}

.testimonial .testimonial-icon i
{
    font-size: 60px;
    color: rgba(256, 256, 256, .5);
}

.testimonial .testimonial-item
{
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img
{
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img
{
    margin: 0 auto;
    width: 120px;
    padding: 10px;
    border: 5px dotted #ffffff;
    border-radius: 100px;
}

.testimonial .testimonial-text
{
    position: relative;
    margin-top: -70px;
    padding: 65px 35px 30px 35px;
    text-align: center;
    background: #ffffff;
    border-radius: 500px;
}

.testimonial .testimonial-item p
{
    font-size: 14px;
    font-style: italic;
    color: black;
}

.testimonial .testimonial-text h3
{
    color: #EF233C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial .testimonial-text h4
{
    color: #666666;
    font-size: 12px;
    margin-bottom: 0;
}

.testimonial .owl-dots
{
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot
{
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(256, 256, 256, .5);
}

.testimonial .owl-dot.active
{
    background: #ffffff;
}

/*******************************/

/********* Contact CSS *********/

/*******************************/

.contact
{
    position: relative;
    margin-top: 85px;
    margin-bottom: 50px;
}

.contact .container-fluid
{
    background-size: contain;
    background-color: white;
}

.contact .contact-form
{
    position: relative;
    padding: 50px 25px;
    margin-bottom: 50px;
    background-color: white;
    box-shadow: 0px 0px 25px #ccc;
    border-radius: 11px;
}

.contact .contact-form input
{
    padding: 15px 5;
    background: none;
    border-radius: 0;
    color: #8a8e93;
    border: 1px solid #8a91f1;
}

.contact .contact-form textarea
{
    height: 90px;
    padding: 15px 0 15px 5;
    background: none;
    border-radius: 0;
    color: #8a8e93;
    border: 1px solid #8a91f1;
}

.contact .contact-form .form-control::placeholder
{
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control:-ms-input-placeholder,
.contact .contact-form .form-control::-ms-input-placeholder
{
    color: #ffffff;
}

.contact .contact-form .btn
{
    margin-top: 35px;
    color: white;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.contact .contact-form .btn:hover
{
    color: #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
    background-color: #1725e4;
}

.contact .help-block ul
{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

@media (max-width: 767.98px)
{
    .contact .container-fluid
    {
        background: none;
    }
    .contact .contact-form
    {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

/*******************************/

/*********** Blog CSS **********/

/*******************************/

.blog
{
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item
{
    position: relative;
    margin-bottom: 30px;
}

.blog .blog-img
{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog .blog-img img
{
    width: 100%;
    transition: .5s;
}

.blog .blog-item:hover img
{
    transform: scale(1.1);
}

.blog .blog-text
{
    position: relative;
    padding: 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.blog .blog-text h2
{
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-text p
{
    margin-bottom: 10px;
}

.blog .blog-item a.btn
{
    margin-top: 10px;
    padding: 8px 15px;
}

.blog .blog-item a.btn i
{
    margin-left: 5px;
}

.blog .blog-meta
{
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.blog .blog-meta p
{
    margin: 0 10px 0 0;
    font-size: 13px;
}

.blog .blog-meta i
{
    color: #414141;
    margin-right: 5px;
}

.blog .blog-meta p:last-child
{
    margin: 0;
}

/*******************************/

/********* Footer CSS **********/

/*******************************/

.footer
{
    position: relative;
    background-color: #241919;
}

.footer .container-fluid
{
    padding: 30px 0 0;
}

.footer .footer-info
{
    position: relative;
    width: 100%;
    text-align: center;
}

.footer .footer-info h2
{
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.footer .footer-info h3
{
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.footer .footer-menu
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer .footer-menu p
{
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu p:last-child
{
    border: none;
}

.footer .footer-social
{
    position: relative;
    margin-top: 5px;
}

.footer .footer-social a
{
    display: inline-block;
}

.footer .footer-social a i
{
    margin-right: 15px;
    font-size: 20px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-social a:last-child i
{
    margin: 0;
}

.footer .footer-social a:hover i
{
    color: #414141;
}

.footer .copyright
{
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.footer .copyright::before
{
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, .2);
}

.footer .copyright p
{
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    padding-bottom: 10px;
}

.footer .copyright .col-md-6:last-child p
{
    text-align: right;
}

.footer .copyright p a
{
    color: #ffffff;
    font-weight: 600;
}

.footer .copyright p a:hover
{
    color: #414141;
}

@media (max-width: 575.98px)
{
    .footer .footer-info h2
    {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }
    .footer .footer-info h3
    {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .footer .footer-menu p
    {
        font-size: 14px;
        line-height: 16px;
        padding: 0 5px;
    }
}

.darklogo
{
    position: relative;
}

.lightlogo
{
    position: relative;
}

@media (max-width:575px)
{
    .service .service-icon
    {
        width: 50px;
        margin-left: 10px;
    }
    .service .service-icon i
    {
        font-size: 40px;
    }
    .service .service-text
    {
        padding-left: 10px;
        padding-right: 0px;
    }
}

.moreservices
{
    text-align: center;
}

@media (max-width:575px)
{
    .about .about-img img
    {
        width: 250px;
        height: 250px;
    }
}

#mypanel
{
    font-size: 13px;
    padding: 10px 30px;
    transition: 700ms;
}

#viewp
{
    display: inline-block;
    background-color: red;
    color: white;
    padding: 10px;
    position: relative;
    left: 27px;
}

.disuss
{
    background-color: #1725e4;
    color: white;
}

#sendMessageButtons
{
    color: white;
    background-color: #0a06f1;
    padding: 10px 35px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 2px;
}

.mylabel
{
    font-size: 13px;
    font-weight: bold;
    color: black;
    text-transform: capitalize;
}

#mypanel:hover
{
    transform: scale(1.1,1);
    background-color: #ef233c;
    color: white;
}

.servicelink
{
    color: white;
    background-color: #0a06f1;
    padding: 10px 35px;
    text-decoration: none;
    box-shadow: 0px 0px 3px 2px #ccc;
    font-size: 12px;
    border-radius: 2px;
}

.stickybottom
{
    background-color: grey;
    text-align: right;
    padding-right: 50px;
    position: relative;
    z-index: 1000;
}

.stickybottom a
{
    position: fixed;
    display: block;
    bottom: 50px;
    right: 70px;
}

.myname
{
    color: white;
    font-weight: normal;
    font-size: 18px;
}

@media (max-width:768px)
{
    .myname
    {
        font-size: 13px;
    }
}

.subheadings
{
    position: relative;
    font-size: 30px;
    display: block;
    color: #333;
    margin: 15px auto;
    font-family: Pacifico;
    font-weight: normal;
}

.service1
{
    box-shadow: 0px 0px 20px grey;
    color: white;
    border-radius: 10px 10px 10px 10px;
    padding-bottom: 50px;
    margin: 51px 10px 50px;
}

.service1 h2
{
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}

.service1 i
{
    font-weight: bold;
    color: white;
}

@media (max-width:765px)
{
    .service1 h2
    {
        font-size: 23px;
    }
}

.workprocess
{
    position: relative;
    padding: 5px 0 85px;
    margin-bottom: 0px;
    border-bottom: 1px solid #ccc;
}

.experience .timeline .timeline-text p
{
    position: relative;
}

.whyhire
{
    text-align: center;
    padding: 90px 10px 80px;
    background-color: #0a06f1;
}

.whyhire h2
{
    font-weight: bold;
    font-size: 40px;
    color: white;
}

.beforebottomh
{
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 20px;
}

.rightbeforebottom
{
    color: white;
    padding-right: 20px;
}

.rightbeforebottom h3
{
    font-weight: bold;
    font-size: 30px;
    margin-top: 10px;
}

.rgithbeforebottom p
{
    margin-bottom: 20px;
}

.rightbeforebottom p
{
    margin-top: 10px;
    color: #333;
}

.calltoaction
{
    position: relative;
}

@media (max-width:768px)
{
    .calltoaction
    {
        margin-left: 10px;
    }
}

.serviceintrodiv
{
    margin: 40px 30px 30px;
}

.introserviceh
{
    text-align: center;
    padding-top: 50px;
    font-weight: bold;
    font-size: 45px;
    background-image: linear-gradient(45deg, #4d3ae4 0%, hsl(310,74%,45%) 50%, #f33f60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.explainservices
{
    padding-bottom: 20px;
    padding-top: 50px;
}

.explainservices h3
{
    font-weight: bold;
}

@media (max-width:767px)
{
    .explainservices h3
    {
        font-size: 20px;
    }
    .whyhire h2
    {
        font-size: 23px;
    }
}

@media (max-width:575px)
{
    .beforebottomh
    {
        font-size: 26px;
        margin-left: 0px;
    }
}

.hero2
{
    background: linear-gradient(rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.95)), url(../img/ecommerce-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ecommerceintro
{
    font-size: 20px;
    margin-left: 30px;
    margin-top: 50px;
    color: #333;
    background-color: white;
    padding: 20px;
    line-height: 30px;
    border-radius: 0px 25px;
    border: 3px dotted #4d3ae4;
}

.serviceintrodiv p
{
    font-size: 16px;
    color: #333;
}

.hero3
{
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.75)), url(../img/banner3.jpg);
}

.lastseo
{
}

.hero4
{
    background: linear-gradient(rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.95)), url(../img/wordpress.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.whyhirep
{
    font-size: 13px;
}

.hero5
{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.95)), url(../img/graphic-design.jpg);
}

.herocontact
{
    background: linear-gradient(rgba(0, 0, 255, 0.75), rgba(0, 0, 255, 0.75)), url(../img/freelancer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.circlecontact
{
    display: block;
    border-radius: 1000px;
    width: 35px;
    height: 35px;
    padding-left: 2px;
    padding-top: 7px;
}

.circlecontact i
{
    color: white;
}

#getintouch h3
{
    margin-bottom: 30px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d1249a;
}

#getintouch
{
    position: relative;
    padding-top: 0px;
    padding-left: 40px;
    box-shadow: none;
    border-radius: 0px;
}

.getintouch p
{
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.pushcontact
{
    position: relative;
    display: inline-block;
    left: 30px;
    margin-top: 10px;
    top: 20px;
}

.pushcontactleft
{
    display: inline-block;
    position: relative;
    top: 10px;
    background-color: #0a06f1;
}

@media (max-width:7675px)
{
    .pushcontactleft
    {
        text-align: center;
    }
}

@media (max-width:767px)
{
    .pushcontact
    {
        left: 20px;
    }
    #getintouch h3
    {
        text-align: center;
    }
}

.contactfields
{
}

.policy-case
{
    position: relative;
}

.policy-case ul
{
    font-style: normal;
    font-size: 15px;
}

.bottomlinks
{
    border-bottom: 1px solid #ccc;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ebf3ff;
}

.bottomdiv1
{
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.bottomdiv1 h3
{
    font-weight: bold;
    font-size: 20px;
}

.bottomdiv1 p
{
    font-size: 13px;
    color: #333;
}

.bottomdiv1 p a
{
    color: #0056d2;
    text-decoration: none;
}

.bottomdiv1 li a
{
    font-size: 13px;
}

.bottomdiv1 li a:hover
{
    color: #ef233c;
}

.quickcolor
{
    color: #ef233c;
}

@media (max-width:767px)
{
    .experience .timeline .timeline-text h2
    {
        font-size: 15px;
    }
}

.service1 a
{
    color: white;
    background-color: #0a06f1;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 6px;
    transition: 700ms;
}

@media (max-width:767px)
{
    .about .about-text p
    {
        font-size: 16px;
        line-height: 25px;
        color: #333;
        text-align: center;
    }
}

.whyhire p
{
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
    color: white;
}

@media (max-width:767px)
{
    .whyhire p
    {
        font-size: 16px;
        padding-left: 0px;
        padding-right: 0px;
        line-height: 25px;
    }
    .rightbeforebottom p
    {
        font-size: 17px;
        font-weight: normal;
    }
    .section-header p
    {
        font-size: 17px;
    }
    .subheadings
    {
        width: 100%;
        font-size: 17px;
        line-height: 25px;
    }
}

.contactbadge
{
    color: #ef233c;
}

.policy-case h3
{
    font-size: 20px;
}

#callicon
{
    top: 16px;
}

.contact .contact-form select
{
    position: relative;
    padding: 15px 5;
    background: none;
    border-radius: 0;
    color: #8a8e93;
    border: 1px solid #8a91f1;
}

.freelancetxt
{
    font-size: 45px;
    letter-spacing: 11px;
}

@media (max-width:385px)
{
    .freelancetxt
    {
        font-size: 30px;
    }
}

.whitebtn
{
    color: white;
    border: 2px solid white;
    padding: 12px 23px;
    border-radius: 6px;
}

.whitebtn:hover
{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.74);
}

.linkmargin
{
    margin-left: 20px;
}

.herolinkcase
{
    margin-top: 40px;
    margin-bottom: 30px;
    display: block;
}

@media (max-width:769px)
{
    .whitebtn
    {
        font-size: 15px;
        font-weight: 500;
        padding: 15px 20px;
        display: block;
        width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
    .linkmargin
    {
        margin-left: auto;
        margin-top: 20px;
    }
}

#mylinks
{
    position: relative;
}

#mylinks:hover
{
    border-bottom: 1px solid white;
}

p
{
}

.service1 img
{
    border-radius: 10px 10px 0px 0px;
}

.service1 p
{
    color: #333;
    margin-bottom: 30px;
    font-size: 16px;
}

.service1 a:hover
{
    color: rgba(255, 255, 255, 0.65);
    box-shadow: none;
    transform: scale(1.1,1.1);
}

@media (max-width:767px)
{
    .service .service-item
    {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .service
    {
        padding-top: 0px;
        padding-bottom: 60px;
    }
}

.whatyouget
{
    margin-bottom: 50px;
}

@media (max-width:767px)
{
    .whatyouget
    {
        margin-bottom: 0px;
    }
}

@media (max-width:575px)
{
    .section-header
    {
        margin-bottom: 0px;
        margin-top: 20px;
    }
}

.portfoliolinkcase
{
    margin-top: 20px;
    text-align: right;
    padding-right: 20px;
}

.portfoliolinkcase i
{
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 40px;
    min-width: 35px;
    border-radius: 1000px;
    padding-right: 7px;
    box-shadow: 0px 0px 1px #ccc;
    padding-top: 2px;
    padding-bottom: 2px;
}

.portfolio-wrap a
{
    position: absolute;
    top: 0px;
    display: block;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.servicelink:hover
{
    color: white;
}

@media (max-width:575px)
{
    .testimonial
    {
        padding-bottom: 40px;
    }
}

#ctaheading
{
    font-size: 23px;
    font-variant: small-caps;
    font-weight: bold;
    padding-left: 20px;
    padding-top: 13px;
    color: white;
    padding-right: 20px;
}

.ctabg
{
    background-image: url('../img/web-development.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    background-color: #0a06f1;
    padding-bottom: 0px;
}

.ctabg p
{
    color: white;
    padding-left: 0px;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.ctaoverlay
{
    background-color: rgba(10, 6, 241, 0.86);
    border-radius: 10px;
    padding: 65px 20px 60px;
}

#ctalink
{
    background-color: white;
    border: 1px solid white;
    box-shadow: none;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    display: block;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes pulse{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.firstq
{
    text-align: center;
    font-family: Pacifico;
    font-size: 45px;
    padding-left: 50px;
    padding-right: 50px;
    line-height: 70px;
    margin-top: 80px;
    color: #0908e3;
}

@media (max-width:575px)
{
    .firstq
    {
        font-size: 27px;
        line-height: 40px;
        padding-right: 0px;
        padding-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

.viewmoreport
{
    font-weight: bold;
    font-style: italic;
    font-size: 15px;
    color: #0a06f1;
    text-decoration: underline;
}

@media (max-width:575px)
{
    .ecommerceintro
    {
        font-size: 15px;
        line-height: 25px;
        margin-top: 0px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

.worktogether
{
    color: #1725e4;
    text-decoration: underline;
}

.brandcase
{
    padding-top: 90px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

#secondwhitebtn
{
    background-color: white;
    color: #0a06f1;
}

.carryservice
{
    padding-left: 20px;
    padding-right: 20px;
}

.whyhire a
{
    position: relative;
    color: #0a06f1;
    padding: 15px 45px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 6px;
    transition: 700ms;
    background-color: white;
}

@media (max-width:575px)
{
    .services
    {
        margin-top: 0px;
        padding-top: 0px;
    }
}

.contactcase
{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:766.98px)
{
    .contactcase
    {
        width: 100%;
    }
}

/* WhatsApp Floating Button */

.whatsapp-float
{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover
{
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

.whatsapp-float i
{
    margin: 0;
}

@keyframes pulse-whatsapp{
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px)
{
    .whatsapp-float
    {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

.whitelogo
{
    position: relative;
}

.bluelogo
{
    position: relative;
}

#secondwhitebtn:hover
{
    background-color: transparent;
    color: white;
}

null
{
    margin-top: 30px;
    padding-left: 10px;
}

.workdescription
{
    margin-top: 50px;
    padding-left: 20px;
}

.workdescription h5
{
    color: #0a06f1;
    font-variant: small-caps;
}

/******* Testimonial CSS *******/

/*******************************/

.testimonial
{
    position: relative;
    padding: 70px 0 90px;
    margin-left: 0;
    margin-right: 0;
    background-image: url('../img/5624633.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.testimonial .container
{
}

.testimonial .testimonial-icon
{
    margin-bottom: 45px;
    text-align: center;
}

.testimonial .testimonial-icon i
{
    font-size: 60px;
    color: rgba(256, 256, 256, .5);
}

.testimonial .testimonial-item
{
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img
{
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img
{
    margin: 0 auto;
    width: 120px;
    padding: 10px;
    border: 5px dotted #ffffff;
    border-radius: 100px;
}

.testimonial .testimonial-text
{
    position: relative;
    margin-top: -70px;
    padding: 65px 35px 30px 35px;
    text-align: center;
    background: #ffffff;
    border-radius: 500px;
}

.testimonial .testimonial-item p
{
    font-size: 14px;
    font-style: italic;
    color: black;
}

.testimonial .testimonial-text h3
{
    color: #EF233C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial .testimonial-text h4
{
    color: #666666;
    font-size: 12px;
    margin-bottom: 0;
}

.testimonial .owl-dots
{
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot
{
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(256, 256, 256, .5);
}

.testimonial .owl-dot.active
{
    background: #ffffff;
}

.testimonialbox
{
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #0056d2;
    background-color: white;
}

.testimonialbox i
{
    color: #0056d2;
    font-size: 15px;
}

.testimonialhead
{
    position: relative;
    text-align: center;
}

.testimonialbox h5
{
    font-size: 14px;
}

.testimonialbig
{
    padding-top: 60px;
}

@media (max-width:574.98px)
{
    .workdescription h5
    {
        font-size: 15px;
    }
}

.workdescription h6
{
    color: #000;
    font-size: 12px;
}

.socials
{
    text-align: center;
}

.socials a
{
    margin-left: 10px;
    margin-right: 10px;
}

.testimonialbig h1
{
    font-size: 30px;
}

@media (max-width:574.98px)
{
    .testimonialbig h1
    {
        font-size: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

