@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400&display=swap');

body{
    font-family: Arial, Helvetica, sans-serif;
}
a{
    text-transform: capitalize;
    font-size: 12px;
}

/* Navbar Section Start */
nav{
    font-family: 'Teko', sans-serif;
}
.navbar .nav-link{
    font-size: 16px;
    margin-right:30px;
    color:#fff;
}
/* Navbar Section End */

/* Hero Section Start */
section{
    padding-top: 80px;
    padding:80px;
}
#hero{
    background-image: url("../images/BG2.jpg");
    /* background-position: 50% 65%; */
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero h6{
    font-size: 15px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    margin-top:200px;
    text-transform: uppercase;
}
@media screen and (max-width:600px){
    #hero h6{
        font-size: 12px;
        margin-top:80px;
    }
}
#hero h1{
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
@media screen and (max-width:600px){
    #hero h1{
        font-size: 30px;
    }
}
#hero p{
    font-size: 17px;
}
@media screen and (max-width:600px){
    #hero p{
        font-size: 12px;
    }
}
.overlay{
    position: relative;
    z-index: 2;
}
.overlay::after{
    content: "";
    width:100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,1) 95%);
    z-index: -1;
}
#hero .btn{
    padding:12px 50px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}
#hero .btn-primary{
    background:#5c00e6;
    border:1px solid transparent;
    border-radius: 50px;
}
#hero .btn-primary:hover{
    background: transparent;
    border:1px solid white;
}
@media screen and (max-width:600px){
    #hero .btn{
        padding:10px 40px;
        font-size: 8px;
    }
}
/* Hero Section End */


/* Services Section Start */
.services-main{
    padding: 5%;
}

.services {
    text-align: center;
    overflow: hidden;
}
.services h3{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 3%;
    transition: 0.3s;
}
.services h6{
    font-weight: 600;
}
.service{
    display: inline-block;
    padding:20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.4s;
}
.service i{
    color: #808080;
    font-size: 40px;
    margin-bottom: 20px;
}
.service p{
    color:#9a9a9c;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
.services ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px -4px 0;
    list-style: none;
    padding: 0;
}
.services li {
    flex: 1 0 300px;
    height: auto;
    border-right: 1px solid #e1e5e8;
    border-bottom: 1px solid #e1e5e8;
    transition: 0.4s;
  }
.services li:hover{
    background: #ddd;
}
.services li:empty {
    height: 0;
    border: none;
  }
 /* Services Section End */

/* How we do Section Start */
.banner{
    background-image: url("../images/BG3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 55%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner.overlay{
    position: relative;
    z-index: 2;
}
.banner.overlay::after{
    content: "";
    width:100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background: linear-gradient(90deg,red,orange);
    background: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,1));
    opacity: 0.6;
    z-index: -1;
}
.banner h3{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 2vh;
    letter-spacing: 2px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    transition: 0.3s;
}
.banner section{
    padding-top: 0px;
    padding:0px;
}
.banner p{
    margin:0 10vw;
    font-size: 17px;
    transition: 0.3s;
}
.fact-area{
    width: 70vw;  
    margin-left:10vw;
    transition: 0.3s;
}
.single-fact{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top:35px;
}
.circle i{
    font-size: 30px;
    color:#f88d63;
    transition: 0.3s;
}
.circle-icon{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:0.3s;
}
.circle-label{
    text-transform: uppercase;
    position: relative;
    top:15px;
    transition: 0.3s;
}

/* How we do Section End */


/* Footer Section Start */
footer{
    background-color:#2a2a2b;
}
footer .social{
    padding:0;
}
footer p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:rgb(201, 201, 201);
    font-size: 12px;
    margin-top:1%;
    transition: 0.3s;
}
footer h4{
    padding:5px 0px;
    color:#fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: .3s;
}
footer .social li{
    display: inline-block;
}
footer .social li a i{
    margin-right:60px;
    padding-top:4px;
    color:rgb(201, 201, 201);
    transition: .3s;
    font-size: 20px;
}
footer .social li a i:hover{
    color:#5c00e6;
    text-decoration: none;
}
.footer .sm-head{
    color:rgb(201, 201, 201);
    font-size: 12px;
    transition: 0.3s;
}
.footer .sm-head i{
    font-size: 14px;
    color: #6c757d;
}
.footer div.contact-label{
    margin-left: 25px;
}
.footer .copyright p{
    font-size: 14px;
    color:rgb(201, 201, 201);
}
/* Footer Section End */

