*, *:before, *:after {
    box-sizing: border-box;
}
/*@font-face {
    font-family: gsl;
    src: url(../font/gt-sectra-display-light.woff2);
}*/

body{font-family: 'Century Gothic'; font-size: 16px; color: #000; line-height: normal;}

*{scroll-padding-top: 90px; scroll-behavior: smooth;}
h1, h2, h3{font-size: max(3vw,30px); font-family: 'Glitten'; color: #000; margin-bottom: 20px;}
/*h2{font-size:46px; font-family: 'Glitten'; color: #000}
h3{font-size:46px; font-family: 'Glitten'; color: #000}*/
h4{font-size:24px; font-family: 'Glitten'; color: #000; margin-bottom: 20px;}
h5{font-size:20px; font-family: 'Glitten'; color: #000; margin-bottom: 20px;}
h6{font-size:18px; font-family: 'Glitten'; color: #000; margin-bottom: 20px;}


p{font-size: 16px; line-height: 2em; margin-bottom: 20px;}

a{font-size: 16px; color: #ff8096; text-decoration: none; transition: all 0.5s;}

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

.row {
    margin-bottom: -40px;
}
strong, b {
    font-weight: 700;
}
.row [class*="col-"]{
    margin-bottom: 40px;
}
.form-row > .col, .form-row > [class*="col-"] {
    margin-bottom: 1rem;
}
.form-group
img {
    max-width: 100%;
    max-height: 100%;
}

/*site loader*/
.res-container {
    width: 100%;
  position: absolute;
  margin-bottom: 0;
}

.res-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW - Opera 12.1, Firefox 20+ */
}
#box {
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  width: 100%;
  /* Old syntax, otherwise collapses. */
  
}
/*...................*/
#block-1 {
  animation-duration: 1s;   
    -webkit-animation-duration: 1s;
animation-iteration-count: 1;
    animation-timing-function: ease;    
    -webkit-animation-timing-function: ease;    
}
.b3 {
  position: fixed; 
}

/*****************/
#loader-wrap {
    display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#loading {
background-color: #fac6cf;
height: 100%;
width: 100%;
position: fixed;
z-index: 99999999;
margin-top: 0px;
top: 0px;
}

/***************/
#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#object {
    width: 350px;
    /* Background-image: url(../images/logo.svg); */
    background-repeat: no-repeat;
    margin: 0 auto 20px;
}

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

/*#object {
  animation: object .8s linear;
  transform-origin: center center;
}
@keyframes object {
  0%{transform: scale(0); opacity: 0}
  50%{transform: scale(1.5); opacity: 1}
  100% {transform: scale(1); opacity:1}
}*/

/*********loader line******************/
#loader {
    position: relative;
    height: 3px;
    width: 120px;
    overflow: hidden;
    margin: 0 auto;
}
#loader:before, #loader:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  transform: translate(-100%, 0);
}
#loader:before {
  background-color: #ffffff;
  animation: loading 3400ms cubic-bezier(0.23, 1, 0.32, 1);
}
#loader:after {
  background-color: #ff5d79;
  animation: loading 2500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes loading {
  75% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}



.slideDown {
    bottom: 0 !important;
   animation-direction: normal;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;  
    animation-duration: 1s; 
    -webkit-animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease;    
    -webkit-animation-timing-function: ease;    
    visibility: visible !important;                     
}

@keyframes slideDown {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}

@-webkit-keyframes slideDown {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}

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

.slideInUp {
    animation-name: slideInUp;
    -webkit-animation-name: slideInUp;  
    animation-duration: 1s; 
    -webkit-animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in; 
    -webkit-animation-timing-function: ease-in; 
    visibility: visible !important;                     
}

