* {
    outline: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
}

:root {
    --brand: #e73e8c;
    --f1: 'Josefin Sans', sans-serif;
    --f2: 'Abril Fatface', cursive;
    --c: #fff;
    --h3: 24px;
    --p: 16px;
    --pl: 26px;
}
.red-text {
	color: #F44336 !important;
}
.main-overlay {
    position: relative;
    z-index: 1;
}

.main-overlay:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.2);
}

.common-head {
    position: relative;
    z-index: 0;

}

.common-head h2 {
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
    font-family: var(--f1);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, .8), 0 0 75px rgba(255, 255, 255, .6), 0 0 76px rgba(255, 255, 255, .4), 0 0 77px rgba(255, 255, 255, .5), 0 0 78px rgba(255, 255, 255, .4), 0 0 79px rgba(255, 255, 255, .3), 0 0 80px rgba(255, 255, 255, .2), 0 0 85px rgba(255, 255, 255, .1);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    border-left: 3px solid var(--brand);
    padding-left: 5px;
}

.common-head img {
    margin-bottom: 60px;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             common css end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             preloader css start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999999999;
    overflow: hidden;
    background: #000;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
  }
  
  #preloader:before,
  #preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--brand);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  #preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  
  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             preloader css end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             cursor css start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

#cursor {
    height: 20px;
    width: 20px;
    border: 2px solid var(--brand);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 0 20px var(--brand), 0 0 60px var(--brand), 0 0 100px var(--brand);
    position: absolute;
    display: none;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    transform: translate(-50%, -50%);
    animation: colors 2s infinite;
    z-index: 4;
    -webkit-animation: colors 2s infinite;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@keyframes colors {
    0% {
        filter: hue-rotate(0deg);
        -webkit-filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
        -webkit-filter: hue-rotate(360deg);
    }
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             cursor css end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Menu part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.main-manu {
    height: 50px;
    background: rgba(68, 68, 68, 0.288);
    left: 0;
    position: absolute;
    top: 12px;
    width: 100%;
    z-index: 99999;
}

.main-manu ul li a {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--f1);
    padding: 0 10px;
    line-height: 50px;
    position: relative;
}

.main-manu ul li a:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform-origin: 100% 0;
    transition: transform .3s;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
}

.main-manu ul li a:hover:after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform-origin: 0 0;
}

.main-manu ul li a::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform-origin: 100% 0;
    transition: transform .3s;
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
}

.main-manu ul li a:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform-origin: 0 0;
}

.main-manu ul li a:hover span {
    color: var(--brand);
}

.main-manu ul li a:hover {
    color: #fff;
    background: #000;
}

.main-manu .navbar-brand {
    width: 245px;
    height: 70px;
    line-height: 70px;
    background: #000;
    text-align: center;
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    border-left: 5px solid #000;
    border-right: 5px solid #000;
}

.main-manu .navbar-brand img {
    transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    -moz-transform: skewX(30deg);
    -ms-transform: skewX(30deg);
    -o-transform: skewX(30deg);
    width: 183px;
}

.active {
    background: var(--brand);
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.navbar-nav li.active a {
    color: #fff;
}

.nav-link:focus,
.nav-link:hover {
    color: #fff;
}

.menu-fix {
    position: fixed;
    left: 0;
    top: 12px;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    transform: rotateX(360deg);
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

/* shine animation start */
.menu-fix:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    transform: skewX(50deg);
    -webkit-transform: skewX(50deg);
    -moz-transform: skewX(50deg);
    -ms-transform: skewX(50deg);
    -o-transform: skewX(50deg);
    animation-name: slide;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-delay: .8s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background: linear-gradient(to right, rgba(226, 62, 56, 0.2) 0%, rgba(226, 62, 56, 0.4) 20%, rgba(226, 62, 56, 0.5) 50%, rgba(226, 62, 56, 0.7) 100%);
}

@keyframes slide {
    0% {
        left: 0;
        top: 0;
    }

    100% {
        left: 100%;
        top: 0;
    }
}

/* shine animation end */

.navbar-toggler {
    z-index: 999;
}
.active-btn {
    background: var(--brand);
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dp{
    margin-left: 3px;
}
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Menu part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             back-to-top-btn part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: var(--brand);
    cursor: pointer;
    outline: none;
    border: 2px solid var(--brand);
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    z-index: 9999;
    box-shadow: 0 8px 28px rgba(255, 109, 4, 0.45);
  }
  
  #back-to-top-btn:hover,
  #back-to-top-btn:focus {
    background-color: #333;
    color: #fff;
  }
  
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             back-to-top-btn part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Banner part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.banner-iteam {
    padding: 259px 0 205px 0;
    position: relative;
    z-index: 2;
}

