@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Catamaran:wght@400;700&display=swap");
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 16px;
    vertical-align: baseline;
    font-family: "Catamaran", sans-serif;
    font-weight: 400;
    box-sizing: border-box; }
    :root{
      /* ============ colors================ */
      --clr-primary:#fff;
        --clr-h1-h2:#c39b78;
        --clr-secondary:#f4f0eb;
        --clr-whtesmoke:#f2f2f2;
        --clr-bg:#f9f9ff;
        --clr-btn:#AB8F63;
        --text-clr :#404040;
        /* ============ font family================ */
        --ff-beller:"Bellefair", serif;
        /* ============ font size================ */
        --h1-lg:60px;
        --h2-lg:40px;
      --p-x-y:100px 5%;  
      --shadow:0 2px 8px rgba(0,0,0,0.4);
      --shadow-1:-1rem 1rem 1.2rem 0 rgba(157,157,157,.5);
      --transition: all .4s ease;
      --width-lg:80%;
      --width-md:90%;
      --width-sm:95%;
     }
 *::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  html, body {
  overflow-x: hidden; }
    body{
      overflow-x: hidden;  
    }
  h1 {
    margin-bottom: 20px; }
  
  h1, h1 * {
    color: var(--clr-h1-h2);
    font-size: var(--h1-lg);
    line-height: 65px;
    font-family: var(--ff-beller); }
  
  h2 {
    margin-bottom: 40px;
    text-align: center; }
  
  h2, h2 * {
    color: var(--clr-h1-h2);
    font-size: var(--h2-lg);
    line-height: 45px;
    font-family: var(--ff-beller); }
  
  h3 {
    margin-bottom: 10px; }
  
  h3, h3 * {
    color:var(--clr-h1-h2);
    font-size: 30px;
    line-height: 35px;
    font-family: var(--ff-beller) }
  
  ul li {
    list-style: none; }
  
  a {
    text-decoration: none; }
  
  p {
    margin-bottom: 20px; }
  
  p:last-child {
    margin-bottom: 0; }
  
  img {
  width: 100%;
 display: block;
 object-fit: cover;
 transition: var(--transition);
 }
  
  em, em * {
    font-style: italic; }
  
  strong, strong * {
    font-weight: bold; }
  
  u, u * {
    text-decoration: underline; }
  
  br {
    line-height: 0 !important;
    height: 0; }
  
  blockquote {
    padding: 20px 0;
    position: relative; }
  
  blockquote {
    margin-left: 10%; }
  
  blockquote,
  blockquote * {
    color: #c39b78;
    font-family: "Catamaran", sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px; }
  
  input[type="text"], input[type="password"], input[type="email"], input[type="date"] {
    background-color: transparent;
    border: solid 1px #19110a;
    height: 50px;
    padding: 0 10px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  
  input[type="submit"], input[type="button"] {
    background-color: #19110a;
    color: #fff;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    cursor: pointer;
    font-family: 'butler_stencilregular', serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0; }
  
  textarea {
    background-color: transparent;
    border: solid 1px #19110a;
    padding: 10px 10px;
    width: 100%;
    height: 150px;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  
  
  
  #loading-container {
    background: rgba(255, 255, 255, 0.9) url(../images/loading.gif) no-repeat center center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 100000000000000000;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; }
.container{
  margin: 0 auto;
  width: var(--width-lg);
}
section{
  padding: 5rem 0 0;
}
.nt-container{
  background: var(--clr-h1-h2);
}


/* ================================nav top styling================================= */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000000;
  transition: var(--transition);
}
nav{
  height: 100%;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}
nav.hide{
	transform: translateY(-100%);
}
.n-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
}
.nt-left{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--clr-primary);
}
.nt-left a{
  margin: 10px;
  transition: var(--transition);
}
.nt-left a span{
  margin-right: 10px;
  color: var(--clr-primary);
}
.nt-left a i,.social-links a i{
  color: #404040;
  font-size: 20px;
}
.social-links{
  display: inline-flex;
  
}
.social-links a{
  margin: 0 10px;
  transition: var(--transition);
}
.social-links a span{
  transition: var(--transition);
}
.nt-left a i,.nt-left a span{
  transition: var(--transition);
}
.nt-left a:hover span{
  color: #404040;
}
.nt-left a:hover i{
  color: var(--clr-primary);
}
.social-links a:hover{
  transform: scale(1.2);
 
}
.social-links a:hover i{
  color: var(--clr-primary);
}

