@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* ====== Global ==== */
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html{
    font-size: 16px !important;
}
.cont-container p{
    margin-bottom: 15px;
}

/* ====== Read More btn ==== */

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    width: 200px;
    margin-top: 20px;
}
.hero-btn:hover{
    border: 1px solid #a3918f;
    background: olive;
    transition: 0.5s;
}
/* ====== gif section ==== */

/*===download buttons===*/

.download-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    width: 200px;
    margin-top: 20px;
}

.download-btn:hover{
    border: 1px solid #a3918f;
    background: olive;
    transition: 0.5s;
}


/*===download buttons===*/

.map-section{
    background-color: aliceblue;
}
.hero img{
    width: 100%;
    background-color: aliceblue;
}


/* ====== Variables ==== */
:root {
    --darkblue : #9a9fc4;
    --lightblue : #d3d7df;
    --bg : #EFF2FF;
    --gradient : linear-gradient(to bottom right, #2a305f,#242a5652);

    --bold : 600;
    --semi-bold : 500;
}

body{
    font-family: Segoe UI,Segoe WP,Tahoma,Arial,sans-serif;
    overflow-x: hidden; /* hids the horizontal scroll bar from the web site*/
    overflow-y:auto !important;
    color: #384047;
}

/* === Remove all text decorations from anchor tags === */

a{
    text-decoration: none;
}

/* === Remove text styles of all unordered lists*/

ul{
    list-style: none;
}

h1,h2,h3{
    font-weight: var(--bold);
    color: var(--lightblue);
}

/* === Reusable CSS === */

.container{
    width: 80%;
    margin: auto; /*container will aquire only 80% of the width*/
}
.container-fluid {
    padding: 0px 12px !important;
}
.grid{
    display: grid;
    grid-gap: 1.5rem;
}

section{
    padding: 60px 0; /*top and bottom 60px, left and right 0*/
}

.ctn{
    padding: 10px 12px;
    background-color: var(--lightblue);
    border: none;
    color: #050505;
    border-radius: 5px;
}

.ctn:hover, .ctn:hover.ctn a {
    color: #4d586f;
    background: #70793d;
}

/* -----Header----- */
.header{
    background-image: url(./images/whoweare.png);
    width: 100vw;
    height: 400px;
    padding: 20px 0px;
    margin-bottom: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 50px;
    background-color: #e6eeff;
}
@media (max-width: 768px) {
    .header{
        background-position-y: 170px;
    }
}
nav{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav-item :hover .nav-item a{
    color: #749BE7;
}
.nav-link {
    padding: 0px 8px !important;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img{
    width: 200px;
    margin: 0 auto;
}
.wwa-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.wwa-img{
    width: 100%;
    border-radius: 20px;
}
.wwd-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.wwd-img{
    width: 100%;
    border-radius: 20px;
}
ul{
    display: flex;
    align-items: center;
}

ul li a{
    color: #EFF2FF;
    margin: 0;
    font-size: medium;
    text-decoration: none;
}

.header-content{
    width: 100%;
    margin-top: 100px;
    color: #EFF2FF;
    margin: 0 auto;
}

.header-content h1 .header-content h3{
    color: #EFF2FF;
}

.header-content h1{
    font-size: 30px;
    color: olive;
    margin-bottom: 0px;
}
.header-content p{
    color: olive;
}
.header-content {
    margin-bottom: 30px;
}
/* -----End of Header----- */


/*.....Content description.....*/
.content{
    width:100%;
    margin: auto;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 150px;
    padding-right: 150px;
}
.content .content-section{
    margin: 80px 0px;
}
.content-section h3 {
    color: #2eb1b1;
    margin-bottom: 20px;
}
.content h1{
    color: olive;
    font-size: 36px;
    font-weight: 500;
    /* font-family: 'Times New Roman', Times, serif; */
    width: 100%;
}

.content p{
    font-size: 16px;
    text-align: justify;
    width: 100%;
}

#ss1, #ss2, #ss3{
    padding: 10px 200px;
    background-color:#e1e1e1;
    border-radius: 20px;
}


/*.....End of Content description.....*/

/*.....Footer......*/

footer{
    padding:60px 0 20px;
    background-color: rgb(0, 0, 0);
}
footer .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px,auto));
}
footer h1,
footer p,
footer li
{
    color: #FFF;
    font-size: small;
}

footer ul {
    flex-direction: column;
}
footer ul li{
    margin: 0px auto;
    cursor: pointer;
}

footer .col h4{
    margin-bottom:10px;
    color: #EFF2FF;
}
footer .container .col:nth-child(1) p{
    margin:20px auto;
}

footer .social-icons .fa {
    margin-right: 20px;
    cursor: pointer;
    font-size: 30px;
}
footer .social-icons{
    flex-direction: row;
}

footer .col{
    display: flex;
    direction: column;
    align-items: center;
    padding:10px 0;
}
.footer-links{
    padding-left: 0px;
}

#foot-text{
    text-decoration: none;
}

hr .copyright{
    width: 80%;
    margin: 20px 10px auto;
}

/*.....End of Footer.....*/
.row{
    margin-right: -27px;
    margin-left: -19px;
text-align: justify;
}

.row h3{
    size: 18pt;
    color: rgb(46, 177, 177);
}
.des-col{
    margin: 50px 0;
}
.des-col h3{
    size: 18pt;
    color: rgb(46, 177, 177);
}

