
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* { 
	box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: whitesmoke;
    letter-spacing: 0.2px;
    line-height: 1.5;

}
	
	/* ensures that older browsers will display HTML5 elements correctly */
 h1, h3 {
  color: #a11400;
 } 


h1 {
	font-size: 32px;
    font-family: 'Libre Baskerville', serif;
 

}

h3 {
	font-size: 20px;
    font-family: 'Poppins', sans-serif;
    
}



.legalprint {
  font-size : 13px;
  color : #ffcdd2;
  
}

	
img { 
	border: none;
	max-width: 100%;
}

.socio-wrap {
  display:flex; 
  margin-left:50px;
}

.img_socio {
  margin-right:10px; 
  max-width:25px;
}

.img_logo {
    width : 150px;

  }

  a:link, a:visited {
    color: #0D47A1;
    background-color: transparent;
    text-decoration: none;
  }


label {
  font-weight:500;
  margin-bottom: 2px;
}

p {
  font-size : 15px;
}


/** section layout css **/
.section-wrap-mid {

    width:1076px;
    display:flex;
    flex-direction: column;
    padding:15px;
    justify-content: center;
  /**  margin: 70px 0;  **/
    margin-top: 50px;
}


/** bookmark **/
@media screen and ( max-width: 1024px) {

  .section-wrap-mid {
    width : 100%;
  }

  .section-wrap-left {
    width :100%;
  }

  .wrapper {
    width :100% !important;
  }

  nav {
    width : 100% !important;
  }

  .order-proc {
    width:100% !important;
  }
  
}

.section-wrap-left {
  width:1280px;
  display:flex;
  flex-direction: row;
  padding:15px;
  justify-content:flex-start;
  margin-bottom: 5px;

}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
	padding-right:15px;
  
}

.section-header-left {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
	padding: 10px;
}

@media screen and (min-width: 600px)  {
  .mobile-break { display: none; }
}


	/* removes outlines from linked images (for older browsers and IE), sets up images for responsive design layout */
	
input[type="submit"]::-moz-focus-inner, 
	input[type="button"]::-moz-focus-inner {
		border : 0px;
	}
	/* removes the inner border effect from focused buttons for form elements in Firefox */
	
input[type="search"] { 
	-webkit-appearance: textfield;
} 
input[type="submit"] { 
	-webkit-appearance:none;
}
	/* removes the OS X appearance from HTML5 search inputs and submit buttons when viewed in Safari */
	
input:required:after {
	color: #f00;
	content: " *";
}
	/* sets up required form fields with the conventional following red asterix */
input[type="email"]:invalid { 
	background: #f00;
}
	/* causes a visual alert in browsers that do client-side checking of HTML5 email field – this may already be the default in some browsers. */
	
.right { 
	float: right;
	margin-left: 2rem;
	clear: right;
}
.left { 
	float: left;
	margin-right: 2rem;
	clear: left;
}
	/* allows a quick shortcut for floating elements left and right while avoiding the “float quirk” problem */
	
sub, sup { 
	line-height: 0;
}
/* sets superscript and subscript text so that it doesn't throw off leading for elements in which they are included */


/** Button effect **/
/* Ripple effect */
.ripple {
    background-position: center;
    transition: background 0.8s;
  }
  .ripple:hover {
    background: #DE0024 radial-gradient(circle, transparent 1%,#DE0024 1%) center/15000%;

  }
  .ripple:active {
    background-color: rgb(250, 246, 246);
    background-size: 100%;
    transition: background 0s;
  }

/** Button Pulse **/
  .pulse-button {
    border-radius: 9999px;
    text-decoration: none;
/**    font-size: 1.25rem;  **/
   
    display: inline-block;
/**    color: #f5f6fd;  **/
/**    position: relative;  **/
    border: none;
/**    box-shadow: 0 0 0 0 #fd3b44;  **/
    box-shadow: 0 0 0 0 gold;
    background-color: #fd3b44;
    cursor: pointer;
    padding: 7px;
    animation: pulse1 2s infinite cubic-bezier(0.66, 0, 0, 1);
    
    
    &:hover {
      animation: none;
    }
  }
  @keyframes pulse1 {to {box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);}}


  /** Pin Marker **/

.hiding {
    display:none;
}

.right400 {
  margin-right: -400px;
}

.right650 {
  margin-right: -650px;
}

.right40 {
  margin-right: -40px;
}

.right100 {
  margin-right: -100px;
}

.left30 {
  margin-left:30px;
}

.left50 {
  margin-left:50px;
}

.left100 {
  margin-left:100px;
}

.top20 {
  margin-top:-20px;
}

.top50 {
  margin-top:-50px;
}

.top70 {
  margin-top:-70px;
}

.down100 {
  margin-top:100px;
}

.down70 {
  margin-top:60px;
}

.down50 {
  margin-top:40px;
}

.down40 {
  margin-top:30px;
}
  