@media screen and (max-width:1200px){
    section{
        padding-top: 40px;
        padding:40px;
    }
    #hero{
        height: auto;
    }
    #hero h6{
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 0px;
        margin-top:100px;
    }
    #hero h1{
        font-size: 20px;
        margin-bottom: 8px;
        font-weight: 600;
        text-transform: uppercase;
    }
    #hero p{
        font-size: 12px;
    }
    #hero .btn{
        padding:8px 30px;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 2px;
    }
    .banner h3, 
    .services h3,
    .project h3,
    .blog h3,
    .clients h4{
        /* color: red; */
        font-size:  13px;
    }
    .banner{
        height: auto;
        margin:4vh 0;
    }
    .banner p{
        margin:0 0vw;
        font-size: 10px;
    }
    .circle-icon{
        width: 40px;
        height: 40px;
    }
    .single-fact{
        margin-left:15px;
        margin-top:10px;
    }
    .circle-label{
        font-size: 10px;
        top:5px;
    }
    .circle i{
        font-size: 20px;
    }
    .project .card .card-title{
        font-size: 13px;
    }
    .project .card .card-text{
        font-size: 10px !important;
    }
    .project .card .card-link{
        font-size: 8px;
    }
}

@media screen and (max-width:1000px){
    .banner h3, 
    .services h3,
    .project h3,
    .blog h3,
    .clients h4{
        font-size:  15px;
    }
    .banner p{
        margin:0 0vw;
        font-size: 10px;
    }
    .circle-icon{
        width: 30px;
        height: 30px;
    }
    .circle-label{
        font-size: 10px;
        top:0px;
    }
    .circle i{
        font-size: 15px;
    }
    .project .card img{
        width:20vw;
    }
    .project .card .card-text{
        font-size: 16px;
        text-align: justify;
    }
    .blog .card-title{
        font-size: 18px;
        padding:0 1vw;
    }
    .blog .card-text{
        transition: 0.3s;
        text-align: justify;
    }
    .blog .card h6{
        transition: 0.3s;
        font-size: 14px;
    }
    .slick-slide{
        margin:0px 30px;
    }
    .clients-logo{
        padding: 30px 20px 30px 20px;
    }
}
@media screen and (max-width:600px){
    .fact-area{
        margin-left:5vw;
    }
    .banner h3,
    .services h3,
    .project h3,
    .blog h3,
    .clients h4{
        font-size:  16px;
    }
    .circle-icon{
        width: 50px;
        height: 50px;
    }
    .banner p{
        margin:0 0vw;
        font-size: 12px;
    }
    .single-fact{
        margin-left:15px;
        margin-top:20px;
    }
    .circle-label{
        font-size: 12px;
        top:5px;
    }
    .circle i{
        font-size: 20px;
    }
    .project .card img{
        width:20vw;
    }
    .project .card .card-text{
        font-size: 15px;
        text-align: justify;
    }
    .blog .card-title{
        font-size: 14px;
        padding:0 1vw;
        margin-top:10px;
    }
    .blog .card .card-text{
        font-size: 12px;
        margin-top:1%;
        padding:0 4vw;
    }
    .card-body{
        padding:0;
        transition: 0.3s;
    }
    .blog .card h6{
        font-size: 12px;
        margin-top:3vh;
        margin-bottom: 1.5vh;
    }
    .blog-post{
        padding: 0;
        padding-top: 10px;
    }
    .slick-slide{
        margin:0px 30px;
    }
    .clients-logo{
        padding: 20px 10px 20px 10px;
    }
    footer h4{
        font-size: 12px;
        font-weight: 600;
    }
    footer p{
        font-size: 10px;
    }
    footer .social{
        text-align: center;
    }
    footer .social li a i{
        margin-right:30px;
        padding-top:2px;
        font-size: 18px;
    }
    .footer .sm-head{
        font-size: 10px;
    }
    .footer .copyright p{
        font-size: 12px;
    }
}
footer#footer-3-cols div#left-footer-section {
    flex-basis: 33.33%;
    border-right: 1px solid #444444;
    padding-right: 30px;
}

footer#footer-3-cols div#second-footer-section {
    flex-basis: 33.33%;
    border-right: 1px solid #444444;
    padding-right: 30px;
    padding-left: 30px;
}

footer#footer-3-cols div#right-footer-section {
    flex-basis: 33.33%;
    padding-left: 30px;
}

footer#footer-3-cols div#footer-logo-section {
    display: flex;
    align-items: center;
}

footer#footer-3-cols div#footer-logo {
    width: 30px;
    margin-right: 30px;
}

