/*[ FONT ]
///////////////////////////////////////////////////////////
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@import url('https://fonts.googleapis.com/css?family=Courgette');

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
  font-family: Courgette-Regular;
  src: url('../fonts/courgette/Courgette-Regular.ttf');
}

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
  font-family: Poppins-Light;
  src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
  font-family: NotoSans-Regular;
  src: url('../fonts/notosans/NotoSans-Regular.ttf');
}
@font-face {
  font-family: Rock-well-Regular;
  src: url('../fonts/rock-well/ROCK.ttf');
}



/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Montserrat, sans-serif;
  font-weight: 400;
}

/* ------------------------------------ */
a {
	font-family: Montserrat;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #ec1d25;
}

/* ------------------------------------ */
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Montserrat;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/* ------------------------------------ */
input {
	outline: none;
	border: none !important;
}

textarea {
  outline: none;
}

/*textarea:focus, input:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0px 2px #ec1d25;
  -moz-box-shadow: 0 0 0px 2px #ec1d25;
  -webkit-box-shadow: 0 0 0px 2px #ec1d25;
  -o-box-shadow: 0 0 0px 2px #ec1d25;
  -ms-box-shadow: 0 0 0px 2px #ec1d25;
}
*/
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #aaaaaa; }
input:-moz-placeholder { color: #aaaaaa; }
input::-moz-placeholder { color: #aaaaaa; }
input:-ms-input-placeholder { color: #aaaaaa; }

textarea::-webkit-input-placeholder { color: #aaaaaa; }
textarea:-moz-placeholder { color: #aaaaaa; }
textarea::-moz-placeholder { color: #aaaaaa; }
textarea:-ms-input-placeholder { color: #aaaaaa; }

/* ------------------------------------ */
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/* ------------------------------------ */
.container {
	max-width: 1200px;
}

.slick-slide {
  outline: none !important;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/

.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cp-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    position: relative
}

.cp-meter {
    border-radius: 50%;
    border-top: solid 6px #ec1d25;
    border-right: solid 6px #ec1d25;
    border-bottom: solid 6px #ec1d25;
    border-left: solid 6px #ec1d25;
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box
}

.cp-meter:before {
    border-radius: 3px;
    content: " ";
    width: 6px;
    height: 12px;
    display: inline-block;
    box-sizing: border-box;
    background-color: #ec1d25;
    position: absolute;
    top: 5px;
    left: 16px;
    transform-origin: center bottom;
    animation: cp-meter-animate-before 1s linear infinite
}

@keyframes cp-meter-animate-before {
    0% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(315deg)
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}


/*[ Calendar ]
///////////////////////////////////////////////////////////
*/
td.active {
  background-color: #ec1d25 !important;
}

input[type="date" i] {
  padding: 14px;
}

.table-condensed td, .table-condensed th {
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 400;
}
.daterangepicker {
    width: 339px;
    box-shadow: 0px 3px 25px rgba(0,0,0,0.1);
    border: none;
    margin-top: 10px;
}
.daterangepicker .calendar {
  max-width: inherit;
}
.daterangepicker thead tr th {
  padding: 10px 0;
}
.daterangepicker .table-condensed th select {
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
  padding: 5px;
}
.daterangepicker td {
    width: 60px;
    height: 35px;
}



/*[ Select2 ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/*[ width select ]
===========================================================*/
.select2-container {
  display: block;
    max-width: 100%;
    width: auto !important;
}

/*[ Select ]
===========================================================*/
.select2-container .select2-selection--single {
  display: flex;
  align-items: center;
    background-color: white;
    border: 0px solid transparent;
    border-radius: 10px !important;
    height: 46px;
    outline: none;
}

.select2-container--focus {
  border-radius: 10px;
  box-shadow: 0 0 0px 2px #ec1d25;
  -moz-box-shadow: 0 0 0px 2px #ec1d25;
  -webkit-box-shadow: 0 0 0px 2px #ec1d25;
  -o-box-shadow: 0 0 0px 2px #ec1d25;
  -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--focus .select2-selection--single {
  border-color: transparent;
}

.select2-container--below.select2-container--open {
  border-radius: 10px;
  box-shadow: 0 0 0px 2px #ec1d25;
  -moz-box-shadow: 0 0 0px 2px #ec1d25;
  -webkit-box-shadow: 0 0 0px 2px #ec1d25;
  -o-box-shadow: 0 0 0px 2px #ec1d25;
  -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--below.select2-container--open .select2-selection--single {
  border-color: transparent;
}

.select2-container--above.select2-container--open {
  border-radius: 10px;
  box-shadow: 0 0 0px 2px #ec1d25;
  -moz-box-shadow: 0 0 0px 2px #ec1d25;
  -webkit-box-shadow: 0 0 0px 2px #ec1d25;
  -o-box-shadow: 0 0 0px 2px #ec1d25;
  -ms-box-shadow: 0 0 0px 2px #ec1d25;
}

.select2-container--above.select2-container--open .select2-selection--single {
  border-color: transparent;
}


/*[ in select ]
===========================================================*/
.select2-selection__rendered {
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 400;
  color: #666666 !important;
  padding-left: 20px !important;
}

.select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 12px !important;
}


/*[ dropdown option ]
===========================================================*/
.select2-dropdown {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0px 3px 25px rgba(0,0,0,0.1);
    margin-top: 7px;
}
.select2-dropdown--above {top: -2px;}
.select2-dropdown--below {top: 2px;}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #ec1d25;
  color: #fff;
}

.select2-results__options{
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 400;
  color: #666666 !important;
}


.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa !important;
  outline: none;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}

.select2-search--dropdown .select2-search__field:focus {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
}



/*[ Header ]
///////////////////////////////////////////////////////////
*/

.wrap-menu-header {
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 100;
  border-top: 5px solid #ec1d25;
}

.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}

.header-fixed .wrap-menu-header {
  position: fixed;
  height: 100px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  backdrop-filter: blur(1.5px);
  z-index: 500;
}

.nav-link {
    color: #929090 !important;
    background-color: #0b3c4c !important;
}
.nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #1c7592 !important;
    border-color: #dddddd0d #dddddd03 #ffffff03 !important;
}
/*[ Logo ]
-----------------------------------------------------------
*/
.logo {
  height: 50px;
}

.logo > a{
  display: block;
  height: 100%;
}

.logo > a > img {
  width: auto;
  max-height: 100%;
  vertical-align: middle;
}


/*[ Menu ]
-----------------------------------------------------------
*/
.wrap_menu {
  height: 100%;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_menu li {
  display: block;
  position: relative;
}

.main_menu > li {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.main_menu > li > a {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  padding: 15px;
}

.header-fixed .main_menu > li > a {
  color: #222222;
}

.main_menu > li:hover > a {
  color: #ec1d25;
  text-decoration: none;
}

/* ------------------------------------ */
.sub_menu {
  position: absolute;
  top:0;
  left: 100%;
  width: 225px;
  background-color: white;

  transform-origin: top left;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.34;
}

.main_menu > li > .sub_menu {
  top:100%;
  left: 0;
  position: absolute;
}

.main_menu > li:hover .sub_menu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.sub_menu li:hover > .sub_menu {
  display: block;
}

.sub_menu li {
  background-color: #f2f2f2;
  border-top: 1px solid #e0e0e0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li:hover {
  background-color: white;
}

.sub_menu li, .sub_menu a {
  padding: 10px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #808080;
}

.sub_menu > li:hover > a {
  color: #555555;
  text-decoration: none;
}


/*[ Social ]
-----------------------------------------------------------
*/
.social a {
  font-size: 15px;
  color: white;
}

.header-fixed .social a {
  color: #222222;
}

.social a:hover {
  color: #ec1d25;
}

.btn-show-sidebar {
  width: 26px;
  height: 15px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.header-fixed .btn-show-sidebar {
  border-top: 2px solid #222222;
  border-bottom: 2px solid #222222;
}

.btn-show-sidebar:hover {
  border-top: 2px solid #ec1d25;
  border-bottom: 2px solid #ec1d25;
}

@media (max-width: 1200px) {
  .main_menu > li {
    margin-left: 4px;
    margin-right: 4px;
  }

  .social {padding-right: 0px;}

  .logo {
    height: 45px;
  }
}

@media (max-width: 992px) {
  .wrap_menu {
    display: none;
  }

  .wrap_header {
    height: 100px;
  }
}




/*[ Sidebar ]
///////////////////////////////////////////////////////////
*/
.sidebar {
  position: fixed;
  z-index: 1200;
  width: 390px;
  height: 100%;
  overflow: auto;
  background-color: white;
  top: 0;
  right: -390px;
}

@media (max-width: 576px) {
  .sidebar {width: 300px;}
}

.show-sidebar {
  right: 0px;
}

.btn-hide-sidebar {
  position: absolute;
  font-size: 20px;
  color: #111111;
  padding: 10px;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.overlay-sidebar {
  position: fixed;
  z-index: 1150;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.show-overlay-sidebar {
  visibility: visible;
  background-color: rgba(0,0,0,0.65);
}

/* ------------------------------------ */
.item-gallery-sidebar {
  display: block;
  position: relative;
  width: calc((100% - 30px) / 3 );
  margin: 5px;
}

.item-gallery-sidebar::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-sidebar:hover:after {
  background-color: rgba(236,29,37,0.7);
}

@media (max-width: 576px) {
  .wrap_header {
    height: 80px;
  }

  .gallery-sidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1,
.wrap-slick2,
.wrap-slick3 {
  position: relative;
}

.item-slick1,
.item-slick2,
.item-slick3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /*height: 90vh !important;*/
}
.item-slick1 {
  height: 100vh;
}

.arrow-slick1, .arrow-slick2, .arrow-slick3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: white;
  position: absolute;
  /*background-color: black;*/
  background-image: linear-gradient(to right, #2892baed , #3295a9e0);
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1,
.wrap-slick2:hover .arrow-slick2,
.wrap-slick3:hover .arrow-slick3 {
  opacity: 0.5;
}

.arrow-slick1:hover,
.arrow-slick2:hover,
.arrow-slick3:hover {
  background-color: #ec1d25;
}

.next-slick1,
.next-slick2,
.next-slick3 {
  right: 50px;
  left: auto;
}

.prev-slick1,
.prev-slick2,
.prev-slick3 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick1-dots {
  position: absolute;
  width: 100%;
  height: 65px;
  left: 0;
  bottom: 0;
}

.slick1-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick1-dots li {
  padding-left: 3px;
  padding-right: 3px;
}

.slick1-dots li button {
  display: block;
  color: transparent;
  background-color: #958e88;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick1-dots li button:hover {
    border: 3px solid white;
    background-color: #d41b22;
}

.slick1-dots li.slick-active button {
    border: 3px solid white;
    background-color: #d41b22;
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 768px) {
  .wrap-content-slide1 .tit1 {
    font-size: 70px;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  .wrap-content-slide1 .tit1 {
    font-size: 60px;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 50px;
  }
}


/*[ Button1 ]
///////////////////////////////////////////////////////////
*/
.btn1 {
  background: white;
  border-radius: 10px;
}

.btn1:hover {
  background-color: #ec1d25;
  color: white;
}

/*[ Button3 ]
///////////////////////////////////////////////////////////
*/
.btn3 {
  background: #111111;
  border-radius: 10px;
}

.btn3:hover {
  background-color: #108bdc;
  color: white;
}


/*[ Button2 ]
///////////////////////////////////////////////////////////
*/
.btn2 {
  background-color: white;
  border-radius: 10px;
  opacity: 0.9;
}

.btn2:hover {
  background-color: #ec1d25;
  color: white;
}




/*[ Intro ]
///////////////////////////////////////////////////////////
*/
.header-intro {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}



/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/

.arrow-slick2 {
  top: 53%;
}


@media (max-width: 576px) {
  .next-slick2 {
    right: 15px;
  }

  .prev-slick2 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick2-dots {
  position: absolute;
  width: 100%;
  height: 128px;
  left: 0;
  bottom: 0;
}

.slick2-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick2-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick2-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick2-dots li button:hover {
  border: 1px solid #d41b22;
  background-color: #d41b22;
}

.slick2-dots li.slick-active button {
  border: 1px solid #d41b22;
  background-color: #d41b22;
}


/*[ Slide3 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick3 ]
-----------------------------------------------------------
*/


.arrow-slick3 {
  top: 40%;
}


@media (max-width: 576px) {
  .next-slick3 {
    right: 15px;
  }

  .prev-slick3 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick3-dots {
  width: 100%;
  height: 128px;
}

.slick3-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick3-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick3-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick3-dots li button:hover {
  border: 1px solid #d41b22;
  background-color: #d41b22;
}

.slick3-dots li.slick-active button {
  border: 1px solid #d41b22;
  background-color: #d41b22;
}





/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.blo2 {
  border-radius: 10px;
  overflow: hidden;
}

.wrap-pic-blo2 {
  display: block;
  width: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.wrap-text-blo2 {
  background-color: white;
  width: 50%;
  min-height: 390px;
}

/* ------------------------------------ */
.effect1 {
  background-color: #cf2227;
  opacity: 0.9;
  position: relative;
}
.effect1 .txt-effect1 {
  width: 390px;
  height: 50px;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
  -moz-transform: translate(-50%, -50%) rotateZ(90deg);
  -ms-transform: translate(-50%, -50%) rotateZ(90deg);
  -o-transform: translate(-50%, -50%) rotateZ(90deg);
  transform: translate(-50%, -50%) rotateZ(90deg);
}

@media (max-width: 992px) {
  .blo2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 390px;
  }

  .wrap-text-blo2 {
    width: 100%;
    min-height: 390px;
  }

  .time-event {
    width: 100%;
    height: auto;
  }

  .effect1 .txt-effect1 {
    width: 100%;
    height: 50px;
    padding: 10px;
    transform-origin: center center;
    position: unset;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@media (max-width: 576px) {
  .blo2 {
    width: 100%;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 364px;
  }

}


/*[ Video ]
///////////////////////////////////////////////////////////
*/
.section-video {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-video {
  background-color: rgba(0,0,0,0.5);
}

/*[ Modal video 01 ]
-----------------------------------------------------------
*/
body {padding-right: 0px !important;}
.modal {
  padding: 0px !important;
  z-index: 1160;
  overflow-x: hidden;
  overflow-y: auto !important;
}
.modal-open {overflow-y: scroll;}

/* ------------------------------------ */
.modal-backdrop {
  background-color: transparent;
}

#modal-video-01 {
  background-color: rgba(0,0,0,0.8);
  z-index: 1250;

}

#modal-video-01 .modal-dialog {
  max-width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}



/*[ Blog ]
///////////////////////////////////////////////////////////
*/
.time-blog {
  position: absolute;
  left: 14px;
  bottom: 11px;
  background-color: rgba(0,0,0,0.5);
  padding: 3px 15px;

  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  color: white;
  border-radius: 4px;

}


/*[ Gallery footer ]
///////////////////////////////////////////////////////////
*/
.item-gallery-footer {
  display: block;
  position: relative;
  width: calc((100% - 50px) / 4 );
  margin-right: 10px;
  margin-bottom: 10px;
}

.item-gallery-footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-footer:hover:after {
  background-color: rgba(236,29,37,0.7);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 545px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}

@media (max-width: 576px) {
  .bg-title-page .tit6 {font-size: 30px;}
}



/*[ Item mainmenu ]
///////////////////////////////////////////////////////////
*/

.line-item-mainmenu {
  flex-grow: 1;
  height: 2px;
  margin-bottom: 5px;
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .line-item-mainmenu {
    display: none;
  }

  .price-item-mainmenu {
    padding-top: 5px;
  }

  .name-item-mainmenu {
    width: 100%;
  }
}


/*[ Block3 ]
///////////////////////////////////////////////////////////
*/

@media (max-width: 576px) {
  .text-blo3 {
    width: 100%;
  }
}



/*[ Gallery ]
///////////////////////////////////////////////////////////
*/

.label-gallery {
  border-radius: 10px;
  padding: 2px 11px;
  margin: 5px 0;
}

.label-gallery:hover {
  background-color: #111111;
  color: white;
}

.is-actived {
  background-color: #111111;
  color: white;
}

/* ------------------------------------ */
.wrap-gallery {
  width: 100%;
  box-sizing: border-box;
}

.item-gallery {
  width: calc( (100% - 140px) / 3 ) ;
  margin: 30px 15px;
  position: relative;
}

.overlay-item-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(236,29,37,0.8);
  opacity: 0;
}

.overlay-item-gallery:hover {
  opacity: 1;
}

.btn-show-gallery {
  font-size: 18px;
  color: #222222;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
}

@media (max-width: 768px) {
  .item-gallery {
    width: calc((100% - 110px) / 2);
  }
}

@media (max-width: 576px) {
  .item-gallery {
    width: calc((100% - 30px) / 1);
  }
  .wrap-gallery {
    padding-left: 0;
    padding-right: 0;
  }
}


/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.item-pagination {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  margin: 6px;
}

.item-pagination:hover {
  background-color: #333333;
  color: white;
}

.active-pagination {
  background-color: #333333;
  color: white;
}



/*[ Sidebar2 ]
///////////////////////////////////////////////////////////
*/

/*[ Search sidebar2 ]
-----------------------------------------------------------
*/
.btn-search-sidebar2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background-color: #333333;
  color: white;
  font-size: 18px;

  box-shadow: 0 0 0px 1px #333333;
  -moz-box-shadow: 0 0 0px 1px #333333;
  -webkit-box-shadow: 0 0 0px 1px #333333;
  -o-box-shadow: 0 0 0px 1px #333333;
  -ms-box-shadow: 0 0 0px 1px #333333;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.btn-search-sidebar2:hover {
  color: #ec1d25;
}

.input-search-sidebar2 {
  width: 100%;
  height: 100%;
}



/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.date-blo4 {
  width: 75px;
  height: 82px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 10px;
  background-color: #ec1d25;
}
/* [mini slider]////////////////////////////////////
*/

/****************** owl css style ********************/
/**************** mini slider**************************/

.owl-buttons {
    margin-top: 60px !important;
}
.owl-pagination {
    display: block;
}

.owl-theme .owl-controls {
    /*margin-top: -501px!important;*/
    text-align: center;
    /*float: right;*/
}

.owl-demo .item {
    padding: 0px;
     margin: 0 10px;
    position: relative;
    /* overflow: hidden; */
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 4px 13px 2px #ededed;
}

.h-page4{
    margin-top:50px;
}

.mb-11 {
    margin-left: 2px;
    width: 29%;
}

.mb-12 {
    margin-left: 15px;
    width: 27%;
    padding: 0px 0 20px;
}

.h-page4 h3{
    padding: 0 19px;
    padding-bottom: 0px;
    /*padding-bottom: 16px;*/
    text-transform: uppercase;
    font-size: 25px;
}

.owl-prev {
      width: 25px;
    height: 25px;
     /* background: url(../images/ii2.png) no-repeat center center!important;  */
    text-indent: -999999px;
}
.owl-next{
    width: 25px;
    height: 25px;
     /* background: url(../images/ii.png) no-repeat center center!important;  */
    text-indent: -999999px;
}




/*style*/
.boxx{
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}
.boxx:before,
.boxx:after{
    content: "";
    width: 100%;
    height: 50%;
    /* background: linear-gradient(to right top,rgba(0,0,0,0.7) 49%,rgba(0,0,0,0.8) 50%); */
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease-out 0s;
}
.boxx:after{
    /* background: linear-gradient(to right top,rgba(0,0,0,0.7) 49%,rgba(0,0,0,0.8) 50%); */
    top: 50%;
}
.boxx:hover:before,
.boxx:hover:after{ opacity: 1; }
.boxx img{
    width: 95%;
	  margin-top: 10%;
    height: auto;
    transition: all 0.3s ease 0s;
}
.boxx:hover img{ transform: translateY(-10%);
}
.boxx .boxx-content{
    width: 100%;
    background: #fcc100;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(100%);
    transition: all 0.3s ease 0s;
}
.boxx:hover .boxx-content{ transform: translateX(-50%) translateY(0); }
.boxx .title{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    letter-spacing: 0;
}
.boxx:hover{background-color: #63C3F1;}
.boxx .post{
    display: inline-block;
    font-size: 16px;
    font-style: italic;
    color: #fff;
    border-radius: 0 10px 0 10px;
}
.boxx .icon{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease 0s;
}
.boxx .icon li{
    display: inline-block;
    margin: 0 5px;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.boxx .icon li:first-child{ transform: translateX(-150px); }
.boxx .icon li:last-child{ transform: translateX(150px); }
.boxx:hover .icon li{ opacity: 1; }
.boxx:hover .icon li:first-child{ transform: translateX(0); }
.boxx:hover .icon li:last-child{ transform: translateX(0); }
.boxx .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 3px dotted transparent;
    font-size: 23px;
    color: #ff0022;
    box-shadow: 0 0 5px #ff0022;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease 0s;
}
.boxx .icon li a:hover{
    text-decoration: none;
    border-radius: 10px;
    background: #ff0022;
    color: #fff;
    box-shadow: none;
}
@media only screen and (max-width:990px){
    .boxx{ margin-bottom: 30px; }
}

/***********boxx2***************/
.boxx2:hover:before,
.boxx2:hover:after{ opacity: 1; }
.boxx2 img{
    width: 96%;
	  margin-top: 10%;
    height: auto;
    transition: all 0.3s ease 0s;
    border-radius: 7px;
}
.boxx2:hover img{ transform: translateY(-10%);
}
/**************** end owl css style *************/
.destination{
	opacity: 0;
  position: absolute;
  top: 80%;
	padding-left: 10px;
	color: white;
	font-weight: 800;
}
.boxx2:hover .destination{
	opacity: 1;
}









/*=======================about page===========================*/


.rh-detail-bg.list-view-column2.event {
    background-image: url("../images/banners/banner1.jpg");
    /*margin-top: 124px;*/
}
.rh-detail-bg.list-view-column2 {
    padding: 148px 0 91px 0;
    height: 373px;
}
.rh-detail-bg {
    background: url('../images/detail_page_bg1.jpg');
    background-position: center left;
    background-repeat: no-repeat;
    padding: 276px 0 40px 0;
    position: relative;
    z-index: 1;
    width: 100%;
    display: inline-block;
    background-size: cover;
}

.rh h2{
    font-family: 'Playfair Display', serif;
    color: #fff;
   /* font-size: 64px;*/
    font-size: 49px;
    padding: 30px 0 0 0;
    font-weight: bold;
    text-transform: capitalize;



}

.b-tab h4{

    background: #fff;
    text-align: center;
    width: 30%;
    color: #000;
    /*padding: 4px 0 8px 0;*/
    padding: 13px 0 11px 0;
    font-size: 18px;
    position: relative;
    top: -18px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08);
}

.a1{
  text-transform: uppercase;
  font-size: 40px;
}

.a2{
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;


}

.ap1{
   font-family: 'Open Sans', sans-serif;
   color: #3c3c3c;
   padding: 30px 0 0;

}


.ap2{
   font-family: 'Open Sans', sans-serif;
   color: #3c3c3c;
   text-indent: 30px;
   text-align: justify;
}



.about-section1{
   margin-top: 65px;
}
.about-section2{
  margin-top: 80px;
}

.about-section2 h2{
  text-align: center;
  padding: 10px 0 40px;
  font-size: 30px;
  font-weight: 600;
}



.about-section2 h2::before{
  content: "______ ";
  color:#1784b1;
  position: relative;
  top: -13px;
  right: 9px;

}

.about-section2 h2::after{
  content: "______ ";
  color: #1784b1;
  position: relative;
  top: -13px;
  right: -20px;
}

.about-section2 h4{

  text-align: center;
  background-image: linear-gradient(to right, #2892ba , #3295a9);
  padding: 62px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 26px;
  font-family: 'Rubik', sans-serif;

}


.about-section2 img{
  position: absolute;
  width: 26%;
  right: 0;
  top: 4px;
}


.sp-page{
    padding-top: 115px;
    padding-right: 0px;
    padding-bottom: 115px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position: 50% 0;
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .sp-page p{
    font-size: 36px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    line-height: 44px;
  }

  .sp-page img{
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 63px;
    cursor: pointer;
    width: 67px;

  }


  .flaticon-place::before {

    font-size: 56px!important;
    color: #fff;
  }



  .flaticon-envelope::before {

    font-size: 56px!important;
    color: #fff;
  }


  .flaticon-call::before {

    font-size: 56px!important;
    color: #fff;
  }



  .b1 p{
    text-align: center;
    color: #fff;
    padding-bottom: 46px;
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
  }

   .b1 h3{
    text-align: center;
    color: #fff;
  }


.b1{
  background-image: linear-gradient(to right, #2892ba , #3295a9);
  outline: 1px solid #fff;
  outline-offset: -14px;
  text-align: center;
  padding: 35px 0px 0 !important;
}

.contact-section1{
  padding: 110px 0 0;
}


.contact-section2{

    margin-top: 140px;
}

.contact-section2 h3{

    text-align: center;
    text-transform: uppercase;
    padding: 0 0 26px;

  }

.form-control {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    /*border: 1px solid rgba(0,0,0,.15);*/
    border-radius: 0rem!important;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border-bottom: 1px solid #000 !important;
    margin-bottom: 23px;
    /*border: 1px solid #2690be !important;
    border-radius: 4px !important;*/


  }

  .contact-btn{
    display: inline-block;
    font-size: 1rem;
    line-height: 1.25;
    border-radius: .25rem;
    transition: all .15s ease-in-out;
    background: #2b93b4;
    background-image: linear-gradient(to right, #25acdf , #3295a9);
    color: #fff;
    padding: 13px 18px 15px 18px!important;
}


.contact-submit{
  margin: 52px 0 0 0;
}

.form-style{
  border: none!important;
  border-bottom: 1px solid #000 !important;

}


.vias-section{

 /* height: 603px!important;*/
     height: 523px!important;
}




.search-form{
  /*background: #3794db;*/
  width: 52%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  /*padding: 50px 0 75px;*/
  padding: 24px 0 58px;
  text-align: center;
  position: relative;
  top: -110px;
  z-index: 1;
  background-image: linear-gradient(to right, #2892baed , #3295a9e0);
  box-shadow: 0 0 30px rgba(32,32,32,0.15);
}




/*===================test==================*/

.search_sec.active .search_field {
    margin: 0;
}
/*.search_field {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    margin-top: -50px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
*/

.search_field form {
    position: relative;
}

.search_field form input {
    width: 100%;
    height: 48px;
    background-color: #fff;
    color: #262626;
    font-size: 17px;
    padding: 0 30px;
    border: 0;
    border-radius: 10px;
}

.search_field form button {
    position: absolute;
    /*top: 12px;*/
    top: -5px;
    right: 0px;
    background-color: inherit;
    border: 0;
}



.search_field .container {
    max-width: 570px;
}

.search-form h2{
    font-family: 'Lato', sans-serif;
    padding: 0 0 28px 0;
    font-size: 26px;
    background: -webkit-linear-gradient(#23ade3, #284278);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.sr-img{
  width: 77%;
}

.line-box{
    width: 71%;
    height: 3px;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    /*top: 75px;*/
    top: 58px;
}



/*==================VISA SECTION1=====================*/

.visa-section1 h2{
    text-align: center;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: revert;
    text-transform: uppercase;
    padding-bottom: 60px;
}


.visa-section1 h2::before {
    content: "______ ";
    color: #1784b1;
    position: relative;
    top: -13px;
    right: 9px;
    font-size: 50px;
}

.visa-section1 h2::after {
    content: "______ ";
    color: #1784b1;
    position: relative;
    top: -13px;
    right: -15px;
    font-size: 50px;
}



.visa-section1 img{

     width: 100%;

}

.flag-icon{
   /* position: relative;
    width: 27%!important;
    top: -37px;
    left: 95px;
    border-radius: 9999px;
    border: 3px solid #fff;*/


    position: relative;
    width: 27%!important;
    top: -37px;
    left: auto;
    border-radius: 9999px;
    border: 3px solid #fff;
    right: auto;
    text-align: center;
    display: block;
    margin: 0 auto 0 auto;
}










.visa-section1 h3{
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    padding: 0 0 45px;

}




#rmore{
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#sless{
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 40px 0 0 0;

}

.hidebutton img{
  width: 41%;
}


.hidebutton p{
font-family: 'Lato', sans-serif;
text-transform: capitalize;
color: #1381ab;
font-weight: 800;
font-size: 14px;

}

.zz{
  width: 19%;
}

#ab-txt p{
  display: inline-block;
  padding: 0 0 0 10px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: bold;
}


.place-hidesection{

      margin-top: 3%;
  }

  .fac{
 /* display: inline-block;*/
  padding: 0 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  }



  .fac{
    background: linear-gradient(45deg, #2583b8, #267baf);
    padding: 11px 2px 7px 9px;
    border-radius: 20px;
    margin: 7px 0 5px;
  }


  .sky img{
    /*width: 100%;
    position: relative;
    top: -110px;*/
    position: absolute;
    width: 100%;
    /*top:80%;*/
    bottom: 0;
  }





.search {
  padding: 0 30px;
  font-size: 18px;
  width: 60%;
  /*max-width: 400px;*/
  height: 80px;
  border: 1px solid darken(white, 30%);
  border-radius: 20px 0 0 20px;
}









.group-radio {
    text-align: center;
    margin-bottom: 18px;
}
 .rdio {
   position: relative;
}
 .rdio input[type="radio"] {
   opacity: 0;
}
 .rdio label {
   padding-left: 14px;
   cursor: pointer;
}
 .rdio label:before {
   width: 20px;
   height: 20px;
   position: absolute;
   top: 1px;
   left: 0;
   content: '';
   display: inline-block;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
   border: 2px solid #dee2e6;
   background: #fff;
}
 .rdio input[type="radio"] {
   margin: 0px;
}
 .rdio input[type="radio"]:disabled + label {
   color: #999;
}
 .rdio input[type="radio"]:disabled + label:before {
   background-color: #fbc52d;
}
 .rdio input[type="radio"]:checked + label::after {
   content: '';
   position: absolute;
   top: 6px;
   left: 5px;
   display: inline-block;
   font-size: 11px;
   width: 10px;
   height: 10px;
   background-color: #09aeee;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
}











.search{
        background: #fff !important;
        padding: 0 14px !important;
        border-radius: 13px !important;
}


.sl p{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}



/*=================absolute section==============*/

.video-popup-1 {
    margin-top: 140px;
    margin-bottom: 180px;
}



.video-popup-1__head-Brg {
    background-image: url(../images/bg-intro-01.jpg);
    background-position: center;
    background-size: cover;
    height: 675px;
    position: absolute;
    width: 100%;
    z-index: -1;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video-popup-1__tittle {
    text-align: center;
}

.video-popup-1__tittle img {
    margin: 48px 0 40px;
}

.video-popup-1__area {
    margin-top: -42px;
    position: relative;
}

.video-popup-img {

    position: relative;
    background: #f7f7f7;
    padding: 20px 10px 2px 35px;
    text-align: left;
    margin-top: 140px;
    top: 100px;
    border-radius: 7px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

.video-popup-img img {
    vertical-align: middle;
    border-radius: 5px;
}

.p1 h2{

    text-align: center;
    padding: 12px 0 0px 0px;
    text-transform: uppercase;


    font-size: 36px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;

}

.vid-button{
      margin: 10px 0 23px 0;
}


.blo1{

}


.d4:focus{
  outline: 0;
  box-shadow: 0 0 0 3px rgb(0 123 255 / 0%)!important;
}




/*
.list-dropdown-passengers {
    list-style: none;
    position: absolute;
    z-index: 10;
    top: 60px;
    padding: 20px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    box-shadow: 0px 0 8px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    background-color: #fff;
}


.list-persons-count {
    list-style: none;
    padding-bottom: 5px;
}*/



/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

/*
 Styling
*/
body {
  font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
  color: #333;
  font-weight: 300;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  /*border-top: 1px solid #ccc;*/
}


.tabset {
  max-width: 100%;
}





.bo3 {
    /* border: 2px solid #d9d9d9; */
    border-bottom: 1px solid #ededed!important;
    border-radius: 0px!important;
}

.iso{
  position: absolute;
  width: 13%;
  left: 24px;
  top: 11px;

}



.iso-name{
  color: #fff;
  font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1.1px;
}

.clearfix{
  z-index: -9999;
}


.holidays-box{
   margin:0 0 20px;
}



.holidays-box a{
  text-decoration: none!important;
}







.team-section{
  position:relative;
  padding-top:90px;
  padding-bottom:0px;
}

.team-block{
  position:relative;
  margin-bottom:30px;
  z-index:1;
}

.team-block .inner-box{
  position:relative;
}

.team-block .inner-box .image{
  position:relative;
  overflow:hidden;
  background: linear-gradient(45deg, #1e75ab, #1cabe3);
  border-radius: 5px 5px 5px 5px;
}

.team-block .inner-box .image img{
  position:relative;
  width:100%;
  display:block;
  cursor: pointer;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.team-block .inner-box:hover .image img{
  opacity:0.5;
  transform:scale(1.05,1.05);
}

.team-block .inner-box .lower-content{
  position:relative;
  margin-left:40px;
  margin-right:40px;
  margin-top:-60px;
  bottom:0px;
  text-align:center;
  padding:25px 20px;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.team-block .inner-box .lower-content:after{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
  border-radius:8px;
  background-color:#ffffff;
  box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.team-block .inner-box:hover .lower-content:after{
  bottom:-40px;
}

.team-block .inner-box .lower-content:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  height:0px;
  z-index:1;
  border-radius:8px;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
  background-image: -ms-linear-gradient(left, #FE4C1B 0%, #ce2c01 100%);
  background-image: -moz-linear-gradient(left, #FE4C1B 0%, #ce2c01 100%);
  background-image: -o-linear-gradient(left, #FE4C1B 0%, #ce2c01 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FE4C1B), color-stop(100, #ce2c01));
  background-image: -webkit-linear-gradient(left, #FE4C1B 0%, #ce2c01 100%);
  background-image: linear-gradient(to right, #FE4C1B 0%, #ce2c01 100%);
}

.team-block .inner-box:hover .lower-content:before{
  height:135%;
}

.team-block .inner-box .lower-content .content{
  position:relative;
}

.team-block .inner-box .lower-content h4{
  position:relative;
  line-height:1.3em;
  font-weight:700;
  z-index:1;
}

.team-block .inner-box .lower-content h4 a{
  position:relative;
  color:#222222;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.team-block .inner-box .lower-content .designation{
  position:relative;
  color:#777777;
  font-size:16px;
  margin-top:8px;
  z-index:1;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.team-block .inner-box:hover .lower-content .designation,
.team-block .inner-box:hover .lower-content h4 a{
  color:#ffffff;
}

.team-block .inner-box .lower-content .social-box{
  position:absolute;
  left:0px;
  bottom:-35px;
  right:0px;
  opacity:0;
  z-index:1;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.team-block .inner-box:hover .lower-content .social-box{
  opacity:1;
}

.team-block .inner-box .lower-content .social-box li{
  position:relative;
  margin:0px 5px;
  display:inline-block;
}

.team-block .inner-box .lower-content .social-box li a{
  position:relative;
  color:#ffffff;
}

.team-block .inner-box .lower-content .social-box li a:hover{
  color:#222222;
}

.team-section.style-two{
  padding-bottom:90px;
  padding-top:160px;
  background-image: -ms-linear-gradient(left, #0090E4 0%, #1b18a1 100%);
  background-image: -moz-linear-gradient(left, #0090E4 0%, #1b18a1 100%);
  background-image: -o-linear-gradient(left, #0090E4 0%, #1b18a1 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0090E4), color-stop(100, #1b18a1));
  background-image: -webkit-linear-gradient(left, #0090E4 0%, #1b18a1 100%);
  background-image: linear-gradient(to right, #0090E4 0%, #1b18a1 100%);
}

.team-section.style-two:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  background-size:cover;
  background:url(../images/background/team-pattern.png) no-repeat;
}

.team-section.style-two:after{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  height:105px;
  background-size:cover;
  background:url(../images/background/pattern-6.png) repeat-x;
}

.team-section.style-two .owl-nav{
  display:none;
}

.team-section.style-two .owl-dots{
  position:relative;
  text-align:center;
}

.team-section.style-two .owl-dots .owl-dot{
  position:relative;
  width:10px;
  height:10px;
  margin:0px 4px;
  border-radius:50px;
  display:inline-block;
  background-color:#0a2aa6;
  -webkit-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  transition:all 600ms ease;
}

.team-section.style-two .owl-dots .owl-dot.active,
.team-section.style-two .owl-dots .owl-dot:hover{
  background-color:#ffffff;
  width:20px;
}

.team-section.style-two .owl-carousel .owl-stage-outer{
  padding-bottom:40px;
}



::-webkit-scrollbar {
    width: 6px;

}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background: #fff;

}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background: #3e98b2;
}






.blog-section{
    padding: 80px 0 40px;
}



.single-blog {
    margin-bottom: 40px;
    border-radius: 10px;
}


.single-blog .thumb {
    position: relative;
}

.single-blog .thumb img {
    border-radius: 10px;
    width: 100%;
}


.single-blog .thumb .tag {
    position: absolute;
    left: 20px;
    top: 21px;
}
.single-blog .tag {
    background: #01B9B7;
    padding: 0 6px 0 7px;
    height: 25px;
    line-height: 25px;
    color: #ffffff;
    font-size: 14px;
    border-radius: 2px;
}


.single-blog .single-blog-details {
    padding: 20px 0 10px 0;
}

.single-blog .single-blog-details .title {
    margin-bottom: 20px;
    font-weight: 700;
}

.title a {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    line-height: 22px;
}


.date{
    margin-bottom:5px;

}
.single-blog .single-blog-details .content {
    margin-bottom: 13px;
}

.btn-read-more{
    background: #318bbd;
    padding: 9px 6px 9px 9px;
    border-radius: 7px;
    color: #fff!important;
    /* margin-top: 35px; */
    position: relative;
    top: 12px;
}


.sidebar-area-4 {
    margin-left: 14px;
}

/*@media only screen and (max-width: 1445px){*/
/*.sidebar-area-4 {*/
/*    margin-left: 30px;*/
/*}*/
/*}*/
/*@media only screen and (max-width: 1550px){*/
/*.sidebar-area-4 {*/
/*    margin-left: 60px;*/
/*}*/
/*}*/




.sidebar-area .widget {
    background: #F8F8F8;
    padding: 30px 0 26px 0;
    margin-bottom: 60px;
    border-radius: 8px;
}

.bg-none {
    background: none !important;
    background-color: none !important;
}

.search-form {
    position: relative;
    background: #F8F8F8;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1rem;
}

.search-form input {
    letter-spacing: 0.3px;
    color: var(--paragraph-color);
    width: 100%;
    font-size: var(--body-font-size);
    font-weight: 300;
    border: 0;
    background: transparent;
    padding: 0 60px 0 20px;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
}

.search-form button i {
    color: var(--main-color-one);
    z-index: 9;
    position: relative;
}

.search-form button:after {
    content: '';
    position: absolute;
    left: auto;
    right: 0px;
    bottom: 0;
    top: 0px;
    width: 95%;
    height: 100%;
    background: var(--main-color-two);
    border-radius: 4px;
}


.search-form button {
    position: absolute;
    border: 0;
    background: #01B9B7;
    cursor: pointer;
    font-size: 18px;
    padding: 0 16px 0 18px;
    height: 50px;
    line-height: 54px;
    top: 0;
    right: 0;
    border-radius: 4px;
}



.sidebar-area .widget {
    background: #F8F8F8;
    padding: 30px 0 26px 0;
    margin-bottom: 20px;
    border-radius: 8px;
}

.widget-title {
    font-size: 20px;
    color: var(--main-color-two);
    font-weight: 500;
    position: relative;
    /*margin-bottom: 30px;*/
    font-family: var(--body-font);
    padding-left: 37px;
    line-height: 39px;
}


.widget-recent-post ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.widget-recent-post ul li:first-child {
    padding-top: 0;
}

.widget-recent-post ul li {
    padding: 20px 37px;
    border-bottom: 1px solid #E9E9E9;
}



.widget-recent-post ul li .media {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}


.widget-recent-post ul li .media .media-body {
    margin-left: 18px;
}

.widget-recent-post ul li .media .media-body .post-date {
    font-size: 12px;
    font-weight: 400;
    color: rgba(66, 84, 134, 0.85);
}

.widget-recent-post ul li .media .media-body .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--main-color-two);
    margin-bottom: 0;
    font-family: var(--body-font);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.5px;
    width: 27px;
    height: 3px;
    background: var(--main-color-one);
}


.sub-t a{
    font-size: 16px!important;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--main-color-two);
    margin-bottom: 0;
}


.blog-btn{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 49px;
    width: 60px;
    line-height: 54px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    background: none;
    font-weight: normal;
    border: none;
    background: #227cb2;
    border-radius: 4px;
}

.blog-input input{
    position: relative;
    line-height: 30px;
    padding: 14px 50px 14px 30px;
    /*border: 1px solid #d0d0d0!important;*/
    background: #4215150f!important;
    color: #061138;
    display: block;
    font-size: 15px;
    width: 100%;
    height: 50px;
    border-radius: 4px!important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}


/*sidebar tags*/


.sidebar-area .widget {
    background: #F8F8F8;
    padding: 30px 0 26px 0;
    margin-bottom: 24px;
    border-radius: 8px;
}

.widget-title {
    font-size: 20px;
    color: var(--main-color-two);
    font-weight: 500;
    position: relative;
    margin-bottom: 23px;
    font-family: var(--body-font);
    padding-left: 37px;
}

.widget_tag_cloud .tagcloud {
    padding: 0 37px;
}

@media only screen and (max-width: 1445px){
.widget_tag_cloud .tagcloud a {
    margin-bottom: 6px;
}
}
.widget_tag_cloud .tagcloud a {
    background: #4193c0;
    text-decoration: none;
    padding: 0 6px 0 7px;
    height: 25px;
    line-height: 25px;
    color: #ffffff;
    font-size: 14px;
    border-radius: 2px;
    margin: 5px 4px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}


@media (min-width: 300px) and (max-width: 850px) {

.b-tab h4 {
    background: #fff;
    text-align: center;
    width: 70%!important;
}
}



@media (min-width: 992px){

.btn-show-sidebar{
  display: none!important;
}
}




@media (min-width: 450px) and (max-width: 720px) {



.search-form {
    /* background: #3794db; */
    width: 80%;
}

}


@media (min-width: 300px) and (max-width: 450px) {



.search-form {
    /* background: #3794db; */
    width: 90%;
}

}


@media (min-width: 300px) and (max-width: 500px) {


.search-form h2 {
    font-family: 'Lato', sans-serif;
    padding: 0 0 28px 0;
    font-size: 17px!important;
    background: -webkit-linear-gradient(#23ade3, #284278);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }
  .rh h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    /* font-size: 64px; */
    font-size: 32px;
    padding: 30px 0 0 0;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 44px;
}

.visa-section1 h2 {
    font-size: 25px;
  }


.search_field form button {
    position: absolute;
    /* top: 12px; */
    top: -5px;
    right: -6px;
  }
}


@media (min-width: 300px) and (max-width: 773px) {

.visa-section1 h2::before {
    display: none;


}


.visa-section1 h2::after {
    display: none;


}}





@media (min-width: 300px) and (max-width: 480px) {
.about-section2 h2::before {
   display:none;
 }

 .about-section2 h2::after {
   display:none;
 }


}