body {
  margin: 0px;
  padding: 0px;
}





*::selection {
  background-color: #fc51844f;
}








/* -- Whole Body -- */

.whole-body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}













.actionbar-fixed {
  width: 100%;
  height: 81px;
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 3;
}








.colorbar {
  width: 100%;
  height: 6px;
  display: flex;
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}










.actionbar {
  width: 100%;
  height: 75px;
  display: flex;
  background-color: #ffffff;
  box-shadow: 0px 8px 20px #00000011;
}








/* -- Actionbar Left -- */



.actionbar-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}




.ab-logo {
  width: 50px;
  height: 50px;
  margin: 0px 20px 0px 20px;
  user-select: none;
}







.ab-details {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: default;
}



.ab-details > h1 {
  display: flex;
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #22292f;
  margin: 0px 0px 5px 0px;
}


.ab-details > h1 > div {
  width: 12px;
  user-select: none;
}


.ab-details > h1 > span {
  height: 24px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 4px;
  background: linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);

  font-size: 9px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #ffffff;
  margin: 0px 0px 5px 0px;

  user-select: none;
  cursor: pointer;
}



.ab-details > h5 {
  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: -5px 0px 0px 0px;
}
























/* -- Actionbar Right -- */




.actionbar-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}





.menu-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 500;

  border-radius: 6px;

  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: 0px 30px 0px 0px;
  padding: 0px 20px 0px 20px;

  user-select: none;
  cursor: pointer;
  transition: 0.3s;
}


.menu-item:hover, .menu-item:focus {
  transition: 0.3s;
  outline: none;
  box-shadow: 0px 0px 16px #e0e0e0;
  transform: translateY(-3px);
}


.menu-item:active {
  transition: 0.3s;
  transform: scale(0.9);
}







.login {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #ffffff;

  outline: none;
  border: none;
  border-radius: 8px;
  background: linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  box-shadow: 0px 0px 16px #e0e0e0;

  user-select: none;
  cursor: pointer;
  transition: 0.3s;
}



.login:hover, .login:focus {
  transition: 0.2s;
  box-shadow: 0px 10px 16px #e0e0e0;
  transform: translateY(-2px);
  background-position: 180px;
}



.login:active {
  transition: 0.2s;
  transform: scale(0.9);
}





























/* -- Main Content -- */


.main-content {
  width: 100%;
  height: calc(100vh);
  display: flex;
  flex-direction: column;
  z-index: 2;
  overflow-y: scroll;
}


.main-content::-webkit-scrollbar {
  width: 0px;
  background: #fafafa;
}
.main-content::-webkit-scrollbar-track {
  width: 10px;
  background: #ffffff;
  margin-top: 2px;
}
.main-content::-webkit-scrollbar-thumb {
  width: 10px;
  background: #c4c4c4;
  border-radius: 50px;
}





.main-content-inner {
  width: 100%;
  height: 100%;
}












.section1 {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  margin-top: 81px;
  z-index: 1;
}





.banner {
  width: 40%;
  height: 90%;
  display: flex;
  right: 0px;
  top: 81px;

  border-radius: 0px 0px 0px 400px;
  
  position: fixed;
  z-index: -1;
  background-image: url(../images/banner1.jpg);
  background-repeat: no-repeat;
}












.section1-heading {
  display: flex;

  font-size: 70px;
  font-family: 'Poppins';
  font-weight: 700;

  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: 100px 0px 0px 100px;

  cursor: default;
  transition: 0.3s;
}



.section1-heading > div {
  width: 40px;
}


.section1-heading > img {
  width: 80px;
  height: 80px;
  display: flex;
  margin-top: 10px;
}








.section1-tagline {
  font-size: 25px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #586169;
  margin: 0px 0px 0px 100px;
  cursor: default;
  transition: 0.2s;
}







.section1-description {
  width: 50%;
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #999999;
  margin: 20px 0px 0px 100px;
  cursor: default;
  transition: 0.2s;
}



