@font-face{
  src: url(./fonts/Bebas-Regular.ttf);
  font-family: "bebas";
}

@font-face{
  src: url(./fonts/Montserrat-Regular.ttf);
  font-family: "montserrat";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}


#slidingNavbar{
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  background-color: white;
}

#slidingNavbar a{
  color: #0a4e54;
  font-size: 45px;
  text-decoration: none;
  font-family: "bebas";
  text-transform: uppercase;
  margin-top: 40px;
}

#slidingNavbar i{
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 50px;
  font-size: 23px;
  height: 50px;
  border-radius: 50%;
  font-weight: 500;
  background-color:#0a4e54;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#nav #ryt #menuBtn{
  display: none;
  color: #0a4e54;
}

#home {
  width: 100%;
  min-height: 100vh;
}

#home #landing {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

#landing #nav {
  width: 100%;
  height: 8vh;
  padding: 10px 50px 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
  background-color: rgb(255, 255, 255);
}

#nav #lft {
  width: 12%;
  height: 100%;
  display: flex;
  align-items: center;
}

#lft #logo {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo img {
  width: 80%;
}

#lft h2 {
  font-family: "bebas";
  font-weight: 500;
  font-size: 20px;
  color: #0a4e54;
  margin-top: 3px;
  margin-left: 8px;
}

#ryt {
  width: 34%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#ryt a {
  font-family: "montserrat";
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.815);
}

#maintxt {
  width: 100%;
  height: 42vh;
  padding-left: 50px;
  margin-top: 8vh;
}

#maintxt h1 {
  font-family: "bebas";
  font-size: 116px;
  color: #0a4e54;
  font-weight: 500;
  padding-top: 16px;
}

#maintxt h3 {
  font-family: "montserrat";
  font-size: 14px;
  margin-left: 8px;
  margin-top: 10px;
  font-weight: 600;
  opacity: 0.8;
}

#maintxt p {
  font-family: "montserrat";
  font-size: 10px;
  opacity: .6;
  margin-top: 10px;
  margin-left: 8px;
  width: 51%;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 15px;

}
#mainpic {
  width: 95%;
  height: 45vh;
  margin-top: 10px;
  background-image: url('./Final_Embedded/landing.jpg');
  background-position: 0% 65%;
  background-size: cover;
  background-attachment: fixed;
}

#circle {
  position: absolute;
  z-index: -1;
  right: -7%;
  bottom: 37%;
}
#circle img {
  width: 65%;
}

#home #treks {
  width: 100%;
  min-height: 100vh;
}

#treks #lsttrek {
  width: 100%;
  height: 88vh;
  display: flex;
}

#trklft {
  width: 45%;
  height: 100%;
  padding: 50px 0 0 50px;
}

#trklft h1 {
  font-family: "bebas";
  color: #0a4e54;
  font-size: 88px;
  font-weight: 500;
}

#trklft #dets {
  width: 78%;
  margin-top: 50px;
}

#dets #pg1 {
  font-family: "montserrat";
  font-size: 10px;
  line-height: 14px;
  margin-left: 5px;
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 15px;
}

#dets #pg2 {
  font-family: "montserrat";
  font-size: 10px;
  line-height: 14px;
  margin-top: 16px;
  margin-left: 5px;
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 15px;

}

#trkryt {
  width: 55%;
  height: 100%;
}

#trkryt #bg {
  width: 85%;
  height: 85%;
  position: relative;
  transform: translate(-50%, -100%);
  left: 39%;
  top: 100%;
}

#bg #trkimgname {
  width: 40%;
  height: 15%;
  background-color: #0a4e54;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 6%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#trkimgname h3 {
  font-family: "bebas";
  font-size: 28px;
  color: white;
  font-weight: 500;
}

#bg #trkimg {
  width: 80%;
  height: 70%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
  background-image: url("./Final_Embedded/uttarakhand.jpg");
  background-position: center;
  background-size: cover ;
}

#trkimgbtm {
  width: 98%;
  height: 18%;
  background-color: #0a4e54;
  position: absolute;
  transform: translate(-50%, -50%);
  bottom: -3%;
  left: 50%;
}