@keyframes slideInUp {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes slideInUp {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
    animation-name: zoomOut;  
    animation-name: zoomOut;
    -webkit-animation-name: zoomOut;    
    animation-duration: 2s; 
    -webkit-animation-duration: 2s;
    animation-iteration-count: 2;
    animation-timing-function: ease-in-out; 
    -webkit-animation-timing-function: ease-in-out; 
    visibility: visible !important;
}



.logo-background {
    animation: logo-background-ani 1s forwards;
    transform-origin: left;
}

@keyframes logo-background-ani {
    0% {
        transform: scaleX(0) translateX(-50px);
        opacity: 0;
    }
    50% {
        opacity: 0.3;   
    }
    100% {
        transform: scaleX(1) translateX(0px);
        opacity: 1;
    }
}


.logo-text {
    animation: logo-text-ani 1.3s forwards;
    transform-origin: left;
}

@keyframes logo-text-ani {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/*site loader*/


/*header*/

.header {
    width: 100%;
    float: none;
    clear: both;
    background-color: #fff;
    z-index: 9999;
    padding: 10px;
    -webkit-transition: all .5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all .5s ease;
    display: flex;
}
.menu {
    width: 100%;
    background: #ffffff;
    float: none;
    border-top: 2px solid #fac6cf;
        box-shadow: 0px 20px 30px 0px rgb(26 54 85 / 10%);
}
.header .logo-con{
    width:250px;
    margin: 10px 0;
    float:left;
}
.clear {
   clear: both;
}
.header-tinfo{
    float:right
}
.stellarnav ul{
    text-align:center
}
.header-tinfo ul{
    list-style:none;
    margin:20px 0;
    padding:0;
    display: flex;
}
.logo-con a{
    display:block
}
.stellarnav{
    width:100%!important;
    float:none!important
}
.sticky-menu{
    z-index:9999;
    position:sticky;
    left:0;
    top:0;
    width:100%;
    border-top: none;
}
/*.sticky-menu .logo-con{
    width:145px
}*/
.sticky-menu .header-tinfo ul{
    margin:5px 0;
}
.stellarnav>ul>li>a{
    position:relative;
}
li.has-sub li a{
    position:relative;
}
li.has-sub li a:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    width: 0;
    height: 2px;
    transition: .3s ease-in-out;
    /* transform: rotate(45deg); */
    background: #ff002c;
    opacity: 0;
}
li.has-sub li a:hover:before {
    opacity: 1;
    width: 10px;
}
li.has-sub li a:hover{
    padding-left:30px;
}


.stellarnav.mobile.left.active ul{
    transform:translateX(0);
}
.stellarnav.mobile.left>ul{
    left:0;
    transition:transform .3s ease-in-out;
    transform:translateX(-100%);
}
.header-tinfo ul li{
    /*display:inline-block;*/
}
.header-tinfo ul li i{
    font-size:22px;
    margin-right:12px;
    position:relative;
    width:40px;
    height:40px;
    color:#fff;
    z-index:0;
    text-align:center;
    padding:9px;
    float:left;
    margin-top:5px;
}
.header-tinfo ul li i:after{
    content:'';
    position:absolute;
    width:43px;
    height:43px;
    /*transform:rotate(45deg);*/
    background:#e84662;
    left:-2px;
    top:-2px;
    z-index:-1;
    transition:.3s;
    border:4px double #fff;
}
.header-tinfo ul li:hover i:after{
    transform:rotate(45deg);
}
.header-tinfo ul a{
    /*font-family:AbrilFatface;*/
    color:#191919;
    letter-spacing:1px;
}
.header-tinfo ul a span{
    /*font-family:MavenPro;*/
    color:#5c5c5c;
    letter-spacing:0;
    transition:.3s;
}
.header-tinfo ul li:hover span{
    color:#e84662;
}
.header-tinfo ul li.header-apply-btn{
    margin-right:20px;
    width:240px;
    /*border-right:1px solid #ffe8f3;*/
}

/*header*/


.left-walker-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.left-walker {
    position: fixed;
    top: 0;
    left: 0px;
    height: 100%;
    background: #ffffff;
    width: 45px;
    padding: 10px;
    display: block;
    z-index: 999999;
    transition: 0.3s ease-in-out;
    z-index: 99999;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}
.left-walker:hover {
    width: 55px;
    background: #fac6cf;
}

.left-walker-heading h4 {
    font-size: 20px;
    margin-bottom: 8px;
}


.banner-wrap {
    background: url(../images/Slider_Banner.jpg) no-repeat;
    background-size: cover;
    padding: 5% 30px;
}
.banner-cont {
    color: #fff;
}
.banner-cont h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 74px;
}

.banner-cont span {
    background: #fac6cf;
    color: #000;
    padding: 20px 25px;
    font-size: 22px;
    font-weight: 900;
    margin: 10px 0px 10px 0px;
    border-bottom: 5px solid #fff;
    display: inline-block;
}

