/*font*/
@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica-webfont.woff2') format('woff2'),
        url('../fonts/helvetica-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'helvetica';
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.bg-home {
    background: #eb2d42;
    padding-top: 10px
}

img {
    max-width: 100%;
    max-height: 100%
}

button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    outline: 0 !important
}

a {
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    color: inherit;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: 0;
}

a:focus,
a:hover {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
}

p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%
}

li {
    list-style: none;
}

*::-moz-selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

::-moz-selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

::selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #000;
    font-size: 16px;
    opacity: 1;
}

/*header stat*/
/*menu header*/
.menu_area {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99999;
    top: 0;
    background: #cc2539 0% 0% no-repeat padding-box;
    right: 0;
    bottom: 0;
    padding: 40px 22px 0 22px;
    transition: 0.3s;
    transform: translateX(100%);
}

.menu_area.open-nav {
    transform: translateX(0%);
}

.open_menu,
.close_icon {
    background: none !important;
    border: none;
    display: none;
}

.open_menu i {
    font-size: 30px;
    color: #830b0d;
}

.close_icon i {
    font-size: 38px;
    color: #fff;
}

/*end*/
.header-top {
    background: #1a2b6d;
    padding: 7px 0;
}

.right-top-header ul {
    line-height: normal;

}

a.navbar-brand img {
    height: 60px;
}

.sticky-header-add.fixed-header .header-top {
    display: none;
}

.fixed-header {
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #fff;
    width: 100%;
    animation: smoothScroll 1s forwards;
}

.menu-area .navbar-nav .nav-item .nav-link:hover {
    color: #f40808;
}

/*.sticky-header-add.fixed-header .header-top {
    background: #44358D;
}
.sticky-header-add.fixed-header .header-menu-section {
    background: #2E2364;
}*/
.menu-area .navbar .navbar-nav .active>.nav-link,
.menu-area .navbar .navbar-nav .nav-link.active,
.menu-area .navbar .navbar-nav .nav-link.show,
.menu-area .navbar .navbar-nav .show>.nav-link {
    color: #FF5858;
}