.marker-drop {
    margin-top:30px;
    width :100px;
    height : 10px;
  }

  .row1 {
    margin-top:10px;
    position:relative;
  } 

  .row2 {
    margin-top:130px;
    position:relative;
  } 

  .row3 {
    margin-top:187px;
    position:relative;
  } 

  .row4 {
    margin-top: 232px;
    margin-left: -30px;
    position:relative;
  } 

 /**  @media screen and (max-width: 360px) {
    .marker-drop {
      visibility: hidden;

    }  **/
  
  }




  @media screen and (width: 540px) {
    .marker-drop {
      visibility: hidden;

    }
	

	 
  }

  @media screen and (max-width: 768px) {
    
    .row4 {
      margin-top: 201px;
    }

    .marker-drop {
      height: 85px;

    }

    .img_socio {
      margin:8px 2px;
    }

  }


  @media screen and (max-width: 1024px) {
    .hidepin {
      display:none;
    }


  }

  .pin {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    background: #fff;
    position: relative;
    transform: rotate(-45deg); 
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    animation-name: bounce1; 
    animation-fill-mode: both;
    animation-duration: 1s;
  }
  .pin:after {
    content: '';
    width: 10px;
    height: 10px;
    margin: 5px 0 0 5px;
    background: #b90606;
    position: absolute;
    border-radius: 50%;
  }

  
  .pulse1 {
    background: rgba(253, 3, 3, 0.664);
    border-radius: 50%;
    height: 15px;
    width: 15px;
    position: relative;
    left: 50%;
    top: 50%;
    margin: 16px 0px 0px -10px;
    /** transform: rotateX(55deg); **/
  
  }

  .pulse1:after {
    content: "";
    border-radius: 50%;
    height: 30px;
    width: 30px;
    position: absolute;
    margin: -8px 0 0 -8px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    box-shadow: 0 0 1px 2px #fd0404;
    animation-delay: 1.1s;
  }

  .adj-pos {
    left: -14%;
    top: 43%;
  }

  .pulse {
    background: rgba(245, 244, 244, 0.664);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: relative;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -18px;
    transform: rotateX(55deg);
  
  }

  .pulse:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    box-shadow: 0 0 1px 2px #f4f3f7;
    animation-delay: 1.1s;
  }
  @-moz-keyframes pulsate {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
    }
  }
  @-webkit-keyframes pulsate {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
    }
  }
  @-o-keyframes pulsate {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
    }
  }
  @keyframes pulsate {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
    }
  }

  @-moz-keyframes bounce1 {
    0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
    }
    60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
    }
    80% {
      transform: translateY(-10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  @-webkit-keyframes bounce1 {
    0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
    }
    60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
    }
    80% {
      transform: translateY(-10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  @-o-keyframes bounce1 {
    0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
    }
    60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
    }
    80% {
      transform: translateY(-10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  @keyframes bounce1 {
    0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
    }
    60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
    }
    80% {
      transform: translateY(-10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  


/***  Navbar CSS ***/
 nav {
     
     display : flex;
     justify-content: space-around;
     align-items: center;
     min-height : 8vh;
     background-color: #AD2339;
     box-shadow: 5px 10px 8px #8a2424;
     position: fixed;
     width: 100%;
     z-index: 100;
 }


 .nav-links {
     display: flex;
     justify-content: space-around;
     float:right;
     margin-top:10px;
 }



 .nav-links li {
     list-style: none;
 }

 .wrapper {
     width:1280px;
 }

 .li_last a {
     margin-left:100px;
     color: gold;
 }

 .burger div{
     width : 25px;
     height : 3px;
     background-color : #000;
     margin: 5px;
     transition: all 0.3s ease;
 }

 .burger{
     display: none; 
     cursor:pointer;
}

.logo {
    float:left;
    display: flex;
    align-items: center;
}


/** Underline animatin **/
 .nav-links a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
/**    letter-spacing: 0.15em;  **/
    font-weight:400;
    font-size: 13px;
    letter-spacing: 1px;
    
    display: inline-block;
    padding: 15px 20px;
    position: relative;
  }
  .nav-links a:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: gold;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  .nav-links a:hover:after { 
    width: 100%; 
    left: 0; 
  }

  .lang {
    margin-top: 10px;
    color:gold;
    float: right;
    font-size : 13px;
    padding : 15px 20px;
  }
  
 .lang a:link {
	  color : gold;
  }
  
  .lang a:visited {
	  color : gold;
  }

  .langB {
    margin-top: 10px;
    color:gold;
    float: right;
    font-size : 13px;
    padding : 15px 20px;
  }

  .langB a:link {
	  color : gold;
  }
  
  .langB a:visited {
	  color : gold;
  }

  .selectCountry {
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
		font-weight: 600;
	font-size: 17px;
	margin-top: -5px;
  }

  .selectCountryb {
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
	font-weight: 600;
	font-size: 17px;
	margin-top: -5px;
  }
  

/** nav responsive **/




@media screen and (max-width: 768px){

  h1 {
    font-size: 27px;
  }

  .adj-pos {
    left: -14%;
    top: 24%;
  }
    
    body {
        overflow-x: hidden;
    } 

    nav {
        justify-content: space-between;
        width: 100%;
    }

    p {
      font-size : 14px;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        top: 7.3vh;
        background-color: #d83a54;
        display:flex;
        flex-direction: column;
        align-items:center ;
        width:60%;
        transform: translateX(100%);
        transition : transform 0.5s ease-in;
        height: 1000px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-links li{
        opacity:0;
        padding:5px;
        border-bottom: 2px solid #ce6b6b;
        width: 100%;
    }

    

    .logo {
    
    /** width: 50%;  **/
    margin-left:15px;

    }



    .burger {
        display : block;
        cursor: pointer;
        margin-right: 20px;
        float:right;
    }

    .line2 {
    width:15px !important;
    }

    .nav-links a {

        font-size: 12px;
    }

    .li_last a {
        visibility: hidden;
    }

    a {
    padding : 0;
    }

    .nav-active {
        transform : translateX(0%);
    }


    @keyframes navLinkFade {
        from{
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform:translateX(0);

        }
    }

.lang {
    font-size: 12px;
    padding-top: 18px;
    margin-top: -45px;
}

.langB {
  font-size: 12px;
  margin-top: 0px;
}

.img_logo {
  width: 70%;
}

}



.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}



/** End of screen 768 responsive **/


/** Body CSS **/

.mainbod {
    width:100%;
/**    height: 700px;  **/
    background: radial-gradient(136.61% 136.61% at 50% 50%, #FF1B40 0%, rgba(112, 4, 21, 0.85) 53.96%);
    display:flex;
    justify-content: center;
    height: 600px;
    

}

.mainbod h1 {
  color :white;
  font-size: 37px;
}


.mainbod-wrapper {
max-width : 100%;
border : 0px solid blue;
display:flex;
margin-top:70px;
flex-direction: row;
margin-top:100px;

}

@media screen and (width: 1080px){
  
  .mainbod-wrapper {
    max-width:100%;
  }

  .mainbod-wrap2 {
    width: 900px;
    border: 0px solid yellow;
    display: flex;
    background-image: url(/assets/indomap.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 25px 35px;
    }
  
    .mainbod h1 {
      font-size: 31px;
    }
  
    .img_logo {
    margin-top:5px;
    margin-left : 50px;
    width: 130px;
    }
    .mainbod-wrap1 {
    padding-left : 20px;
    }
  
    .track-div1 {
  
      padding-left: 20px;
    }
  
    .group-form input {
      width: unset !important;
    }
  
    .rate-wrapper {
  
      width: 95% !important;
    }
  
    .form-row-last {
      margin-left: 0px !important;
    }
  
    .select-text {
      width : 290px !important;
    }
  
    .select::after {
      right : 65px !important;
    }
  
    .select {
      width: 290px;
    }
  
  
    .select {
      width:290px !important;
    }
  
    .select2 {
      width:290px !important;
    }
  
    textarea {
      width: 290px !important;
      margin-left: -25px !important;
    }
  
    .goLeft {
      margin-left:-25px;
    }

}

@media screen and (width: 1024px){
  
  .mainbod-wrapper {
  width:95%;
  }
  .marker-drop {
    visibility: hidden;
  }
}


.mainbod-wrap1 {
width:40%;
height : 400px;
border: 0px solid yellow;;
padding : 10px;
white-space: nowrap;
margin-top:50px;
color:white;
position: relative;

}

.mainbod-wrap2 {
    width:60%;
    border: 0px solid yellow;
    display:flex;
    background-image: url(/assets/indomap.png);
    background-repeat: no-repeat;
    background-size: contain;
}


/** Mainbod button **/

.button_1, .button_2 {
    width: 220px;
    height: 46px;
    background: #DE0024;
    border: 2px solid #FFD700;
    box-sizing: border-box;
    box-shadow: 2px 2px 1px 1px rgba(28, 28, 28, 0.25);
    border-radius: 25px;
    color : white;
    font-family: open sans;
    font-size:16px;

}

.button_4 {
  width: 220px;
  height: 46px;
  background: #c9c9c9;
  border: 0px solid #FFD700;
  box-sizing: border-box;
  box-shadow: 2px 2px 1px 1px rgba(28, 28, 28, 0.25);
  border-radius: 25px;
  color : #8c8a8a;
  font-family: open sans;
  font-size:16px;
}

.button_3 {
    width: 220px;
    
    background: white;
    border: 3px solid #FFD700;
    box-sizing: border-box;
    border-radius: 25px;
    color : #676768;
    font-family: 'open sans', serif;
    font-size:15px;
    z-index:20;
    font-size:17px;
   
}

.hheader {
  font-weight:400; 
  color: #fff; 
  font-size: 21px;
}


/** Body Responsive **/



@media screen and (max-width: 768px){

  .addHeight {
    margin-bottom : 50px;
  }

  .hheader {
    font-size: 16px;
  }

.wrap1-inner {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

    
h3 {
    font-size : 18px;
}

.mainbod {
  overflow: hidden;
  height:650px;
  width:100%;

}

  .mainbod h1 {
      font-size: 34px;
  }



    .mainbod-wrapper {
        flex-direction: column;
        height:675px;
        margin-top:25px;
        padding: 5px;
        width: 100%;
    
    }    

    .mainbod-wrap1 {
        width:100%;
        height:300px;
        white-space: normal;

    }

    .mainbod-wrap2 {
        width:100%;
        margin-top:-70px;
        overflow: hidden;
        height:400px;
        background-position: center;
   /**     justify-content: center;  **/

    }

    #mark6 {
        display: none;
    }

    #mark5 {
        display: none;
    }

    .res-pos {
        margin-top:193px !important;
    }


}



@media screen and (max-width: 480px){

  .mainbod h1 {
    font-size: 23px;
    line-height: 1.25;
  }

  .mainbod-wrap2 {
  /**  margin-top: 5px;  **/
  }

}

@media screen and (max-width: 360px){

  .mainbod h1 {
    font-size: 22px;
  }

  .mainbod h3 {
    font-size: 14px;;
  }

  .mainbod-wrap2 {
    margin-top: 0px;
  }
	
	
    p {
      font-size : 13px;
    }
	 
  

}








/** Tracking div css **/

.tracking {
  width : 100%;
  background-color: #F44336;
  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color:white;
  font-size:16px;
  margin-top: -20px;

}

.tracking h1 {
  font-size: 30px;
  color : gold;
}

.track-wrapper {
  max-width:1280px;
  display:flex;
  flex-direction: row;
/**  padding:15px;
  margin: 25px 0 25px 0;  **/
  justify-content: center;
  align-items:center;
  flex-wrap: wrap;
}

.track-img {
  
  width:70px;
}

.track-div1 {
/**  width:40%;  **/
  display:flex;
  flex-direction: row;
  align-items: center;
  
}

.track-div1-inner1 {
  margin-left: 25px;
  width : 500px;
  padding: 17px;
}

.track-form {
  
  display:flex;
  justify-content :center;
  align-items:center;
  padding: 15px;
  margin-top: -20px;
}

.track-form ::placeholder {
  color:#F44336;
}

.input_track {
  background: #f44336;
    border: 2px solid white;
    line-height: 40px;
    margin-left: -1px;
    width : 200px;
    padding-left:10px;
    border-right: 0 none;
}

.input_search {
  display:flex;

  margin-top: 26px;

}

.input_search input[type=submit] {
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid white;
  width : 45px;
  line-height: 40px;
  background: transparent url(./image/carbon_search.png) no-repeat scroll;
  background-position: center;
  margin-left:-3px;
  
}



@media screen and (max-width: 768px){

  .track-form {
    align-items: unset;
  }

  .input_search input[type=submit] {
    margin-top:1px;
  }

  .track-div1-inner1 {
    width:100%;
  }

  .track-form ::placeholder {
    color:#fff;
  }

  .tracking h1 {
    font-size:26px !important;
    margin-left : 10px;
  }

  .tracking p {
    font-size: 15px ;
  }

  .track-div1 {
    width:100%;
  }


  .track-wrapper {
    flex-direction: column;
  }

  .track-img {
    width:34px;
  }

  .input_track {
    width: 100%;
  }

  .servImg {
    width : 70%;
    margin-right: 0px;
  }



}

.servImg {
  width : 70%;
  margin-right: 30px;

}

/** about us **/

.about-us  {
  width :100%;
  background-color: #FFCDD2;
  display:flex;
  justify-content: center;

  
}

.about-us h1,h3{
  color:#a11400;
  margin-top:0;
}

.about-us h1 {
  font-size : 32px;
}

.about-us a {
  color: #000;
  font-size: 17px;

}

.about-box-wrap {
  width: 100%;
/**  border: 1px solid blue; **/
  display:flex;
  flex-direction: row;

}

.about-inner {
 
 width : 50%;
 height : 200px;
 display:flex;
/** border: 1px solid yellow; **/
 padding:15px;
 margin-top:45px;
} 

.about-inner1 {
  width: 95%;
  margin-left:-4px;
  padding-right: 15px;
}


@media screen and (max-width: 768px){
  
  .about-box-wrap {
    flex-direction : column;
  }

  .about-inner {
    width: 100%;
    padding:5px;

  }

  .about-us a {
    font-size: 14px;
  
  }

  .noshow {
    display: none;
    }

    .input_search {
      margin-top: 23px;
  }

}

/** rates **/

.rates  {
  width :100%;
  background-color: #FFEBEE;
  display:flex;
  justify-content: center;
  flex-direction: row;
  
}

.rate-1 {
  border: 0px solid rgb(177, 176, 176);
  width: 70%;
  flex-direction: row;
  width: 100%;
  justify-content: flex-start;
  
}




.first-select {
  padding: 7px;
  width: 220px;
  margin-bottom: 15px;
  margin-right:15px;
  border: 2px solid red;

  background: #FFEBEE;
}

.first-select select option{
  height:50px;
}


.option-image {
  margin-top:0px;
}

.book-but {
  display: none;
}

.image-box {
/**  border: 1px solid blue;  **/
    flex-direction: column;
    align-items: center;
    display: flex;
}

/** booking form section **/
#booking-form {
  display: flex;
  width:100%;
  flex-direction: row;
  justify-content: center;
  background-color: #FFEBEE;
  display: none;
  scroll-margin-top: 100px;
}

.rate-3 {
 
  /* width: 70%; */
  justify-content: center;
  display: flex;
  flex-direction: row;
  /* width: 100%; */
  /** border: 1px solid rgb(2, 2, 2);  **/
  width : 100%;
 /** margin : 50px 0;  **/
}

.rate-wrapper {
  display: flex;
  flex-direction: column;
  background-color: #E0E0E0;
  width: 1280px;
  padding: 25px;
  border-radius : 30px;
  margin : 50px 0;
}

.form-row {
  display: flex;
  justify-content: center;
}

.form-row-last {
  display: flex;
  justify-content: flex-start;
  margin-left: 35px;
  
}

.form-row-legal {
  
  display: flex;
  justify-content: flex-start;
  margin-left: 35px;
  width : 250px;
  margin-top : 30px;
  align-items: flex-end;
}

.up {

  align-items:flex-start !important;
}





@media screen and (max-width: 768px){


  .last {
    margin-top:-100px;
  }

  .form-row2 {
    flex-direction: column;
  }

  .rate-wrapper2 {
    width: 100%;
    padding-left:35px;
    padding-right: 0px;
  }

  .rate-wrapper {
    padding-left:35px;
    padding-right: 0px;
  }

  .form-row-last {
    display: block;
    justify-content: flex-start;
    margin-left: 0px;
  }

  .rate-3 { 
    margin: 0px;
  }

  .form-row {
    flex-direction: column;

  }
  

.section-wrap-left {
  flex-direction: column;
  align-items: center;

}

.rate-1 {
  flex-direction:column;
  align-items: center
  
}

.rate-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
}





.first-select {
  margin-right:0;
  width:80%;
  height:45px;
}

.option-image {
  margin-top: 0px;
  width:80%;
  margin-right: 8%;
}

.book-but {
  display: block;
}

}


/*** divider ***/

.div-wrapper-right {
  width:100%;
  display:flex;
  flex-direction:row;
  justify-content:flex-end;

}

.div-wrapper-left {
  width:100%;
  display:flex;
  flex-direction:row;
  justify-content:flex-start;

}

.tri1 {
  width: 0;
height: 0;
border: 0 solid transparent;
border-left-width: 50vw;
border-right-width: 0px;
border-top: 3vh solid #DE0024;

}

.tri2 {
  width: 0;
height: 0;
border: 0 solid transparent;
border-right-width: 50vw;
border-left-width: 0px;
border-bottom: 3vh solid #DE0024;

}


/*** ordering process section **/

.desktop-view {
  display:flex;
  flex-direction: column;
}


.mobile-view {
  display:none;
}

#ordering-process {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: whitesmoke;
}

.order-proc {
  min-height : 500px;
  width : 1280px;
  display:flex;
  flex-direction: column;
  align-items: center;
  padding:15px;
  margin-bottom: 110px;;

}

.proc-wrapper {
  width :100%;
  /** border: 1px solid blue;  **/
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.proc-wrapper-inner {
 
  /** border: 1px solid blue;  **/
  display:flex;
  flex-direction:row;
  justify-content:center;
  margin-bottom: 50px;
}

.tri {
width: 0;
height: 0;
border: 0 solid transparent;
border-left-width: 50vw;
border-right-width: 0px;
border-top: 3vh solid red;

}

.rd-main {
  width: 200px;
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
  /**  justify-content: center;  **/
    align-items: center;
    background-color: fff;
    background: white;
  /**  padding: 25px;  **/
    margin-right: 20px;
  /**  height : 550px;  **/
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);


}

@media screen and (max-width: 768px){

  .rd-main {
    margin-right:0px;
    width:250px;
  }

  .rd {
    width : 250px;
  }

  .rd-box {
    font-size:17px;
  }
}






.rd {
/**  width:150px;
  height:150px;  **/
  border-radius : 50%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.rd2 {
  display:flex;
  flex-direction:row;
  align-items:flex-start;

}

.rd-h1 {
  font-size: 52px;
    color: white;
    margin-right: 10px;
    margin-top: -70px;
    position: absolute;
    margin-left : 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

.rd-box {
  color : white;
  width : 100%;
  padding : 15px;
}

.rd-img {
  width: 100%;
/**  height: 450px; **/
}

.rd-imgX {
  width: 100px;
}

.c1{
  background: linear-gradient(332.12deg, #DA7C00 0%, rgba(253, 146, 4, 0.2) 100%);
}

.c2 {
  background-color: #DA7C00;
}

.c3 {
  background-color: #EFAF02;
}

.c4 {
  background-color: #31B6D6;
}

.c5 {
  background-color: #E22E32;
}

.c6 {
  background-color: #013263;
}

.c7 {
  background-color: #F88A36;
}

.c8 {
  background-color: #E9C43B;
}

.delay-1 {
  animation-delay: .25s;
  }

.delay-2 {
  animation-delay: .5s;
  }

.delay-3 {
  animation-delay: .75s;
  }

.delay-4 {
  animation-delay: 1s;
  }

.delay-5 {
    animation-delay: 1.25s;
    }

.delay-6 {
      animation-delay: 1.5s;
      }

.delay-7 {
  animation-delay: 1.75s;
  }

  .delay-8 {
    animation-delay: 2s;
    }

/**
.box1 {
box-sizing: border-box;
width: 250px;
height: 190px;
border: 20px solid #F88A36;
border-radius: 15px 0px;
margin: 0 auto;
}


.circ {
  position: relative;
width: 75px;
height: 75px;
background: #Fff; 
box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15);
border-radius:50%;
  margin-left:-50px;
  margin-top:-5vh;
  display:flex;
  justify-content:center;
  align-items :center;
  border: 5px solid #FFD700;
}

.proc-img {
  background : red;
  width : 100%;
  height : 10vh;
}

**/

@media screen and (max-width: 768px){

  .order-proc {
    width:100%;
    flex-direction: column;
  }


  .proc-wrapper {
    flex-direction: column;
    width:250px;
  }

  .desktop-view, .socio-wrap {
    display:none;
  }

 .mobile-view{ 
  display:block;
  }

.carousel-control.left, .carousel-control.right {
    background-image: none
}

.carousel-indicators li {
  background-color: #669966;
}

.carousel-indicators .active {
  background-color: #FF7600;
}

.carousel-indicators {
  margin-bottom: -50px;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  display: flex;
}

.text-gradient3 {
  font-size : 22px !important;
}

}

/** FAQ **/

#faq {

  display :  flex;
  justify-content:center;
  flex-direction : row;
  background-color:#FFEBEE;
  
}

.faq-wrapper {
  width:1280px;
  margin: 100px 0;
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header {
  padding: 2.5rem 5rem 2.5rem 3rem;
  min-height: 3.5rem;
  /** line-height: 1.25rem;  **/
  font-weight: 400;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  color:black;
  font-size:16px;

}

.accordion-item-header.active {
  color:red;
}




.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  
}
.accordion-item-header.active::after {
  content: "\2212";
  color:red;
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 2rem;
  line-height: 2.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

@media screen and (max-width:767px) {
  


  .faq-wrapper {
    text-align: center;
    
  }

  .faq-wrapper p {
    text-align: left;
    padding :20px;
    
  }

  .accordion-item-header {
    padding: 1.5rem 3rem 1.5rem 2rem;
    text-align: left;
  }

  .accordion-item-body-content {
    line-height: 1.85rem;
    text-align: left;

  }

}


/** Socio Section **/

#socio {

  display :  flex;
  justify-content:center;
  flex-direction : row;
 
  
}


.socio-wrapper {
  width:1280px;
  flex-direction: row;
  margin: 70px 0 100px 0;

}

.socio-left {

  width: 65%;
  padding-left: 40px;

}

.socio-right {

  /** width: 40%;  **/
  border-left: 3px #e9e3e3 solid;
  padding-left: 40px;
  padding-bottom: 40px;

  
}

.socio-outer {
  display:flex;
  flex-direction: row;
 
}

@media screen and (max-width:767px) {

  .socio-outer {
    flex-direction: column;

  }

  .socio-right {

    width: 95%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .socio-left {

    width: 95%;
    /* padding-left: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    
  }

}

@media screen and (min-device-width : 320px) and  (max-device-width : 768px) {
  #instafeed-container a img 
  {
    width: 30%;
    margin: 2px;

  }
}

@media screen and (min-device-width : 768px) and  (max-device-width : 1024px) {
  #instafeed-container a img 
  {
      width: 120px;
      height: 120px;
      margin: 2px;

  }
} 

@media screen and (min-width: 1025px) {
  #instafeed-container a img 
  {
      width: 165px;
      height: 165px;
      margin: 2px;

  }
}
.socio-outer{
 background-color: white; 
}


/*** Footer ***/


#footer {
  display :  flex;
  justify-content:center;
  flex-direction : row;
  background-color: #292929;
  color : white;
  padding: 15px;
  

}

#footer h3 {
  color : #cdcdcd;
  font-size: 19px;
  font-weight: 300;
}

.foot-wrapper {

    width:1280px;
    flex-direction: row;
    height:auto;
    margin-top: 55px;
}

.foot-first {
  display:flex;
  margin-top: 15px;
  margin-bottom: 75px;
  align-items: baseline;
  
}

.foot-inner1 {
  width : 34%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.foot-inner2 {
  width : 33%;
  padding : 25px;
}

.des-l-res-c {

}

.foot-img {
  width:30px;
  height:30px;
}

/** contact us form **/
h2 		 { 
  text-align:center; 
  margin-bottom:50px; 
}
h2 small { 
  font-weight:normal; 
  color:#888; 
  display:block; 
}
.footer 	{ text-align:center; }
.footer a  { color:#53B2C8; }

/* form starting stylings ------------------------------- */
.group 			  { 
  position:relative; 
  margin-bottom:30px; 
  margin-top:25px;
}

.group-form 			  { 
  position:relative; 
  margin-bottom:30px; 
  margin-top:25px;
  margin-right : 40px
}



.group input 				{
  font-size:14px;
  padding:10px 10px 10px 5px;
  display:block;
  width:300px;
  border:none;
  border-bottom:1px solid #737373;
  background-color: #292929;
}

.group-form input 				{
  font-size:14px;
  padding:10px 10px 10px 5px;
  display:block;
  width:350px;
  border:none;
  border-bottom:1px solid #737373;
  background-color: #E0E0E0;
  color:#0D47A1;
}

.group input:focus 		{ outline:none; }

.group-form input:focus 		{ outline:none; }



/* LABEL ======================================= */
.group label 				 {
  color:#fff; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
.group input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label	{
  top:-20px;
  font-size:12px;
  color:#fff;
}

.group-form-3 input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label	{
  top:-20px;
  font-size:12px;
  color:#000;
}

textarea {
  font-size:14px; 
  width:350PX; 
  padding:10PX; 
  margin:0; 
  color: #0D47A1;
  background-color: #fff0;
  border : 1px solid #737373;
}





/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:100%; }
.bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
.group input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.group input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}


.group-form label  {
  color:black; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
  font-family: 'Open Sans', sans-serif;
}

.question-wrap {
  margin-left: 35px;
  margin-bottom : 30px;
}

/* active state */
.group-form input:focus ~ label, input:valid ~ label 		{
  top:-20px;
  font-size:12px;
  color:black;
}

/* BOTTOM BARS ================================= */
.bar-form 	{ position:relative; display:block; width:100%; }
.bar-form:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar-form:before {
  left:50%;
}
.bar-form:after {
  right:50%; 
}

/* active state */
.group-form input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.group-form input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}




/** button **/

.contact_butt {
width: 133px;
height: 34px;


background: #363636;
border: 1px solid #FFFFFF;
box-sizing: border-box;
border-radius: 25px;
} 


/**  end of contact us font css **/


@media screen and (max-width:767px) {

  .question-wrap {
    margin-left: 0px;
  }

  .group-form {
    margin-right: 0px;

  }

  #footer h3 {
    font-size : 18px;
  }

  .foot-first {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  
  .foot-inner1 {
    width : 100%;
    justify-content: center;
    margin-bottom: 50px;
  }
  
  .foot-inner2 {
    width : 100%;
   
    
  }

  .foot-img {
    width:20px;
    height:20px;
  }

  /**  Cookkiieeee css  **/
  .cc-window.cc-banner {
    padding: 1.5em 1.8em
  }
  .cc-message {
    font-size: 12px;
    line-height: 1.4
  }
  .cc-compliance {
    padding-left: 4em
  }
  .cc-banner .cc-btn:last-child {
    /* min-width: 140px; */
    width: 100px;
  }
    .cc-compliance {
      padding-left: 0em;
  }

  .text-gradient2 {
    font-size: 28px !important;
  }

}


.stack__card {
  padding-top:10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  position: sticky;
  top: 70px;
  /** box-shadow: 0 -1px 3px rgba(0,0,0,0.1), 0 -1px 2px rgba(0,0,0,0.25);  **/
  
}

/** anchor for links to compensate nav bar**/
.anchor {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;

}

.anchor1 {

  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;

}

/** Gradiest for text **/
.text-gradient{
  font-weight: bold;
  text-align: center;
  background: #da4453; /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #da4453, #89216b);
  background: linear-gradient(to right, #da4453, #89216b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  background: #DA4453;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #89216B, #DA4453);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #89216B, #DA4453); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.text-gradient3 {
  font-size: 27px;
  font-weight: 600;
  text-align: left;
  background: #DA4453;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #89216B, #DA4453);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #89216B, #DA4453); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}


/** animation setting **/



.cssAnimate {
  opacity: 0;

  
}


.underline {
  --line: #646b8c;
  --color: #03A9F4;
  text-decoration: none;
  color: var(--color);
  position: relative;
}
.underline span {
  background-image: linear-gradient(0deg, var(--line) 0%, var(--line) 100%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 1px;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  font-size: 16px;
  line-height: 20px;
  transform: translateZ(0);
}
.underline svg {
  vertical-align: top;
  display: inline;
  line-height: 1;
  width: 13px;
  height: 20px;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  stroke: var(--line);
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
  margin-top:5px;
  
}
.underline:hover {
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
}

.title-div {
  margin-top:9px;
  width:150px;
  border: 1px solid rgb(233, 121, 121);
  margin-bottom: 30px;
}

/** Whatsapp **/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

a.float:any-link {
  background-color:#25D366 ;
  color:white;

}

.my-float{
	margin-top:16px;
}

.bg-gold {
  background-color:gold !important;
} 

/** Hide scrollbar  **/
.disable-scrollbars::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Chrome/Safari/Webkit */
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}



#promo {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.promo-wrap {
    display:flex;
    justify-content: center;
    width:1280px;
    font-size: 58px;
    background-color: whitesmoke;
    padding:15px;
    background-image: linear-gradient(45deg, #faf7f7 25%, #ffffff 25%, #ffffff 50%, #faf7f7 50%, #faf7f7 75%, #ffffff 75%, #ffffff 100%);
    background-size: 56.57px 56.57px;  
    

}

.promo-inner {
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.promo-inner h1 {
    font-size: 48px;
}

.promo-img {
    width:500px;
    
}

.term-txt {
    font-size: 12px;
}

.promo-inner p {
    
    font-weight: 600;
}



/*** Abt us page css **/

#abtus {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
/**    background-color: #F44336;  **/
}


.story-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top:-15px;
    position: relative;

}

.story {
    width :90%;
    height : 240px;
    border: 2px solid black; 
    background-color: rgba(0, 0, 0, 0.751);
    z-index: 30;
    position: relative;
    color: white;
    padding: 15px;
    border-radius: 15px;
    overflow: scroll;
}

.story p {
    font-size: 13px !important;
}

.story h1 {
    color:gold;
    font-size: 25px;
}

.abt-wrapper {
    width:1280px;
    z-index:10;
    position : relative;
    height: 100%;
    color : white;
}

.abt-left {
    z-index: 10;
    top: 0;
    position: absolute;
    background-color: rgb(234 234 234);
    height: 100%;
    overflow: hidden;
    padding: 35px;
    max-width: 25%;
    font-size: 13px !important;
    box-shadow: 4px 4px 14px 2px #00000029;
    color:#333333;
}



.abt-left h1 {
/**    color:gold;  **/
}

.abt-left p {
    font-size : 1.7vh !important;
    line-height: 1.5;
}


.abt-img {
    z-index:1;
    
}

#staff {
    --stripe: #d9d9d9;
    --bg: #e1e1e1;

    background: linear-gradient(135deg, var(--bg) 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, var(--bg) 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, var(--bg) 25%, transparent 25%),
    linear-gradient(45deg, var(--bg) 25%, transparent 25%);
  background-size: 100px 100px;
  background-color: var(--stripe);


  display:flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.staff-wrapper {
    margin-top: 100px ;
    display: flex;
    flex-direction: column;
    align-items:center;
    position:relative;
    width:100%;

    
}


.staff-wrapper h1 {
    text-align: center;
    font-size: 27px ;
}

.staff-wrapper-row {
/**    margin-top: 30px;  **/
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width:100%;
    justify-content: center;
}

.staff-wrapper-row3 {
/**    margin-top: 30px;  **/
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width:100%;
    justify-content: center;
}

.staff-wrapper-row2 {
/**    margin-top: 30px;  **/
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
/**     width:100%;  **/
    justify-content: center;
 
    
}

.perbox1 {
    width:210px;
    height: 300px;
/**    background-color:white; **/
    margin:7px;
    padding:10px;
    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius : 15px;
    
    
}

.perbox2 {
    width:160px;
    height: 270px;
/**    background-color:white;  **/
    margin:7px;
    padding:10px;
    display:flex;
    flex-direction: column;
    align-items: center;
    border-radius : 15px;
    text-align:center;
    
}

.per-img {
    border-radius: 50%;
    border:7px solid gold;
    width:150px;
    display: flex;
    margin:20px 0;
/**    -webkit-box-shadow: 5px 5px 15px 5px #000000a1;
    box-shadow: 4px 7px 10px 2px #0000009c;  **/
    box-shadow: 4px 4px 14px 2px #00000029;


}

.red1 {
    
    border:7px solid #ef5350;

}


.blu1 {
    
    border:7px solid #ff8a80;

}

.blu2 {
    
    border:7px solid  #82B1FF;

}

.blu3 {
    
    border:7px solid  #B9F6CA;

}



.per1 {
    font-size: 19px !important;
    font-weight:400;
}

.per2 {
    
    font-weight:600;
}


/** scroll Indicator **/

  







/*** Tracking CSS **/

#trackinglive {
    display: flex;
    flex-direction:row;
    justify-content: center;

}

#tracking h1, h2,h3 {
    color : #a11400;
/**     font-family: 'Libre Baskerville', serif;  **/
}


.order-txt {
    font-size : 72px;
    font-weight:600;
    margin-bottom:100px;
}

.track-wrapper1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: 150px;
   
    align-items: center;
}

.track-diag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width:100%;
    height: 100%;
}

.rnd {
    height:40px;
    width : 40px;
    border-radius: 50%;
    border: 2px solid red;
    position: relative;
    font-weight: bold;;
}

.line-1{
    display:flex;
    height: 2px;
    background: red;
    width:10%;
    position:relative;
    margin-top:20px;
    justify-content: center;
    align-items : center;
  }

  .lifi {
    background: #CCC7C7;
  }

  .rndli {
    border: 2px solid #CCC7C7;
  }

  .fill {
      background-color: red;
      background-image: url(./image/tick.png);
      background-repeat: no-repeat;
      background-position:center;

  }


  .box {
    width: 150px;
    height: 100px;
    background-color: lightgrey;
    color: #000;
    padding: 20px;
    position: relative;
    margin-bottom: 5px;
    float: left;
    border-bottom: 5px solid grey;
  }

  .box.arrow-bottom:after {
    content: " ";
    position: absolute;
    right: 58px;
    bottom: -15px;
    border-top: 20px solid lightgrey;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: none;
  }

  .stat-row {
    width: 100%;
    height: 200px;
  }

  .stat {
    width: 150px;
    margin-top:-260px;
    height: 100%;
  }

  .stat-label {
      width:100px;
      margin-top : 50px;
      margin-left : -35px;
      text-align: center;
      font-size : 17px;
      font-weight: 400;;
  }





  @media  screen and  (max-width: 1024px){

    .promo-inner {
        margin-top: 70px;
        text-align: center;
    }

    .promo-inner h1 {
        font-size: 27px;
        text-align: center;
    }

    .abt-wrapper {
        width:100%;
    }

    .abt-img {
        margin-top:70px;
    }

}

@media  screen and  (max-width: 768px){

    .abt-left {
        display : none;
    }

    #staff {
        flex-direction: column!important;
    }

    .staff-wrapper-row {
    /**    width: 350px;  **/
        justify-content: center;
         flex-wrap:wrap;  
        /** overflow-x: scroll;  **/
    }



    .perbox2 {
        width: 100px;
        height: 150px;
        font-size: 0px;
        background-color:#ffffff00;
    }

    .staff-wrapper-row2 {
        margin-top: -40px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width:100%;
        justify-content: center;
        
        
    }

    .staff-wrapper-row3 {
        /**    width: 350px;  **/
            justify-content: center;
            /** flex-wrap:wrap;   **/
            /** overflow-x: scroll;  **/
        }

        .track-diag {
            display: flex;
            flex-direction: column;
            /* justify-content: center; */
            width: 100%;
            height: 800px;
            align-items: center;
        }

        .stat-row {
            width: 100%;
          
            flex-direction: column;
            display: flex;
            height:unset;
        }

        .stat-label {
            width: 100px;
            margin-top: 0px;
            margin-left: -35px;
            /* text-align: center; */
            font-size: 17px;
            font-weight: 400;
            margin-left: -120px;
            min-height: 150px;
        }

        .line-1 {
            display: flex;
            height: 30%;
            background: red;
            width: 2px;
            position: relative;
            margin-top: 0px;
            justify-content: center;
            align-items: center;
        }

        .stat {
            width: 150px;
            margin-top: 00px;
            height: 100%;
            margin-right: -200px;
            margin-bottom: -00px;
            position: absolute;
            display:flex;
        }

        .box.arrow-bottom:after {
            content: " ";
            position: absolute;
            left: -15px;
            top: 35px;
            border-top: 15px solid transparent;
            border-right: 15px solid lightgrey;
            border-left: none;
            border-bottom: 15px solid transparent;
            right: unset;
            bottom: unset;
        }

        .box {
            height:100%;
        }

        .section-wrap-mid {
            display:flex;
            flex-direction: column;
            padding-bottom: 50px;
        }



}

/** service css **/
.about-service {
width: 100%;
display: flex;
justify-content: center;
align-items:center;
flex-direction: column;


}

.about-section1 {
    width : 1076px;
    display:flex;
    padding : 20px;
    margin:0 auto;
    margin-top: 120px;

}

.bg-color-grey {
    background-color: whitesmoke;
}

.bg-color-white {
    background-color : white;
}

.inner-Column {

    display: flex; 
    flex-direction: column;
    margin-bottom : 70px;
}

.service-inner-row {

    display: flex; 
    flex-direction: column;
    width : 50%;
    
}


.inner-RowtoColumn {

        display: flex; 
        flex-direction: row;
        padding-right:30px; 
    /**    line-height :25px;  **/
    }

.img-shadow {
    -webkit-box-shadow: 5px 5px 9px -1px rgba(0,0,0,0.57); 
    box-shadow: 5px 5px 9px -1px rgba(0,0,0,0.57);
}

.margin-right {
    margin-right : 70px;
}

.rate-table {
    padding : 30px; 
    display: flex; 
    flex-direction: column;
    max-width : 1076px;
    margin : 0 auto;
}

.container {
    width : 100%;
}

/** quotation form **/
.form-group textarea {
    display: block;
    background: none;
    padding: 0.125rem 0.125rem 0.0625rem;
    font-size: 1rem;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    color: transparent;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
    box-shadow: none;
  }

  .form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #333;
}
.form