#treks #btmimg {
  width: 100%;
  height: 12vh;
  position: relative;
}

#btmimg #btmfiller {
  width: 25%;
  height: 125%;
  position: absolute;
  bottom: 25%;
  background-image: url("./Final_Embedded/jauntings.png");
  background-position: center 80%;
  background-size: cover;

}

#otrtrks {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 190px;
  padding-right: 190px;
  position: relative;
}

#otrtrks .trk {
  width: 37%;
  height: 60%;
  position: relative;
}

.trkname {
  width: 70%;
  height: 94px;
  background-color: #0a4e54;
  position: absolute;
  bottom: -15%;
  right: -20%;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.trkname h3 {
  font-family: "bebas";
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}

#trk1 {
  background-image: url("./Final_Embedded/upcoming1.png");
  background-size: cover;
  background-position: center;
  z-index: 2;
}

#trk2  {
  background-image: url("./Final_Embedded/upcoming2.png");
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.trkname #prg {
  text-align: center;
  margin-top: 4px;
  width: 90%;
}

.trkname p {
  color: white;
  font-size: 8px;
  font-weight: 400;
  font-family: "montserrat";
  opacity: 0.6;
  letter-spacing: 1px;
}

#latest{
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 56%;

  
}

#latest img{
  width: 25%;
  height: 50%;
}

#latest #line1{
  transform: rotate(180deg);
}

#latest h3{
  font-family: "bebas";
  font-size: 36px;
  font-weight: 500;
  color: #0a4e54;
  
}

#home #stories {
  width: 100%;
  height: 100vh;
  display: flex; 
}

#stories #strlft {
  width: 22%;
  height: 100%;
  padding-left: 50px;
  padding-top: 40px;
  position: relative;
  
}

#strlft h2 {
  font-family: "bebas";
  font-size: 48px;
  font-weight: 500;
  color: #0a4e54;
  
}

#strlft img {
  width: 40%;
  position: absolute;
  bottom: 5%;
  left: -20%;
}

#strlft #des {
  width: 75%;
  margin-top: 28px;
 
}

#strlft #des p {
  font-size: 10px;
  font-family: "montserrat";
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 15px;
}

#strryt {
  width: 78%;
  height: 100%;
  position: relative;
}

#strryt > img {
  margin-top: 64px;
  width: 20%;
}

#strryt .showcase {
  width: 80%;
  height: 65%;
  position: absolute;
  right: 10%;
  margin-top: 50px;
  display: flex;
  padding: 20px 0 20px 20px;
}

#buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 180px;
  position: absolute;
  right: 11.5%;
  bottom: 4.5%;
}

#buttons .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "bebas";
  color: #0a4e54;
  cursor: pointer;
}

#buttons .prev h4 {
  font-size: 16px;
  font-weight: 500;
}

#buttons .prev i {
  font-size: 20px;
  margin-top: 2px;
  margin-right: 10px;
}

#buttons .next {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "bebas";
  color: #0a4e54;
  cursor: pointer;
}
#buttons :active {
  opacity: 0.6;
}

#buttons .next h4 {
  font-size: 16px;
  font-weight: 500;
}

#buttons .next i {
  font-size: 20px;
  margin-top: 2px;
  margin-left: 10px;
}

.showcase .ele {
  height: 413px;
  width: 500px;
  margin-right: 20px;
  position: relative;
}

#one {
  width: 100%;
  height: 100%;
  background-image: url("Final/15_Milam.jpg");
  background-position: center;
  background-size: cover;
  
}

#two {
  width: 100%;
  height: 100%;
  background-image: url("Final/32_Muktinath.jpg");
  background-position: center;
  background-size: cover;
}

#three {
  width: 100%;
  height: 100%;
  background-image: url("Final/42_ChotaKailas.jpg");
  background-position: center;
  background-size: cover;
}

#four {
  width: 100%;
  height: 100%;
  background-image: url("Final/56_Nandadevi.jpg");
  background-position: center;
  background-size: cover;
}