.menu-area .navbar-nav .nav-item .nav-link {
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.header-menu-section {
    padding: 0px 0;
    /*box-shadow: 0 2px 11px rgb(25, 25, 3, 0.3)*/
}

.navbar-nav li:first-child {
    margin-left: 0
}

.navbar-nav li:last-child {
    margin-right: 0
}

.navbar {
    padding: 0;
    padding-bottom: 0
}

/*---Standar Hamburger Menu (3 separate elements)---*/
.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    height: 2px;
    width: 22px;
    border-radius: 1px;
    display: block;
    background-color: #B6B6B6;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-nav {
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

ul.navbar-nav li {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #000;
    line-height: 17px
}

ul.navbar-nav li:last-child {
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0;
}

ul.navbar-nav li a {
    padding: 0;
    color: #535353 !important;
    font-size: 16px;
    font-weight: 500;
}

ul.navbar-nav.ml-auto li a span {
    padding: 5px 0px;
}

/*ul.navbar-nav.ml-auto li a span:hover {
    border-bottom: 2px solid #3c2ceb;
    transition: 0.6s all;
    padding: 5px 0;
}*/
ul.navbar-nav.ml-auto li a span:hover:before {
    /* border-bottom: 2px solid #3c2ceb; */
    transition: 0.6s all;
    /* padding: 5px 0; */
    background-image: url(../images/hover-line.png);
    height: 5px;
    transition: 0.6s all;
    content: '';
    position: absolute;
    border: 0;
    width: 100%;
    left: 0;
    bottom: -5px;
    z-index: 9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

ul.navbar-nav.ml-auto li a span {
    position: relative;
}

header.header-area {
    -webkit-transition: all 0.5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all 0.5s ease;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*end header*/
/*banner start*/
.banner {
    /*background-image: url(../images/banner-shape.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;*/
    height: 100%;
    width: 100%;
}

.header-banner-wrapp {
    background-color: #fff;
    padding: 40px 0;
    /*margin-top: 10px*/
}

/*banner end*/
.color-yellow {
    color: #e3e317
}

.extra-red {
    color: #830b0d
}

ul.navbar-nav li a:hover span {
    color: #eb2d42;
}

.disclaimer-section {
    padding: 70px 0;
    width: 85%;
    margin: 0 auto;
}

.feture-section {
    margin: 0 auto;
    width: 80%;
}

.img-wrapp-disclaimer {
    padding: 120px 0;
}

.right-content-disclaimer {
    background: #cc2539;
    padding: 30px 40px;
    margin-left: 10px;
}

.blank-bg {
    display: block;
    width: 100%;
    /*background: #ee5465;*/
    height: 60px;
    margin-top: -3px;
    text-align: center;
}
.blank-bg audio {
    margin: 10px auto;
    height: 40px;
	width: 100%;
}

.right-content-disclaimer p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.item-contact.contact-left h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #777;
}

.item-contact.contact-left p:last-child {
    margin-top: 10px;
}

.getin-touch-heading.text-center h3 {
    font-size: 2rem;
    color: #777;
}

.item-contact.contact-left address {
    margin-bottom: 0;
}

.heading-disclaimer h2 {
    font-size: 2.5rem;
    letter-spacing: 8.7px;
   /* font-weight: 600;*/
    color: #fff;
    margin-bottom: 2rem;
}

.sub-heading {
    font-size: 3rem;
    line-height: 4rem;
    font-weight: 600;
}

.big-sub {
    font-size: 3.2rem;
    line-height: 4.5rem;
    font-weight: 600;
}

.img-wrapp-disclaimer img {
    height: 70px;
}

.extra-nimbu {
    font-size: 22px;
    line-height: 1.8rem;
    color: #fff
}

.people-say-section {
    margin: 70px 0;
}

.icon-wrapp {
    text-align: center;
    display: block;
    margin: 2rem 0;
}

.icon-wrapp i {
    border-radius: 50%;
    border: 1px solid #fff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 2rem
}

.feture-section .col-lg-3.col-sm-6.col-md-6  {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    margin: 20px 0;
}
/*.future-items.text-center {
    border-left: 1px solid #fff;
}*/

/*.feture-section .row .col-sm-6.col-md-6.col-lg-3:nth-child(4n + 4) .future-items {
    border-right: 1px solid #fff
}
*/
.d-flex.ad-wrapp-main .advertising-left {
    margin-right: 3px;
}

.d-flex.ad-wrapp-main>div {
    background: #cc2539;
    padding: 100px 30px
}

.d-flex.ad-wrapp-main .advertising-right {
    margin-left: 3px;
}

/*.d-flex.ad-wrapp-main h3.sub-heading.people-say {
    min-height: 150px;
}*/

.d-flex.ad-wrapp-main div p {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin: 0 auto;
    margin-top: 2rem;
    width: 80%;
    text-align: center;
}

.ad-logo-wrapp img {
    height: 50px;
    position: relative;
    top: -18px;
}

.ad-logo-wrapp {
    margin-top: 80px;
}

.footer-section.bg-white {
    padding: 70px 0;
}

.d-flex.align-items-center.contact-details-wrapp.w-100.justify-content-between {
    border: 2px solid #777;
    padding: 20px 50px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.d-flex.align-items-center.contact-details-wrapp.w-100.justify-content-between div {
    flex: 1;
}

.item-contact.contact-right {
    border-left: 1px solid #333;
    padding-left: 100px;
}

.copy-right.text-center {
    margin-top: 20px;
}

.footer-para-width {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.footer-para-width p {
    line-height: 20px
}

.single_gallery img {
    width: 100%;
}

.single_gallery {
    position: relative;
}

.future-items.text-center span.extra-red {
    color: #830b0d;
    display: block;
}

.right-content-disclaimer,
.left-img-disclaimer img {
    height: 500px;
}

/*
  Theme Name: BizPage
  Theme URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General

/* Portfolio Section
--------------------------------*/

.my_menu .navbar-default {
    background: none;
    border: none;
}

.my_menu .navbar-nav .active a,
.my_menu .navbar-nav .active a:hover {
    background-color: #F26522 !important;
    color: #fff !important;
}

.my_menu .navbar-nav li a:hover {
    background-color: #F26522 !important;
    color: #000 !important;
}

@media(max-width:1200px) {
    .my_menu .pull-right {
        float: none !important;
    }
}


#portfolio {
    padding: 60px 0;
}

#portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
}

#portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
    background: #18d26e;
    color: #fff;
}

#portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

#portfolio .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
    position: relative;
    /*height: 360px;*/
    overflow: hidden;
    width: 16%;
    flex-grow: 1;
    border: 1px solid #000;
}