.banner-text h1 {
    color: var(--brand);
    font-size: 65px;
    font-family: var(--f2);
    font-weight: 700;
}

.banner-text h2 {
    color: var(--brand);
    font-size: 23px;
    font-family: var(--f1);
    font-weight: 700;
}

.banner-text p {
    margin-top: 28px;
    font-size: 18px;
    color: #fff;
    line-height: 18px;
    font-family: var(--f1);
}

/* animation start */
.banner .clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner .clouds img {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: animate calc(8s * var(--i)) linear infinite;
    -webkit-animation: animate calc(8s * var(--i)) linear infinite;
    opacity: 0.1;
}

@keyframes animate {
    0% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }
}
.banner-text {
    position: relative;
}

#banner .slick-dots {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 84px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

#banner .slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 7px;
    background: #fff;
    border: 1px solid #fff;
    margin: 0 10px;
}

#banner .slick-dots li.slick-active button {
    width: 23px;
    height: 7px;
    background: var(--brand);
    border-color: var(--brand);
}

/* animation end */
  
.a {
    position: relative;
    letter-spacing: 0.25em;
    margin: 0 auto;
    padding: 8px 29px;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #000;
    z-index: 1;
    margin-top: 38px;
    font-weight: 600;
}

.a:hover {
    color: #fff;
}

.a::after,
.a::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    transform: skewX(30deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -2;
}

.a::before {
    background-color: var(--brand);
    top: -7px;
    left: 3px;
}

.a::after {
    background-color: #fff;
    top: 6px;
    left: 81px;
}

.a:hover::before,
.a:hover::after {
    top: 0;
    transform: skewx(0deg);
}

.a:hover::after {
    left: 0rem;
    background: var(--brand);
}

.a:hover::before {
    left: 75px;
    background: var(--brand);
}






/* slick active animaction start */
.fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
}

.slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
}