#holder {
    position: relative;
    width: 100%;
    margin: 0;
    font-family: 'Glitten';
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    height: 74px;
    margin-top: 0;
    margin-bottom: 30px;
}
        
#slogans{
    position: relative;
    top: 0px;
    right: 0px;
}

p.slogan{
    text-rendering: optimizeLegibility;
    margin: 0px;
    font-size: 74px;
    line-height: 1.2;
}

p.slogan strong{
    display:block;
    position:relative;
    opacity:0;
    font-weight: normal !important;
}

.header-form form.contact-form.row {
    background: #fff;
    padding: 50px 20px;
    border: 5px solid #fac6cf;
}

.header-form .contact-form .input-block.focus{

    background-color: #fff;
}

.header-form .contact-form .input-block label {
    padding: 0 10px;
    background: #fff;
}

.header-form .contact-form .input-block.focus label {
    background: #fff;
}

.header-form form.contact-form.row h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.contact-form .input-block {
    background-color: transparent;
    border: solid 1px #fac6cf;
    width: 100%;
    height: 40px;
    padding: 25px;
    position: relative;
    margin-bottom: 20px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.contact-form .input-block.focus {
    background-color: #fdeef1;
    border: solid 1px #fac6cf;
}

.contact-form .input-block.textarea {
    height: auto;
}

.contact-form .input-block.textarea .form-control {
    height: auto;
    resize: none;
}

.contact-form .input-block label {
    padding: 0 10px;
    background: #fdeef1;
    position: absolute;
    left: 8px;
    top: 20px;
    display: block;
    margin: 0;
    font-weight: 300;
    z-index: 1;
    color: #333;
    font-size: 16px !important;
    line-height: 10px;
}

.contact-form .input-block .form-control {
    background-color: transparent;
    border: medium none;
    border-radius: 0;
    box-shadow: none;
    color: #333;
    font-size: 16px;
    height: 40px;
    padding: 0;
    position: relative;
    top: -20px;
    z-index: 2;
}
.contact-form .input-block .form-control:focus label {
    top: 0;
}



.section-padding {
    padding: max(6% , 50px) 0;;
}
.middle-container {
    max-width: 80%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


.heading-container {
    padding: 25px 0 25px 30px;
    position: relative;
    margin-bottom: 50px;
}
.heading {
   margin-bottom: 0;
}
.heading-container:before, .pt-special-heading.tac .heading-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border: 3px solid #fac6cf;
    width: 17px;
    border-right-width: 0;
}

.pt-special-heading .sub-heading {
    color: #575757;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.pt-special-heading .sub-heading+.heading {
    margin-top: 15px;
}

p.sub-heading {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
}


.light-pink-after {
   position: relative;
   overflow: hidden;
}

.light-pink-after:after {content: '';position: absolute;width: 100%;height: 50%;background: #fac6cf;bottom: 0;z-index: -1;}

.service-col {
   display: block;
   text-align: center;
   padding: 10px;
   background: transparent;
   box-shadow: none;
   transition: 0.6s;
   position: relative;
   z-index: 0;
   color: #000000;
}

.service-col img {
    margin-bottom: 25px;
    box-shadow: 0px 30px 20px -20px rgb(0 0 0 / 30%);
}

.service-col:hover {
    transform: translateY(-20px);
}
.service-col:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.6s ease-in-out;
    border: 2px solid #ffffff;
    opacity: 0;
}
.service-col:hover:after {height: 100%;opacity: 1;}

.service-col h4 {
    margin-bottom: 5px;
}
section.light-pink {
    background: #fac6cf;
    margin-top: 280px;
}
.owl-carousel.owl-serve {
    margin-top: -250px;
}

@media (min-width :960px){
   .sticky-menu{
     animation:smoothscroll-menu .7s forwards
   }
   ul.mega-menu{
     width:220px!important
   }
   .mega-menu-col{
     width:50%;
     float:left
   }
   .mega-menu-col-border{
     border-right:2px solid #f5f5f5
   }
   .stellarnav{
     float:none!important
   }
   .stellarnav ul ul{
     box-shadow:0 5px 6px 3px rgb(0 0 0 / .1)
   }
   .stellarnav>ul>li>a:before{
     content:'';
     position:absolute;
     width:calc(100% - 30px);
     height:3px;
     left:0;
     right:auto;
     top:-2px;
     background: #e84662;
     transition:.3s;
     opacity:0
   }
   .sticky-menu .stellarnav>ul>li>a:before{
    top:0px;
   }
   .stellarnav>ul>li>a:hover:before{
     opacity:1
   }
}


@media (max-width :960px){
    .menu .container{
        padding:0
    }
    /*.stellarnav.mobile{
        background:#ffe8f3
    }*/
    li.has-sub li a{
        padding-left:30px
    }
    li.has-sub li a:before{
        opacity:1
    }
    .stellarnav.mobile{
        display:table
    }
}
@keyframes smoothscroll-menu{
    0%{
        transform:translateY(-40px)
    }
    100%{
        transform:translateY(0)
    }
}



@media (max-width :990px){
   .header .container{
     max-width:100%;
     padding:0
   }
}


@media (max-width: 600px){
    .side-walker{
        display: none;
    }
    .header .logo-con{
      width:200px;
      float:none
    }
    .sticky-menu .logo-con{
      display:none
    }
    .sticky-menu .header-tinfo ul{
      margin:5px 0 0 10px
    }
    .header-tinfo{
      float:none
    }
    .header-tinfo ul li.header-apply-btn{
      margin:0;
      width:auto;
      border-right:none
    }
    .header-tinfo ul{
      margin:10px 0 0 0px;
      
    }
    .header-tinfo ul a{
      font-size:14px
    }
    .header-tinfo ul li i{
      font-size:18px;
      margin-right:10px;
      width:38px;
      height:38px;
      margin-top:5px
    }
    .header-tinfo ul li i:after{
      width:38px;
      height:38px
    }
}

@media (max-width: 575px){

.banner-cont h1 {
    font-size: 46px;
}
p.slogan {
    font-size: 37px;
}
#holder {
    margin-bottom: 0;
} 




}