.row.portfolio-container.no-gutters {
    background: #dcddde;
    padding: 70px;
    margin: 0 auto;
    width: 95%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#portfolio .portfolio-item figure {
    background: #000;
    overflow: hidden;
    height: auto;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

#portfolio .portfolio-item figure:hover img {
    opacity: 0.4;
    transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
    background: #eb2d42;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
    color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    /*left: calc(50% - 44px);*/
    left: 40%
}

#portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    /*right: calc(50% - 44px);*/
    left: 40%
}

#portfolio .portfolio-item .portfolio-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
    color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
    color: #18d26e;
}

#portfolio .portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

#portfolio .portfolio-item figure img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.mobile-show {
    display: none;
}

.ad-logo-wrapp span.color-yellow {
    font-size: 26px;
}

.news-img .portfolio-item.filter-app {
    width: 100% !important;
    border: none !important;
}

.news-img img.img-fluid {
    width: 100% !important;
    height: 100% !important;
    display: block;
}



/* Book an appointment area start */
.header-area-profile {
    width: 100%;
    padding: 10px 0;
    background: #be4252;
}

.logo-area img {
    width: 50px;
}

.appointment-area {
    width: 100%;
    padding: 60px 0;
    height: 400px;
}

.left-appointment h2 {
    font-size: 60px;
    font-weight: 700;
    color: #be4252;
    word-spacing: 2px;
    line-height: 48px;
}