.group-form2 input {
    font-size: 14px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    border-bottom: 1px solid #737373;
    background-color: #E0E0E0;
    color: #0D47A1;
    justify-content:space-between;
}

.form-row2 {
    display: flex;
    justify-content: center;
}

.rate-wrapper2 {
display: flex;
flex-direction: column;
background-color: #E0E0E0;
width: 1076px;
padding: 25px;
border-radius: 30px;
margin: 50px 0;

}

/** start **/

/* select starting stylings ------------------------------*/
.select {
  font-family:
    'Roboto','Helvetica','Arial',sans-serif;
	position: relative;
	width: 350px;
}

.select-text {
	position: relative;
	font-family: inherit;
	background-color: transparent;
	width: 350px;
	padding: 10px 10px 10px 0;
	font-size: 15px;  
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0, 0.12);
}

/* Remove focus */
.select-text:focus {
	outline: none;
	border-bottom: 1px solid rgba(0,0,0, 0);
}

	/* Use custom arrow */
.select .select-text {
	appearance: none;
	-webkit-appearance:none
}

.select:after {
	position: absolute;
	top: 18px;
	right: 10px;
	/* Styling the down arrow */
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.12);
	pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
	color: rgba(0,0,0, 0.26);
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 10px;
	transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
	color: #222222;
	top: -20px;
	transition: 0.2s ease all;
	font-size: 11px;
}

