html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Quicksand', sans-serif;
  overflow-x: hidden;
  transition: all 0.5s ease-in-out;
}
input,select,textarea,textarea:focus,input:focus,button:focus {
  outline: none;
}
h1,h2,h3,h4,h5,h6,p,span,ul,li,a,.btn-default,.table,textarea,label {
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
}
ul,li {
  list-style: none;
}
a:hover,a:focus {
  text-decoration: none;
}
.container {
  max-width: 1300px;
}
.color-black{
  color: #000;
}
.mt-40{
  margin-top: 40px;
}
.mt-100{
  margin-top: 100px;
}
/* header css  */
header {
  background: #000;
}
.header-top {
  border-bottom: 1px solid #393e51;
  padding: 30px 20px;
}
.head-top-right-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-wrapper {
  display: flex;
  align-items: center;
}
.contact-wrapper li {
}
.contact-wrapper li a {
  color: #c61c58;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  margin-right: 10px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.contact-wrapper li a span {
  color: #fff;
}
.small-nav-wrapper {
  display: flex;
  align-items: center;
}
.small-nav-wrapper li {
}
.small-nav-wrapper li a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 15px;
}
.small-nav-wrapper li a.btn-talk{
  background: #c62758;
  border-radius: 7px;
}
/* sticky header css starts */
.sticky-header{
  background: #000;
  padding: 20px;
  display: none;
  transition: all 0.3s ease-in-out;
}
.sticky-header .sticky-bar{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.sticky-bar li{

}
.sticky-bar li a{
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.sticky-bar li a:hover::after{
  width: 35px;
  transition: all 0.3s ease-in-out;
}
.sticky-bar li a::after{
  content: '';
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.header-fixed {
  top: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
  display: block;
  animation: smoothScroll 0.7s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
/* sticky header css ends */

/* section 1 css */
.sec-1{
  padding: 70px 0 40px;
  background-color: #f3f2f0;
  background-image: linear-gradient(#fff,#f3f2f0);
}
.sec-1-wrap{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.sec-1-left-wrapper{
  max-width: 550px;
  background: #c61c58;
  padding: 50px;
  box-shadow: 0 14px 42px 0 rgba(0,0,0,.2);
  z-index: 2;
}
.sec-1-left-wrapper h1{
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.sec-1-left-wrapper h1::after{
  content: '';
  width: 50px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec-1-left-wrapper button{
  border: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 220px;
  padding: 10px 0;
  border-radius: 7px;
}
.sec-1-left-desc{
  padding: 15px 0 15px 20px;
}
.sec-1-left-desc p{
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.sec-1-left-desc ul{
  padding: 20px 0 0 0;
}
.sec-1-left-desc ul li{
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 4px;
}
.sec-1-left-desc ul li i{
  color: #fff;
  margin-right: 7px;
  font-size: 14px;
}
.sec-1-right-wrapper{
  margin-left: -27px;
  z-index: 1;
}
.sec-1-right-wrapper img{
  max-width: 500px;
  animation: scale ease-in-out 3s infinite;
}
/* section 2 css  */
.sec-2{
  padding: 100px 0px;
}
.sec-2-img-wrap{
  text-align: right;
}
.sec-2-img-wrap img{
  max-width: 500px;
}
.sec-2-right-wrap{

}
.sec-2-right-wrap h2{
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  padding-bottom: 15px;
  margin-bottom: 10px;
  position: relative;
}
.sec-2-right-wrap h2::after{
  content: '';
  width: 50px;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec-2-desc-wrap{
  padding: 20px 0 0 30px;
}
.sec-2-desc-wrap p{
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}
.sec-2-desc-wrap button{
  border: none;
  background: none;
  font-size: 18px;
  color: #c62758;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.sec-2-desc-wrap button:hover{
  border-bottom: 2px solid #c62758;
}
.sec-2-desc-wrap button:hover i{
  padding-left: 10px;
}
.sec-2-desc-wrap button i{
  transition: all 0.3s ease-in-out;
}
/* package sectons css starts */
.package-sec{
  padding: 80px 0px;
  background: #fff;
}
.package-sec-heading{
  margin-bottom: 50px;
}
.package-sec-heading h3{
  font-size: 28px;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.package-sec-heading h3::before{
  content: '';
  background: #c61c58;
  width: 60px;
  height: 3px;
  position: absolute;
  top: -10px;
  left: 0;
}
.package-sec-heading h6{
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
  margin-top: 7px;
  line-height: 1.2;
}
.package-sec-heading h6 span{
  color: #c61c58;
  font-weight: 700;
}
.package-sec-body{

}
.single-pkg-wrapper{
  text-align: center;
  border: 4px solid #a8a8a8;
  padding: 20px 0;
  background: #fff;
}
.single-pkg-wrapper .single-pkg-head{

}
.single-pkg-head h4{
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.single-pkg-head h6{
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-bottom: 15px;
}
.single-pkg-head .single-pkg-price{

}
.single-pkg-price .price{
  font-size: 38px;
  font-weight: 600;
  line-height: 1.5;
}
.single-pkg-price .old-price{
  vertical-align: super;
  font-size: 18px;
  text-decoration: line-through;
  color: #717171;
  line-height: 1.5;
}
.single-pkg-body{
  margin: 35px 0;
  text-align: left;
  padding: 0 20px;
}
.single-pkg-body li{
  font-size: 16px;
  margin-bottom: 7px;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
  padding-bottom: 7px;
}
.single-pkg-body li i{
  font-size: 12px;
  margin-right: 3px;
  color: #000;
}
.single-pkg-body li sup{

}
.single-pkg-foot{
  margin-bottom: 25px;
}
.single-pkg-foot button{
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  width: 140px;
  padding: 10px 0;
  border-radius: 7px;
}
/* css for basic wrapper  */
.basic-wrapper{
  border: 4px solid #31353f;
}
.basic-wrapper h4{
  color: #31353f;
}
.basic-wrapper .price{
  color: #31353f;
}
.basic-wrapper button{
  color: #fff;
  background: #31353f;
}
/* css for pro wrapper  */
.pro-wrapper{
  border: 4px solid #c61c58;
}
.pro-wrapper h4{
  color: #c61c58;
}
.pro-wrapper .price{
  color: #c61c58;
}
.pro-wrapper button{
  background: #c61c58;
  color: #fff;
}
/* css for corporate wrapper  */
.corporate-wrapper{
  border: 4px solid #101834;
}
.corporate-wrapper h4{
  color: #101834;
}
.corporate-wrapper .price{
  color: #101834;
}
.corporate-wrapper button{
  background: #101834;
  color: #fff;
}
/* css for ultimate wrapper  */
.ultimate-wrapper{
  border: 4px solid #000;
}
.ultimate-wrapper h4{
  color: #000;
}
.ultimate-wrapper .price{
  color: #000;
}
.ultimate-wrapper button{
  background: #000;
  color: #fff;
}
/* Big package css starts */
.big-package-sec-body{
  box-shadow: 0px 0px 6px #333333cf;
  padding: 25px 0;
  border: 4px solid #aaa;
  border-radius: 8px;
  background: #fff;
}
.big-pkg-text-col-wrap{
  text-align: center;
  padding: 30px 0;
}
.big-pkg-text-col-wrap h3{
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 600;
}
.big-pkg-text-col-wrap h6{
  font-size: 16px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 10px;
}
.big-pkg-text-col-wrap .big-price{
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.big-pkg-list-col-wrap{

}
.big-pkg-list-col-wrap h4{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 7px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 7px;
  margin-right: 10px;
}
.big-pkg-list-col-wrap ul{
  margin-right: 10px;
}
.big-pkg-list-col-wrap ul li{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 7px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 7px;
}
.big-pkg-list-col-wrap ul li i{
  font-size: 12px;
  margin-right: 3px;
}
.big-pkg-list-col-wrap button{
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  width: 140px;
  padding: 10px 0;
  border-radius: 7px;
}
/*  special big package offer css  */
.special-pkg{
  border: 4px solid #c61c58
}
.special-pkg h3{
  color: #c61c58;
}
.special-pkg .big-price{
  color: #c61c58;
}
.special-pkg .big-pkg-list-col-wrap ul li i{
  color: #c61c58;
}
.special-pkg .big-pkg-list-col-wrap button{
  background: #c61c58;
  color: #fff;
}
/* award winning logo packages */
.awardwining-pkg{
  border: 4px solid #101834
}
.awardwining-pkg h3{
  color: #101834;
}
.awardwining-pkg .big-price{
  color: #101834;
}
.awardwining-pkg .big-pkg-list-col-wrap ul li i{
  color: #101834;
}
.awardwining-pkg .big-pkg-list-col-wrap button{
  background: #101834;
  color: #fff;
}
/* Branding Kits */
.brandingkits-pkg{
  border: 4px solid #31353f;
}
.brandingkits-pkg h3{
  color: #31353f;
}
.brandingkits-pkg .big-price{
  color: #31353f;
}
.brandingkits-pkg .big-pkg-list-col-wrap ul li i{
  color: #31353f;
}
.brandingkits-pkg .big-pkg-list-col-wrap button{
  background: #31353f;
  color: #fff;
}
/* last section contact sec  */
.last-sec .sec-2-img-wrap img{
  max-height: 420px;
  animation: updown ease-in-out 5s infinite;
}
.last-sec .sec-2-right-wrap h2{
  color: #c61c58;
}
.last-sec .sec-2-right-wrap h2::after {
  background: #c61c58;
}
.last-sec a{
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #c61c58;
}
.last-sec a i{
  font-size: 16px;
  margin-right: 4px;
}
/* footer css starts  */
.footer-social-wrapper {
  background: #121213;
  border-bottom: 1px solid #2f333d;
  border-top: 1px solid #31353f;
  padding: 20px 0;
  margin-top: 30px;
}
.single-social-wrap a {
  display: flex;
  align-items: center;
}
.single-social-wrap a:hover i {
  border-radius: 50%;
}
.single-social-wrap i {
  min-width: 45px;
  background: transparent;
  color: #fff;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 20px;
  border: 2px solid #fff;
  border-radius: 0px 10px 0px 10px;
  transition: all 0.3s ease-in-out;
}
.single-social-text {

}
.single-social-text h5 {
  font-weight: 300;
  font-size: 21px;
  line-height: 1.2;
  color: #fff;
}
.single-social-text p {
  color: #aeaeb0;
  font-size: 12px;
  line-height: 2;
  text-transform: uppercase;
}
.footer-bottom {
  padding: 30px 0;
  background: #000;
}
.footer-bottom p {
  text-align: center;
  color: #c1c1c1;
  font-size: 14px;
}
/***POP-UP-FORM***/

/**********POP-UP FORM***********/
.pop-up-section .modal {
  background: rgba(0,0,0,0.6);
}
.pop-up-section .modal-content{
  background: #121212;
  position: relative;
  border-radius: 20px;
}
.pop-up-section .form-right-wrapper{
  padding: 30px 25px;
  border-radius: 20px;
  border: 4px solid #c61c58;
  box-shadow: 0px 0px 10px #737373;
}
.pop-up-section .form-logo-wrapper{
  position: relative;
  text-align: center;
}
.pop-up-section .form-logo-wrapper img{
    max-width: 190px;
    margin: 0 auto;
}
.pop-up-section .form-logo-wrapper button.close{
  color: #fff;
  background: #c61c58;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  outline: none;
  box-shadow: none;
  opacity: 1;
  line-height: 18px;
  font-size: 28px;
  position: absolute;
  top: -34px;
  right: -29px;
}
.pop-up-section .form-logo-wrapper button.close:hover{
  opacity: 1;
}
.pop-up-section .quote-form-header p{
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  padding: 15px 0;
  text-align: center;
}
.pop-up-section .quote-form-header p span{
  color: #c61c58;
}
.pop-up-section .input-columns{
  margin-bottom: 20px;
  position: relative;
}
.pop-up-section .input-columns label{
  color: #ffd400; 
  font-size: 15px;
  line-height: 1;
  margin: 0;
  position: absolute;
  bottom: 10px;
  transition: all 0.35s;
}
.pop-up-section .input-columns input,
.pop-up-section .input-columns textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid #c61c58;
  box-shadow: none;
  outline: none;
  color: #fff;
  padding: 0px;
  border-radius: 0;
  resize: none;
  height: 40px;
}
.pop-up-section .input-columns input:focus,.pop-up-section .input-columns input.filled,
.pop-up-section .input-columns textarea:focus,.pop-up-section .input-columns textarea.filled,
.pop-up-section .input-columns select:focus,.pop-up-section .input-columns select.filled{
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.pop-up-section .input-columns select{
  background: transparent;
  border: none;
  border-bottom: 1px solid #c61c58;
  box-shadow: none;
  outline: none;
  color: #fff;
  padding: 0px;
  border-radius: 0;
  width: 100%;
  height: 40px;
}
.pop-up-section .input-columns select option{
    color: #fff;
    background: #c61c58;
}
.pop-up-section .input-columns input::placeholder,
.pop-up-section .input-columns textarea::placeholder{
  color: #fff;
}
.pop-up-section .input-columns textarea{
  width: 100%;
  height: 100px !important;
}
.pop-up-section .form-submit-button{
  position: relative;
  background: #c61c58;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 60px;
  border-radius: 0px;
  margin-top: 15px;
  display: inline-block;
  border: none;
  margin-left: 15px;
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.pop-up-section .form-submit-button svg{
    height: calc(100% + 0px);
    left: 4px;
    position: absolute;
    top: 4px;
    width: calc(100% + 0px);
    z-index: -1;
    transition: all 0.35s linear;
}
.pop-up-section .form-submit-button:hover svg{
    height: calc(100% + 8px);
    left: -4px;
    position: absolute;
    top: -4px;
    width: calc(100% + 8px);
}
.pop-up-section .form-submit-button rect {
    fill: none;
    stroke: #c61c58;
    stroke-width: 5;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}
.pop-up-section .form-submit-button:hover rect {
    stroke-width: 6;
    stroke: #c61c58;
    stroke-dasharray: 60, 198;
    stroke-dashoffset: 50;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.pop-up-section .form-submit-button img{
  position: absolute;
  max-width: 60px;
  left: -15px;
  top: -5px;
  transition: all 0.35s;
}
.pop-up-section .form-submit-button:hover img{
  transform: scale(0.65) translate(15px, 1px);
}
.pop-up-section .modal-dialog {
    max-width: 500px;
}
/* popup form css ends here  */
.bg-eee{
  background: #eee;
}
.ok{
    color: #c61c58 !important;
    border-bottom: 2px solid #c61c58;
}
@keyframes updown {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(-5px);
    }
}
  @keyframes scale {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }