/* Global Css */
:root{
    --primary:#13313F;
    --testimonialBg:#EFEFEF;
    --testimonialBg15:#EFEFEF15;
    --primaryGrad:linear-gradient(to bottom, #254C5F 40%, #13313F);

    --secondary:#254C5F;

   
    --white:#ffffff;
    --black:#000000;
    --white15:#ffffff15;
    --c18181A:#18181A;
    --D9D9D9:#D9D9D9;
    --c787878:#787878;
    --c1F1F1F:#1F1F1F;
    --whitish:#F0F0F0;
    --stars:#FF9D00;

    --formHeadBg:#EAEAEA;
    --formInputBg:#F3F3F3;
    --radioLabel:#0F0F0F;
    --radioBorder:#0F0F0F20;
    --inputInnerBg:#2D5669;
    --submitInnerBg:#5E9CB3;
}
*{
    box-sizing: border-box;
}


*, a, ul, li, h1, h2, h3, h4, h5, h6, p, div, main, aside, nav, header{
    margin:0;
    padding:0;
}
input, select, input:focus, select:focus{
    outline:0;
}
html{
    
}
body{
    font-family: "Inter", sans-serif;
    line-height: normal;
}
ul, li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width:100%;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Urbanist", sans-serif;
    line-height: normal;
}
h2{
    text-transform: capitalize;
    margin-bottom: 5px;
    color:var(--primary);
}
p{
    line-height: 26px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--inputInnerBg) inset !important;
    -webkit-text-fill-color: #fff !important;
}

/* Homepage Banner Form Start */
.banner-form{}
.banner-form .form-head{
    background-color: var(--formHeadBg);
    width:max-content;
    color:var(--c18181A);
    font-size:16px;
    font-weight:500;
    padding:10px 45px;
    border-radius: 10px 10px 0 0;
}
.banner-form form{
    background-color: var(--white);
    padding:25px 25px;
}
.inner-page-banner .banner-form form{
    background-color: var(--primary);
}
.inner-page-banner .banner-form .form-head{
    width:100%;
    text-align: center;
}
.inner-page-banner .banner-form .single-field label{
    color:var(--white);
}
.inner-page-banner .banner-form .single-field input{
    background-color: var(--inputInnerBg);
    border-radius: 50px;
    color:var(--white);
}
.inner-page-banner .banner-form .single-field input::placeholder{
    color:var(--white)
}
.inner-page-banner .banner-form .submit-btn button{
background-color: var(--submitInnerBg);
border-radius: 50px;
}
.banner-form .single-field{
    display: flex;
    flex-direction: column;
    margin-bottom:20px;
}
.banner-form .single-field label{
    font-size:16px;
    color:var(--c18181A);
    font-weight:500;
    line-height:24px;
    margin-bottom:5px;
}
.banner-form .single-field-with-img{
    position: relative;
}
.banner-form .single-field-with-img img{
    position: absolute;
    left:12px;
    top:12px;
    max-width:24px;
    max-height:24px;
    object-fit: contain;
}
.banner-form .single-field input{
    background-color: var(--formInputBg);
    border:0 none;
    padding:10px 25px 10px 45px;
    border-radius: 8px;
    height: 45px;
    width:100%;
}
.banner-form .submit-btn{
    align-self: flex-end;
}
.banner-form .submit-btn button{
    background-color: var(--primary);
    border-radius: 8px;
    color:var(--white);
    font-size:16px;
    font-weight:500;
    line-height: 24px;
    border:0 none;
    height:45px;
}
.banner-form .form-radio{
    display: flex;
}
.banner-form .form-radio .single-radio{
    margin-right:15px;
    margin-bottom:0;
}
.banner-form .form-radio .single-radio input{
    display: none;
}
.banner-form .form-radio .single-radio label{
    background-color: var(--white);
    color:var(--c18181A);
    border:1px solid var(--radioBorder);
    border-radius: 50px;
    padding:10px 15px;
    cursor: pointer;
}
.banner-form .form-radio .single-radio input:checked + label{
    background-color: var(--primary);
    color:var(--white)
}
.inner-page-banner .banner-form .form-radio .single-radio label{
    border: 1px solid #476C7D;
    background-color:transparent;
    color:var(--white);
}
.inner-page-banner .banner-form .form-radio .single-radio input:checked + label{
    background-color:var(--white);
    color:var(--primary);
}


/* Country Search Start */f
.autocomplete-results {
  position: absolute;
  background: #fff;
  z-index: 2;
  top: 100%;
  left: 0;
  font-size: 13px;
  border-top-width: 0;
  border-bottom-color: #ccc;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.autocomplete-result {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.autocomplete-result:last-child {
  border-bottom-width: 0;
}

.autocomplete-location {
  opacity: 0.8;
  font-size: smaller;
}

.autocomplete-results[data-highlight="0"]> :first-child,
.autocomplete-results[data-highlight="1"]> :nth-child(2),
.autocomplete-results[data-highlight="2"]> :nth-child(3),
.autocomplete-results[data-highlight="3"]> :nth-child(4),
.autocomplete-results[data-highlight="4"]> :nth-child(5),
.autocomplete-results[data-highlight="5"]> :nth-child(6),
.autocomplete-results[data-highlight="6"]> :nth-child(7),
.autocomplete-results[data-highlight="7"]> :nth-child(8) {
  color: #fff;
  background: var(--primary-color);
  border-bottom-color: var(--primary-color);
  outline: solid 1px var(--dark-primary-color);
}
/* Country Search End */

/* Datepicker  */
#datepicker-modal {
    left: 50%;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .2);
    border-radius: 5px;
    display: none;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
}
div#datepicker-modal h3 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}
/* Calendar */
#datepicker-modal {
    left: 50%;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .2);
    border-radius: 5px;
display:none;
top: 50%;
    transform: translate(-50%, -50%);