@-webkit-keyframes fadeInUpSD {
    0% {
        opacity: 0;
        transform: translateY(500px);
        -webkit-transform: translateY(500px);
        -moz-transform: translateY(500px);
        -ms-transform: translateY(500px);
        -o-transform: translateY(500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        transform: translateY(500px);
        -webkit-transform: translateY(500px);
        -moz-transform: translateY(500px);
        -ms-transform: translateY(500px);
        -o-transform: translateY(500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* slick active animaction end */

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Banner part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Myself part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#myself {
    padding: 79px 0 79px;
}

.Myself-txt {
    /*! margin-top: 65px; */
    position: relative;
    z-index: 2;
}

.Myself-img img {
    border: 2px solid #fff;
    position: relative;
    z-index: 2;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.Myself-img {
    position: relative;
    margin-left: 115px;
}

.Myself-img::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 0px;
    left: 0px;
    bottom: 0;
    background: var(--brand);
    z-index: 0;
    width: 328px;
    height: 530px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.Myself-img:hover::after {
    top: 30px;
    left: 30px;
}


.Myself-img::before {
    content: '';
    font-size: 14px;
    position: absolute;
    top: 0px;
    right: 30px;
    left: 0px;
    background: var(--brand);
    z-index: 0;
    width: 328px;
    height: 530px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.Myself-img:hover::before {
    top: -30px;
    right: 30px;
    left: -34px;
}

.Myself-img img:hover {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
}

.Myself-txt h3 {
    font-size: 24px;
    font-family: var(--f1);
    margin-bottom: 60px;
    color: var(--brand);
}

.Myself-txt p {
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 30px;
    /*! color: var(--c); */
    color: #fff;
}

.Myself-txt img {
    width: 198px;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Myself part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             team part Start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#team {
    padding: 79px 0 79px;
}

.Photographer {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
}

.service-details {
    /*width: 460px;*/
    height: 250px;
    /*height: 230px;*/
    overflow: hidden;
    position: relative;
}

.service-details img {
    position: absolute;
    top: 0;
    left: 0;
    height: inherit;
    width: auto;
    height: 100%;
    float: left;
    transition: all 0.8s;
    -moz-transition: all 0.8s;

}

.service-details .service-hover-text h3 {
    padding: 0px;
    margin: 0px;
    font-size: 23px;
    font-weight: 300;
    font-family: var(--f2);
}

.service-details .service-hover-text h4 {
    padding: 0px;
    padding-bottom: 13px;
    margin: 0px;
    font-size: 14px;
    letter-spacing: 3px;
    width: 79%;
    font-family: var(--f1);
    text-transform: uppercase;
    border-bottom: 4px solid #000;
}

.service-details .service-hover-text p {
    padding-top: 13px;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--f1);
}

.service-details .service-hover-text {
    width: 50%;
    height: 101%;
    position: absolute;
    top: 0%;
    left: 50%;
    padding: 3% 4%;
    background: var(--brand);
    color: rgba(255, 255, 255, 1);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.service-details:hover .service-hover-text {
    display: block !important;
    color: rgba(255, 255, 255, 1);
    background: rgba(231, 62, 141, 0.6);
    left: 0px;
    top: 0px;
}


.service-details .service-text {
    width: 50%;
    height: inherit;
    background: #000;
    float: left;
    position: absolute;
    left: 50%;
}

.service-details .service-text p {
    padding: 100px 0px 0px 20px;
    font-size: 17px;
    font-family: var(--f1);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 50px rgba(255, 255, 255, .8), 0 0 75px rgba(255, 255, 255, .6), 0 0 76px rgba(255, 255, 255, .4), 0 0 77px rgba(255, 255, 255, .5), 0 0 78px rgba(255, 255, 255, .4), 0 0 79px rgba(255, 255, 255, .3), 0 0 80px rgba(255, 255, 255, .2), 0 0 85px rgba(255, 255, 255, .1);

}

.service-details .service-text p span {
    font-family: var(--f2) !important;
}

.service-details .service-text a,
.service-white .service-text {
    padding: 0px 0px 0px 20px;
    font-size: 14px !important;
    color: #fff !important;
    font-family: var(--f1) !important;
    text-decoration: none !important;
}

.service-details .service-text {
    float: left;
}

.service-white {
    background: var(--brand) !important;
    width: 50% !important;
    height: inherit !important;
}

.service-white p {
    color: #fff !important;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             team part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Gallery part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#Gallery {
    padding: 79px 0 54px;
}

.gallery-txt h6 {
    font-family: var(--f2);
    color: var(--brand);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.gallery-txt p {
    font-family: var(--f1);
	font-size: 16px;
	font-weight: 300;
	color: var(--c);
	line-height: 16px;
	margin-bottom: 49px;
    text-align: justify;
}
.gallery-img {
    margin-bottom: 26px;
}

.gallery-img {
    position: relative;
    /*! cursor: pointer; */
}

.gallery-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    overflow: hidden;
}

.gallery-img .overlay a {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 45px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -300px;
    width: 197px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.overlay a i {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.overlay:hover::before {
    left: 651px;
}

.overlay:hover a {
    opacity: 1;
    color: #fff;
}

.overlay a:hover i {
    color: var(--brand);
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Gallery part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Services part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

#Services {
    padding: 79px 0 99px;
}

.ser-mar {
    margin-bottom: 50px;
}

.Services-col {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    display: inline-block;
    position: relative;
    text-align: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: transparent;
    box-shadow: none !important;

}

.Services-col h6 {
    font-size: 17px;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    color: #fff;
    left: 100%;
    margin: 0;
    opacity: 0.8;
    padding: 10px 40px 0 0;
    right: 0;
    font-family: var(--f2);
    top: 30px;
    white-space: nowrap;
    font-weight: 300;
}

.Services-col:hover .services-title,
.Services-col.hover .services-title {
    background-color: var(--brand);
}

.Services-col *,
.Services-col ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.Services-col img {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    position: relative;
    padding: 30px 40px 0 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.services-title {
    background-color: #000;
    bottom: 30px;
    left: 40px;
    position: absolute;
    right: 0;
    top: 0;

}

#Services .slick-dots {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: -53px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: auto;
}

#Services .slick-dots li button {
    text-indent: -99999px;
    border: none;
    padding: 0;
    margin-left: 10px;
    z-index: 1;
    cursor: pointer;
    background: no-repeat;
    transition: .3s;
    background-color: #fff;
    height: 2px;
    width: 30px;
    border-radius: 5px;
}

#Services .slick-dots li.slick-active button {
    width: 40px;
    border-radius: 5px;
    background-color: var(--brand);
}



/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Services part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Plans part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#Plans {
    padding: 96px 0 79px;
}

.single-Plans {
    text-align: center;
    padding: 50px 26px;
    transition: all .3s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #000;
}

.Plans-text {
    position: relative;
}

.circles-wrap {
    position: absolute;
    bottom: 150px;
    right: 150px;
    z-index: -1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

span.circle {
    position: absolute;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.circles {
    height: 500px;
    width: 500px;
    background: #000;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

span.circle.circle-1 {
    height: 100px;
    width: 100px;
    background: rgba(231, 62, 141, 0.6);
    z-index: 5;
    display: inline-block;
    z-index: 5;
}


span.circle.circle-2 {
    height: 200px;
    width: 200px;
    background: rgba(231, 62, 141, 0.5);
    z-index: 4;
}

span.circle.circle-3 {
    height: 300px;
    width: 300px;
    background: rgba(231, 62, 141, 0.4);
    z-index: 3;
}

span.circle.circle-4 {
    height: 400px;
    width: 400px;
    background: rgba(231, 62, 141, 0.2);
    z-index: 2;
}



.Plans-text:hover span.circle,
.Plans-text.active span.circle {
    transform: scale(1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.Plans-text .circles-wrap {
    position: absolute;
    bottom: -17px;
    left: -269px;
    z-index: -1;
}

.Plans-text {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 7px;
    border: none;
    border-radius: 2px;
    background-color: transparent;
    transition-timing-function: cubic-bezier(.25, .25, .75, .75);
    transition-duration: 0.4s;
    transition-property: opacity, transform;
}

.Plans-text i {
    font-size: 50px;
    color: #fff;
    -webkit-text-fill-color: var(--brand);
    -webkit-text-stroke-width: 1px;
}

.service-area .Plans-text {
    margin: 30px 0 0px 0px;
}

.Plans-text p i {
    font-size: 24px;
    color: #000;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
}

.Plans-text ul li {
    border-bottom: 1px solid #fff;
    padding: 8px 0px;
}

.Plans-text ul li i {
    font-size: 16px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 0px;
}

.Plans-text ul li h5 {
    color: #fff;
}


.Plans-text h4 {
    font-size: 20.8px;
    margin: 24px;
    text-transform: uppercase;
    font-family: var(--f2);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    background: var(--brand);
}

.single-Plans:hover.Plans-text h4 {
    color: #000;
}

.Plans-text p {
    background: #fff;
    margin-bottom: 25px;
    font-size: 42px;
    font-weight: 600;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
    color: #000;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.single-Plans:hover .Plans-text p {
    background: var(--brand);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.Plans-text a {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: var(--brand);
    border-radius: 6px;
    color: #fff;
    font-weight: 400;
    margin-top: 25px;
    border: 1px solid var(--brand);
    justify-content: end;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.single-Plans:hover .Plans-text a {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
}

.single-Plans:hover .Plans-text a i {
    -webkit-text-fill-color: var(--brand);
    -webkit-text-stroke-width: 0px;
}

.Plans-text a i {
    font-size: 16px;
    margin-right: 8px;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 0px;
}

.Plans-text a:hover i {
    color: #fff;
}

.service-icon {
    width: 90px;
    margin: 0 auto;
}

.single-Plans {
    transition-duration: 0.4s;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.single-Plans:hover {
    transform: translateY(-7.5px);
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Plans part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Contact part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#Contact {
    padding: 79px 0 79px;

}

.Contact-info h4 {
    font-family: var(--f2);
    color: var(--brand);
    font-size: 20px;
    margin-bottom: 20px;
}

.Contact-info p {
    font-family: var(--f1);
    font-size: var(--p);
    line-height: var(--pl);
    font-weight: 300;
    color: var(--c);
    margin-bottom: 20px;
}

.Contact-info p span {
    color: var(--brand);
    font-weight: 600;
    font-family: var(--f1);
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 18px 10px 10px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.75em;
    font-weight: 600;
    color: var(--brand);
    background-image: none;

    border: 1px solid #fff;
}

.butn-dark {
    padding: 10px 20px;
    background: var(--brand);
    margin: 3px 0;
    color: var(--c);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border: none;
}

.butn-dark:hover {
    color: var(--brand);
    background: var(--c);
}

input:focus,
textarea:focus {
    /* border-bottom-width: 1px; */
    /* border-color: var(--brand); */
    box-shadow: 1px 1px 2px 2px var(--brand);
}

.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: var(--brand);
    outline: 0;
    box-shadow: 6px 7px 4px -2px var(--brand);
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             map part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#googleMap {
    width: 100%;
    height: 380px;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             map part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             Contact part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             footer part start
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#footer {
    padding: 76px 0 79px;
    background: #000;
}

.icon h3 {
    font-size: var(--h3);
    font-family: var(--f1);
    color: #fff;
    padding-bottom: 16px;
    padding-top: 16px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.icon ul {
    margin-right: 15px;
    margin-top: 15px;
}

.icon ul li a {
    color: var(--brand);
    background: #fff;
    margin-left: 10px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 0 13px 3px #fff;
    border: 1px solid #fff;
}

.icon ul li a:hover {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
    box-shadow: 0 0 13px 3px var(--brand);
}

.icon ul li a i {
    font-size: 20px;
}

.icon:hover h3 {
    letter-spacing: 1.5px;
}

.footer-last {
    padding-top: 51px;
}

.footer-last h6 {
    color: var(--brand);
    font-size: 14px;
    font-weight: 400;
}

.footer-last h6 a {
    color: var(--brand);
    font-size: 14px;
    font-weight: 400;

}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
             footer part end
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */