body {
  margin: 0px;
  user-select: none;
  font-family: "Baloo Paaji 2", cursive;
  background-color: darkgray;
  width: 100%;
  height: auto;
}

#header {
  width: 100%;
  height: 90px;
  text-align: center;
  background-color: #333;
  margin-bottom: 10px;
}

#logo {
  width: 50%;
  float: left;
  margin: 0.5% 0 0 -8%;
}

#logo p {
  cursor: pointer;
  transition: 0.7s;
  color: white;
  font-family: "Times New Roman", Times, serif;
  font-size: 50px;
  font-weight: 900;
}

#logo p:hover {
  color: rgb(252, 109, 109);
}

#menu {
  text-align: center;
  float: right;
}

#menu ul {
  padding: 0;
  text-align: center;
  margin-top: 1%;
}

#menu ul li {
  cursor: pointer;
  list-style-type: none;
  display: inline-block;
  padding: 20px;
}

#menu ul li a {
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
  color: white;
  font-size: 30px;
  font-weight: 800;
  padding: 20px;
  transition: 0.4s ease-in-out !important;
}

#menu ul li a:hover {
  color: rgb(252, 109, 109);
  letter-spacing: 3.5px;
  text-decoration: underline;
}

@media only screen and (max-width: 1119px) {
  #logo {
    width: 40%;
    margin: 0.5% 0 0 0%;
  }
}

@media only screen and (max-width: 960px) {
  #logo {
    width: 40%;
    margin: 1.5% 0 0 0.5%;
  }

  #logo p {
    font-size: 40px;
  }

  #menu ul li {
    padding: 10px;
    margin-top: 3.5%;
  }

  #menu ul li a {
    font-size: 25px;
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  #header {
    height: 150px;
  }

  #logo {
    width: 100%;
    margin: 2.5% 0 0 0;
  }

  #logo p {
    font-size: 40px;
  }

  #menu {
    float: none;
  }

  #menu ul {
    margin: 0;
  }

  #menu ul li {
    margin: -2% 0 0 0;
    padding: 20px;
  }

  #menu ul li a {
    padding: 20px;
  }
}

@media only screen and (max-width: 600px) {
  #header {
    height: auto;
  }

  #logo p {
    font-size: 30px;
  }

  #menu {
    width: 100%;
    margin: 0 auto;
  }

  #menu ul li,
  menu ul li a {
    padding: 10px;
  }
}

@media only screen and (max-width: 460px) {
  #logo p {
    font-size: 28px;
  }

  #menu li {
    padding: 10px;
  }

  #menu ul li a {
    padding: 10px;
    font-size: 25px;
  }
}

@media only screen and (max-width: 420px) {
  #logo p {
    font-size: 25px;
  }

  #menu li {
    padding: 5px;
  }

  #menu ul li a {
    padding: 5px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 370px) {
  #header {
    border: 2px solid rgba(68, 68, 68, 0.829);
    border-top: none;
  }

  #logo p {
    font-size: 28px;
    text-decoration: underline;
    padding: 10px 0 35px 0;
  }

  #menu li {
    border: 2px solid rgba(68, 68, 68, 0.829);
    border-bottom: none;
    width: 98%;
    padding: 0;
  }

  #menu ul li a {
    padding: 0px;
    font-size: 25px;
  }
}

/*-------------------------------------------*/
/*-------------------------------------------*/
/*---------```******************```----------*/
/*----------```NavBar Style Ends```----------*/
/*---------```******************```----------*/
/*-------------------------------------------*/
/*-------------------------------------------*/

/*?---------------------------------------------------*/
/*----------------------------------------------------*/
/*!---------------------------------------------------*/

/*-------------------------------------------*/
/*-------------------------------------------*/
/*------```************************```-------*/
/*-------```Main Content Starts here```------*/
/*------```************************```-------*/
/*-------------------------------------------*/
/*-------------------------------------------*/

.page-content {
  width: 100%;
}

.page-content .page-heading {
  font-size: 45px;
  font-weight: 900;
  color: black;
  text-align: center;
}

.page-content .heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.page-content .form-tag {
  display: block;
}

.page-content .form-tag .input-element {
  display: flex;
  justify-content: space-evenly;
  margin: 3% 0 0 0;
}

.page-content .form-tag label {
  font-size: 30px;
}