.select-cons {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.select-cons h4 {
    color: #8a8c8e;
}

ul.icon-appointment {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

ul.icon-appointment li {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 1px solid #767676;
    margin-right: 30px;
    border-radius: 50%;
    text-align: center;
    transition: 0.6s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

ul.icon-appointment li:hover {
    border-color: #be4252;
    transition: 0.6s;
}

ul.icon-appointment li:hover i {
    color: #be4252;
    transition: 0.6s;
}

ul.icon-appointment li i {
    font-size: 40px;
    color: #8a8c8e;
    margin-top: 30px;
}

.right-appointment h3 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
    word-spacing: 4px;
    color: #444;
}

.right-appointment p {
    font-size: 18px;
    color: #8a8c8e;
    line-height: 24px;
}


.date-area {
    background: url('../images/book-an-appointment-bg.png');
    background-size: cover;
    width: 100%;
    padding: 20px 0;
    background-position: 100% 0;
}

.date-area h4 {
    font-size: 24px;
    color: #656565;
    margin-bottom: 20px;
}

.form-group.form-dt input.form-control {
    background-image: linear-gradient(#d0d0d0, #f5f3f3);
    border: 1px solid #b3b3b3;
    height: 45px;
    position: relative;
    outline: none;
}

.form-group.form-dt input.form-control::before {
    height: 34px;
    background: #9f9f9f;
    width: 1px;
    content: "";
    right: 50px;
    position: absolute;
}

.select-timetable {
    margin-top: 50px;
}


ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

ul.tabs li {
    padding: 8px 50px;
    cursor: pointer;
    background: #ffffff;
    color: #222;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    display: inline-block;
    margin: 0 20px 12px 0;
    width: 14%;
    text-align: center;
    border: 2px solid #ffffff;
}

ul.tabs li.current {
    background: #ffffff;
    color: #be4252;
    border: 2px solid #be4252;
}

.proceed-area {
    width: 100%;
    background: #b1b4b6;
    padding: 30px 0;
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
}

.proceed-area a:hover {
    color: #be4252;
}

/* Book an appointment area end */
/* Share your details area start here */
.share-details-area {
    padding: 60px 0;
}

form.details-share {
    width: 70%;
    margin-top: 30px;
}

form.details-share input.form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    font-size: 1rem !important;
    display: block;
    padding: 0;
}

.select-gender h4 {
    font-size: 22px;
    color: #656565;
    margin-bottom: 20px;
}

.select-gender label {
    font-size: 20px;
    color: #848484;
    margin-right: 20px;
}

.select-gender input {
    width: 23px;
    height: 22px;
    position: relative;
    top: 4px;
}

.select-date-of-birth {
    margin-top: 15px;
}

.select-date-of-birth label,
.select-date-of-birth span {
    font-size: 22px;
    color: #656565;
    margin-bottom: 20px;
}

/*.Somkers-area.select-gender {
    margin-top: 15px;
}*/
/* Share your details area end here */


.meeting-purpose {
    background: url('../images/book-an-appointment-bg.png');
    background-size: cover;
    width: 100%;
    padding: 20px 0;
    background-position: 60% 0;
}

.left-meeting h4 {
    font-size: 24px;
    color: #656565;
    margin-bottom: 20px;
}

.meeting-cont label {
    font-size: 20px;
    color: #848484;
    margin-right: 20px;
}

.meeting-cont input[type="radio"] {
    width: 23px;
    height: 22px;
    position: relative;
    top: 4px;
}

.meeting-cont input.form-control {
    width: 100%;
    /*min-height: 146px;*/
    padding: 20px 26px 100px;
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
    outline: none;
}



.thanking-area {
    background: #be4252;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.thank-cont {
    width: 100%;
}

.thank-cont h3 {
    font-size: 90px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 100%;
    word-spacing: 20px;
    letter-spacing: 2px;
}

.thank-cont p {
    font-size: 20px;
    color: #c0c0c0;
    font-weight: 300;
}

.know-more-link {
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #c0c0c0;
    font-weight: 300;
    position: relative;
}

.know-more-link p {
    position: absolute;
    top: 130px;
    text-align: center;
    width: 100%;
}

.know-more-link a {
    color: #2196F3;
}



/* About Profile Page start here */
.col-lg-6.devide-logo {
    display: flex;
    align-items: center;
}

.financial-plan-area {
    width: 100%;
    background: #dcdddf;
    padding: 80px 0;
}

.finance-head {
    text-align: center;
    margin-bottom: 50px;
}

.finance-head h3 {
    font-size: 36px;
    font-weight: 600;
    color: #828282;
}

.first-finance {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.first-finance a {
    font-size: 16px;
    font-weight: 600;
    color: #888888;
}
.first-finance.hvr-icon-buzz-out {
    transition-duration: 0.3s ;
}
.first-finance.hvr-icon-buzz-out:hover {
    transition-property: border-color;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
    transform: scale(1.15);
    box-shadow: 0px 0px 6px 1px #be4252;
}

.first-finance img {
    display: block;
    margin: 20px auto;
}
.financial-plan-area .col {
    border-right: 1px solid #be4252;
}
.financial-plan-area .col:last-child {
    border-right: 0;
}
.contact-no {
    padding-left: 35px;
    border-left: 1px solid #fff;
}

.contact-no p {
    color: #fff;
    font-size: 16px;
}

.col-lg-6.devide-logo .logo-area {
    padding-right: 30px;
}

.social-icons {
    float: right;
    margin-top: 2px;
}

.social-icons li {
    display: inline-block;
    color: #be4252;
    background: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    line-height: 45px;
}

.social-icons i {
    font-size: 20px;
}

.internationally-area {
    padding: 80px 0 40px;
}

.left-inter-cont h3 {
    font-size: 50px;
    font-weight: 700;
    color: #be4252;
}

.left-inter-cont h4 {
    font-weight: 700;
    color: #8f8f8f;
    font-size: 26px;
    margin: 30px 0;
}

.left-inter-cont a {
    font-size: 20px;
    color: #5c00ff;
    font-weight: 600;
}

.left-inter-cont i {
    font-size: 26px;
    margin-left: 10px;
}

.counting-area {
    background: #b1b4b6;
    padding: 60px 0;
    width: 100%;
}

.count-one {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 30px;
}

.count-one img {
    width: 22%;
}

.count-ing {
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-ing p {
    font-size: 60px;
    font-weight: 600;
    color: #be4252;
}

.count-one h5 {
    font-size: 55px;
    font-weight: 700;
    color: #be4252;
    margin: 10px 0;
}

.count-ing.first-four h5.count {
    width: 45%;
}

.count-one span {
    font-size: 20px;
    font-weight: 600;
}

.learn-more-btn {
    background: #c9c9c9;
    margin-top: 26px;
    padding: 15px;
}

.learn-more-btn a {
    color: #5c00ff;
    font-size: 20px;
    font-weight: 500;
}

.learn-more-btn i {
    font-size: 26px;
    margin-left: 6px;
}

.businessman-area {
    padding: 80px 0;
}

.inner-business h3 {
    font-size: 30px;
    font-weight: 700;
    color: #be4252;
    margin-top: 20px;
    margin-bottom: 0;
}

.inner-business span {
    font-size: 15px;
    color: dimgrey;
}

.inner-business p {
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

section.profile-gallery-bg {
    background: #dcddde;
    padding: 100px 0 !important;
}

.row.portfolio-container.profile-gallery.no-gutters {
    padding: 0;
    width: 100%;
}


.about-head-more {
    text-align: center;
    width: 100%;
    margin: 40px 0 15px;
}

.about-head-more h3 {
    font-size: 60px;
    color: #be4252;
    font-weight: 600;
}

.ab-slider-back {
    background: #000;
    width: 100%;
    padding: 30px 0;
}

.slider-gap button.owl-prev span {
    width: 50px;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    position: absolute;
    top: 80px;
    left: -70px;
}

.slider-gap-2nd {}

.col-lg-4.col-md-12.get-year h5 {
    font-size: 30px;
    color: #fff;
    padding: 24px;
    font-weight: 600;
    line-height: 44px;
}

.slider-gap-2nd button.owl-prev span {
    width: 50px;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    position: absolute;
    top: 60px;
    left: -70px;
}

.slider-gap-3rd button.owl-prev span {
    width: 50px;
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    position: absolute;
    top: 40px;
    left: -70px;
}
















.news-achivement-area {
    width: 100%;
    padding: 80px 0;
}

.news-img {
    width: 100%;
    padding: 0 40px 40px;
    background: #dcddde;
}

.news-img h3 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    padding: 30px 0 10px;
}

.news-business h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 0;
}

.news-business span {
    font-size: 15px;
    display: block;
}

.news-business a {
    font-size: 18px;
    color: #5c00ff;
    font-weight: 600;
    margin-top: 30px;
    display: block;
}

.privacy-area {
    padding: 80px 0;
    background: #000;
}

.left-privacy {
    color: #fff;
    text-align: left;
}

.left-privacy h3 {
    font-size: 60px;
    font-weight: 600;
    font-family: sans-serif;
}

.left-privacy a {
    font-size: 18px;
    color: #5c00ff;
    font-weight: 600;
    display: block;
}

.right-privacy p {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 11px;
}

.contact-form-area {
    width: 100%;
    display: block;
    background: #fff;
}

.bg-color-contact {
    background: #be4252;
    text-align: center;
    padding: 60px;
    border: 10px solid #fff;
}

.left-contact-cont p {
    color: #fff;
    font-size: 20px;
}

.thats-me-cont h3 {
    font-size: 55px;
    font-weight: 600;
    margin-top: 60px;
    color: #fff;
}

.thats-me-cont a {
    font-size: 18px;
    color: #5c00ff;
    font-weight: 600;
    display: block;
}

form.contct-form-all input.form-control {
    height: 55px;
    border-radius: 0;
}

.right-contact-form h3 {
    font-size: 55px;
    color: #ffff;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 20px;
}

form.contct-form-all textarea {
    height: 150px;
    width: 100%;
    padding: 10px;
    color: #707070;
}

form.contct-form-all button {
    padding: 8px 30px;
    outline: none;
    border: 1px solid #f2f2f2;
}

.left-contact-cont {
    margin-top: 25px;
}

.footer-area {
    background: #be4252;
    color: #fff;
}
.copywright-left p {
    margin-top: 25px;
}
.right-powered {
    display: flex;
    justify-content: flex-end;
    width: 65%;
    background: #fff;
    height: 100%;
    float: right;
}
.right-powered p {
    color: #0073bb;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 20px;
}
.right-powered img {
    width: 58%;
    margin-left: 10px;
    height: 56px;
    margin-top: 10px;
}

.fixed-icon-area {
    position: fixed;
    z-index: 9999;
    background: #be4252;
    top: 40%;
    right: 0;
    width: 5%;
    text-align: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.fixed-icon-area li {
    padding: 16px;
    border-bottom: 1px solid #fff;
}

.fixed-icon-area li i {
    font-size: 24px;
    color: #fff;
}

.fixed-icon-area li:last-child {
    border: none;
}

/* About Profile Page end here */

/* About us page */
.banner-ab img {
    width: 100%;
}

.content-ab-area {
    padding-bottom: 60px;
}

.about-banner-area {
    padding: 40px 0;
}

.ab-left-content {
    margin-top: 15px;
}

.ab-left-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ab-left-content span {
    color: #be4252;
}

.ab-left-content p {
    font-size: 16px;
    font-weight: 500;
    color: #828282;
    line-height: 28px;
}

.ab-left-content li {
    list-style-type: initial;
    font-size: 16px;
    font-weight: 500;
    color: #828282;
    line-height: 28px;
    margin-bottom: 5px;
}

.ab-left-content ul {
    margin-left: 20px;
    margin-top: 8px;
}

.ab-left-content a {
    color: #0027ff;
}

.body-icon {
    text-align: center;
}

.body-icon img {
    width: 40px;
    transform: rotate(180deg);
    margin: 20px 0 0;
}


/* Gallery page start here */
.gallery-show-area {
    padding: 30px 0 60px;
}

.image-gall img {
    width: 100%;
}

.overlap-text img {
    width: 32px;
}

.overlap-text {
    text-align: center;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #be4252;
}
div#gallery button.owl-next {
    position: absolute;
    top: 45%;
    right: 4%;
    color: #fff;
    width: 30px;
    height: 30px;
}

div#gallery button.owl-prev {
    position: absolute;
    top: 45%;
    left: 4%;
    color: #fff;
    width: 30px;
    height: 30px;
}

div#gallery button.owl-next span,
div#gallery button.owl-prev span {
    font-size: 70px;
    text-align: center;
    line-height: 18px;
}

.overlap-text {
    text-align: right;
    position: absolute;
    bottom: 20px;
    right: 5%;
    color: #fff;
}

.overlap-text h4 {
    font-size: 40px;
    font-weight: 600;
}




/* Gallery page end here */




/*blog section*/
.row.blog-item-wrapp {
    padding: 50px 0;
    border-bottom: 1px solid #333;
}

.blog-shape {
    padding: 50px 0
}

.blog-shape img {
    height: 50px;
    transform: rotate(180deg);
}

.right-blog-dtls p {
    font-size: 1.6rem;
    color: #000;
    font-family: 'helvetica';
    letter-spacing: 0.02em;
    text-align: justify;
}

.row.blog-item-wrapp .col-sm-12.col-md-4.col-lg-4 {
    padding-left: 0;
}

.left-blog-dtls h3 {
    font-size: 30px;
    letter-spacing: 0.04em;
    font-family: 'helvetica';
    margin-top: 15px;
    margin-bottom: 0;
    color: #be4252;
    font-weight: 600
}

.left-blog-dtls h4 {
    font-size: 26px;
    font-family: 'helvetica';
}

.left-blog-dtls img {
    min-height: 370px;
    max-height: 500px;
}

/*end*/
/*achievement */
.achievements-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #be4252;
    margin: 80px 0 50px;
    font-family: 'helvetica';
    letter-spacing: 4px;
}