/*====Form Section====*/

.form-section{
    background-image: url(images/darkend_signupbanner.png);
    background-position: center;
    background-size: cover;
    /* font-family: sans-serif; */
    margin-top: 40px;
}

.regform{
    width: 800px;
    background-color: rgb(0, 0, 0, 6);
    margin: auto;
    color: #050505;
    padding: 10px 0px 10px 0px;
    text-align: center;
    border-radius: 15px 15px 0px 0px;
}

.main{
    background-color: rgb(0, 0, 0, 0.5);
    width: 800px;
    margin: auto;
}
form{
    padding: 10px;
}

#name{
    width:100%;
    height: 100px;
}
.name{
    margin-left: 25px;
    margin-top: 30px;
    width:125px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
}
.firstname{
    position:relative;
    left: 200px;
    top:-37px;
    line-height: 40px;
    border-radius: 6px;
    padding: 0 22px;
    font-size: 16px;
}
.lastname{
    position:relative;
    left: 417px;
    top:-80px;line-height: 40px;
    border-radius: 6px;
    padding: 0 22px;
    font-size: 16px;
    color: #555;
}

.firstlable{
    position: relative;
    color: #e5e5e5;
    text-transform: capitalize;
    font-size: 14px;
    left:203px;
    top:-45px;
}

.lastlabel{
    position: relative;
    color: #e5e5e5;
    text-transform: capitalize;
    font-size: 14px;
    left:203px;
    top:-45px;
}

.company{
    position: relative;
    left: 200px;

}


/*......ggggggggggggg.......*/




form {
  max-width: 300px;
  margin: 10px auto;
  padding: 10px 20px;
  background: #f4f7f8;
  border-radius: 8px;
}

h1 {
  margin: 0 0 20px 0;
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  background-color: #e0e4e5;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
  margin-bottom: 30px;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 8px 0;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}

button {
  padding: 19px 39px 18px 39px;
  color: #FFF;
  background-color: olive;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid  olive;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  margin-bottom: 10px;
}

.button:hover {background-color: #8e3e3f}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
}

label.light {
  font-weight: 300;
  display: inline;
}

.number {
  background-color: olive;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(91, 112, 41, 0.296);
  border-radius: 100%;
}

@media screen and (min-width: 480px) {

  form {
    max-width: 720px;
  }

}
.form_heading{
    color: olive;
}

.down-col{
    flex-basis: 32%;
    background:olive;
    margin-top: 5%;
    padding:50px 32px;
    box-sizing: border-box;
    transition: 0.5s;
}

.row1{
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
}
/*
.videowrapper{
   position: relative;
   padding-top: 56.25%;
   padding-bottom: 25%;
   height: 0px;
}

.videowrapper iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
 }
*/

.vid{
    display: flex;
    flex-direction: column;
    align-items: center;
}
 /*download section*/

 .downloads{
    background-color: var(--bg);
    padding-left: 20px;
    padding-right: 20px;
 }
 .downloads-wrapper{
    padding: 0px 30px;
 }
 .download{
    background-color: #c7eee5;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
 } 
@media (max-width: 768px) {
    .download{
        margin-bottom: 20px;
    }
}
 .download i{
    font-size: 40px;
    margin-bottom: 10px;
 }
 .download:hover{
    background: #8e8e69;
    transform: translateY(-20px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

 .download h1{
    color: #000000;
    font-size: 24px;
    margin-bottom: 0px;
 }

  /*guides section*/
 .guides{
    background-color: var(--bg);
    padding-left: 20px;
    padding-right: 20px;
 }

 .guides-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
 }
 .guide{
    background-color: #c7eee5;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    min-width: 400px;
 }
 @media(max-width: 768px) {
    .guide{
        min-width: 100%;
    }
 }
 .guide:hover{
    background: #8e8e69;
    transform: translateY(-20px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 }

 .guide i{
    font-size: 40px;
    margin-bottom: 10px;
 }

 .guide h1{
    color: #000000;
    font-size: 24px;
    margin-bottom: 0px;
 }

 .formsection{
    height: 100px;
 }

 .content-root{
    overflow-y:auto;
 }

/*
 text on gif
*/

.outer-1 {
    position: relative;
    width: 100px;
    height: 100px;
  }
  
  .outer-1 > img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0px;
    top: 0px;
  }
  
  
  .outer-1 > p {
    position: relative;
    z-index: 2;
  }
  .office-form-content{
    overflow: hidden !important;
  }
  .content-root{
    height: auto !important;
  }

  .formset{
    margin: 50px auto;
  }
 .navbar-toggler{
    width: auto;
    line-height: 1 !important;
    margin-bottom: 0px;
 }


   @media (max-width: 768px) {
        .logo img{
            width: 130px;
            margin-bottom: 20px;
        }
    }

@media(max-width: 768px){
    .content {
        width: 100%;
        margin: auto;
        text-align: center;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 15px;
        padding-right: 15px;
      }
}

@media (max-width: 768px) {
    .row {
        margin-right: -5px;
        margin-left: -12px;
        text-align: justify;
      }
}


@media (max-width: 768px) {
    .hero img {
        width: 96%;
        max-height: 67%;
        background-color: aliceblue;
        margin-left: 7px;
      }
}


@media (max-width: 768px) {
    .video{
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .myvid{
        width: 100%;
    }
}
/* 
.myvid{
    width: 60%;
    margin-left: 300px;
 } */