.page-content .form-tag input[type="text"] {
  height: 45px;
  width: 400px;
  font-size: 25px;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 20px;
}

.page-content .form-tag input[type="text"]:focus {
  border: none;
}

.page-content .form-tag input[type="number"] {
  height: 45px;
  width: 100px;
  font-size: 25px;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 20px;
}

.page-content .form-tag input[type="number"]::-webkit-inner-spin-button,
.page-content .form-tag input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.button-element {
  display: flex;
  justify-content: center;
  margin: 5%;
}

.submit-button {
  display: inline-block;
  border-radius: 20px;
  background-color: #333;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  padding: 20px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin-left: 20%;
}

.submit-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.submit-button span:after {
  content: "\21AA";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.submit-button:hover {
  box-shadow: 12px 16px 5px rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.submit-button:hover span {
  padding-right: 30px;
}

.submit-button:hover span:after {
  opacity: 1;
  right: 0;
}

.reset-button {
  display: inline-block;
  border-radius: 20px;
  background-color: #333;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  padding: 20px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 20%;
}

.reset-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.reset-button span:after {
  content: "\21A9";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.reset-button:hover {
  box-shadow: 12px 16px 5px rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.reset-button:hover span {
  padding-right: 30px;
}

.reset-button:hover span:after {
  opacity: 1;
  right: 0;
}

.page-content .hr-Line,
.page-content .container__div .content-container .vr-Line {
  border: 2px groove rgba(0, 0, 0, 0.466);
  display: block;
}

.modal-offer-letter {
  display: block;
  /* position: fixed  ; */
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-color: #0000009f;
}

@media only screen and (max-width: 1199px) {
  .page-content .page-heading {
    font-size: 35px;
  }

  .page-content .heading {
    font-size: 30px;
  }

  .page-content .container__div .content-container .vr-Line {
    display: none;
  }
}

@media only screen and (max-width: 960px) {
  .page-content .page-heading {
    font-size: 30px;
  }

  .page-content .heading {
    font-size: 25px;
  }

  .page-content .form-tag .input-element {
    display: block;
  }

  .page-content .form-tag .input-element input[type="text"] {
    width: 325px;
  }

  .page-content .form-tag .button-element {
    margin: 5% 0 5% -5%;
  }
}

@media only screen and (max-width: 767px) {
  .page-content .page-heading {
    font-size: 25px;
  }

  .page-content .heading {
    font-size: 20px;
  }

  .button-element {
    display: block;
    margin: 0;
  }

  .submit-button {
    margin: 5% 0 0 30%;
    width: 180px;
    font-size: 18px;
  }

  .reset-button {
    width: 180px;
    margin: 0 0 0 30%;
    font-size: 18px;
  }
}

@media only screen and (max-width: 350px) {
  .page-content .form-tag .input-element input[type="text"] {
    width: 280px;
    font-size: 20px;
  }

  .page-content .form-tag input[type="number"] {
    width: 80px;
    font-size: 20px;
  }

  .submit-button {
    margin: 5% 0 0 25%;
  }

  .reset-button {
    margin: 0 0 0 25%;
  }
}

/***************************************/
/*******  Content Css Starts  *********/
/*************************************/

.page-content .container__div .content-container {
  display: flex;
}

.page-content .container__div .content-container .left-content {
  flex: 1;
}

.page-content .container__div .content-container .left-content table {
  text-align: center;
  display: block;
  margin: 2% 0 0 10%;
  width: 478px;
  font-size: 25px;
}

.tg td {
  overflow: hidden;
  padding: 10px 20px;
  word-break: normal;
}

.tg .tg-zv4m {
  text-align: left;
  vertical-align: top;
}
.tg .tg-8jgo {
  text-align: center;
  vertical-align: top;
}

.tg .text {
  text-transform: uppercase;
}

.bttn {
  text-decoration: none;
  color: white;
  background-color: #0a66c2;
  padding: 10px;
  border-radius: 20px;
  transition: 0.6s ease-in-out;
}

.bttn:hover {
  color: #0a66c2;
  background-color: white;
  text-decoration: none;
}

.page-content .container__div .content-container .right-content img {
  width: 55%;
  height: auto;
  border: 2px solid black;
  margin: 5% 0 0 25%;
}

.page-content .container__div .button-container {
  display: flex;
  justify-content: space-evenly;
  margin: 5% 0 5% 0;
}

.page-content
  .container__div
  .button-container
  .button-container-1
  .offer-button {
  display: inline-block;
  border-radius: 20px;
  background-color: #333;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  padding: 15px;
  width: 250px;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 20%;
}

.page-content
  .container__div
  .button-container
  .button-container-1
  .offer-button
  span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.page-content
  .container__div
  .button-container
  .button-container-1
  .offer-button
  span:after {
  content: "\21AA";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.page-content
  .container__div
  .button-container
  .button-container-1
  .offer-button:hover {
  box-shadow: 12px 16px 5px rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.page-content
  .container__div
  .button-container
  .button-container-1
  .offer-button:hover
  span {
  padding-right: 30px;
}

.page-content
  .container__div
  .button-container
  .button-container-1
  .offer-button:hover
  span:after {
  opacity: 1;
  right: 0;
}

.page-content
  .container__div
  .button-container
  .button-container-2
  .certificate-button {
  display: inline-block;
  border-radius: 20px;
  background-color: #333;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  padding: 15px;
  width: 320px;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 20%;
}

.page-content
  .container__div
  .button-container
  .button-container-2
  .certificate-button
  span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.page-content
  .container__div
  .button-container
  .button-container-2
  .certificate-button
  span:after {
  content: "\21AA";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.page-content
  .container__div
  .button-container
  .button-container-2
  .certificate-button:hover {
  box-shadow: 12px 16px 5px rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.page-content
  .container__div
  .button-container
  .button-container-2
  .certificate-button:hover
  span {
  padding-right: 30px;
}

.page-content
  .container__div
  .button-container
  .button-container-2
  .certificate-button:hover
  span:after {
  opacity: 1;
  right: 0;
}

@media only screen and (max-width: 1199px) {
  .page-content .container__div .content-container {
    display: block;
  }

  .page-content .container__div .content-container .left-content table {
    margin: 2% 0 0 20%;
  }

  .page-content .container__div .content-container .right-content img {
    width: 30%;
    margin: 5% 0 0 33%;
  }
}

@media only screen and (max-width: 960px) {
  .page-content .container__div .content-container .left-content table {
    margin: 2% 0 0 10%;
  }
}

@media only screen and (max-width: 767px) {
  .page-content .container__div .content-container .left-content table {
    font-size: 18px;
    margin: 2% 0 0 2.8%;
    width: 400px;
  }

  .tg td {
    padding: 0;
  }

  .tg tr {
    width: 10%;
  }

  .page-content .container__div .content-container .right-content img {
    margin: 5% 0 0 35%;
  }

  .page-content .container__div .button-container {
    display: block;
    margin: 4% 0 0 20%;
  }

  .page-content
    .container__div
    .button-container
    .button-container-2
    .certificate-button {
    margin: 5% 0 5% -10%;
  }
}

@media only screen and (max-width: 460px) {
  .page-content .container__div .content-container .left-content table {
    width: 410px;
    font-size: 15px;
    margin: 2% 0 0 2%;
  }

  .page-content .container__div .button-container {
    display: block;
    margin: 4% 0 0 20%;
  }

  .page-content
    .container__div
    .button-container
    .button-container-2
    .certificate-button {
    margin: 5% 0 5% -10%;
  }
  #header{
    height:80px;
    margin-bottom:10px;
  }
}

@media only screen and (max-width: 400px) {
  body {
    overflow-x: hidden;
  }
  .page-content .container__div .content-container .left-content table {
    width: 350px;
    font-size: 15px;
  }

  .page-content .container__div .button-container {
    display: block;
    margin: 4% 0 0 15%;
  }
  #header{
    height:80px;
  }
}

@media only screen and (max-width: 350px) {
  .page-content .container__div .content-container .left-content table {
    width: 300px;
    font-size: 14px;
    margin: 2% 0 0 3%;
  }
    #header{
    height:80px;
  }

  .page-content .container__div .button-container {
    display: block;
    margin: 4% 0 0 17%;
  }
  .page-content
    .container__div
    .button-container
    .button-container-1
    .offer-button {
    width: 220px;
  }

  .page-content
    .container__div
    .button-container
    .button-container-2
    .certificate-button {
    width: 290px;
    font-size: 18px;
    margin: 4% 0 5% -14%;
  }
}

/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------```************************```------*/
/*--------```Main Content Ends here```-------*/
/*-------```************************```------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