#five {
  width: 100%;
  height: 100%;
  background-image: url("Final/62_Pindari.jpg");
  background-position: center;
  background-size: cover;
}

#six {
  width: 100%;
  height: 100%;
  background-image: url("Final/68_Sunderdhunga.jpg");
  background-position: center;
  background-size: cover;
}

#seven {
  width: 100%;
  height: 100%;
  background-image: url("Final/04_Chandrasheela.jpg");
  background-position: center;
  background-size: cover;
}

#eight {
  width: 100%;
  height: 100%;
  background-image: url("Final/57_Panchachuli.jpg");
  background-position: center;
  background-size: cover;
}

.grad {
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgb(0, 0, 0, 0.8),
    black
  );
  z-index: 2;
  padding-left: 26px;
  padding-top: 10px;
  padding-right: 26px;
  
}

.grad .head {
  font-family: "bebas";
  color: white;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 1px;
  
}

.grad .headdets {
  color: white;
  font-family: "montserrat";
  font-size: 10px;
  font-weight: 300;
  margin-top: 10px;
  width: 100%;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.link {
  width: 21%;
  display: flex;
  align-items: center;
  position: absolute;
  right: 5%;
  bottom: 34%;
  opacity: .8;
  
}



.link :active{
    opacity: .5;
}

.link a {
  color: white;
  text-decoration: none;
  font-family: "montserrat";
  font-size: 8px;
  letter-spacing: 0.5px;
  font-weight: 300;
  margin-right: 12px;
  
}

.link img {
  width: 17px;
  pointer-events: none;
}

.ele h2 {
  color: white;
  font-family: "bebas";
  font-size: 60px;
  font-weight: 500;
  position: absolute;
  right: 6%;
  top: 3%;
  letter-spacing: 1px;
}

#abt{
  width: 100%;
  height: 100vh;
}

#abt #abttop{
  width: 100%;
  height: 21%;
  padding: 0 50px 0 50px;
  display: flex;
  align-items: center;
}

#abttop h1{
  color: #0a4e54;
  font-family: 'bebas';
  font-size: 88px;
  font-weight: 500;
  
}

#abttop  img{
  width: 18%;
  margin-left: 50px;
}

#abtsec{
  width: 100%;
  height: 60%;
  display: flex;
  padding: 20px 0 20px 0;
}

#abtsec #sec1{
  width: 55%;
  height: 100%;
  background-image: url('./Final_Embedded/about1.png');
  background-size: cover;
  background-position: center;
}

#secgrad{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  
}

#sec2{
  width: 25%;
  height: 100%;
  background-color: #0a4e54;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec2 p{
  text-align: center;
  font-family: 'montserrat';
  font-size: 10px;
  letter-spacing: .5px;
  font-weight: 500;
  color: white;
  opacity: .6;
  width: 80%;
  line-height: 15px;
}

#sec3{
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

#sec3 p{
  text-align: center;
  font-size: 8px;
  font-family: 'montserrat';
  letter-spacing: .5px;
  font-weight: 600;
  opacity: .6;
  transform: rotate(90deg);
  width: 80%;
  line-height: 14px;
  
}

#abtbtm{
  width: 100%;
  height: 20%;
  padding-left: 50px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#abtbtm p{
  
  font-size: 8px;
  font-family: 'montserrat';
  letter-spacing: .5px;
  font-weight: 600;
  opacity: .6;
  width: 25%;
  line-height: 14px;
}

#abtbtm img{
  width: 9%;
  position: absolute;
  right: -3%;
  bottom: -40%;
  z-index: -1;
}

#abt2{
  width: 100%;
  height: 100vh;
  display: flex;
}

#abt2 #abt2lft{
  width: 80%;
  height: 100%;
  position: relative;
  
 
}
#abt2lft h1{
  font-family: 'bebas';
  font-size: 88px;
  font-weight: 500;
  color: #0a4e54;
  margin-top: 24px;
  position: absolute;
  right: -19.8%;
}

#abt2lft #para{
  width: 45%;
  height: 80%;
  position: absolute;
  transform: translate(0,-50%);
  top: 58%;
  padding-top:36px ;
 
  
 }

 #para .pg{
  font-family: 'montserrat';
  font-size: 10px;
  letter-spacing: .5px;
  font-weight: 600;
  opacity: .6;
  padding-left: 50px;
  line-height: 15px;
  
 }

 #para #filler{
   width: 95%;
   height: 25%;
   background-image: url('./Final_Embedded/about2.png');
   background-position: center;
   background-size: cover;
   background-attachment: fixed;
   margin-top: 56px;
   margin-bottom: 56px;

    
 }

#abt2 #abt2ryt{
  width: 20%;
  height: 100%;
  background-image: url('./Final_Embedded/founder.png');
  background-size: cover;
  background-position: center;
}

#overlay{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .1);
  position: relative;
}

#overlay #blob{
  position: absolute;
  width: 100%;
  bottom: 16%;
  left: -58%;
}

#blob img{
  width: 80%;
}

#blob h2{
  font-family: 'bebas';
  color: rgb(41, 28, 28);
  font-weight: 500;
  font-size: 32px;
  position: absolute;
  top: 15%;
  left: -12%;
  color: white;
  
}

#blob h2 span{
  color: #0a4e54;
}

#blob #abtfound{
  width: 52%;
  height: 120px;
  position: absolute;
  top: 30.5%;
  left: 21%;
  
  
}

#abtfound h4{
  color: white;
  font-family: 'montserrat';
  letter-spacing: 1px;
  font-size: 12px;
  opacity: .9;
  font-weight: 500;
  margin-top: 16px;
}

#abtfound p{
  color: white;
  font-family: 'montserrat';
  letter-spacing: 1px;
  font-size: 8px;
  opacity: .6;
  font-weight: 500;
  margin-top: 4px;
}

#contact{
  width: 100%;
  height: 85vh;
  
}

#contact #map{
  width: 100%;
  height: 43%;
  overflow-y: hidden;
  position: relative;
  top: 10%;
 
}

#map img{
  width: 100%;
  position: absolute;
  top: -35%;
 
}

#contactdets{
  width: 100%;
  height: 57%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
 
}

#contactdets>h3{
  font-family: 'montserrat';
  color: #0a4e54;
  text-align: center;
  font-size: 10px;
  letter-spacing: .5px;
  font-weight: 600;
  margin-bottom: 16px;
}

#ctchead{
  width: 28%;
  height: 45px;

}

#ctchead h3{
  font-family: 'montserrat';
  color: #0a4e54;
  text-align: center;
  font-size: 10px;
  letter-spacing: .5px;
  opacity: .8;
  font-weight: 600;
}

#ctc{
  width: 41%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

#ctc h2{
  font-family: 'bebas';
  color: #0a4e54;
  font-size: 28px;
  font-weight: 500;
  margin-left: 28px;
  margin-right: 28px;
}

#ctc img{
  width: 35%;
  
}

#img1{
  transform: rotate(180deg);
}

#ctcdets{
  width: 42%;
  height: 28px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 80px;
  opacity: .8;

}

#phn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 125px;
  height: 100%;

}

#phn i{
  font-size: 18px;
  color: #0a4e54;
}

#phn h4{
  font-family: 'montserrat';
  color: #0a4e54;
  font-size: 12px;
  letter-spacing: .5px;
}

#mail{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:203px;
  height: 100%;
  margin-right: 40px;
}

#mail i{
  font-size: 16px;
  
  color: #0a4e54;
}

#mail{
  font-family: 'montserrat';
  color: #0a4e54;
  font-size: 12px;
  letter-spacing: .5px;
}

#follow{
  font-family: 'bebas';
  font-size: 16px;
  font-weight: 500;
  color: #0a4e54;
  margin-top: 8px;

}

#social{
  width: 6%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}

#social a{
  text-decoration: none;
  color: white;
  
}

#social #instagram{
  display: none;
}

#twitter{
  display: none;
}

.circlebg{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #0a4e54;
  display:flex;
  align-items: center;
  justify-content: center;
  
  
}

.circlebg i{
  font-size: 12px;
  
}

.circlebg:active{
  opacity: .6;
}