position:fixed;
}
#datepicker-modal, .ui-datepicker {
    background-color:var(--white);
}
div#datepicker-modal h3 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}
.ui-datepicker-header {
    height: 50px;
    line-height: 50px;
    background: var(--primary);
    margin-bottom: 10px;
    border-radius: 5px;
color:var(--white)
}
.ui-datepicker-next, .ui-datepicker-prev {
    width: 20px;
    height: 20px;
    text-indent: 9999px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 12px;
}
.ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}
.ui-datepicker-next {
    float: right;
    margin-right: 12px;
}
.ui-datepicker-next:after, .ui-datepicker-prev:after {
    content: "";
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin: -43px 0 0 8px;
}
.ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin: -43px 0 0 6px;
}
.ui-datepicker-title {
    text-align: center;
    font-size: 15px;
}
.ui-datepicker .ui-datepicker-title select.ui-datepicker-month {
    width: 45px;
}
.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
    width: 55px;
}
.ui-datepicker .ui-datepicker-title select {
    background-image: url(../images/download.svg);
    background-repeat: no-repeat;
    background-position: 85% center;
    background-size: 15px;
    outline:0;
    border:none;
}
.ui-datepicker select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
background: 0 0;
}
.ui-datepicker select option{
    color:#000;
}
.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}
.ui-datepicker-calendar thead tr th span {
    
}
.ui-datepicker-unselectable .ui-state-default {
    color: #b5b5b5 !important;
    border: 2px solid #fff0;
    background: 0 0 !important;
}
.ui-state-default:hover {
    background-color: #aaa;
    border-radius: 50px;
    transition: .25s 
cubic-bezier(.7, -.12, .2, 1.12);
color:var(--white);
}
.ui-state-highlight{
    color: var(--primary);
    border-radius: 50px;
}

.ui-state-default {
    display: block;
    text-decoration: none;
    color: #333;
    line-height: 40px;
    font-size: 16px;
}
.ui-state-active {
    color: var(--white);
    background-color: var(--primary);
    border-radius: 50px;
}


/* Form Misc Start */
.banner-form form > .row .form-radio, .banner-form form > .row .form-selection{
    margin-bottom: 20px;
}
.banner-form .form-selection{
    display: flex;
    justify-content: flex-end;
}
.banner-form .form-single-misc{
    margin-left:20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    background-color: var(--formInputBg);
    border-radius: 50px;
    padding: 0 15px;
}
.banner-form .form-single-misc img{}
.banner-form .form-single-misc span{
    color:var(--black);
    margin:0 8px;
    font-size:16px;
    line-height: 24px;
}
.banner-form .form-single-misc i{
    color:var(--black);
}

.room-input{
    display: none;
    position: absolute;
    top: 30px;
    z-index:1;
    background: var(--white);
    width: 300px;
    padding: 20px;
    /* height: 40px; */
    border-radius: 20px;
    overflow: hidden;
}
.room-input input{
    background-color: var(--white);
    border: 0 none;
    outline: 0;
    width: 100%;
    height: 100%;
}
.room-input > strong{
    text-align: left;
    display: block;
    margin-bottom: 10px;
}
.rooms-col{
    flex-direction: row;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}
.rooms-col input{
    width:auto;
}
.rooms-col label{
    margin-left:10px;
     cursor: pointer;
}
.traveler-type{
    justify-content: space-between;
    margin-bottom:20px;
}
.traveler-type:last-child{
    margin-bottom: 0;
}
.traveler-type .traveler-left{
    display: flex;
    align-items: center;
    font-weight: bold;
}
.traveler-type .traveler-left img{
    margin-right:5px;
}
.traveler-type .traveler-right{
    display: flex;
}
.traveler-type .traveler-right button{
    width:24px;
    height:24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.banner-form  .traveler-type .traveler-right button i{
    font-size: 10px;
    color: var(--black);
}
.banner-form  .traveler-type .traveler-right span{
    color:var(--black);
    min-width: 10px;
    font-weight: bold;
}
.room-container{
    width:100%;
}
.room-container > h5{
    color:var(--white);
    text-align: left;
    margin-bottom: 10px;
}
.banner-form .form-fields-row .room-container .form-fields-row{
    justify-content: flex-start;
}
.banner-form .form-fields-row .room-container .form-fields-row .form-persons {
    margin-left: 10px;
}
.banner-form .form-fields-row .room-container .form-fields-row .form-persons:nth-child(4n + 1) {
    margin-left: 0;
}
#roomsWrapper{
    width:100%;
}
/* Form Misc End */
/* Homepage Banner Form End */


.section-head{
    display: flex;
    flex-direction: column;
}
.testimonials .section-head{
    align-items: center;
}
.section-head span{
    font-family: "Urbanist", sans-serif;
    font-size:16px;
    color:var(--primary);
    font-weight: 500;
    padding:5px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    border:1px solid var(--primary);
    width:max-content;
}
.section-head h1, .section-head h2{
    font-size:48px;
    color:var(--primary);
    font-weight:600;
    line-height:52px;
    margin-bottom:15px;
}
.section-head p{
    font-size:16px;
    color:var(--black);
    margin-bottom:25px;
}
.section-head ul{
    list-style: upper-alpha;
    padding-left:30px;
}
.section-head ul li{
    font-size:16px;
    color:var(--black);
    margin-bottom:25px;
    list-style: inherit;
    line-height:26px;
}
.primary-btn{
    background-color: var(--primary);
    border-radius: 6px;
    padding:15px 80px;
    color:var(--white);
    font-size:36px;
    line-height:60px;
    background: url(../images/primary-btn-img.png) no-repeat scroll top center;
    background-size: cover;
    width:max-content;
    border-radius:10px;
}
.btn-wrapper{}
.btn-wrapper a:first-child{
    margin-right:15px;
}
/* Header Start */
nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
nav .main-menu{
    
}
nav .main-menu ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .main-menu ul li{
    position:relative;
}
nav .main-menu ul li:not(:last-child){
    margin-right:25px;
}
nav .main-menu ul li a{
    text-transform: capitalize;
    color:var(--c18181A);
    font-weight: 500;
    font-size: 16px;
    line-height:52px;
    display:block;
}