/* =======================================nav-bottom styling========================================= */
.nb-container{
  background: var(--clr-whtesmoke);
  box-shadow: var(--shadow);
}
.n-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
 
}
.logo{
  width: 150px;
}
.n-bottom ul li{
  display: inline-block;
  margin: 0 5px;
}
.n-bottom ul li:last-child{
  display: none;
}
.n-bottom ul li a{
  padding: 0 5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.n-bottom ul li a:hover{
  color: #0eef12;
}
.btn-cta{
display: flex;
justify-content: space-between;
align-items: center;
}
.btn-cta a{
  font-size: 14px;
  background: var(--clr-h1-h2);
  color: var(--clr-primary);
  padding: 10px 20px;
  font-weight: 400;
  letter-spacing: 2px;
  border-radius: 10px;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-cta a:hover{
  background: #0eef12;
}
.menu-btn {
  display: none;
  width: 35px;
  height: 35px;
}

/* ====================================banner style styling============================= */
main{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
}
.slider-wrapper{
  position: relative;
}

main .overlay{
  width: 100%;
}
main .overlay img{
  width: 100%;
}
.swiper{
  height: 90vh;
}
.slide-container{
  width: 100%;

}
.slide-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay{
  position: relative;
}
.overlay::after{
  content: '';
  position: absolute;
  inset: 0;
   background: rgba(0, 0, 0, 0.0); 
}


@keyframes animate{
  0%{
      transform: translateX(-50%);
      opacity: 0;
  }
  50%{
      opacity: 0.2;
  }
  70%{
      opacity: 0.5;
  }
  100%{
      transform: translateX(-0%);
      opacity: 1;
  }
}
.slide-container{
  position: relative;
}
.baner-details{
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.1);
position: absolute;
top: 50%;
left: 50%;
z-index: 100;
transform: translate(-50%,-50%);
}
.baner-details p{
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--ff-beller);
}
.baner-details h1{
  font-size: 45px;
  text-transform: uppercase;
  color: #fff;
  /* text-shadow: 4px -5px 3px rgba(255,255,255,0.7); */
}
.baner-details a, .btn{
  text-transform: uppercase;
  border-radius: 20px;
  display: inline-flex;
  padding: 10px 20px;
  border: 20px;
  justify-content: center;
  align-items: center;
  background: var(--clr-h1-h2);
  color: #fff;
}
.baner-details a img, .btn img
{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-left: 20px;
}
.arrow-down{
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 20%;
  left: 80%;
  z-index: 100;
}
.arrow-down img{
  width: 100%;
}
/* =================================== why us section=========================== */
.why-us-sec{
  position: relative;
  background: #777777;
  overflow: hidden;
  padding: 20px 0;
}
.why-us-sec h3{
  margin-block: 20px;
  font-size: 40px;
  line-height: 2;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  text-shadow: 3px -3px 3px rgba(255,255,255,0.7);
}
.why-us-cont{
  background: #777777;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
}