footer{
  text-align: center;
  color:#0a4e54;
  font-size: 8px;
  margin-top: 10px;
  padding: 15px 0;
  border-top: .3px solid #0a4e5462;
  font-family: 'montserrat';
  font-weight: 600;
  opacity: .6;
}



@media(max-width: 550px){
  #home{
    padding-left:16px ;
    padding-right: 16px;
    overflow-x:hidden ;
  }

  #landing #nav{
    padding: 10px 16px 10px 16px;
  }

  #nav #lft {
    width: 50%;
  }

  #nav #ryt{
    width: 8%;
  }

  #nav #ryt a{
    display: none;
  }

  #nav #ryt #menuBtn{
    display: initial;
  }

  #maintxt{
    padding-left:0px ;
  }

  #maintxt h1{
    padding-top: 0px;
    line-height: 110px;
  }

  #maintxt h3{
    margin-left: 6px;
  }

  #maintxt p{
    width: 95%;
    margin-left: 6px;
    
  }

  #mainpic{
    background-position:50% 50px ;
    width: 100%;
    height: 50%;
    margin-top: 50px;
   
  }
  #circle{
    right: -34%;
    bottom: 38%;
  }
  #circle img {
    width: 45%;
}
#home #treks #lsttrek{
 flex-direction: column;
}

#trklft {
  width: 100%;
  height: 100%;
  padding: 0px;
}

#trklft h1{
  line-height: 88px;
  margin-left: 6px;
  
}

#trklft #dets {
  width: 96%;
  margin-top: 16px;
  
}

#dets #pg1{
  margin-left: 6px;
}

#dets #pg2{
  margin-left: 6px;
}

#trkryt {
  width: 100%;
  height: 100%;
}

#trkryt #bg {
  width: 100%;
  height: 100%;
  left: 50%;
  top: 100%;
}

#bg #trkimg{
  background-size: cover;
  width: 88%;
}

#btmimg{
  display: none;
}

#otrtrks{
  padding-left: 0px;
  padding-right:0px;
  flex-direction: column;
  height: 70vh;
  padding-top: 80px;
  padding-bottom: 24px;
  
}

#otrtrks .trk {
  width: 80%;
  height: 40%;
}

.trkname{
  bottom: -15%;
    right: -10%;
    padding: 8px;
}

#latest{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


#latest img{
 display: none;
}

#stories{
  flex-direction: column;
  height: 72vh !important;
}

#stories #strlft {
  width: 100%;
  padding-left: 6px;
  height: 23%;
}

#strlft #des {
  margin-top: 8px;
  width: 100%;
}

#des p{
  margin-left: 3px;
}

#strlft img
{display: none;} 
#strryt >img
{display: none;}

#strryt{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 16px;
 
}

#strryt .showcase{
  right: 0;
  width: 100%;
  height: 80%;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  
}

.showcase .ele {
  height: 350px;
}

.grad{
  bottom: 15%;
}


.link{
  width: 26%;
  bottom: 18%;
}

#buttons{
  right: 5%;
  bottom: 0%;
  
}

#abt{
  height: 80vh;
}

#abt #abttop img{
  display: none;
}

#abt #abttop {
  padding: 32px 0 0 0;
  height: 15%;

}

#abtsec{
  height: 75%;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px 0;

}

#abtsec #sec1{
  width: 98%;
  height: 50%;
 
}

#abtsec #sec2{
  width: 98%;
  height: 50%;
  padding: 16px;
}

#sec2 p{
  width: 100%;
}

#sec3{
  display: none;
}

#abtbtm{
  height: 10%;
  padding-left: 8px;
  overflow: initial;
}

#abtbtm p{
  width: 100%;
}

#abtbtm img{
  bottom: -25%;
}

#abt2{
  flex-direction: column;
  height: 100vh;
  align-items: center;
}

#abt2 #abt2lft {
    width: 100%;
    height: 67%;
}

#abt2lft h1{
  line-height: 80px;
  right: 0;
  margin-left: 4px;
}

#abt2lft #para {
  width: 100%;
  height: 63%;
  top: 69%;
  padding-top: 16px;
}
#para .pg {
  padding-left: 8px;
}