nav .main-menu ul li .submenu{
    position:absolute;
    background-color:var(--white);
    transition:all .5s ease-in-out;
    border-radius:10px;
    display:none;
    top:100%;
    left:0;
    z-index:9999;
}

nav .main-menu ul li .submenu ul{
    flex-direction:column;
    display:flex;
}
nav .main-menu ul li .submenu ul li{
    margin-right:0;
}
nav .main-menu ul li .submenu ul li a{
    padding: 10px 15px 10px 15px;
    width: 100%;
    min-width: 250px;
    line-height:26px;
}
.header-right{
    display: flex;
    align-items: center;
}
.header-right .profile-icon{
    width:40px;
    height:40px;
    border-radius: 50%;
    margin-left:10px;
}
.header-right .language-switcher{
    border:1px solid #ccc;
    padding:5px;
    border-radius: 50px;
}
/* Header End */
/* Homepage Banner Form Start */
.banner-form{}
.banner-form .form-head{}
/* Homepage Banner Form End */
/* Banner Sec Start */
.banner-sec{
   padding:140px 0 140px 0; 
    position: relative;
}
.banner-sec:before{
    position: absolute;
    content:'';
    width:calc(100% - 30px);
    left:15px;
    right:15px;
     background: url(../images/banner-bg.png) no-repeat scroll top center var(--primary);
    background-size: cover;
    height:100%;
    z-index: -1;
    border-radius: 20px;
    top:0;
}
.inner-banner{
   padding:170px 0 170px 0; 
    position: relative;
}
.inner-banner:before{
    position: absolute;
    content:'';
    width:calc(100% - 30px);
    left:15px;
    right:15px;
     background: url(../images/inner-banner-bg.png) no-repeat scroll top center var(--primary);
    background-size: cover;
    height:100%;
    z-index: -1;
    border-radius: 20px;
    top:0;
}
.flights-pakistan:before{
    background: url(../images/flights-pakistan.webp) no-repeat scroll top center var(--primary);
}
.inner-page-banner{
    padding:50px 0;
}
.banner-sec .section-head{}
.banner-sec .section-head h1{
    font-size: 80px;
    color: var(--white);
    font-weight: 600;
}
.banner-sec.inner-page-banner .section-head{
    justify-content: center;
}
.banner-sec.inner-page-banner .section-head h1{
    font-size:60px;
    line-height:80px;
}
.banner-sec .section-head p{
    font-size:16px;
    line-height:24px;
    color:var(--white)
}
.inner-banner .section-head p{
    margin-bottom: 0;
}
.banner-sec .section-head a{}
.banner-sec .section-head a{
    background-color: var(--white);
    border-radius: 50px;
    padding: 5px 5px 5px 15px;
    color:var(--black);
    font-size:14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    align-self: center;
}
.banner-sec .section-head a span{
    background-color: var(--primary);
    border-radius: 50%;
    margin-left:5px;
    width:30px;
    height:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:0;
}
.banner-sec .section-head a span i{
    color:var(--white);
    
}
/* Banner Sec End */

.home-sec1-col .slick-slider .slick-slide a span i, .banner-sec .section-head a span i, .trip-sec .trip-head a span i{
    transform: rotate(-45deg);
}