.section1-description > a {
  color: #76818a;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}

.section1-description > a:hover {
  transition: 0.2s;
  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.section1-description > a:focus {
  transition: 0.2s;
  font-size: 10px;
  padding: 4px 12px 4px 12px;
  outline: none;

  border-radius: 6px;
  box-shadow: 0px 0px 12px #dbdbdb;
  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}













.get-started {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0px 0px 100px;

  border-radius: 100px;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;

  cursor: pointer;
  transition: 0.4s;
}

.get-started:hover {
  transition: 0.4s;
  box-shadow: none;
  transform: scale(1.08);
}

.get-started:active {
  transition: 0.4s;
  box-shadow: none;
  transform: scale(0.92);
}

.get-started:focus {
  transition: 0.4s;
  outline: none;
  box-shadow: none;
}

.get-started:focus > h5 {
  transition: 0.4s;
  background: -webkit-linear-gradient(220deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.get-started > h5 {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 500;

  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  user-select: none;
}

.get-started:hover > h5 {
  transition: 0.4s;
  background: -webkit-linear-gradient(220deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




















































.divider1 {
  width: 53%;
  height: 5px;
  display: flex;
  margin: 80px 0px 150px 80px;
  border-radius: 10px;
  /* background-color: #e4e4e4; */
  background: linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}















































/* -- Section 2 -- */



.section2 {
  width: 100%;
}








.section2-heading {
  width: calc(53% + 160px);
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 700;
  text-align: center;
  margin: 100px 0px 0px 0px;

  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  cursor: default;
}






.section2-description {
  width: calc(53% + 160px);
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #999999;
  text-align: center;
  margin: 8px 0px 0px 0px;
  cursor: default;
  transition: 0.2s;
}













.airlines-grid {
  width: calc(50% + 220px);
  height: 400px;
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto auto auto;
  grid-auto-rows: 120px;
  margin-top: 70px;
}







.grid-item {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 0px;

  box-shadow: 0px 0px 24px #dbdbdb;
  background-color: #ffffff;

  transition: 0.3s;
  cursor: pointer;
}




.grid-item:hover {
  transition: 0.3s;
  box-shadow: 0px 10px 24px #dbdbdb;
  transform: translateY(-4px);
}




.grid-item:active {
  transition: 0.3s;
  box-shadow: 0px 0px 24px #dbdbdb;
  transform: translateY(0px);
}





















/* -- All Airlines -- */


.indigo {
  width: 75%;
  -webkit-user-drag: none;
  user-select: none;
}

.vistara {
  width: 75%;
  -webkit-user-drag: none;
  user-select: none;
}

.airasia {
  width: 60%;
  -webkit-user-drag: none;
  user-select: none;
}

.spicejet {
  width: 70%;
  -webkit-user-drag: none;
  user-select: none;
}

.emirates {
  width: 55%;
  -webkit-user-drag: none;
  user-select: none;
}

.jetairways {
  width: 80%;
  -webkit-user-drag: none;
  user-select: none;
}

.british__airways {
  width: 75%;
  -webkit-user-drag: none;
  user-select: none;
}

.delta {
  width: 70%;
  -webkit-user-drag: none;
  user-select: none;
}

.singapore__airlines {
  width: 80%;
  -webkit-user-drag: none;
  user-select: none;
}

.goair {
  width: 60%;
  -webkit-user-drag: none;
  user-select: none;
}

.akasa {
  width: 80%;
  -webkit-user-drag: none;
  user-select: none;
}

.qatar__airways {
  width: 70%;
  -webkit-user-drag: none;
  user-select: none;
}





















































.divider2 {
  width: 53%;
  height: 5px;
  display: flex;
  margin: 150px 0px 80px 80px;
  border-radius: 10px;
  background-color: #e4e4e4;
  /* background: linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%); */
}
























































/* -- Section 3 -- */



.section3 {
  width: 100%;
  height: 700px;
}






.section3-heading {
  font-size: 25px;
  font-family: 'Poppins';
  font-weight: 700;
  margin: 150px 0px 0px 100px;

  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  cursor: default;
}








.section3-description {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #999999;
  margin: 12px 0px 0px 100px;
  cursor: default;
  transition: 0.2s;
}





.section3-response-heading {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #999999;
  margin: 80px 0px 0px 100px;
  cursor: default;
  transition: 0.2s;
}







.response {
  width: 600px;
  border-radius: 16px;
  margin: 40px 0px 0px 150px;
  user-select: none;
  -webkit-user-drag: none;
}

















/* -- Terminal -- */


.terminal {
  width: 35%;
  height: 60px;
  display: flex;
  align-items: center;

  border-radius: 12px;
  background-color: #283142;
  margin: 60px 0px 0px 100px;
}





.terminal > code {
  font-size: 13px;
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  margin: 0px 0px 0px 20px;
}



.terminal > code::selection {
  background-color: #3a4457;
}



.terminal > code > span::selection {
  background-color: #3a4457;
}






.cd-comment {
  font-weight: 500;
  color: #f06292;
}
.cd-string {
  color: #9ccc65;
}
.cd-var {
  color: #b68fff;
}
.cd-blue {
  color: #4dd0e1;
}
.cd-red {
  color: #b073ff;
}
.cd-yellow {
  color: #fbc02d;
}








































































.divider3 {
  width: 53%;
  height: 5px;
  display: flex;
  margin: 80px 0px 150px 80px;
  border-radius: 10px;
  /* background-color: #e4e4e4; */
  background: linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}







































































/* -- Section 4 -- */



.section4 {
  width: 100%;
  height: 600px;
}




.section4-heading {
  font-size: 25px;
  font-family: 'Poppins';
  font-weight: 700;
  margin: 150px 0px 0px 100px;

  background: -webkit-linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  cursor: default;
}
















.plans {
  width: 50%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0px 0px 100px;
}






.plan1, .plan2, .plan3 {
  width: 240px;
  height: 300px;
  display: flex;
  flex-direction: column;

  border-radius: 12px;
  box-shadow: 0px 0px 20px #dadada;
  background-color: #FFFFFF;

  cursor: default;
  overflow: hidden;
  transition: 0.2s;
}


.plan-bar {
  width: 100%;
  height: 10px;
  display: flex;
  background: linear-gradient(45deg, #bc83f6 5.66%, #8958de);;
}

.plan1 > main, .plan2 > main, .plan3 > main {
  width: 100%;
  height: auto;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}



.plan1 > main > h1, .plan2 > main > h1, .plan3 > main > h1 {
  font-size: 48px;
  font-family: 'Rubik';
  font-weight: 500;
  color: #7030a0;
  margin: 40px 0px 0px 0px;
}

.plan3 > main > h1 {
  font-size: 28px;
  margin: 48px 0px 0px 0px;
}




.plan1 > main > h3, .plan2 > main > h3, .plan3 > main > h3 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9ea6b2;
  margin: 6px 0px 0px 0px;
}




.plan1 > main > h5, .plan2 > main > h5, .plan3 > main > h5 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  text-align: center;
  margin: 12px 20px 0px 20px;
}





.plan-get-started, .plan-get-started-enterprise {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0px 0px 0px;

  outline: none;
  border-radius: 100px;
  border: 2px solid #7030a0;
  background-color: #FFFFFF;

  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #7030a0;

  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}

.plan-get-started:hover {
  transition: 0.2s;
  background-color: #7030a0;
  color: #FFFFFF;
}

.plan-get-started:active {
  transition: 0.2s;
  transform: scale(0.97);
}





.plan-get-started-enterprise {
  margin: 70px 0px 0px 0px;
}















































/* -- Footer -- */



footer {
  width: 60%;
  height: 60px;
  display: flex;
  align-items: center;

  border-radius: 0px 16px 0px 0px;
  background: linear-gradient(220deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}



.copyright {
  width: 100%;
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #ffffff;
  margin: 0px 0px 0px 100px;
  cursor: default;
}



.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 100px;
  background-color: #2B343B;
  user-select: none;
  -webkit-user-drag: none;
}








































































/*----------------- Custom Snackbar -----------------*/



.snackbar {
  min-height: 40px;
  width: 375px;
  display: flex;
  align-items: center;
  background-color: #202124;
  box-shadow: 0px 0px 10px #777777;
  border-radius: 5px;
  left: 30px;
  bottom: -50px;
  z-index: 1;
  position: fixed;
  visibility: hidden;
}

.snackbar-icon-section{
  width: 10%;
  display: flex;
}
.snackbar-icon{
  height: 20px;
  width: 20px;
  margin-left: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.snackbar-text-section{
  width: inherit;
}
.snackbar-text{
  display: flex;
  font-family: 'Roboto';
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 16px;
  user-select: none;
}

.snackbar-button-section{
  display: flex;
  justify-content: flex-end;
}
.snackbar-button{
  min-width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  background-color: #383333;
  outline: none;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto';
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}





































