.select-text:valid {
    color :#0D47A1;
}

/* BOTTOM BARS ================================= */
.select-bar {
	position: relative;
	display: block;
	width: 350px;
}

.select-bar:before, .select-bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #2F80ED;
	transition: 0.2s ease all;
}

.select-bar:before {
	left: 50%;
}

.select-bar:after {
	right: 50%;
}

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
	width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

/** services mobile view **/
@media screen and ( max-width: 768px) {

    .about-section1 {
    margin-top: 50px;
    }

    .rate-wrapper2 {
        width:100%;
    }

    .rate-table {
    margin:unset;
    }

    .inner-RowtoColumn {

    flex-direction: column;
    width : 100%;
    }


    .about-section1 {
        width: 100% !important;
        display:flex;
        flex-direction : column;

    }

    .service-inner-row {
        width : 100%;
        margin-bottom: 25px;
    }

    .container {
        padding-left : 0px !important;
    }

    .margin-right {
        margin-right : 0px;
    }


}


/** Modal css **/

.modal-content {
    border-radius: 0px;
}

ul {
    list-style-type: none;
} 

.modal-body p, li{
    font-size: 11px;
    line-height: 1.5;
} 




/** multi select **/
.select2-selection--multiple:before {
    content: "";
    position: absolute;
    right: 7px;
    top: 42%;
    border-top: 5px solid #888;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.select2-container--default .select2-selection--multiple {
    background-color: #ffffff00 !important;
    border-top : 0px solid #aaa !important;
    border-left : 0px solid #aaa !important;
    border-right : 0px solid #aaa !important;
    border-bottom : 1px solid #aaa;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 0px !important;
    font-size:13px;
}