.why-us-cont .box-w{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 200px;
  
}
.why-us-cont .box-w img{
  object-fit: contain;
  height: 80px;
  
}
.why-us-cont .box-w h4{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--clr-h1-h2);
  text-transform: uppercase;
}
.box-w img{
  height: 200px;
}
/* ==================section about us======================================== */
.about-s{
  background-color: #f6f1e6;
  padding: 50px 0;
}
.c-about-us{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
  row-gap: 20px;
}
.about-left{
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  z-index: 100;
  height: 500px;
  overflow: hidden;
}
.about-left img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}
.about-right{
  position: relative;
  overflow: hidden;
}
.about-right h2{
  text-transform: capitalize;
}
.about-right p{
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.5;
}
.about-left img{
  overflow: hidden;
}
.img-banner{
  position: absolute;
  top: 0%;
  left: 0%;
  opacity: .2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-banner img{
  object-fit: cover;
  object-position: center;
}
/* ========================our tour section styling=========================================== */
.our-tour{
  background: var(--clr-h1-h2);
  padding-bottom: 100px;
}
.tour-wrapper h2{
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
}
.tour-g-c{
  display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(2,1fr);
row-gap: 20px;
width: 100%;
height: 600px;
overflow: hidden;
gap: 20px;
position: relative;

}
.tour-g-c .tour-box{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tour-g-c .tour-box a{
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tour-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-g-c .tour-box:nth-child(1){
  grid-row: span 2;
}
.tour-g-c .tour-box:nth-child(4){
  grid-column: span 2;
}
.box-title{
  width: 100%;
  padding: 20px 0;
  position: absolute;
  top:80%;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.box-title h3{

  color: #000;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
.tour-box{
  position: relative;
  box-shadow: var(--shadow);
  transition: all 2s ease-in-out;
  overflow: hidden;
}

.tour-box a img{
  transition: .5s ease-in-out;
}
.tour-box a:hover img{
  transform: scale(1.2);
}
.box-ovelay{
  content: '';
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* ==========================================most tour packges styling============================ */
.top-packages{
  padding-bottom: 30px;
}
.toppackage-wrapper{
  text-align:center ;
}
.toppackage-wrapper h2{
  text-transform: uppercase;
  text-align: center;
}
.packages-container{
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
}
.packages-container.kil .p-box:nth-child(1){
  grid-column: span 2;
  
}
.packages-container.kil .p-box:nth-child(4){
  grid-column: span 2;
  
}

.img-box{
  position: relative;
  overflow: hidden;
}
.img-box img{
  transition: var(--transition);
}

.img-box::before{
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  width:100%;
  height: 0%;
  background: rgba(195, 155, 120, 0.5)url(../images/icons/highlights-plus.png);
  background-size: 50px;
  z-index: 5;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--transition);
}
.p-box:hover ::before{
  height: 100%;
}
.p-box:hover .img-box img {
transform: scale(1.1);
}
.packages-container.kil .p-info{
  position: relative;
  background: #fff;
  padding: 30px 0;
}
.packages-container.kil .p-info::after{
  content: '';
  transform: translate(-50% ,-50%);
  position: absolute;
  border-radius: 50%;
  background: #fff;
  top: 0px;
  left: 50%;
  width: 50px;
  height: 50px;
}
.p-info h3{
  text-transform: uppercase;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}
.p-info p{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #888888;
  text-transform: capitalize;
  margin-bottom: 4px;
}
/* =========================================banner-start========================================== */
.im-banner{
  background-attachment:fixed;
  padding: 100px 0;
  background-image: url(../images/chta.jpg);
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;

}
.banner-f h3{
  text-transform: capitalize;
}
.banner-f p{
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 20px;
  font-family: var(--ff-beller);
}
.btn strong{
  font-size: 20px;
}
.banner-f{
  text-align: center;
}
/* ============================== footer design ================================================== */
.c-footer{
  padding: 50px 0;
  background-color:rgba(0, 0, 0, .6);
  background-image: url(../images/s-img/chita-rest.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
 
}
.c-footer .f-row{
  display: grid;
grid-template-columns: 1fr  1fr  1.2fr  1fr;
}
.c-footer .f-row .f-col h3{
  text-transform: uppercase;
  color: #ffe9d6;
  font-size: 16px;
}
.c-footer .f-row .f-col li{
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.c-footer .f-row .f-col li a{
  color:#a6a6a6 ;
  font-size: 14px;
  display: block;
  width: 100%;
}
.c-footer .f-row .f-col li a i{
  font-size: 18px;
  margin-right: 10px;
}
.c-footer .f-row .f-col a i{
  font-size: 20px;
  padding: 10px;
  color: #ffe9d6;
  
}
.whtsap-box{
  display: inline-flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  right: 30px;
  background: transparent;
  z-index: 1000;
  padding: 10px 20px;
  border-radius: 20px;

}
.whtsap-ic{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(45, 183, 66);
}
.whtsap-ic span{
  font-family: var(--ff-beller);
  font-size: 12px;
  color: #fff;
 
}
.wtsap-txt{
  position: relative;
  background: var(--clr-h1-h2);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
}
.wtsap-txt::after{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  left: 98%;
  border-left: 10px solid var(--clr-h1-h2);
  border-right:10px solid transparent ;
  border-top:10px solid transparent ;
  border-bottom:10px solid transparent ;
  margin-top: -10px;
}
.whtsap-ic i{
  font-size: 25px;
  color: #fff;
}

/* ===================================safari-section designing======================= */
.safari-banner{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35rem;
  background-image: url(../images/big_elephant.jpeg);
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
}
.safari-banner.sa-p{
  background-image: url(../images/s-img/two-zebras.jpeg);
}
.safari-banner.kil-b{
  background-image: url(../images/s-img/kil-r1.jpeg);
}
.safari-banner.b-1{
  background-image: url(../images/chetah.jpeg);
}
.safari-banner.b-2{
  background-image: url(../images/immagic-tanzania-safari-serengeti\ \(4\).jpg);
}
.safari-banner.b-3{
  background-image: url(../images/immagic-p3.jpg);
}
.safari-banner.b-4{
  background-image: url(../images/mikumi-national-park-destinations-tanzania-maasai-wanderings-africa-lions.jpg);
}
.safari-banner.b-6{
  background-image: url(../images/kil-mar.jpg);
}
.safari-banner.b-7{
  background-image: url(../images/Mount-Kilimanjaro-machame.jpg);
}
.safari-banner.b-8{
  background-image: url(../images/Mount-Kilimanjaro-rong.jpeg);
}
.safari-banner.b-9{
  background-image: url(../images/marangu_route.jpeg);
}
.safari-banner.b-10{
  background-image: url(../images/s-img/Nyerere-National-Park-6.jpg);
}
.safari-banner.d-1{
  background-image: url(../images/s-img/girrafe.jpeg);
}
.safari-banner.d-2{
  background-image: url(../images/s-img/h.jpeg);
}
.safari-banner.d-3{
  background-image: url(../images/s-img/Chemka-Natural-Hot-Spring-Small-qdb7fr4zrzoy6d0ps4vkwnfk0zl9eb1th4r2a9ai0s.jpg);
  background-position: center;
}
.safari-banner.z-b{
  background-image: url(../images/s-img/zanz-2.jpeg);
  background-position: center;
}
.safari-banner.z-s-blue{
  background-image: url(../images/znb-blue.jpg);
  background-position: center;
}
.safari-banner.z-dolphin{
  background-image: url(../images/dolphin.jpg);
  background-position: center;
}
.safari-banner.t-day-t{
  background-image: url(../images/s-img/Day-Tour-to-Materuni-Water-Falls.jpg);
  background-position: center;
}
.safari-banner.s-jonaz{
  background-image: url(../images/jonaz.jpg);
  background-position: center;
}
.safari-banner h1{
  text-transform: uppercase;
  color: #fff;
  text-shadow: 4px -5px 3px rgba(255,255,255,0.7);
}
.tour-container{
  background: #f9f8f3;
  padding: 50px 5%;
  display: flex;
  justify-content: space-between;
}
.tour-left{
  flex-basis: 60%;
}
.tour-right{
  flex-basis: 38%;
}
.tour-right h4{
  font-size: 20px;
  text-transform: uppercase;
  padding: 15px 20px;
}
.tour-nav{
  display: flex;
  justify-content: space-between;
}
.tab-links{
  flex-basis: 49%;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 10px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: var(--ff-beller);
}
.tab-links.active-link{
  background: #0eef12;
}
.itbox{
  padding: 30px 20px;
  margin-top: 20px;
padding: 10px 20px;
box-shadow: 5px 10px 8px #888888;
}
.itbox h4,.day-act h4{
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-h1-h2);
  font-family: var(--ff-beller);
  text-transform: uppercase;
}
.itbox p{
  text-align: justify;
  font-size: 16px;
  line-height: 2.0;
  text-transform: capitalize;
}
.day-act{
  padding: 50px 30px;
}
.day-act ul li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
}
.day-act ul li span{
  font-size: 14px;
  text-transform: uppercase;
  font-family: var(--ff-beller);
  font-weight: 400;

}
.day-act ul li span i{
  font-size: 20px;
  margin: 0 20px;
}
.day-ic-ex{
  display: flex;
  justify-content: space-between;
}
.side-inc,.side-ex{
  flex-basis: 49%;
}
.side-inc h4,.side-ex h4{
  font-size: 20px;
  text-transform: uppercase;
  color: var(--clr-h1-h2);
}
.side-inc ul li ,.side-ex ul li {
display: flex;
align-items: center;
}
.side-inc ul li i,.side-ex ul li i{
font-size: 18px;
width: 20px;
height: 20px;
margin-right: 10px;
}
.side-inc ul li i{
  color: #0eef12;
}
.side-ex ul li i{
  color: #e75212;
}
/* =====================related tour design========================================== */
.r-tour-w{
  display: flex;
  justify-content: space-between;
  height: 150px;
  overflow: hidden;
}
.r-tour-w img{
  width: 100%;
  height: 100%;
}
.r-tour-w{
  margin-bottom: 20px;
}
.r-img,.r-tour-desc{
  flex-basis: 49%;
}
.r-tour-desc h4{
  font-size: 18px;
  text-transform: uppercase;
  font-family: var(--ff-beller);
}
.r-tour-desc .btn{
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 0;
  cursor: pointer;
}
.r-img{
overflow: hidden;
}
.r-img img{
  border-radius: 20px;
  transition: var(--transition);
 
}
.r-tour-w:hover .r-img img{
  transform: scale(1.2);
}
.it-wrappers{
  display: none;
}
.it-wrappers.active-tab{
  display: block;
}
/* =============================about- us=======styling========================== */
.about-img{
  width: 100%;
  height: 20rem;
  background-image: url(../images/big_elephant.jpeg);
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img h1{
  text-transform: uppercase;
  font-size: 30px;
}
.about-us-desc{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  background: var(--clr-h1-h2);
}

.about-us-desc::after{
  position: absolute;
  content: '';
  top: -50px;
  left: 0;
  height: 120px;
  width: 60%;
  background: var(--clr-h1-h2);
  transform: skewY(6deg);
}
.about-us-desc::before{
  position: absolute;
  content: '';
  top: -50px;
  right: 0;
  height: 120px;
  width: 60%;
  background: var(--clr-h1-h2);
  transform: skewY(-6deg);
}
.about-us-desc div{
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-us-desc div h3{
  text-transform: uppercase;
  color: #fff;
  z-index: 1000;
}
/* ========================contact form design======================== */
.contact-section{
  padding-top: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
background: var(--clr-secondary);
}
.contact-form{
  max-width: 700px;
  margin-right: 50px;
}
.contact-form h2{
  text-transform: uppercase;
}
.contact .text-box{
  background: #000;
  color: #fff;
  border: none;
  width: calc(50% - 10px);
  height: 50px;
  padding: 12px;
  font-size: 15px;
  border-radius: 5px;
  box-shadow: 0,0,0,0.1;
  margin-bottom: 20px;
  opacity: 0.9;
}
.contact textarea{
  background: #000;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}
.contact .send-btn{
  width: 120px;
  float: right;
  background: var(--clr-h1-h2);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
} 
.contact .send-btn:hover{
  background: #000;
}
.contact .text-box:first-child{
  margin-right: 15px;
}
.contact-info{
  max-width: 500px;
  line-height: 65px;
  padding-left: 50px;
  font-size: 18px;
}
.contact-info i{
  margin-right: 20px;
  font-size: 25px;
}
.contact-form,.contact-info{
  flex: 1;
}
.offer-tour{
  width: 100%;
min-height: 400px;
  background: url(../images/chetah.jpeg);
  background-position: center;
  background-color: rgba(0,0,0,0.4);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
}
.offer-tour h3{
  font-size: 70px;
  font-weight: bold;
  text-transform: capitalize;
}
.offer-tour p{
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin-top: 40px;
  text-transform: capitalize;
}
.offer-tour p span{
  font-size: 60px;
  color: #0eef12;
  font-weight: bold;
}
.offer-tour a{
  margin-top: 30px;
  padding: 10px 20px;
  background: var(--clr-h1-h2);
  color: #777;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 15px;
  transition: var(--transition);
}
.offer-tour a:hover{
  background: #ffe9d6;
}