footer#footer-3-cols div#footer-search input {
    font-family: "Open Sans", sans-serif;
    border: 2px solid #999999;
    background: #2a2a2a;
    outline: none;
    color: #999999;
    padding: 2px;
    width: 200px;
}

footer#footer-3-cols div#footer-search button {
    font-family: "Open Sans", sans-serif;
    border: 2px solid #999999;
    background: transparent;
    color: #cecece;
    padding: 2px 10px;
    margin-left: 10px;
    cursor: pointer;
}

footer#footer-3-cols div#footer-search button:hover {
    background: #cecece;
    color: #666666;
    border: 2px solid #666666;
    transition: all 0.25s ease;
}

footer#footer-3-cols div#footer-search button:active {
    position: relative;
    top: 1px;
}

footer#footer-3-cols div.footer-section h3 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 12pt;
}

footer#footer-3-cols div#footer-logo img {
    width: 100%;
}

footer#footer-3-cols div.footer-information p {
    margin-top: 10px;
}

footer#footer-3-cols div.footer-information p:first-child {
    margin-top: 30px;
}

footer#footer-3-cols div.footer-information p:last-child {
    margin-bottom: 0;
}

footer#footer-3-cols div.footer-information p img {
    margin-right: 0.75em;
}


footer#footer-3-cols div.footer-section ul {
    margin-top: 15px;
    margin-bottom: 0;
    padding: 0;
}

footer#footer-3-cols div.footer-links ul li, footer#footer-3-cols div.footer-links ul li a   {
    list-style: none;
    color: #999999;
    line-height: 1.38em;
    margin-bottom: 1em;
    text-decoration: none;
}

footer#footer-3-cols div.footer-links ul li:last-child, footer#footer-3-cols div.footer-links ul li a:last-child   {
    margin-bottom: 0;
}

footer#footer-3-cols div.footer-section ul li a:hover {
    color: white;
    transition: all 0.2s ease;
}

footer#footer-3-cols div#copyright-information {
    border-top: 1px solid #444444;
    padding: 30px 0 0 0;
    text-align: center;
    display: flex;
    align-items: center;
}

footer#footer-3-cols div#copyright-information div#social-buttons {
    margin-left: auto;

}

footer#footer-3-cols div#copyright-information div#social-buttons img {
    margin-left: 0.68em;
    cursor: pointer;
    font-size: 14pt;
}


/*==== media queries for footer-3-columns ====*/

@media screen and (max-width: 960px){

    div#footer-container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    div#footer-grid {
        flex-direction: column;
        width: 480px;
        margin: 0 auto;
        padding-bottom: 60px;
    }

    footer#footer-3-cols div#left-footer-section {
        border-right: 0;
        padding-bottom: 30px;
    }

    footer#footer-3-cols div#second-footer-section {
        border-right: none;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 30px;

    }

    footer#footer-3-cols div.footer-section {
        padding-top: 30px;
    }

    footer#footer-3-cols div.footer-section h3 {
        text-align: center;
    }

    footer#footer-3-cols div.footer-section:first-child {
        padding-top: 0;
        padding-bottom: 0;
    }

    footer#footer-3-cols div#right-footer-section {
        padding-left: 0;
        padding-right: 0;
    }

    footer#footer-3-cols div#second-footer-section ul,
    footer#footer-3-cols div#right-footer-section ul {
        margin: 0;
        padding: 0;
        font-size: 11pt;
        text-align: center;
    }

    footer#footer-3-cols div.footer-links ul li {
        margin: 0;
    }

    footer#footer-3-cols div.footer-links ul li a {
        margin: 0;
        display: block;
        padding: 15px;
        background: #2a2a2a;
        border-bottom: 1px solid #444444;
        text-decoration: none;

    }

    footer#footer-3-cols div.footer-links ul li:last-child a {
        border-bottom: none;
    }

    footer#footer-3-cols div#footer-search input {
        width: calc(100% - 77px);
    }

    footer#footer-3-cols div#copyright-information {
        display: block;
        width: 480px;
        margin: 0 auto;
    }

    footer#footer-3-cols div#copyright-information div#social-buttons {
        padding: 15px 0;
    }

    footer#footer-3-cols div#copyright-information div#social-buttons img:first-child {
        margin-left: 0;
    }

    footer#footer-3-cols div#copyright-information div#footer-logo-section {
        display: block;
        align-items: normal;
    }

    footer#footer-3-cols div#copyright-information div#footer-logo {
        display: block;
        width: 100%;
        margin: 0;
    }

    footer#footer-3-cols div#copyright-information div#footer-logo img {
        width: 30px;
        text-align: center;
    }

    footer#footer-3-cols div#copyright-information div#copyright-text {
        display: block;
        text-align: center;
        padding: 15px 0;
    }

    footer#footer-3-cols div#copyright-information div#social-buttons i.fa {
        font-size: 24pt;
    }
}

