* {
    padding: 0;
    margin: 0; }
  
  body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 24px; }
     nav ul {
      list-style: none;
      display: flex;
      justify-content: flex-end;
          }
  nav {
      height: 50px;
    }
  nav ul li {
      margin-right: 20px;
      margin-top: 20px;
      margin-left: 10px;
    
  }
  
  .nav ul li a {
      text-decoration: none;
      color: black;
      font-size: 22px;
      border: 3px solid #ccc;
      border-radius: 20px;
      padding-left: 5px;
      
      border-color: #000000;
      font: 1em sans-serif;
      
      
  }
  .nav1 {
    padding: 30px;
    background-color: white;
    position: sticky;
    padding-right: 50px;
    padding-left: 20px;
        }
   
  .button {
    color: #ffffff;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 5px; }
  
  .red {
    background-color: #DD5252; }
  
  h1, .subtitle {
    color: #ffffff;
  margin-top: 35px; }
  
  .subtitle {
    margin: 30px 0 50px 0;
    line-height: 24px;
    padding: 0 -50px;
    transition: transform 0.7s ease;
  font-size: 20px; }
    
    /* .subtitle:hover { */
      /* transform: scale(1.05);
    } */
  
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto; }
  
  header {
    grid-column: 1/span 4;
    background: #1E212D url("bg.jpg");
    object-fit: cover;
    height: 280px;
    display: grid;
    
    grid-template-areas: ". content ."; }
  
  .header-content {
    grid-area: content;
    width: 600px;
    margin: auto;
    text-align: center;
    align-self: center;
    margin-top: 1vw;
    transition: transform 0.7s ease; }
  
    /* .header-content:hover { */
      /* transform: scale(1.05);
    } */
  
    #video {
      margin: 0;
      margin-top: 30px;
     }
  
    .modern-iframe {
      border: none;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
     border-radius: 10px;
      }
      
    .iframe-container {
      display: flex;
      justify-content: center;
      padding: 1vw;
      /* margin: 1px; */
      
    }
  
  .info {
    grid-column: 1/span 4;
    background-color: #EAEAEA;
    display: grid;
    grid-template-areas: ". title title ." ". left right .";
    grid-gap: 40px;
    padding: 30px 0 60px 0; }
  
  .single-grid {
    grid-template-areas: ". title ." ". single .";
    grid-gap: 40px;
    background-color: #ffffff; }
  
  .info-title {
    grid-area: title;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background-color: #EAEAEA;
  margin: 20px; }
  
  .white {
    background-color: #ffffff; }
  
  .info-box {
    text-align: center;
    width: 400px;
    line-height: 24px; }
  
  .left {
    grid-area: left;
    justify-self: right; }
  
  .right {
    grid-area: right;
    grid-column: 3/span 1;
    justify-self: left; }
  
  .single {
    grid-area: single;
    grid-column: 2/span 1;
    width: 800px;
    justify-self: center;
     }
  
  .cards {
    grid-column: 1/span 4;
    padding: 40px 0;
    background-color: #342291;
    display: grid;
    grid-template-areas: ". card_one card_two card_three ."; }
  
  .one {
    grid-area: card_one;
    justify-self: right; }
  
  .two {
    grid-area: card_two;
    justify-self: center; }
  
  .three {
    grid-area: card_three;
    justify-self: left; }
  
  .card-item {
    width: 250px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center; }
    .card-item img {
      border-radius: 8px 8px 0 0;
      border-bottom: 1px solid #606570;
      width: 100%;
      height: 150px;
      object-fit: cover; }
    .card-item .card-title {
      margin: 30px;
      font-weight: bold;
      font-size: 18px; }
    .card-item .card-description {
      padding: 0 20px 30px 20px;
      color: #545454; }
  
  .action-block {
    grid-column: 1/span 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px;
    text-align: center;
    color: #ffffff; }
  
  .action-block-left {
    height: 100%;
    grid-column: 1/3;
    background-color: #2F3DA8;
    display: grid;
    grid-template-areas: ". action-left-content .";
    grid-template-rows: 1fr; }
  
  .action-block-right {
    height: 100%;
    grid-column: 3/5;
    background-color: #342291;
    display: grid;
    grid-template-areas: ". action-right-content .";
    grid-template-rows: 1fr; }
  
  .action-left-content {
    grid-area: action-left-content;
    align-self: center;
    justify-self: center;
    width: 70%; }
  
  .action-right-content {
    grid-area: action-right-content;
    align-self: center;
    justify-self: center;
    width: 70%; }
  
  .action-title {
    font-size: 18px;
    font-weight: bold; }
  
  .action-description {
    margin: 10px 0;
    
   }
  
  .footer {
    grid-column: 1/span 4;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    display: grid;
    grid-template-areas: "footer-area-one footer-area-two";
    height: 60px; }
    .footer a {
      color: #207FBB;
      text-decoration: none; }
  
  .footer-area-one {
    grid-area: footer-area-one;
    align-self: center;
    justify-self: center; }
  
  .footer-area-two {
    grid-area: footer-area-two;
    align-self: center;
    justify-self: center; }
  
  @media (min-width: 320px) and (max-width: 920px) {
    .grid-container {
      display: grid;
      grid-template-columns: 1fr; }
     
    header {
      grid-column: 1/2;
      display: grid;
      grid-template-areas: "header-content"; }
  
    .header-content {
      grid-area: header-content;
      width: 100%;
      justify-self: center; }
  
    .info {
      grid-column: 1/span 1;
      display: grid;
      grid-template-areas: "title" "left" "right";
      grid-gap: 20px;
      padding: 30px 0 30px 0; }
      
     /* .info-box single mi {
      list-style-type: "✔ ";
        
      }  */
  
    .single-grid {
      grid-template-areas: "title" "single";
      grid-gap: 20px; }
  
    .left {
      grid-area: left;
      justify-self: center; }
  
    .right {
      grid-area: right;
      justify-self: center; }
  
    .single {
      grid-area: single;
      grid-column: 1/span 1;
      width: 70%;
      justify-self: center; }
  
    .cards {
      grid-column: 1/2;
      padding: 40px 0;
      background-color: #342291;
      display: grid;
      grid-template-areas: "card_one" "card_two" "card_three"; }
  
    .card-item {
      width: 90%;
      margin-bottom: 20px; }
  
    .one {
      grid-area: card_one;
      justify-self: center; }
  
    .two {
      grid-area: card_two;
      justify-self: center; }
  
    .three {
      grid-area: card_three;
      justify-self: center; }
  
    .action-block {
      grid-column: 1/2;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 200px;
      text-align: center;
      color: #ffffff; }
  
    .action-block-left {
      height: 100%;
      grid-column: 1/2;
      background-color: #2F3DA8;
      display: grid;
      grid-template-areas: "action-left-content";
      grid-template-rows: 1fr; }
  
    .action-block-right {
      height: 100%;
      grid-column: 1/2;
      background-color: #342291;
      display: grid;
      grid-template-areas: "action-right-content";
      grid-template-rows: 1fr; }
  
    .action-left-content {
      grid-area: action-left-content;
      padding: 20px 0 40px 0;
      justify-self: center;
      width: 70%; }
  
    .action-right-content {
      grid-area: action-right-content;
      padding: 20px 0;
      justify-self: center;
      width: 70%; }
  
    .action-title {
      font-size: 18px;
      font-weight: bold; }
  
    .action-description {
      margin: 20px 0; }
  
    .footer {
      grid-column: 1/2;
      display: grid;
      grid-gap: 10px;
      grid-template-areas: "footer-area-one" "footer-area-two";
      height: 100px; }
  
    .footer-area-one {
      grid-area: footer-area-one;
      align-self: end;
      justify-self: center; }
  
    .footer-area-two {
      grid-area: footer-area-two;
      align-self: start;
      justify-self: center; } }
      .cta-section  {
        background: #1E212D url("bg.jpg");
        padding: 60px 20px;
        text-align: center;
      }
      .cta-button {
        display: inline-block;
        background-color: #fff;
        color: #333;
        padding: 15px 30px;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
      }
      .cta-button:hover {
        background-color: #342291;
        color: #fff;
      }
      .cta-button1 {
        color: black;
        font-size: 22px;
        border: 0px solid #ccc;
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 15px;
        text-decoration: none;
        float: right;
        border-color: #000000;
        font: 1em sans-serif;
         transition: background-color 0.3s ease;
      } 
      .cta-button1:hover {
        background-color: #342291;
        color: #fff;
        transform: scale(1.05);
              }
      footer {
        background-color: white;
        padding: 20px;
        text-align: center;
      }
      .footer-text {
        color: black;
        font-size: 1rem;
      }
      
  
  
  /*# sourceMappingURL=main.css.map */
   a1 {
    position:absolute;
    /* top:50%; */
    margin-top: 1px;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 30px 60px ;
    color: #1670f0;
    /* letter-spacing: 5px; */
    font-size:20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    overflow:hidden;
    cursor: pointer;
    width: 250px;
    font-weight: 500;
  }
  
  a1::before
  {
    content:"";
    position:absolute;
    top:2px;
    left:2px;
    bottom:2px;
    width:50%;
    background:rgba(15, 120, 146, 0.05);
    
  }
  a span:nth-child(1)
  {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(to right, #0c002b ,#1779ff);
    animation: animate1 2s linear infinite;
    animation-delay:1s;
    
  }
  @keyframes animate1
  {
    0%
    {
      transform:translateX(-100%);
  }
    100%
    {
      transform:translateX(100%);
    }
  }
  a1 span:nth-child(2)
  {
    position:absolute;
    top:0;
    right:0;
    width:2px;
    height:100%;
    background:linear-gradient(to bottom, #0c002b ,#1779ff);
    animation: animate2 2s linear infinite;
    animation-delay:2s;
  }
  @keyframes animate2
  {
    0%
    {
      transform:translateY(-100%);
  }
    100%
    {
      transform:translateY(100%);
    }
  }
  a1 span:nth-child(3)
  {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(to left, #0c002b ,#1779ff);
     animation: animate3 2s linear infinite;
    animation-delay:1s;
    
  }
  @keyframes animate3
  {
    0%
    {
      transform:translateX(100%);
  }
    100%
    {
      transform:translateX(-100%);
    }
  }
  a1 span:nth-child(4)
  {
    position:absolute;
    top:0;
    left:0;
    width:2px;
    height:100%;
    background:linear-gradient(to top, #0c002b ,#1779ff);
     animation: animate4 2s linear infinite;
    animation-delay:2s;
    
  }
  @keyframes animate4
  {
    0%
    {
      transform:translateY(100%);
  }
    100%
    {
      transform:translateY(-100%);
    }
  }
  /* yaha se a2 section: */
  .cta-sectionx  {
    padding: 10px 5px;
    text-align: center;
    
  }
  a2 {
    position:absolute;
    top:280px;
    transform: translate(-50%,-50%);
    padding: 30px 60px ;
    color: #1670f0;
    font-size:20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    overflow:hidden;
    cursor: pointer;
        width: 250px;
        font-weight: 500;
  
            
    
  }
  
  a2::before
  {
    content:"";
    position:absolute;
    top:2px;
    left:2px;
    bottom:2px;
    width:50%;
    background:rgba(15, 120, 146, 0.05);
    
  }
  a span:nth-child(1)
  {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(to right, #0c002b ,#1779ff);
    animation: animate1 2s linear infinite;
    animation-delay:1s;
    
  }
  @keyframes animate1
  {
    0%
    {
      transform:translateX(-100%);
  }
    100%
    {
      transform:translateX(100%);
    }
  }
  a2 span:nth-child(2)
  {
    position:absolute;
    top:0;
    right:0;
    width:2px;
    height:100%;
    background:linear-gradient(to bottom, #0c002b ,#1779ff);
    animation: animate2 2s linear infinite;
    animation-delay:2s;
  }
  @keyframes animate2
  {
    0%
    {
      transform:translateY(-100%);
  }
    100%
    {
      transform:translateY(100%);
    }
  }
  a2 span:nth-child(3)
  {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(to left, #0c002b ,#1779ff);
     animation: animate3 2s linear infinite;
    animation-delay:1s;
    
  }
  @keyframes animate3
  {
    0%
    {
      transform:translateX(100%);
  }
    100%
    {
      transform:translateX(-100%);
    }
  }
  a2 span:nth-child(4)
  {
    position:absolute;
    top:0;
    left:0;
    width:2px;
    height:100%;
    background:linear-gradient(to top, #0c002b ,#1779ff);
     animation: animate4 2s linear infinite;
    animation-delay:2s;
    
  }
  @keyframes animate4
  {
    0%
    {
      transform:translateY(100%);
  }
    100%
    {
      transform:translateY(-100%);
    }
  }