<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
     }
  
  .background {
    background: url(img/bg-img.jfif)
      rgb(0 0 0 / 46%);
    background-repeat: NO-repeat;
    background-size: cover;
    background-blend-mode: darken;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    filter: blur(0px);
  }
  
  .form-warrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 438px;
    margin: 0 auto;
    background: #303030c2;
    box-shadow: 0 0 15px rgb(189 188 187);
    border-radius: 27px;
    margin-top: 7%;
    height: 26rem;
  }
  h2 {
    font-size: 30px;
  }
  
  form {
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 85%;
  }
  .form-item {
    display: flex;
    width: 90%;
    background: transparent;
    margin: 10px auto;
    border-radius: 15px;
    align-items: center;
    border-bottom: 1px solid rgb(82, 81, 81);
  }
  .form-item:hover {
    border: 1px solid rgb(82, 81, 81);
  }
  input {
    background: transparent;
    width: 80%;
    height: 30px;
    outline: none;
    border: none;
    margin: auto;
    color: white;
    font-size: 17px;
  }
  
  span {
    user-select: none;
    margin: 5px;
    color: rgb(126 63 22);
    background: rgb(191 106 53);
    padding: 3px;
    border-radius: 18px;
    margin-top: -2px;
  }
input[type="submit"] {
    width: 180px;
    font-size: 19px;
    margin: 10px auto;
    padding: 0px;
    background: rgba(122, 123, 116, 0.72);
    border: none;
    color: white;
}
  input[type="submit"]:hover {
    background: rgba(222, 236, 34, 0.678);
  }
  p:first-of-type {
    margin: 0;
  }
  .options {
    display: flex;
    margin: 10px auto;
    justify-content: center;
    flex-wrap: wrap;
  }
  button {
    font-size: 18px;
    padding: 5px 16px;
    margin: 5px 15px;
    width: 180px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.7s ease;
  }
  .fb:hover {
    background: rgb(126 63 22);
    border: none;
    box-shadow: 0 0 2px rgb(126 63 22);
  }
  .gl:hover {
    background: rgba(207, 53, 53, 0.671);
    border: none;
    box-shadow: 0 0 2px rgba(207, 53, 53, 0.671);
  }
  
  p {
    font-size: 18px;
    margin: 5px;
  }
  a {
    color: white;
  }
  a:hover {
    color: grey;
  }
  
  @media screen and (max-width: 550px) {
    .form-warrp {
      width: 90%;
    }
  }
  
  
  /* Home page css start ------ */
  .navbar{
    height: 70px;
    width: 100%;
    padding: 19px 30px;
    background-color: #000000;
    position: relative;
  }
  .navbar .nav-header{
    display: inline;
  }
  .navbar .nav-header .nav-logo{
    display: inline-block;
    margin-top: -7px;
  }
  .navbar .nav-links{
    display: inline;
    float: right;
    font-size: 17px;
    text-transform: uppercase;
    margin: 0 auto;
  }
   
  .navbar .nav-links .loginBtn{
    display: inline-block;
    padding: 5px 15px;
    margin-left: 20px;
    font-size: 17px;
    color: rgb(9, 14, 90);
  }
  .navbar .nav-links a {
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 550;
    color: #fafafa;
  }
  /* Hover effects */
  .navbar .nav-links a:hover{color: #f7f7f7;background-color: black;display: inline-block;}
   
  /* responsive navbar toggle button */
  .navbar #nav-check, .navbar .nav-btn{
    display: none;
  }
   
  @media (max-width:700px) {
    .navbar .nav-btn{
      display: inline-block;
      position: absolute;
      right: 0px;
    }
    .navbar .nav-btn label {
      display: inline-block;
      width: 80px;
      height: 70px;
      padding: 25px;
      cursor: pointer;
    }
    .navbar .nav-btn label span {
      display: block;
      height: 0px;
      width: 32px;
    }
    .navbar .nav-btn label:hover, .navbar #nav-check:checked ~ .nav-btn label {
      background-color: rgb(0 0 0);
      transition: all 0.5s ease;
    }
    .navbar .nav-links{
      position: absolute;
      display: block;
      text-align: center;
      width: 100%;
      background-color: rgb(0 0 0);
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 70px;
      right: 0px;
    }
    .navbar .nav-links a {
      display: block;
    }
   
    /* when nav toggle button not checked */
    .navbar #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
   
    /* when nav toggle button is checked */
    .navbar #nav-check:checked ~ .nav-links {
      height: calc(100vh - 70px);
      position: absolute;
    }
    .navbar .nav-links .loginBtn {
      padding: 10px 40px ;
      margin: 20px;
      font-size:  18px;
      font-weight: bold;
      color: rgb(9, 14, 90);
    }
    /* Responsive dropdown code */
    .navbar .nav-links .dropdown, .navbar .nav-links .dropdown2 {
      float: none;
      width: 100%;
    }
    .navbar .nav-links .drop-content, .navbar .nav-links .drop-content2 {
      position: relative;
      background-color: rgb(0 0 0);
      top: 0px;
      left: 0px;
    }
    /* Text color */
    .navbar .nav-links .drop-content a {
      color: rgb(255 255 255);
    }  
   
  }
   
  /* Dropdown menu CSS code */
  .dropdown{
    position: relative;
    display: inline-block;
  }
  .drop-content, .drop-content2 {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 120px;
    font-size: 16px;
    top: 34px;
    z-index: 1;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
  }
  /* on hover show dropdown */
  .dropdown:hover .drop-content, .dropdown2:hover .drop-content2 {
    display: block;
  }
  /* drondown links */
  .drop-content a {
    padding: 12px 10px;
    border-bottom: 1px solid rgb(191 106 53);
    display: block;
    transition: all 0.5s ease !important;
  }
  .dropBtn .drop-content a:hover {
    background-color: rgb(230, 230, 230);
  }
  .dropdown:hover .dropBtn, .dropdown2:hover .dropBtn2 {
  color: #ddd;
  }
  .dropdown2 .drop-content2 {
    position: absolute;
    left: 120px;
    top: 126px;
  }
  .dropBtn2 i {
    margin-left: 15px;
  }
  /* hover effect */
  
  .form-warrp img {
    width: 14rem;
    margin-top: 15px;
  }
  
  /* banner css */
  .banner{
      background-image: url("img/bg_top.png");
      background-repeat: no-repeat;
      background-size: cover;
      height: 100%;
      height: 300px;
  }.banner-text-area {
    margin: 0 auto;
    display: table;
  }
  
  .banner-text-area h2 {
    margin: 0 auto;
    margin-top: 24vh;
    font-size: 3rem;
    color: red;
  }.alt-wrap {margin: 0 auto;background: red;padding: 11px 75px;}
  
  .alert-area h6 {
  font-size: 12px;
  color: #ddd;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  }
  .paymet-box {
    text-align: center;
    border: 0.7px solid #262626;
    box-shadow: 0px 0px 6px 1px #23221c;
    border-radius: 11px;
  }
  
  .p-heading h2 {
    color: #ddd;
    margin: 18px;
    letter-spacing: 3px;
    font-size: 2.4rem;
  }
  
  span.p-span {
    font-size: 14px;
    background: #080808;
    border-radius: unset;
    font-family: ui-sans-serif;
    display: block;
    margin: 0px;
    color: #ffffffb0;
  }
  
  .pAddress p {color: #fff;font-size: 14px;background-color: #29C230!important;}
  .pAddress {
    background: #4645451f !important;
    border: none !important;
    border-top: 1px solid #7e7e7e !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #7e7e7e !important;
  }.col-md-4.col-sm-4 {
    margin: 10px 0px;
  }
  span.Bns {
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-style: italic;
    color: #11affb;
    margin: 5px;
    display: block;
    background: none;
  }
  
  .modal-body h2 {
    margin: 0 auto;
    display: table;
    padding: 10px;
    border-bottom: 1px solid springgreen;
  }
  .mb-3 input {
      border: none;
      border-bottom: 1px solid #dddd;
      border-radius: 0;
  }
  
  .modal-footer {
      border-top: none !important;
  }
  input:focus{
    outline: none !important;
  }.form-control:focus {
    outline: 0 !important;
    box-shadow: none !important;
  }.modal-content {
    height: 31rem;
  }
  .alert{
    display: contents;
    margin-top: 50px;
  }.nav-logo img {
    width: 130px;
  }
  i.fa-solid.fa-arrow-right-from-bracket{
    margin: 0px 50px;
    font-size: 22px;
    color: #d56c29;
    cursor: pointer;
  }
  :root {
    --footer-bg: #1c2444;
    --color: #f2f3fb;
    --color-smooth: #9da2ae;
    --input-border: #3a456a;
    --btn-bg-color: #f1f2fc;
    --btn-hover-bg: #d5d9f6;
    --btn-color: #1e2641;
  }
  
  footer {
    font-size: 16px;
    background: #1414147a;
    padding: 2em 4em;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 1em;
    font-family: "IBM Plex Sans", sans-serif;
    margin-top: 50px;
  }
  
  footer ul {
    list-style: none;
  }
  
  .col {
    flex: 1;
  }
  
  .col-title {
    font-family: "Merriweather", serif;
    color: var(--color);
    font-size: 1.1em;
    font-weight: 500;
    padding: 0.5em 0;
  }
  
  .col-list a {
    color: var(--color-smooth);
    text-decoration: none;
    line-height: 1.4;
    font-weight: 400;
  }
  
  .col-list a:hover,
  .col-list a:focus {
    text-decoration: underline;
    color: #8f6f17;
  }
  
  .subscribe-form,
  .social-media {
    display: flex;
    gap: 0.5em;
    padding: 0.5em 0;
  }
  
  .subscribe-input {
    width: auto;
    flex: 1;
    background: transparent;
    border: 0.06em solid var(--input-border);
    font-size: 1em;
    font-weight: 500;
    padding: 0.5em;
    border-radius: 0.3em;
    transition: all 0.25s ease 0s;
    display: inline-block;
    color: var(--color-smooth);
  }
  
  .subscribe-input:focus {
    outline: none;
    border-color: var(--color);
    color: var(--color);
  }
  
  .subscribe-btn {
    background: var(--btn-bg-color);
    border: none;
    font-size: 1em;
    font-weight: 600;
    padding: 0.5em;
    border-radius: 0.3em;
    transition: all 0.25s ease 0s;
    display: inline-block;
    color: var(--btn-color);
    cursor: pointer;
  }
  
  .subscribe-btn:hover,
  .subscribe-btn:focus {
    background: var(--btn-hover-bg);
  }
  
  .form-title,
  .social-col-title {
    font-size: 1em;
    color: var(--color);
    font-weight: 500;
  }
  
  .social-media {
    flex-direction: column;
  }
  
  .social-media-list {
    display: flex;
    gap: 0.5rem;
  }
  
  .social-media-list a {
    padding: 0.5em;
    color: var(--color-smooth);
    display: flex;
    border-radius: 0.3em;
    transition: all 0.25s ease 0s;
  }
  
  .social-media-list a:hover,
  .social-media-list a:focus {
    color: var(--color);
    background: #ffffff1a;
  }
  
  .social-media-list svg {
    width: 1.5em;
    height: 1.5em;
    transition: all 0.25s ease 0s;
  }
  
  @media screen and (max-width: 750px) {
    footer {
      padding: 2em;
      flex-direction: column;
    }
  }span.col {
    background: none;
  }</pre></body></html>