#para #filler{
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 4px;
}

#abt2 #abt2ryt{
  width: 100%;
  height: 25%;
  margin-top: 28px;
}
#abt2 #abt2ryt #blob{
  transform: translate(-50%,0);
  left: 80%;
  bottom: -50%;
  width: 70%;
}

#abt2 #abt2ryt #blob h2 span{
  color: white;
}

#contact{
  height:50vh ;
}

#contactdets{
  padding-top: 104px;
}

#contact #map{
  height: 17%;
  top: 20%;
}

#ctc{
  width: 84%;
  margin-top: 28px;
}

#ctchead{
  width: 100%;
}

#ctc img{
  width: 20%;
}

#ctc h2{
  font-size: 24px;
}

#ctcdets{
  width: 100%;
  height: 60px;
  padding-left: 0px;
  flex-direction: column;
  margin-top: 16px;
  
}

#ctcdets #phn{
  margin-bottom: 6px;
  opacity: .8;
 
}

#mail{
  margin-right: 0px;
  opacity: .8;
}

#contact #follow{
  margin-top: 16px;
}

#social{
  width: 25%;
}

footer{
  margin-top: 68px;
  font-size: 6px;
  
}

}

@media (min-width: 1920px){

#nav #lft #logo{
 width: 25%;
}   

#lft h2{
  font-size: 24px;
}
#nav #ryt{
  width: 40%;
}
#ryt a{
  font-size: 11px;
}

#home #maintxt h1{
  font-size: 160px;
}

#maintxt h3 {
  font-size: 16px;
  margin-top: 16px;
}

#maintxt p{
  width: 44%;
  font-size: 11px;
  line-height: 17px;
}

#mainpic{
  width: 96%;

}

#circle{
  right: -4%;
  bottom: 40%
}

#circle img{
  width: 80%;
}

#lsttrek #trklft h1{
  font-size: 112px;

}

#trklft #dets{
  width: 64%;
  margin-top: 42px;
}

#trklft #dets #pg1{
  font-size: 11px;
  line-height: 17px;
}
#trklft #dets #pg2{
  font-size: 11px;
  line-height: 17px;
}
#strlft h2{
  font-size: 64px;
}
#strlft #des{
  margin-top: 24px;
}
#strlft #des p{
  font-size: 11px;
  line-height: 17px;
}

#strryt .showcase{
  width: 86%;
}

.showcase .ele {
  width: 610px !important;
  height:600px ;
  margin-right:24px ;
}

.showcase #buttons{
  bottom: 8%;
}

.ele .num{
  font-size: 80px;
}

.ele .grad{
  height: 28%;
}

.grad .head{
  font-size: 36px;
}

.grad .headdets{
  font-size: 11px;
  line-height: 17px;
  width: 85%;
}

.grad .link{
  bottom: 28%;
  right: -1%;
  
}

.link a{
  font-size: 10px;
}

#buttons{
  bottom:12% ;
}

#abt #abttop h1{
  font-size: 112px;
} 

 #abtsec #sec2 #sec2prg {
  font-size: 11px;
  line-height: 17px;
  letter-spacing: .5px;
}

#sec3 p{
  font-size: 10px;
}

#abtbtm p{
  font-size: 10px;
}

#abt2lft h1{
  font-size: 112px;
  right: -16.5%;
}
#abt2lft #para{
  width: 41%;
}
#para .pg{
  font-size: 11px;
  line-height: 17px;

}

#abt2ryt #overlay #blob h2{
  left: -5%;
  font-size: 40px;
}
#blob #abtfound p{
  font-size: 10px;
  margin-top: 8px;
  line-height: 15px;
}
#contact{
  height: 60vh;
}

#map img{
  top: -70%;
}

#ctchead h3{
  font-size: 11px;
  line-height: 17px;
}
#follow{
  font-size: 20px;
}
#social{
  margin-top: 24px;
}
}






@media (min-height:800px){
  #circle{
    bottom: 43%;
  }
  .grad{
    bottom: 0%;
  }
}