.owl-carousel.testi-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 0 20px;
    max-width: 100%;
}
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
.owl-carousel .owl-nav button.owl-prev{
    padding-right: 16px !important;
    border-right: 2px solid #101014;
}
/*@media (min-width: 1024px){
    .owl-carousel.testi-carousel .owl-nav button.owl-prev{
        border-right: 2px solid #101014;
    }
}*/
.owl-carousel .owl-nav button.owl-next {
    padding-left: 16px !important;
}
.btn-transp-arrow {
    background: none;
    line-height: 1.25;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 8px;
    border: none;
    padding: 0;
    min-height: 40px;
    text-transform: uppercase;
    /*font-family: "Jost", "Glacial Indifference", "Montserrat", "Open Sans", sans-serif;*/
    letter-spacing: 0.2em;
    font-size: 1rem;
}

.btn-transp-arrow .text, .btn-transp-arrow .icon {
    line-height: 1;
    position: relative;
}
.btn > .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-transp-arrow .text {
    height: 0.875em;
}
.btn > .icon .arrow-left, .btn > .icon .arrow-right, .btn > .icon .arrow-up, .btn > .icon .arrow-down {
    position: relative;
    height: 1em;
    width: 1.25em;
    display: inline-block;
    border-radius: 0;
    box-sizing: border-box;
}
.btn > .icon .arrow-left:before, .btn > .icon .arrow-right:before, .btn > .icon .arrow-up:before, .btn > .icon .arrow-down:before {
    position: absolute;
    content: "";
    height: 0.75em;
    width: 0.75em;
    border: 2px solid currentColor;
    border-top: none;
    border-right: none;
    background: transparent;
    transition: 0.3s;
}
.btn > .icon .arrow-left:before {
    left: 0.125em;
    top: 0.125em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn > .icon .arrow-right:before {
    right: 0.125em;
    top: 0.125em;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.btn > .icon .arrow-left:after, .btn > .icon .arrow-right:after, .btn > .icon .arrow-up:after, .btn > .icon .arrow-down:after {
    position: absolute;
    content: "";
    transition: 0.3s;
}
.btn > .icon .arrow-left:after {
    left: 0px;
    top: 50%;
    margin-top: -1px;
    /*top: 0.44062em;*/
    height: 2px;
    width: 1em;
    border-top: 2px solid currentColor;
}
.btn > .icon .arrow-right:after {
    right: 1px;
    top: 50%;
    /*top: 0.44062em;*/
    margin-top: -1px;
    height: 2px;
    width: 1em;
    border-top: 2px solid currentColor;
}
.btn-transp-arrow > .icon + .text {
    margin-left: 0.75em;
}
.btn-transp-arrow > .text + .icon {
    margin-left: 0.75em;
}
.btn:hover > .icon .arrow-left:before {
    -webkit-transform: translateX(-6px) rotate(45deg);
    transform: translateX(-6px) rotate(45deg);
}
.btn:hover > .icon .arrow-left:after {
    width: 22px;
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}
.btn:hover > .icon .arrow-right:before {
    -webkit-transform: translateX(6px) rotate(-135deg);
    transform: translateX(6px) rotate(-135deg);
}
.btn:hover > .icon .arrow-right:after {
    width: 22px;
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.owl-serve .owl-nav {
    margin-top: 50px;
}

.rounded-list {
    list-style: none;
    /*margin: 40px 0px 40px 15px;*/
    padding: 0px;
    counter-reset: li;
}

.rounded-list li:not(:last-child) {
    margin-bottom: 30px;
}

.rounded-list span {
    position: relative;
    display: inline-block;
    padding: 15px 30px 15px 65px;
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
        width: 100%;
}

.rounded-list span {
    background: #363635;
    color: #fff;
}


.rounded-list span:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -28px;
    height: 56px;
    width: 56px;
    line-height: 46px;
    text-align: center;
    font-weight: 700;
    border-radius: 100%;
    font-size: 28px;
}

.rounded-list span:before {
    background: #e84662;
    color: #fff;
    border: 5px solid #fff;
}

.bg-pink{
    padding: 13% 30px;
    background: #e84662;
    clip-path: polygon(0 13%, 100% 0, 100% 87%, 0% 100%);
    margin-top: 0;
}

.bg-pink h3{
   font-size: max(2.5vw,35px);
}

.tetsi{
    background-size: auto;
    background-repeat: repeat;
    background-position: center center;
    background-image: url(http://ombre.wp4life.com/images/photos/testimonials.jpg);
    -webkit-animation: displace 5s linear infinite;
  animation: displace 5s linear infinite;
   background-color: #000000de;
    background-blend-mode: overlay;
}

@-webkit-keyframes displace {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 100% center;
  }
}
@keyframes displace {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 100% center;
  }
}



/* ================= TESTIMONIALS ================== */
.testimonials {
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: none;
}
.testimonials .owl-controls {
    display:none !important;
}
.testimonial-nav {
    position:absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
}
.testimonial-nav-left,.testimonial-nav-right {
    float: left;
    width: 50%;
    font-size: 26px;
    line-height: 1;
    margin-top: 63px;
}
.testimonial-nav-left .fa,.testimonial-nav-right .fa {
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    opacity: 0.5;
}
.testimonial-nav-left .fa:hover,.testimonial-nav-right .fa:hover {
    opacity: 1;
}
.testimonial-nav-right {
    padding-right: 6px;
    text-align: right;
}
.testimonial-nav-left {
    text-align: left;
    padding-left: 8px;
}
.testimonial {
    position: relative;
}
.testimonial .testimonial-right {
    position: relative;
    padding-left: 185px;
}
.testimonial .testimonial-text {
    width: 100%;
    padding: 50px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.testimonial-text:before {
    top: 65px;
    left: -20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-width: 10px;
    margin-left: 0px;
    z-index: 9;
}
.testimonial .testimonial-text p {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: left;
}
.testimonial .testimonial-text p.testimonial-cite {
    text-align: right;
    display: block;
    margin-top: 30px;
    margin-bottom: 0px;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
}
.testimonial-left {
    position: absolute;
    top:0px;
    left: 0px;
    width: 150px;
    margin: 0px 0px 40px 0px;
    display:inline-block;
    z-index: 9;
}
.testimonial-left img {
    width: 100%;
    max-width: 150px;
    height: auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0px;
    vertical-align: bottom;
}

/* ================= TESTIMONIALS ================== */
.testimonial .testimonial-text {
    background-color: #ffffff30;
    backdrop-filter: blur(10px);
}
.testimonial .testimonial-text p {
    color: #fff;
}
.testimonial .testimonial-text p.testimonial-cite {
    color: #d2d2d2;
}
.testimonial .testimonial-text p span{
    color: #e84662;
}
.testimonial .testimonial-text:before {
    border-right-color: #363635 !important;
}
@media only screen and (max-width: 900px) {
    .testimonial .testimonial-text:before {
        border-bottom-color: #363635 !important;
    }
}
.testimonial-nav-left,.testimonial-nav-right {
    color: #fff;
}
.testimonial-nav-left .fa,.testimonial-nav-right .fa {
    color: #fff;
}
@media only screen and (max-width: 900px) {
    .testimonial-nav {
        margin: 0px auto;
    }
    .testimonial .testimonial-right {
        padding-left: 0px;
        padding-top: 170px;
    }
    .testimonial .testimonial-text:before {
       top: -20px;
       left: 75px;
       border-width: 10px;
       margin-left: -10px;
        border-right-color: transparent !important;
    }
}
@media only screen and (max-width:640px) {
    .testimonial .testimonial-text p {
        font-size: 22px;
    }
    .testimonial .testimonial-text p.testimonial-cite {
        font-size: 16px;
    }
    .rounded-list span {
        padding: 15px 10px 15px 45px;
    }
    .bg-pink {
        clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    }
    .middle-container{
        max-width: 100%;
    }
    .bg-pink {
        padding: 20% 30px 10%;
    }
}
@media only screen and (max-width: 480px) {
     .testimonial .testimonial-text {
        padding: 30px;
    }
    .testimonial .testimonial-text p {
        font-size: 20px;
    }
}

.cta,.cta-2 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 66% 0;
    background-image: url(../images/about_background_01.jpg);
    min-height: 100vh;
}
.cta-2{
    background-image: url(../images/model-background-6.jpg);
}
.btn-con{
    border: 1px solid #000;
    padding: 15px 20px;
    display: inline-block;
    border-radius: 3px;
    color: #000;
    background: transparent;
    cursor: pointer;
}

.btn-con:hover{
    border: 1px solid #e84662;
    padding: 15px 20px;
    display: inline-block;
    border-radius: 3px;
    color: #fff;
    background-color: #e84662;

}


ul.social-wrap {
    padding: 0;
    list-style: none;
    margin: 0;
    margin-top: 40px;
}

ul.social-wrap a {
    width: 35px;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    font-size: 20px;
    background: black;
    border-radius: 50%;
    color: #fff;
}

ul.social-wrap li {
    display: inline-block;
}

ul.social-wrap li:not(:last-child) {
    margin-right: 15px;
}

ul.social-wrap a:hover {
    background: #e84662;
}
.header-form form.contact-form.row{
    margin-bottom: 0;
}
.header-form form.contact-form.row .col-sm-12 {
    margin: 0;
}

ul.ft-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.ft-links a {
    color: #000;
    display: inline-block;
}
ul.ft-links a:hover{
    color: #ff8096;
}
ul.ft-links li:not(:last-child) {
    margin-bottom: 10px;
}
.copyright {
    padding-top: 20px;
    border-top: 1px solid black;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 29px;
    border: none;
    outline: none;
    background-color: #f9c5ce;
    color: black;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

#myBtn:hover {
    background-color: #000;
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .cta,.cta-2 {
        background-color: #dfdfdf;
        background-blend-mode: overlay;
    }
}

.object-cover {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: top;
}

.sec-four-wrap .text-pad {
    padding: max(4%, 30px);
    background: #f9c5ce2e;
}

.sec-four-wrap .text-pad-img {
    max-width: calc(100% + 30px) !important;
    width: calc(100% + 30px) !important;
    margin-left: -15px;
}

.sec-four-wrap .row, .sec-four-wrap .col-lg-6 {
    margin: 0;
}

.sec-four-wrap .text-pad .heading {
    margin-bottom: 20px;
}

.cont-form input {
    height: 45px;
}

.cont-form .form-control:focus {
    border-color: #f9c5ce;
    box-shadow: 0 0 0 1px rgb(249 197 206);
}

.img-text {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #e84662;
    top: 0;
    left: 0;
    border-radius: 50%;
    line-height: 150px;
    font-size: 100px;
    color: #fff;
}