ul.achievements-list.list-inline li {
    margin-right: 3rem;
    border-right: 3px solid #000;
    line-height: 1;
    padding-right: 3rem;
}

ul.achievements-list.list-inline li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0
}

ul.achievements-list.list-inline li a {
    font-size: 26px;
    font-weight: 700;
    font-family: 'helvetica';
}

ul.achievements-list.list-inline {
    min-height: 80vh;
}

/*end*/
/*media*/
.media-item-wrapp h3 {
    font-size: 19px;
    font-weight: 600;
    text-align: left;
    font-family: 'helvetica';
}

.achievements-section.media-area h1 {
    margin: 50px 0;
}

.date-text {
    font-size: 12px;
    text-align: left;
    margin: 8px 0;
    color: #000;
    font-family: 'helvetica';
}

.media-link {
    font-size: 10px;
    color: #1b33ff;
    font-family: 'helvetica';
    font-weight: 600;
    word-break: break-all;
}

.media-link a {
    color: #1b33ff;
    font-size: 10px;
}

.media-link strong {
    color: #000;
}

.media-item-wrapp {
    margin-bottom: 50px;
}

/*end*/
.privacy-section {
    background: #ededee;
    padding: 70px 0;
}

.client-speak-section {
    padding-top: 50px;
}

.privacy-section h1, .client-speak-section h1 {
    color: #8a8c8e;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'helvetica';
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.client-speak-section h1 {
    color: #be4252
}

.privacy-section p,
.client-speak-text {
    color: #676469;
    font-size: 24px;
    font-family: 'helvetica';
    line-height: 34px;
    text-align: justify;
}

p.client-speak-text strong {
    color: #525252;
}

.client-speak-text {
    color: #52535e;
    margin-bottom: 30px
}

.client-speak-text:last-child {
    margin-bottom: 0
}

li.border-lst {
    background: transparent;
    border: none !important;
    color: #fff;
    height: 40px;
    width: 1px;
    margin: 0;
}
li.line-brdr {
    background: #fff;
    height: 30px;
    width: 1px;
    margin: 0 10px;
    position: relative;
    top: 5px;
    display: inline-block;
}
.back-to-top.active {
    display: block;
}
.back-to-top {
    position: fixed;
    display: none;
    background: #e3e317;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.6s;
    z-index: 11;
    
   /* border: 1px solid #FFC107;*/
}

