@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
    text-decoration:none;
	list-style:none;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
p{
    font-family: "Inter", serif;
  font-weight: 100;
  font-style: normal;
}
	/*! font-family: lato; */
}
 body{
	 min-height:100vh;
	 width:100%;
	 overflow-x:hidden;
 }



.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1500px;
    /*! width: 90%; */
    margin: auto;
    /*! display: flex; */
    justify-content: center;
}

.navbar{
    box-shadow: 0px 5px 20px -10px #000;
    position: fixed;
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 1.05;
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
    gap: 25px;
    align-items: center;
}
.navlink{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.logo{
    /*! order: 1; */
    /*! font-size: 2rem; */
    /*! color: #0c1e82; */
    cursor: pointer;
    /*! text-transform: uppercase; */
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a{
    color: #000;
    text-decoration: none;
    font-weight: 200;
    transition: color 0.2s ease-in-out;
    font-size: 19px;
    position: relative;
}
.navbar a:before{
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 40px;
    background: #3a6291;
    transform: translateY(-100px);
    transition: 0.3s ease;
}
.navbar a:hover::before{
transform: translateY(-40px);
}
.navbar a:hover {
    color: #8c8c8c;
}
.navbar-btn{
    margin-left: 24rem;
}
.navbar-btn a{
    padding: 15px 25px;
  /*! background-color: #0c1e82; */
  color: #010101;
  outline: none;
  border: navajowhite;
  border-radius: 3px;
  cursor: pointer;
    border: 1px solid #3a6291;
}
.logo img{
    width: 211px;
    /*! border-radius: 50%; */
    margin-left: 20px;
}



/*navbar end*/


.section-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero{
    position: relative;
    z-index: 1;
    
}
.slideshow{
    list-style: none;
    z-index: 0;
  }
  
  
  .slideshow li span { 
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        color: transparent;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: none;
        opacity: 0;
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    animation: imageAnimation 18s linear infinite 0s; 
  }
.slideshow li span:after{
    content: "";
    width: 100%;
    height: 100vh;
    background: #052342D4;
    position: absolute;
    z-index: 1;
}
  .slideshow li:nth-child(1) span { 
    background-image: url(../img/weg\ partners\ -\ bridge.jpg);
  }
  .slideshow li:nth-child(2) span { 
    background-image: url(../img/weg\ partners\ -\ architecture.jpg);
    animation-delay: 6s;
  }
  .slideshow li:nth-child(3) span { 
    background-image: url(../img/weg\ partners\ -\ bridge.jpg);
    animation-delay: 12s;
  }
  
  
  @keyframes imageAnimation { 
    0% {
      opacity: 0.8;
      @include animation-timing-function(ease-in);
    }
    12.5% {
      opacity: 1;
      @include animation-timing-function(ease-out);
    }
    25% {opacity: 1;}
    37.5% {opacity: 0.8;}
    100% {opacity: 0.8;}
  }







/*hero start*/




.typewriter {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5rem;
    color: #fff;
    /*! font-weight: 200; */
    position: relative;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.typewriter span {
    color: var(--text-color);
    /*! text-transform: uppercase; */
    padding: 10px;
    border-right: solid var(--text-color) 10px; 
    animation: cursor 1s ease-in-out infinite;
}

@keyframes cursor {
    from { border-color: var(--text-color); }
    to { border-color: transparent; }
}








.feuture-btn{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.feuture-btn .btn{
    /*! padding: 10px 20px; */
    border: 1px solid #3a6291;
    border-radius: 5px;
    background: #3a6291;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 500px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*! margin-top: 5rem; */
    font-weight: 200;
}

.feuture-btn .btn svg{
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}


.feuture-btn .btn:hover svg{
    margin-left: 1.5rem;
}





/*main end*/


/*about start*/

.about-4-section{
    width: 100%;
    text-align: center;
    margin-top: 5rem;
}
.about-box-section{
    display: flex;
    justify-content: space-evenly;
    /*! gap: 20px; */
    margin-top: 5rem;
    background: #f9f9f9;
    padding: 15px 0px;
    flex-wrap: wrap;
    /*! margin-bottom: 5rem; */
}
.about-box{
    max-width: 450px;
    width: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: 5px;
    text-align: left;
    position: relative;
    box-shadow: 0px 0px 12px -5px #51515138;
    transition: 0.3s ease;
    cursor: pointer;
}
.about-box:hover{
    transform: translateY(-15px);
}
.about-box-text h3{
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 400;
    color: #3a6291;
}
.about-4-section h2{
    font-size: 3rem;
    font-weight: 500;
    color: #15165d;
}
.about-box-text p{
    font-size: 1.2rem;
}
.btn-about svg{
    width: 30px;
    height: 30px;
    transition: 0.3s ease;
}
.about-box-icon svg{
    width: 50px;
    height: 50px;
    rotate: 35deg;
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #979797;
}

.btn-about{
    margin-top: 1rem;
}
.btn-about a{
    padding: 15px 30px;
    background-color: #18578e61;
    color: #f0f0f0;
    display: flex;
    width: 200px;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}
.btn-about a:hover svg{
    transform: translateX(10px);
}
.btn-about2 a:hover svg{
    transform: translateX(10px);
}
.btn-about2 a svg{
    transition: 0.3s ease;
}

.btn-about a:hover{
    background: #3d6297;
}
.section {
    /*! max-width: 1600px; */
    margin: auto;
    /*! padding: 50px 20px; */
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    margin-top: 8rem;
    margin-bottom: 15rem;
}

.left-side, .right-side {
    width: 50%;
    display: flex;
    justify-content: center;
}

.left-side img {
    width: 85%;
    height: auto;
    border-radius: 10px;
}

.right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 8rem;
}

.right-side .text h2{
    font-size: 3rem;
    font-weight: 500;
    color: #15165d;
}

.right-side .box-container {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}
.right-side .paragrhap h2{
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}


.weg{
    background-color: #688eae63;
    color: #3a6292 !important;
    padding: 5px;
    border-left: 4px solid #18568e82;
}



.right-side .text p{
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 200;
    color: #3a6291;
    /*! background: #3a6291; */
}












/*services section*/

.services-section {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.container-services {
  width: 80%;
  text-align: center;
}
.service-box .btn-about2 a{
  /*! padding: 10px 20px; */
  /*! background-color: #18578e45; */
  color: #3b6293;
  display: flex;
  width: 200px;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
}
.container h2:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 62%;
    width: 68px;
    height: 2px;
    background: #3b6293;
}
.container h2 span {
  color: #50739f;
}

.container p {
  margin-top: 10px;
  /*! color: #555; */
}

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.left {
  text-align: left;
  width: 30%;
  max-width: 400px;
}

.left h3 {
  font-size: 1.5rem;
  color: #222;
  margin: 10px 0;
  font-weight: 300;
}

.left button {
  margin-top: 10px;
  padding: 18px 20px;
  background-color: #a7bfd4;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 200;
}
.left button:hover{
    background: #3d6297 ;
}
.service-box {
  width: 30%;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  /*! height: 225px; */
  display: flex;
  flex-direction: column;
  align-items: center;
    transition: 0.2s ease;
  gap: 18px;
    cursor: pointer;
}
.service-box:hover{
    box-shadow: 0 0 20px -12px #33323278;
    border-radius: 0px;
}
.service-box:nth-child(2) {
  /*! background-color: #f8f8f8; */
}

.box-2 h4{
    color: #fff !important;;
}
.box-2{
  background-color: #3b6294e3 !important;
  color: #fff;
}
.box-2 a{
  color: #fff !important;
}

.btn-3{
  background-color: #fff !important;
  color: #000 !important;
}

.btn-3 h4{
  color: #3b6293 !important;
}
.service-box:nth-child(3) {
  background-color: #7da0bf;
  color: #fff;
}
.service-box:nth-child(3) h4{
  color: #fff;
}
.service-box i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-box h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #3b6293;
}

.service-box p {
  font-size: 1rem;
  font-weight: 200;
}






/*contact section start*/

  
  #contact {
    width: 100%;
    height: 100%;
    /*! background: #3a6291; */
    /*! padding: 2rem; */
    margin-top: 12rem;
    border-radius: 1rem;
  }
  
  .section-header {
    text-align: center;
    margin: 0 auto;
    /*! padding: 40px 0; */
    font-weight: 400;
    color: #3a6291;
    /*! text-transform: ; */
    letter-spacing: 6px;
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .contact-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 auto;
    /*! padding: 20px; */
    position: relative;
    max-width: 100%;
    width: 100%;
    margin-top: 4rem;
    /*! background: #3a6291; */
    padding: 2rem;
    border-radius: 10px;
  }
  
  /* Left contact page */
  .form-horizontal {
    /*float: left;*/
    max-width: 400px;
    font-family: 'Lato';
    font-weight: 400;
  }
  
  .form-control, 
  textarea {
    max-width: 500px;
    background-color: #f0f0f0;
    color: #000;
    letter-spacing: 1px;
    border: none;
    font-weight: 200;
  }
  .contact-p{
    text-align: center;
  font-size: 1.3rem;
  color: #7b7b7b;
  font-weight: 300;
  }
  .send-button {
    margin-top: 15px;
    height: 50px;
    width: 400px;
    overflow: hidden;
    transition: all .2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #191b1e66;
    outline: none;
    border: none;
    color: #fff;
  }
  .col-sm-12 input{
    max-width: 650px;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    /*! border-radius: 10px; */
    font-weight: 200;
    text-transform: lowercase;
  }
  .alt-send-button {
    width: 200px;
    height: 34px;
    transition: all .2s ease-in-out;
  }

  .form-horizontal textarea{
    max-width: 650PX;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    text-transform: lowercase;
  }
  
  .send-text {
    display: block;
    margin-top: 10px;
    font: 700 12px 'Lato', sans-serif;
    letter-spacing: 2px;
    font-size: 20px;
  }
  .alt-send-button i{
    font-size: 30px;
  }
  
  .alt-send-button:hover {
    transform: translate3d(0px, -39px, 0px);
  }
  
  /* Begin Right Contact Page */
  .direct-contact-container {
    max-width: 400px;
  }
  
  /* Location, Phone, Email Section */
  .contact-list {
    list-style-type: none;
    /*! margin-left: -30px; */
    /*! padding-right: 20px; */
  }
  
  .list-item {
    line-height: 4;
    color: #8a8a8a;
  }
  
  .contact-text {
    font: 300 18px 'Lato', sans-serif;
    letter-spacing: 1.9px;
    color: #494848;
  }
  
  .place {
    margin-left: 62px;
  }
  
  .phone {
    margin-left: 56px;
  }
  
  .gmail {
    margin-left: 53px;
  }
  
  .contact-text a {
    color: #494848;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  
  .contact-text a:hover {
    color: #313131;
    text-decoration: none;
  }
  
  
  /* Social Media Icons */
  .social-media-list {
    position: relative;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .social-media-list li a {
    color: #fff;
  }
  
  .social-media-list li {
    position: relative; 
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 10px 3px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: rgb(58, 98, 145);
    cursor: pointer; 
    transition: all .2s ease-in-out;
  }
  
  .social-media-list li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 1px #fff;
    transition: all .2s ease-in-out;
  }
  
  .social-media-list li:hover {
    background-color: #fff; 
  }
  
  .social-media-list li:hover:after {
    opacity: 1;  
    transform: scale(1.12);
    transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
  }
  
  .social-media-list li:hover a {
    color: #000;
  }
  
  .contact-us-free {
    font: 200 14px 'Oswald', sans-serif;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 2rem;
  }
  .img-contact-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
  }
  .img-contact-logo img{
    width: 180px;
    margin-top: 3em;
    opacity: 0.5;
  }
  hr {
    border-color: rgba(255,255,255,.6);
  }
  







/*fotter*/
.footer{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*! height: 36vh; */
  background: #253F5C;
  margin-top: 5rem;
  padding: 20px 0;
}
.foot-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

}
.foot-content p{
  color: #d7d7d7;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 200;
}
.foot-logo img{
  width: 300px;
}

  /*cookies*/
  
.cookie-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    padding: 1rem 2rem;
    background: #fff;
    transition: all .75s cubic-bezier(.19,1,.22,1);
    
    &--hide {
      opacity: 0;
      bottom: -100%;
    }
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 200;
    z-index: 1;
  }
  
  .cookie-button {
    display: inline-block;
    cursor: pointer;
    padding: 0.65rem 0.85rem;
    margin-left: 0.45rem;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background-image: linear-gradient(62deg, #3a6291 0%, #3d6297 100%);
  }
  