/* -------------------------------- 

Slide In Panel - by CodyHouse.co

-------------------------------- */
.cd-main-content {
  text-align: center;
}

.cd-main-content h1 {
  font-size: 2rem;
  color: #64788c;
  padding: 4em 0;
}

.cd-btn {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background-color: #89ba2c;

  border-radius: 50em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.cd-btn:hover {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0);
}

@media only screen and (min-width: 1170px) {
  .cd-main-content h1 {
    font-size: 3.2rem;
  }
}




.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
 height: 100%; 
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
}

.cd-panel::after {
  /* overlay layer */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0s 0s;
  transition: background 0s 0s;
}

.cd-panel.cd-panel--is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.cd-panel.cd-panel--is-visible::after {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: background 0s 0s;
  transition: background 0s 0s;
}

.cd-panel__header {
  position: fixed;
  background:none;
  height: 50px;
  line-height: 50px;
  z-index: 2;
	background:#fff;
	padding-left:3.5rem;
	border-top-left-radius:8px;
  -webkit-transition: -webkit-transform 0s 0s;
  transition: -webkit-transform 0s 0s;
  transition: transform 0s 0s;
  transition: transform 0s 0s, -webkit-transform 0s 0s;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

.cd-panel__header h1 {
  color: #89ba2c;
  padding-left: 5%;
}

.cd-panel__content input, .cd-panel__content select , .cd-panel__content textarea {
	background-color:#fff;
}

.cd-panel--from-right .cd-panel__header {
  right: 0;
	left:0;
}

.cd-panel--from-left .cd-panel__header {
  left: 0;
}

.cd-panel--is-visible .cd-panel__header {
  -webkit-transition: -webkit-transform 0s 0s;
  transition: -webkit-transform 0s 0s;
  transition: transform 0s 0s;
  transition: transform 0s 0s, -webkit-transform 0s 0s;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

@media only screen and (min-width: 768px) {
  .cd-panel__header {
    width: 100%;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-panel__header {
    width: 100%;
  }
}

.cd-panel__close {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-panel__close::before, .cd-panel__close::after {
  /* close icon created in CSS */
  content: '';
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 20px;
  background-color: #424f5c;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.cd-panel__close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-panel__close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}



.cd-panel__close:hover::before, .cd-panel__close:hover::after {

  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
}

.cd-panel__close:hover::before {
  -webkit-transform: rotate(220deg);
      -ms-transform: rotate(220deg);
          transform: rotate(220deg);
}

.cd-panel__close:hover::after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.cd-panel--is-visible .cd-panel__close::before {
  -webkit-animation: cd-close-1 0.6s 0s;
          animation: cd-close-1 0.6s 0s;
}

.cd-panel--is-visible .cd-panel__close::after {
  -webkit-animation: cd-close-2 0.6s 0s;
          animation: cd-close-2 0.6s 0s;
}

@-webkit-keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.cd-panel__container {
  position: fixed;
  width: 100%;
  
  top: 90px;
  z-index: 1;
  -webkit-transition: -webkit-transform 0s 0s;
  transition: -webkit-transform 0s 0s;
  transition: transform 0s 0s;
  transition: transform 0s 0s, -webkit-transform 0s 0s;
}

@media screen and (min-width: 425px) {
	
	.cd-panel__container {
	height: 585px;
}

.call{
		height: 400px !important;
}
}

.cd-panel--from-right .cd-panel__container {
  right: 0;

  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.cd-panel--from-left .cd-panel__container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}


.head_red {
	color:#e96061 !important;
}

.cd-panel--is-visible .cd-panel__container {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
	background:#f6f6f6;
	border-radius:8px;
}

@media only screen and (min-width: 768px) {
  .cd-panel__container {
    width: 450px;
  }
}

@media only screen and (max-width: 425px) {

.cd-panel--from-right .cd-panel__header {
    right: 0;
    left: 0;
    padding-left: 1rem;
    margin: 0px;
}
	
	.click_red {
    top: 200px !important;
}
	.cd-panel__container {
margin-left:1rem !important;
    top: 81px !important;

}
}



@media screen and (max-width: 320px) {
	.cd-panel__content {
    width: 260px !important;
    min-width: 330px;
}
}
	

@media only screen and (min-width: 1170px) {
  .cd-panel__container {
    width: 450px;
  }
}

.cd-panel__content {
     position: absolute;
    top: 0;
    left: 0;
    width: 400px;
	background-color: white;
   height: 100%;
  padding: 40px 5%;
    font-size: 12px;

    overflow: auto;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}

.cd-panel__content p {

  color: #424f5c;
  line-height: 1.4;
  margin: 2em 0;
}

.cd-panel__content p:first-of-type {
  margin-top: 0;
}






/**** Red Button *****/

.click_red{
position: fixed;
    right: -59px;
    background-color: #e96061;
    padding: 0px 8px 0px 0px;
    top: 148px;
    color: #fff !important;
    text-decoration: none;
    transform: rotate(90deg);
    border-radius: 0px 0px 12px 15px;
    z-index: 101;
    display: inline-flex;
}
.click_red p {
    margin: 20px 20px 0px 0px !important;
}
.click_red:after {
	display: inline-block;

	margin-left: 8px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}
.click_red a:focus, .click_red a:hover {
	color: #ffffff;
}

.click_red:hover, .click_purple:hover, .click_green:hover {
	text-decoration: none;
}




.click_purple {
	position: fixed;
    right: 0;
    background-color: #7360a4;
    padding: 0px 5px 0px 9px;
    top: 250px;
    z-index:100;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0px 0px 0px 15px;
}


.click_purple:after {
	display: inline-block;
	font-size: 1.2em;
	margin-left: 8px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}
.click_purple a:focus, .click_purple a:hover {
	color: #ffffff;
}

.phone, .email {
	display: inline-flex;
	padding-right: 16px;
}
.details h3 {
	color: #000;

	margin-top: 26px;
	margin-bottom: 0;
}
@media screen and (max-width: 767px){
	.contact_img {
		display:none;
	}	
}
.inside_description p {
	color:#E96061;

}


.form input[type="text"] ,input[type="email"], input[type="tel"]{
	min-width: 300px;
	padding:15px;
}
.form .hs-form-field {
	margin-bottom: 0.7rem;
}

@media screen and (max-width:768px) {
	.click_purple {
		display:none;
	}
}

.click_purple img {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	display: inline-flex;
	-o-transform: rotate(0deg);
	margin: 18px 10px 15px 10px !important;

}


.click_red img {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	display: inline-flex;
	-o-transform: rotate(90deg);
    margin: 12px 10px 15px 10px !important;
}

.click_red p {
	margin: 15px 20px 10px 20px !important;
}



.form input[type="text"], input[type="email"], input[type="tel"] {
    min-width: 220px !important;
}



@media screen and (min-width: 375px) and (max-width: 424px) {
	.form input[type="text"], input[type="email"], input[type="tel"] {
    min-width: 220px !important;
    max-width: 300px !important;
}
}



@media screen and (min-width: 425px)  {
	.form input[type="text"], input[type="email"], input[type="tel"] {
    min-width: 220px !important;
    max-width: 330px !important;
}
}

.form input[type="text"], input[type="email"], input[type="tel"] {
	min-width: 100% !important;
}


@media not all and (min-resolution:.001dpcm)
{ @supports (-webkit-appearance:none) {

.click_purple {
	position: fixed;
    right: -1;
    background-color: #7360a4;
    padding: 0px 4px 0px 11px;
    top: 249px;
    z-index:100;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0px 0px 0px 15px;
}
	.click_red{
position: fixed;
    right: -63px;
    background-color: #e96061;
    padding: 10px 9px 6px 0px;
    top: 142px;
    color: #fff !important;
    text-decoration: none;
    transform: rotate(90deg);
    border-radius: 0px 0px 12px 12px;
    z-index: 101;
    display: inline-flex;
}
	
	.click_red img {
    margin: 15px 17px 10px 0px !important;
}
	
	
	.cd-panel__container {
  top: 89px;
}


}}


@media screen and (max-width: 768px) {
	.cd-panel__content{
		padding-left: 20px;
		height: 600px;
		
	}
	.head_red {
		margin-left: 40px;
	}
}