.top-marg {
    margin-top :12px;
    width : 380px;
}

.credit{background:#fff;position:relative;display:inline-block;padding:10px 20px;border:1px solid #ddd;border-radius:20px}

/* CSS Multiple Whatsapp Chat */
#whatsapp-chat{position:fixed;background:#fff;width:350px;border-radius:10px;box-shadow:0 1px 15px rgba(32,33,36,.28);bottom:90px;right:30px;overflow:hidden;z-index:99;animation-name:showchat;animation-duration:1s;transform:scale(1)}
a.blantershow-chat{background:linear-gradient(to right top,#6f96f3,#164ed2);color:#fff;position:fixed;z-index:98;bottom:25px;right:30px;font-size:15px;padding:10px 20px;border-radius:30px;box-shadow:0 1px 15px rgba(32,33,36,.28)}
a.blantershow-chat i{transform:scale(1.2);margin:0 10px 0 0}
.header-chat{background:linear-gradient(to right top,#6f96f3,#164ed2);color:#fff;padding:20px}
.header-chat h3{margin:0 0 10px}
.header-chat p{font-size:14px;line-height:1.7;margin:0}
.info-avatar{position:relative}
.info-avatar img{border-radius:100%;width:50px;float:left;margin:0 10px 0 0}
.info-avatar:before{content:'\f232';z-index:1;font-family:"Font Awesome 5 Brands";background:#23ab23;color:#fff;padding:4px 5px;border-radius:100%;position:absolute;top:30px;left:30px}
a.informasi{padding:20px;display:block;overflow:hidden;animation-name:showhide;animation-duration:2.5s}
a.informasi:hover{background:#f1f1f1}
.info-chat span{display:block}
#get-label,span.chat-label{font-size:12px;color:#888}
#get-nama,span.chat-nama{margin:5px 0 0;font-size:15px;font-weight:700;color:#222}
#get-label,#get-nama{color:#fff}
span.my-number{display:none}
.blanter-msg{color:#444;padding:20px;font-size:12.5px;text-align:center;border-top:1px solid #ddd}
textarea#chat-input{border:none;font-family:'Arial',sans-serif;width:100%;height:20px;outline:none;resize:none}
a#send-it{color:#555;width:40px;margin:-5px 0 0 5px;font-weight:700;padding:8px;background:#eee;border-radius:10px}
.first-msg{background:#f5f5f5;padding:30px;text-align:center}
.first-msg span{background:#e2e2e2;color:#333;font-size:14.2px;line-height:1.7;border-radius:10px;padding:15px 20px;display:inline-block}
.start-chat .blanter-msg{display:flex}
#get-number{display:none}
a.close-chat{position:absolute;top:5px;right:15px;color:#fff;font-size:30px}
@keyframes showhide{from{transform:scale(.5);opacity:0}}@keyframes showchat{from{transform:scale(0);opacity:0}}

@media screen and (max-width:480px){
	#whatsapp-chat{width:auto;left:5%;right:5%;font-size:80%}
}
.hide{display:none;animation-name:showhide;animation-duration:1.5s;transform:scale(1);opacity:1}
.show{display:block;animation-name:showhide;animation-duration:1.5s;transform:scale(1);opacity:1}

.rowA {
    width: 20%;
}
.rowB {
    width: 20%;
}
.rowC {
    width: 20%;
    margin-top: -35px;
}
.rowD {
    width: 20%;
    margin-top: -16px;
}
.rowE {
    width: 20%;
}
.rowF {display:none;}
.rowG {display:none;}
.adjheight {
    display:none;
}
@media screen and (min-width: 812px) and (max-width:1080px) {
    .rowA, .rowB, .rowC, .rowD, .rowE { margin-top: 28px; margin-left:23px;}
    .rowC {margin-top:-10px}
    .rowB {margin-top:5px}
    .rowD {margin-top: -1px}
    .rowE {margin-top: -5px;}
    }

@media screen and (min-width: 769px)  and (max-width:811px) {
    .rowA, .rowB, .rowC, .rowD, .rowE { margin-top: -15px; margin-left:-15px;}
    .rowC {margin-top:-168px; margin-left:-50px;}
    .rowB {visibility:hidden}
    .rowE {margin-top:64px}
    .rowD {visibility: hidden;}


    .hideTall {
        display : none;
    }

    }

@media screen and (min-width: 429px)  and (max-width:768px) {
    .rowA, .rowB, .rowC, .rowD, .rowE { margin-top: 35px;}
}

@media screen and (min-width: 361px) and  (max-width:428px) {
    .rowA, .rowB, .rowC, .rowD, .rowE { margin-top: 39px; margin-left:-13px; visibility:hidden;}
    
    .rowF {
    position:absolute;
    margin-top:100px;

    width : 360px;
    height : 220px;
    display:block;
    }
	
}

@media screen and (min-width: 0px) and  (max-width:360px) {

.rowA, .rowB, .rowC, .rowD, .rowE { margin-top: 39px; margin-left:-13px; visibility:hidden;}

.rowF {
position:absolute;
margin-top:100px;

width : 360px;
height : 220px;
display:block;
}

.rowG {
position:absolute;
margin-top:200px;

width : 360px;
height : 50px;
display:block;
}

.adjHeight {
    margin-top:-59px;
}

.hideSmall {
    display: none;
}

