*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
  }
  body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
  }
  body::-webkit-scrollbar{ 
    display: none;
  }
  @import url(www.hostinger.in/tutorials/best-html-web-fonts);
  #navbar{
    height: 100px;
    width:100%;
    border-bottom: 1px solid rgba(73, 71, 71, 0.452);
    /* background-color: rgb(138, 0, 0); */
    /* background-color:hsl(196, 100%, 81%); */
    /* background-color: rgba(2, 105, 142, 0.748); */
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30  px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
    padding: 10px;
    overflow: hidden;
}
.subnav{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
}
.imgclass{
    height: 100%;
    width:40%;
    /* background-color: hotpink; */
    /* display: flex; */
    /* align-items: center; */
    justify-content: left;
}
.imgclass img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}
.links{
    height: 100;
    width: 38%;
    /* background-color: palegoldenrod; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.links a{
   font-family:-apple-system,BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   font-size: 17px;
    text-decoration:none;
    color:#022b2b;  
    transition: all 1.1s;
    position: relative;
}
.links a:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 4px;
    background-color: #f88030;
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    transform: scaleX(0);
}

.links a:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  .topcon{
    height: 300px;
    width: 100%;
  }
  .topcon img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  :root {
    --primary-color: #010712;
    --secondary-color: #818386;
    --bg-color: #FCFDFD;
    --button-color: #3B3636;
    --h1-color: #3F444C;
  }
  
  [data-theme="dark"] {
    --primary-color: #FCFDFD;
    --secondary-color: #818386;
    --bg-color: #010712;
    --button-color: #818386;
    --h1-color: #FCFDFD;
  }
  
  * {
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
  }
  
  .contact-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
    /* padding: 20px; */
  }
  
  .left-col {
    width: 45vw;
    height: 100%;
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .left-col iframe{
    height: 90%;
    width: 90%;

  }
  
  .logo {
    width: 10rem;
    padding: 1.5rem;
  }
  
  .right-col {
    background: var(--bg-color);
    width: 50vw;
    height: 100vh;
    /* padding: 20px; */
    padding: 5rem 3.5rem;

  }
  
  h1, label, button, .description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1rem;
  }
  
  h1 {
    color:var(--h1-color);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
  }
  
  p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 0.01rem;
    width: 40vw;
    margin: 0.25rem 0;
  }
  
  label, .description {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.625rem;
  }
  
  form {
    width: 31.25rem;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
  }
  
  input, textarea, label {
    width: 40vw;
    display: block;
  }
  
  p, placeholder, input, textarea {
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  input::placeholder, textarea::placeholder {
    color: var(--primary-color);
  }
  
  input, textarea {
    color: var(--primary-color);
    font-weight: 500;
    background: var(--bg-color);
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
  }
  
  textarea {
    resize: none;
  }
  
  button {
    text-transform: uppercase;
    font-weight: 300;
    background: var(--button-color);
    color: var(--bg-color);
    width: 10rem;
    height: 2.25rem;
    border: none;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
  }
  
  input:hover, textarea:hover, button:hover {
    opacity: 0.5;
  }
  
  button:active {
    opacity: 0.8;
  }
  
  /* Toggle Switch */
  
  .theme-switch-wrapper {
    display: flex;
    align-items: center;
    /* justify-content: fl; */
    text-align: center;
    width: 160px;
    position: absolute;
    bottom:-50px;
    top: 0.5rem;
    right: 0;
  }
  
  .description {
      margin-left: 1.25rem;
    }
  
  .theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
  }
  
  .theme-switch input {
    display:none;
  }
  
  .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
  }
  
  .slider:before {
    background-color: #fff;
    bottom: 0.25rem;
    content: "";
    width: 26px;
    height: 26px;
    left: 0.25rem;
    position: absolute;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--button-color);
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  #error, #success-msg {
    width: 40vw;
    margin: 0.125rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-family: 'Jost';
    color: var(--secondary-color);
    }
  
  
    #success-msg {
    transition-delay: 3s;
    }
  
  @media only screen and (max-width: 950px) {
    .logo {
      width: 8rem;
    }
    h1 {
      font-size: 1.75rem;
    }
    p {
      font-size: 0.7rem;
    }
    input, textarea, button {
      font-size: 0.65rem;
    }
    .description {
      font-size: 0.3rem;
      margin-left: 0.4rem;
    }
    button {
      width: 7rem;
    }
    .theme-switch-wrapper {
      width: 120px;
    }
    .theme-switch {
    height: 28px;
    width: 50px;
  }
  
  .theme-switch input {
    display:none;
  }
  
  .slider:before {
    background-color: #fff;
    bottom: 0.25rem;
    content: "";
    width: 20px;
    height: 20px;
    left: 0.25rem;
    position: absolute;
    transition: .4s;
  }
    input:checked + .slider:before {
    transform: translateX(16px);
  }
  
  .slider.round {
    border-radius: 15px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  }
  .footer{
    height: 600px;
    width: 100%;
    background-image:url(../img/footer-background-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
    padding: 20px;
  }
  .subfooter{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* background-color: rgba(51, 48, 46, 0.37); */
  }
  .numberone{
  height: 60%;
  width: 100%;
  /* background-color: pink; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  }
  .con1{
    height: 100%;
    width: 45%;
    /* background-color: red; */
    padding: 20px;
  }
  .con1 img{
    height: 150px;
    width: 60%;
  }
  .con1 p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.2px;
    text-align: left;
    color: white;
  }
  .con2{
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content:center;
    /* background-color: rebeccapurple; */
  }
  .subcon2{
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
  }
  .subcon2 i{
    color:rgb(1, 192, 255);
    /* color:  #2c73df;  */
    font-size: 28px;
    padding: 10px;
    margin-left: 9px;
  }
  .subcon2 h2{
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    margin-left:24px;
  }
  .con2 p{
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    padding: 20px;
    text-align: left;
    /* text-align: center; */
  }
  #lit{
    color:rgb(1, 192, 255);
    font-size: 16px;
    padding: 10px;
    text-align: left;
  }
  .subcon3{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
  }
  
  .subcon3 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
  }
  .con3{
    height: 100%;
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content:center;
    /* background-color: #3FA0C7; */
  }
  .subcon4{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: -20px;
  }
  .subcon4 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
    /* margin-left: 20px; */
  }
  .subcon4 p{
    margin-top: 0px;
    margin-left: -6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    /* padding: 20px; */
    /* text-align: left; */
  }
  .subcon5{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: -20px;
  }
  .subcon5 i{
    color:rgb(1, 192, 255);
    font-size: 18px;
    padding: 20px;
    text-align: left;
    /* margin-left: 20px; */
  }
  .subcon5 p{
    margin-top: 0px;
    margin-left: -6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;
    /* padding: 20px; */
    /* text-align: left; */
  }
  .numbertwo{
  height: 20%;
  width: 100%;
  /* background-color: darkblue; */
  display: flex;
  align-items: center;
  justify-content: left;
  }
  .subnumbertwo{
    height: 50%;
    width: 40%;
    /* background-color: #ff7300; */
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .subnumbertwo p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-left:20px;
    color: white;
  }
  .subnumbertwo a{
    text-decoration: none;
    font-size: 16px;
    color:rgb(0, 204, 255);
    font-family:'Roboto', sans-serif;
    padding: 10px;
  }
  .subnumbertwo a:hover{
    color:blueviolet;
  }
  .numberthree{
  height: 10%;
  width: 100%;
  /* background-color: saddlebrown; */
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .numberthree p{
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-left:20px;
    color: rgba(255, 255, 255, 0.405);
  }