/* Country List Sec Start */
.country-list{
    position: relative;
    top:-120px;
}
.single-country{
    position: relative;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.single-country:before{
    position: absolute;
    content:'';
    background: url(../images/country-frame.png) no-repeat scroll top center;
    background-size: cover;
    width:225px;
    height:285px;
    top: 15px;
    left:15px;
    z-index: -1;
}
.single-country .country-img{
    position: relative;
    top:25px;
    left:20px;
    width:calc(100% - 49px);
    overflow: hidden;
    
    border-radius: 80px;
    
}

.single-country .country-img:before{
    background-color: var(--secondary);
    content: '';
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    transition: all .5s ease-in-out;
}
.single-country .country-img:after{
    position: absolute;
    content:'';
    background-color: var(--white);
    width:50px;
    height:4px;
    top:89%;
    left:0;
    right:0;
    transition: all .5s ease-in-out;
    margin:auto;
}
.single-country.inactive:first-child .country-img:before{
    top:0;
}
.single-country.inactive:first-child .country-img:after{
    top:89%;
}
.single-country.inactive:first-child .country-package{
    top:-40px;
}
.single-country:hover .country-img:before, .single-country.active .country-img:before, .single-country.active:first-child .country-img:before{
    top:-80%;
}

.single-country:hover .country-img:after, .single-country.active .country-img:after, .single-country.active:first-child .country-img:after{
    top:20%
}
.single-country:hover .country-package, .single-country.active .country-package, .single-country.active:first-child .country-package{
    top:0;
}
.single-country .country-name{
    position: relative;
    z-index: 2;
    background-color: var(--primary);
    padding:20px 25px;
    color:var(--white);
    border-radius: 50px;
    font-size:24px;
    text-align: center;
    top:0px;
}
.single-country .country-package{
    background-color: var(--secondary);
    padding:5px 25px 10px 25px;
    border-radius: 0 0 50px 50px;
     color:var(--white);
    text-align: center;
    width:max-content;
    align-content: center;
    margin: auto;
    position: relative;
    top:-40px;
    transition: all .5s ease-in-out;
}
/* Country List Sec End */

/* Sponsor Sec Start */
.sponsor-sec{
    padding-bottom:60px;
}
.sponsor-sec .sponsor-head{
    display: flex;
    column-gap: 10px;
    justify-content: center;
}
.sponsor-sec .sponsor-head p{
    font-size: 18px;
    color:var(--black);
}
.sponsor-sec .sponsor-head .stars{
    display: flex;
    align-items: center;
    column-gap: 5px;
    justify-content: space-between;
}
.sponsor-sec .sponsor-head .stars i{
    color:var(--stars)
}
.sponsor-slider{
    margin:25px auto 0 auto;
}
/* Sponsor Sec End */
.home-sec1{
    padding-top:180px;
    padding-bottom: 60px;
    position:relative;
}
.home-sec1:before{
    position: absolute;
    content:'';
    top:0px;
    left:290px;
    right:0;
    width:900px;
    height:320px;
    background: url(../images/home-before-img.png) no-repeat scroll top center;
    margin:auto;
    z-index: 2;
}
.home-sec1 .section-head{
    position: relative;
    z-index: 3;
}
.home-sec1-col .slick-slider{
    /* padding:120px 0 0px 0; */
    height:100%;
    overflow: hidden;
    border-radius: 20px;
}
.home-sec1-col .slick-slider .slick-list{
    height:100%;
}
.home-sec1-col .slick-slider .slick-track{
    display: flex;
    column-gap:20px;
    height: 100%;
}
.home-sec1-col .slick-slider .slick-track .slick-slide{
    /* padding:0 40px; */
}
.home-sec1-col .slick-slider .slick-track .slick-center{
    /* padding:0 40px; */
}
.home-sec1-col .slick-slider:before{
    position: absolute;
    content:'';
    background: url(../images/home-slider-bg.png) no-repeat scroll top center;
    width:280px;
    height:360px;
    top:0;
    bottom: 0;
    left:0;
    right:0;
    margin: auto;
}
.slide-item {
  transition: all 0.4s ease;
  height: 100%;
  align-content: flex-end;
  opacity: 0.6;
  /* padding: 20px; */
}

.slick-center .slide-item {
  
  opacity: 1;
  /* align-content: center; */
  height:calc(100% - 30px);
 
}
.slick-center .slide-item {
  
}

.home-sec1-col .slick-slide:not(.slick-center) {
  /* padding-right:20px */
   /* padding:0 40px; */
   transform: scale(0.8);
   transform-origin: bottom center;
}


.slick-slide {
  display: flex !important;
  justify-content: center;
}
.slide-item img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.slick-center {
  z-index: 3;
}

.slick-slide {
  z-index: 1;
  transition: all 0.3s ease;
}
.home-sec1-col{
    position: relative;
}
.home-sec1-col:before{
    position: absolute;
    content: '';
    background: url(../images/mobile-frame.png) no-repeat scroll top center;
    width:330px;
    height:100%;
    top:0;
    left:0;
    right:0;
    margin: auto;
}

.home-sec1-col .single-slide{
    display: flex;
    flex-direction: column;
}
.home-sec1-col .single-slide img{
    width:max-content;
}
.home-sec1-col .slick-slider .slick-slide a{
    background-color: var(--primary);
    border-radius: 50px;
    padding: 5px 5px 5px 15px;
    color:var(--white);
    font-size:14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    align-self: center;
    width:max-content;
    position: relative;
    top:-20px;
    margin: auto;
    visibility: hidden;
}
.home-sec1-col .slick-slider .slick-center a{
    visibility: visible;
}
.home-sec1-col .slick-slider .slick-slide a span{
    background-color: var(--white);
    border-radius: 50%;
    margin-left:5px;
    width:30px;
    height:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:0;
}
.home-sec1-col .slick-slider .slick-slide a span i{
    color:var(--primary)
}

/* Deals Section Start */
.deals-sec{
    padding:80px 0 140px 0;
    position: relative;
}
.deals-sec:before{
    position: absolute;
    content:'';
    top:0;
    left:0;
    background: url(../images/deals-sec-before.png) no-repeat scroll top center;
    width:320px;
    height:320px;
}
.deals-sec:after{
    position: absolute;
    content:'';
    bottom:0;
    right:0;
    background: url(../images/deals-sec-after.png) no-repeat scroll top center;
    width:520px;
    height:235px;
    z-index: -1;
}
.deals-slider{}

.deals-slider .slick-arrow{
    background-color: var(--c18181A);
    width:40px;
    height:40px;
    color:var(--white);
    border-radius: 50%;;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--c18181A);
    transition: all .5s ease-in-out;
    position: absolute;
    bottom:-60px;
    left:0;
    right:0;
    margin:auto;
    cursor: pointer;
}
.deals-slider .slick-arrow i{
    font-size:20px;
}
.deals-slider .slick-arrow:hover{
    background-color: var(--white);
}
.deals-slider .slick-arrow:hover i{
    color:var(--c18181A)
}
.deals-slider .slick-next{
    left:60px;
}
.deals-slider .slick-prev{
    right:60px;
}
.deals-slider .slick-dots{
    display: flex;
    width:max-content;
    margin:auto;
    position: absolute;
    left:0;
    right:0;
    bottom:-100px;
}
.deals-slider .slick-dots li{
    margin-right:10px;
}
.deals-slider .slick-dots li button{
    width:10px;
    height:10px;
    text-indent: -99999px;
    background-color: var(--D9D9D9);
    border-radius: 50px;
    border: 0 none;
}
.deals-slider .slick-dots li.slick-active button{
    width:65px;
    background-color: var(--primary);
}
.single-deal{
    position: relative;
    width:50%;
}
.single-deal > img{
    position: relative;
    top:0;
    z-index: -1;
    width:100%;
}
.single-deal .deal-container{
    position: absolute;
    top: 20px;
    left: 30px;
    right:30px;
    bottom:20px;
    height: calc(100% 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.single-deal .deal-head, .single-deal .deal-foot{
    display: flex;
    justify-content: space-between;
}
.single-deal .deal-head-right span{
    background-color: var(--white15);
    padding: 10px 15px;
    border-radius: 50px;
    color:var(--white);
    font-size:12px;
}
.single-deal .deal-content{}
.single-deal .deal-content h4{
    font-size:20px;
    font-weight: 500;
    color:var(--white);
    line-height:28px;
}
.single-deal .deal-content h2{
    font-size:60px;
    font-weight: 600;
    color:var(--white);
    margin-bottom:0;
    margin-top:10px;
}
.single-deal .deal-foot a{
    background-color: var(--white);
    padding:10px 25px;
    font-size:16px;
    line-height:24px;
    color:var(--c18181A);
    border-radius: 8px;
}
.single-deal .deal-foot span{
    color:var(--white);
    font-size:12px;
}
/* Deals Section End */

/* Slider Css Start */
.deals-slider .slick-track, .testimonials-slider .slick-track{
    display: flex;
}
.deals-slider .slick-track .slick-slide, .testimonials-slider .slick-track .slick-slide{
    padding: 0 15px 0 0;
}
/* Slider Css End */
/* Testimonials Sec Start */
.testimonials{
    background-color: var(--testimonialBg);
    padding:80px 0;
}
.testimonials-slider{
    position: relative;
}
.testimonials-slider .slick-track{
    padding-top:40px;
}
.testimonials-slider:before{
    position: absolute;
    content:'';
    top:0;
    left:0;
    background: linear-gradient(to right, var(--testimonialBg) 25%, var(--testimonialBg15));
    width: 300px;
    height: 100%;
    opacity: .6;
    z-index: 1;
}
.testimonials-slider:after{
    position: absolute;
    content:'';
    top:0;
    right:0;
    background: linear-gradient(to left, var(--testimonialBg) 25%, var(--testimonialBg15));
    width: 300px;
    height: 100%;
    opacity: .6;
    z-index: 1;
}
.testimonials-slider{}
.testimonials-slider .single-testi{
    /* background-color: var(--white); */
    border-radius: 20px;
    /* background: url(images/testimonial-bg.png) no-repeat scroll top center;
    background-size: cover; */
    background-color: var(--white);
    position: relative;
   text-align: center;
   padding:80px 25px 40px 25px;
       transition: all .5s ease-in-out;
}
.testimonials-slider .single-testi:hover, .testimonials-slider .slick-slide.slick-current .single-testi{
    /* background-color: var(--primary); */
     /* background: url(images/testimonial-bg-hover.png) no-repeat scroll top center;
    background-size: cover; */
    background-color: var(--primary);
}
.testimonials-slider .single-testi:hover svg, .testimonials-slider .slick-slide.slick-current .single-testi svg{
    display: none;
}
.testimonials-slider .single-testi:hover .testi-cont, .testimonials-slider .slick-slide.slick-current .single-testi .testi-cont{
    color:var(--white)
}
.single-testi svg{
    position: absolute;
    top:30px;
    left:30px;
}
.testimonials-slider .single-testi .testi-img{
    position: absolute;
    top:-20px;
    width:80px;
    height:80px;
    border: 4px solid var(--testimonialBg);
    border-radius: 50%;
    overflow: hidden;
    left:0;
    right:0;
    margin:auto;
}
.testimonials-slider .single-testi .testi-img img{
    width:100%;
}
.testimonials-slider .single-testi .testi-cont{
    /* padding-top: 80px; */
    color:var(--c787878);
    transition: all .5s ease-in-out;
}
.testimonials-slider .single-testi .testi-cont p{
    font-size:16px;
    line-height:18px;
    font-family: "Urbanist", sans-serif;
    margin-bottom:30px;
}
.testimonials-slider .single-testi .testi-cont h4{
    font-size:16px;
   
    font-weight: 600;
}
/* Testimonials Sec End */
/* Trip Sec Start */
.trip-sec{
    padding:80px 0;
}
.trip-sec .trip-head{
    background: var(--primaryGrad);
    border-radius: 30px;
    padding: 60px 50px 180px 50px;
    text-align: center;
    position: relative;
}
.trip-sec .trip-head:before{
    position: absolute;
    content:'';
    bottom:0;
    background:url(../images/trip-section-img.png) no-repeat scroll bottom center;
    background-size: 100%;
    width:100%;
    height:100%;
    left:0;
    z-index: 0;
}
.trip-sec .trip-content{
    position: relative;
    z-index: 1;
}
.trip-sec .trip-head h2{
    font-size: 60px;
    font-weight: 700;
    color:var(--white);
}
.trip-sec .trip-head p{
    font-size:24px;
    color:var(--white);
    line-height:32px;
    margin-bottom:20px;
}
.trip-sec .trip-head a{
    background-color: var(--white);
    border-radius: 50px;
    padding: 5px 5px 5px 15px;
    
    color:var(--black);
    font-size:14px;
    font-weight: bold;
    height: 40px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
.trip-sec .trip-head a span{
    background-color: var(--primary);
    border-radius: 50%;
    margin-left:5px;
    width:30px;
    height:30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trip-sec .trip-head a span i{
    color:var(--white)
}

/* Trip Sec End */
/* Faq Sec Start */
.faq-sec{
    padding-bottom:80px;
}
.single-left-col-faq{
    background-color: var(--white);
    box-shadow:1px 1px 10px 3px #ededed;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 30px;
    position: relative;
}
.single-faq-col-bottom{
    background-color: var(--whitish);
    box-shadow: 0 0 0 transparent;
}
.single-left-col-faq .head-faq{
    display: flex;
    justify-content: space-between;
}
.single-faq-col-bottom .head-faq{
    align-items: center;
}
.single-faq-col-bottom .head-faq h4{
    margin-bottom: 0;
}
.single-left-col-faq h4{
    font-size:24px;
    color:var(--c1F1F1F);
    font-weight: 600;
    margin-bottom:15px;
}
.single-left-col-faq p{
    font-size:13px;
    color:var(--c1F1F1F);
    font-weight: 500;
}
.single-left-col-faq a{
    background-color: var(--primary);
    border-radius: 50px;
    width:40px;
    height:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.single-left-col-faq a i{
    color:var(--white)
}
.single-faq-middle{
    text-align: right;
    margin:20px 0;
}
.faq-right-col{
    padding-left:50px;
}
.faqs{
    margin-top:35px;
}
.single-faq{
    border-bottom: 1px solid #ccc;
    margin-top:0;
    transition: all .5s ease-in-out;
}
.single-faq .question{
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    padding:15px;
    border-radius: 16px;
    transition: all .5s ease-in-out;
}
.single-faq.active:not(:first-child){
    margin-top:20px;
}
.single-faq.active .question{
    background-color: var(--primary);
}
.single-faq .question h3{
    font-size:22px;
    font-weight: 400;
    color:var(--black)
}
.single-faq.active .question h3{
    color:var(--white);
}
.single-faq .question svg{
    transform: rotate(180deg);
    transition: all .5s ease-in-out;
}
.single-faq .question svg path{
    fill:var(--black);
}
.single-faq.active .question svg{
    transform: rotate(0);
}
.single-faq.active .question svg path{
    fill:var(--white)
}
.single-faq .answer{
    padding:25px 15px 0 15px;
    display: none;
}
.single-faq .answer p{}
.faq-sec.faq-page{
    padding-top:80px;
}
.faq-sec.faq-page .section-head{
    align-items: center;
}
.faq-sec.faq-page .section-head.flights-page{
    align-items:flex-start;
}

/* Faq Sec End */

/* Services Page Start */
.left-right-sec{
    padding:80px 0;
}
.left-right-sec .left-right-row{
    align-items: center;
}
.left-right-sec .left-right-row:first-child{
    margin-bottom: 50px;
}
.left-right-sec .left-right-img{}
.left-right-sec .left-right-img img{}
/* Services Page End */

/* About Page Start */
.about-sec{
    padding:80px 0;
}
.about-sec .section-head{
    align-items: center;
}
/* About Page End */

/* footer Start */
footer{
    background-color: var(--primary);
    padding:40px 50px;
}
footer .footer-widget{
    
}
footer .footer-widget .footer-col p{
    font-size:16px;
    line-height: 28px;
    color:var(--white);
}
footer .footer-widget .footer-col .footer-logo{
    margin-bottom:20px;
}
footer .footer-widget .quick-links{
    display: flex;
    justify-content: space-between;
}
footer .footer-widget .quick-links h4{
    font-size:24px;
    line-height:32px;
    color:var(--white);
    font-weight: 500;
    margin-bottom:10px;
}
footer .footer-widget .quick-links ul{}
footer .footer-widget .quick-links ul li{
    margin-bottom:10px;
}
footer .footer-widget .quick-links ul li a{
    font-size:16px;
    color:var(--white)
}
footer .footer-bottom .footer-bottom-menu{
    display: flex;
}
footer .footer-bottom .footer-bottom-menu a{
    color:var(--white);
    font-size:16px;
}
footer .footer-bottom .footer-bottom-menu a:not(:first-child){
    margin-left:15px;
}
footer .footer-bottom .copyrights p{
    color:var(--white);
    font-size:16px;
    text-align: right;
}
.footer-logo-big{
    margin:20px 0;
}
.footer-logo-big h4{
    font-size:170px;
    font-weight: bold;
    color:var(--white);
    text-align: center;
}

/* Footer Flight Links Start */
.footer-flight-links{
    margin:35px 0 50px 0;
    padding-top:35px;
    border-top:1px solid var(--white);
}
.footer-flight-links ul{}
.footer-flight-links ul li{
    margin-bottom:10px;
}
.footer-flight-links ul li a{
    color:var(--white);
    font-size:16px;

}
.footer-social{}
.footer-social ul{
    display:flex;
    
}
.footer-social ul li{
    margin-left:10px;
}
.footer-social ul li a{}
/* Footer Flight Links End */
/* footer End */

/* Contact Page Start */
.contact-sec{}
.contact-sec .section-head{
    align-items: flex-start;
    padding-right: 50px;
    position: relative;
}
.contact-sec .section-head:before{
    position: absolute;
    content:'';
    top:50px;
    bottom:50px;
    right:0;
    width:2px;
   
    background-color: var(--D9D9D9);
}
.contact-sec .contact-form{
    padding-left:50px;
}
.contact-sec .contact-form form{}
.contact-sec .contact-form form .single-field{
    width:100%;
    margin-bottom: 20px;
}
.contact-sec .contact-form form .single-field input, .contact-sec .contact-form form .single-field textarea{
    border:0 none;
    width:100%;
    height:45px;
    border-bottom: 1px solid #000;
}
.contact-sec .contact-form form .single-field textarea{
    height:100px;
}
.contact-sec .contact-form form .submit-btn button{
    background-color: var(--primary);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border: 0 none;
    padding:0 25px;
    height: 45px;
}
.contact-details{}
.contact-details .single-contact{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom:20px;
}
.contact-details .single-contact i{
    color: var(--c18181A);
    margin-right:5px;
}
.contact-details .single-contact strong, .contact-details .single-contact a strong{
    color:var(--c18181A);
    font-weight:400;
}
.contact-details .single-contact a{
    color:var(--c18181A)
}
/* Contact Page End */

.menu-icon{
    display: none;
}

@media screen and (max-width:1600px){

}

@media screen and (max-width:1560px){
    .banner-sec .section-head h1, .banner-sec.inner-page-banner .section-head h1{
        font-size:56px;
    }
    .trip-sec .trip-head h2{
        font-size:48px;
    }
    .section-head h1, .section-head h2{
        font-size:40px;
        line-height:44px;
    }
    .deals-sec:before{
        top:-10px;
        left:-70px;
    }
    .footer-widget .col-md-5{
        flex:1;
    }
    .footer-widget .col-md-4{
        width:40%;
    }
}

@media screen and (max-width:1366px){
    .single-country:before{
        background-size:contain;
        width:100%;
        height:245px;
        left:0;
    }
    .single-country .country-img{
        border-radius: 60px;
        left:20px;
        width:calc(100% - 40px);
    }
    .primary-btn{
        max-width: 100%;
        padding: 15px 30px;
    }
    /* .container{
        max-width:100%;
    } */
}
@media screen and (max-width:1300px){
    .footer-logo-big h4{
        font-size:160px;
    }
}
@media screen and (max-width:1200px){
    .footer-logo-big h4{
        font-size:150px;
    }
}

@media screen and (max-width:1100px){
    .container{
        max-width:calc(100% - 30px);
    }
    .home-sec1:before{
        top:100px;
        left:200px;
        width:650px;
        background-size: contain;
    }
    .primary-btn{
        font-size: 28px;
    }
    .single-faq-col-bottom .head-faq h4{
        flex:1;
        margin-left:15px;
    }
    .single-faq-col-bottom .head-faq h4 br{
        display: none;
    }
    .footer-logo-big h4{
        font-size:130px;
    }
}

@media screen and (max-width:1024px){
    .banner-sec .section-head h1, .section-head h1, .section-head h2, .trip-sec .trip-head h2, .banner-sec.inner-page-banner .section-head h1{
        font-size:40px;
    }
    .inner-banner .section-head h1, .left-right-sec .left-right-row:first-child{
        margin-bottom: 0;
    }
    .trip-sec .trip-head p{
        font-size:20px;
    }
    .banner-sec, .about-sec, .left-right-sec{
        padding-bottom:60px;
        padding-top:60px;
    }
    .country-list{
        top:0;
    }
    .sponsor-sec{
        padding-top:60px;
        padding-bottom:0;
    }
    .home-sec1{
        padding-top:60px;
    }
    .home-sec1:before, .deals-sec:before, .deals-sec::after{
        display: none;
    }
    .home-sec1 .home-sec1-col{
        width:calc(100% - 100px);
    }
    .home-sec1-col .slick-slide.slick-center img{
        transform: scale(0.8);
        transform-origin: bottom;
    }
    .home-sec1-col .slick-slider:before{
        transform: rotate(9deg);
    }
    .home-sec1 .section-head{
        width:100%;
    }
    .deals-sec{
        padding-top:0;
    }
    .footer-widget .col-md-4{
        width:60%;
    }
    .footer-logo-big h4{
        font-size:110px;
    }
    
    .single-country .country-name{
        padding:10px 25px;
    }
    .single-deal .deal-content h4 br{
        display: none;
    }
    .single-deal .deal-content h2{
        font-size:50px;
        line-height: 50px;
    }
    .header-right{
        display: none;
    }
    .menu-icon{
        display: flex;
        width: 35px;
        flex-direction: column;
        height: 20px;
        align-items: center;
        justify-content: space-between;
    }
    .menu-icon span{
        width:100%;
        height:2px;
        display: block;
        background-color: var(--primary);
    }
    .main-navigation{
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        transition: all 1s ease-in-out;
        height: 100vh;
        z-index: 3;
    }
    .main-navigation .menu-container{
        position: absolute;
        top:0;
        right:0;
        width:300px;
        height: 100vh;
        z-index: 3;
        transition: all 1s ease-in-out;
        background-color: var(--primary);
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .main-navigation.showSidebar{
        right: 0;
    }
    .shadow-bg{
        position: absolute;
        top: 0;
        right: 0;
        background: #00000050;
        width: 100%;
        transition: all 1s ease-in-out;
        height: 100%;
    }
    nav .main-menu ul{
        flex-direction: column;
        align-items: stretch;
        padding-top: 60px;
    }
    nav .main-menu ul li:not(:last-child){
        margin-right: 0;
    }
    nav .main-menu ul li a{
        color:var(--white);
        padding: 10px 15px 10px 25px;
        font-size: 20px;
        display: block;
        line-height:30px;
    }
    nav .main-menu ul li .submenu{
        position:relative;
        background-color:transparent;
        display:block;
        height:0;
        overflow:hidden;
        transition:all .5s ease-in-out;
    }
    nav .main-menu ul li .submenu ul li a{
        color:var(--white);
        padding:10px 15px 10px 35px;
        font-size:16px;
    }
    nav .main-menu ul li .submenu ul{
        padding-top:0px;
    }
    nav .main-menu ul li .submenu.show-submenu{
        height:200px;
        
    }
    .footer-flight-links > .col{
        width:25%;
        flex:0 0 auto;
    }
    
}

@media screen and (max-width:991px){
    .home-sec1 .home-sec1-col{
        width:100%;
    }
    footer{
        padding:40px 15px;
    }
}

@media screen and (max-width:911px){
    .single-deal .deal-content h2{
        font-size:40px;
        line-height: 40px;
        margin-top:0;
    }
}

@media screen and (max-width:850px){
    .footer-widget > div, .footer-widget .col-md-4{
        width:100%
    }
    .footer-widget .col-md-5{
        display: none;
    }
    .footer-widget .col-md-3{
        margin-bottom:20px;
    }
    .footer-bottom .footer-bottom-menu{
        width:35%;
    }
    .footer-bottom .copyrights{
        width:65%;
    }

}

@media screen and (max-width:800px){
    .trip-sec .trip-head p br{
        display: none;
    }
    .footer-logo-big h4{
        font-size:100px;
    }
}

@media screen and (max-width:768px){
    .banner-sec .section-head h1, .section-head h1, .section-head h2, .trip-sec .trip-head h2, .banner-sec.inner-page-banner .section-head h1{
        font-size:34px
    }
    .trip-sec .trip-head p{
        font-size:16px;
        line-height:26px;
    }
    .banner-sec .section-head p, .section-head p, footer .footer-bottom .copyrights p, footer .footer-bottom .footer-bottom-menu a{
        font-size: 14px;
    }
    .banner-sec, .testimonials, .trip-sec, .about-sec{
        padding-top:40px;
        padding-bottom: 40px;
    }
    .banner-form .single-field{
        width:50%;
    }
    .banner-form .form-radio .single-radio{
        width:max-content;
    }
    .banner-form .single-field.submit-btn{
        width:100%;
        margin-bottom: 0;
    }
    .home-sec1 .section-head{
        margin-top:35px;
    }
    .trip-sec .trip-head{
        padding-top:40px;
        padding-bottom: 100px;
    }
    
    .faq-sec{
        padding-bottom:40px;
    }
    .faq-sec.faq-page{
        padding-top:40px;
    }
    .faq-sec .faq-left-col{
        width:100%;
    }
    
    .single-faq-middle{
        text-align: center;
    }
    .faq-sec .faq-right-col{
        width:100%;
        padding-left: 15px;
        margin-top: 35px;
    }
    .faqs{
        margin-top:0;
    }
    .footer-bottom .footer-bottom-menu, .footer-bottom .copyrights{
        width:100%;     
    }
    .footer-bottom .footer-bottom-menu{
        justify-content: center;
        margin-bottom: 20px;
    }
    footer .footer-bottom .copyrights p{
        text-align: center;
    }
    .testimonials-slider:before, .testimonials-slider:after{
        display: none;
    }
    .left-right-sec .left-right-row:first-child{
        flex-direction: column-reverse;
        margin-bottom: 35px;
    }
    .left-right-sec .left-right-row{
        flex-direction: column;
    }
    .left-right-sec .left-right-img{
        margin-bottom: 20px;
    }
    .left-right-sec .left-right-cont, .left-right-sec .left-right-img, .left-right-sec .left-right-img img{
        width:100%;
    }
    .contact-sec .section-head{
        padding-right:0;
        padding-left:0;
        width:100%;
    }
    .contact-sec .contact-form{
        padding-left:0;
        width:100%;
    }
    .footer-flight-links > .col{
        width:33%;
        
    }
}

@media screen and (max-width:767px){
    .banner-form form > .row .form-radio{
        max-width:45%;
    }
    .banner-form form > .row .form-selection{
        max-width:55%;
    }
    .testimonials-slider .slick-list{
        padding: 0 50px !important;
    }
}

@media screen and (max-width:736px){
    .footer-logo-big h4{
        font-size:80px;
    }
}

@media screen and (max-width:650px){
    .single-left-col-faq h4, .single-faq .question h3{
        font-size:20px;
    }
    .banner-form form > .row .form-radio, .banner-form form > .row .form-selection{
        max-width:100%;
    }
    .banner-form form > .row .form-selection{
        justify-content: flex-start;
    }
    .banner-form .form-single-misc{
        padding:15px;
    }
    .banner-form .form-single-misc:first-child{
        margin-left:0;
    }
}

@media screen and (max-width:600px){
    .banner-sec .section-head p br, .trip-sec .trip-head h2 br{
        display: none;
    }
    .footer-logo-big h4{
        font-size:70px;
    }
    .banner-sec .section-head h1, .section-head h1, .section-head h2, .trip-sec .trip-head h2, .banner-sec.inner-page-banner .section-head h1{
        font-size:30px;
    }
    .trip-sec .trip-head{
        padding:40px 20px 60px 20px;
    }
    .footer-flight-links > .col{
        width:50%;
        
    }
}

@media screen and (max-width:568px){
    .banner-form .form-radio .single-radio label{
        padding:5px 10px;
    }
    .banner-form .form-single-misc{
        padding:5px 10px;
    }
    .banner-form .form-single-misc span{
        font-size:14px;
    }
    .banner-form .single-field{
        width: 100%;
        margin-bottom:10px;
    }
    .primary-btn{
        width:100%;
        border-radius: 10px;
    }
    .testimonials-slider .slick-list{
        padding: 0 20px !important;
    }
}

@media screen and (max-width:520px){
    .banner-sec .section-head h1{
        margin-bottom: 0;
    }
    .banner-form .single-field label{
        font-size:14px;
    }
    .footer-logo-big h4{
        font-size:60px;
    }
    .single-deal > img{
        height:220px;
    }
}

@media screen and (max-width:500px){
    .sponsor-sec .sponsor-head{
        flex-direction: column-reverse;
    }
    .sponsor-sec .sponsor-head .stars{
        width: max-content;
        align-self: center;
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:480px){
    .banner-sec .section-head h1, .section-head h1, .section-head h2, .trip-sec .trip-head h2, .banner-sec.inner-page-banner .section-head h1{
        font-size:26px;
    }
    .banner-sec{
        padding-top:20px;
        padding-bottom:20px;
    }
    footer .footer-widget .quick-links{
        flex-direction: column;
    }
    footer .footer-widget .quick-links .single-footer-menu{
        margin-bottom:20px
    }
    .banner-form form{
        padding:25px 15px;
    }
    .primary-btn{
        font-size:22px;
    }
    .banner-form .single-field input{
        height:40px;
    }
    .banner-form .single-field-with-img img{
        left:10px;
        top:7px;
        object-fit: none;
        width:24px;
        height:24px;
    }
    .testimonials-slider .slick-list{
        padding: 0 0px !important;
    }
    .footer-flight-links > .col{
        width:100%;
        
    }
}

@media screen and (max-width:430px){
    .banner-sec .section-head{
        margin-bottom:15px;
    }
    .single-left-col-faq h4, .single-faq .question h3{
        font-size: 17px;
    }
    .single-deal .deal-container{
        left:15px;
        right:15px;
        top:15px;
        bottom:15px;
    }
    /* .single-deal .deal-head-right span{
        display: block;
    }
    .single-deal .deal-content h4{
        font-size: 16px;
    }
    .single-deal .deal-content h2{
        font-size:32px;
        line-height:32px;
    }
    .single-deal .deal-foot a{
        display: block;
        padding:5px 15px;
    } */
     .single-deal .deal-foot a{
        padding:5px 15px;
     }
}

@media screen and (max-width:390px){
    .single-deal .deal-foot .deal-foot-right{
         flex:1;
         margin-left:15px;
    }
}