@media screen and (max-width: 576px) {

    div#footer-grid {
        width: 100%;
    }

    footer#footer-3-cols div#footer-search input {
        width: calc(100% - 77px);
    }

    footer#footer-3-cols div.footer-information {
        margin: 0 auto;
    }

    footer#footer-3-cols div#copyright-information {
        width: 100%;
        margin: 0 auto;
    }

    footer#footer-3-cols div#copyright-information div#copyright-text {
        width: 100%;
    }

    footer#footer-3-cols div#copyright-information div#social-buttons {
        width: 100%;
    }
}
footer.site-footer {
    padding: 60px 30px;
    background: #222222;
    color: #999999;
    font-size: 10pt;
}

div#footer-container {
    /* width: 1200px; */
    margin: 0 auto;
    transition: all 0.2s ease;
}

div#footer-grid {
    display: flex;
    align-items: stretch;
    padding-bottom: 60px;
}

.at-section__title {
    margin: 0 0 70px;
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 2.625rem;
    text-align: center;
  }
  .at-grid {
      height: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: #FFF;
    border: 1px solid #E2E9ED;
  }
  .at-grid[data-column="1"] .at-column {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    flex-basis: 100%;
  }
  .at-grid[data-column="2"] .at-column {
    width: 50%;
    max-width: 50%;
    min-width: 50%;
    flex-basis: 50%;
  }
  .at-grid[data-column="3"] .at-column {
    width: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
    flex-basis: 33.3333333333%;
  }
  .at-grid[data-column="4"] .at-column {
    width: 25%;
    max-width: 25%;
    min-width: 25%;
    flex-basis: 25%;
  }
  .at-grid[data-column="5"] .at-column {
    width: 20%;
    max-width: 20%;
    min-width: 20%;
    flex-basis: 20%;
  }
  .at-grid[data-column="6"] .at-column {
    width: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
    flex-basis: 16.6666666667%;
  }
  .at-grid[data-column="7"] .at-column {
    width: 14.2857142857%;
    max-width: 14.2857142857%;
    min-width: 14.2857142857%;
    flex-basis: 14.2857142857%;
  }
  .at-grid[data-column="8"] .at-column {
    width: 12.5%;
    max-width: 12.5%;
    min-width: 12.5%;
    flex-basis: 12.5%;
  }
  .at-grid[data-column="9"] .at-column {
    width: 11.1111111111%;
    max-width: 11.1111111111%;
    min-width: 11.1111111111%;
    flex-basis: 11.1111111111%;
  }
  .at-column {
      height: 100px;
    z-index: 0;
    position: relative;
    background: #FFF;
    box-shadow: 0 0 0 1px #E2E9ED;
    padding: 10px;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0.2s ease;
  }
  .at-column:hover {
    z-index: 1;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
  }
  .at-column:hover .at-social {
    margin: 16px 0 0;
    opacity: 1;
  }
  @media (max-width: 800px) {
    .at-column {
      width: 50% !important;
      max-width: 50% !important;
      min-width: 50% !important;
      flex-basis: 50% !important;
    }
  }
  @media (max-width: 600px) {
    .at-column {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      flex-basis: 100% !important;
    }
  }
  .at-user {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    text-align: center;
  }
  .at-user__avatar {
    width: 98px;
    height: 98px;
    border-radius: 100%;
    margin: 0 auto 20px;
    overflow: hidden;
  }
  .at-user__avatar img {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .at-user__name {
    color: #313435;
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.625rem;
  }
  .at-user__title {
    color: #6F808A;
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    line-height: 2.375rem;
  }
  .at-social {
    margin: 0 0 -18px;
    opacity: 0;
    transition: margin 0.2s ease, opacity 0.2s ease;
  }
  .at-social__item {
    display: inline-block;
    margin: 0 10px;
  }
  .at-social__item a {
    display: block;
  }
  .at-social__item svg {
    fill: #515F65;
    display: block;
    height: 18px;
    transition: fill 0.2s ease;
  }
  .at-social__item svg:hover {
    fill: #788D96;
  }
    
  .container {
    max-width: 1170px;
    width: 100%;
    margin: 100px auto;
    padding: 0 20px;
    box-sizing: border-box;
    transform-origin: top center;
    transform: scale(0.8);
  }
  .container.services-main{
      transform: scale(1);
  }
  @media (max-width:600px){
    #menu4{
        margin: 50px auto 100px;
    }
  }