/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&display=swap');

/*HTML*/
html {
    scroll-behavior: smooth;
}

/*Body*/
body {
    margin:0px;
    background-color:#141228;
}

/*Header*/
header {
    width:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center; 
}
#headermain {
    width:70%;
    padding:10px;
    box-sizing:border-box;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
}
#logo {
    width:30%;
    display:flex;
    align-items:center;
    justify-content:center;
}
#logo img {
    max-width:100%;
    height:auto;
    transition:all ease-in 0.3s;    
}
#logo img:hover {
    opacity:0.8;
}
nav {
    width:70%;
    display:flex;
    align-items:center;
    justify-content:end;    
}
nav a {
    margin:10px;
    transition:all ease-in 0.3s; 
    color:#97b78d;
    text-decoration:none;
    font-size:17px;
    font-family:'Open Sans', sans-serif;
    font-weight:400;
    text-align:center;
}
nav a:hover {
    opacity:0.8;
}

/*Header Mobile*/
#headermobile {
    width:100%;
    box-sizing:border-box;
    padding:20px;    
    align-items:center;
    flex-direction:row;
    display:none;
}
#logomobile {
    width:80%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-sizing:border-box;
    padding:5px;        
}
#logomobile img {
    max-width:100%;
    transition:all ease-in 0.3s;
    height:auto;
}
#logomobile img:hover {
    opacity:0.8;
} 
#navmobile {
    display:flex;
    width:20%; 
    justify-content:center;  
    align-items:center;
    box-sizing:border-box;
    padding:5px;        
}
#navmobile #menubuttonmobile {
    background-color:#97b78d;
    color:#ffffff;
    box-sizing:border-box;
    font-size:17px;
    transition:all 0.3s ease-in;
    padding:10px;             
    text-decoration:none; 
    margin-top:15px;
    border-radius:10px;
    font-family:'Open Sans', sans-serif;
}
#navmobile #menubuttonmobile:hover {
    opacity:0.8;
}            
#navmobile .overlay {
    height:100%;
    width:0;
    position:fixed;
    z-index:22;
    top:0; 
    left:0;
    background-color:#471276;
    overflow-x:hidden;
    display:flex;
    justify-content:center;
    transition:all ease-in 0.3s;
    align-items:center;
    text-align:center;
}
#navmobile .overlay a {
    padding:5px;
    text-decoration:none;
    font-size:17px;
    color:#97b78d;
    display:block;
    transition:all ease-in 0.3s;
    font-family:'Open Sans', sans-serif;
    line-height:1.5em;
}
#navmobile .overlay a:hover {
    color:#ffffff;
}
#navmobile .overlay .closebtn {
    transition:all ease-in 0.3s;
    text-align:center;
    font-size:30px;
    color:#ffffff;
    padding:10px;
    cursor:pointer;
    border-radius:20px;
    display:block;    
}
#navdesktop .overlay .closebtn:hover {
    opacity:0.8; 
}

/*Top Section*/
#herocontainer {
    width:100%;
    padding:20px;
    box-sizing:border-box;
    background:url('images/topbg.webp') center center, linear-gradient(to right top, #141228, #1b163c, #261850, #351764, #471276);
    background-size:cover;
    background-repeat:no-repeat;
    position:relative; 
    border-bottom-left-radius:50% 20%;
    border-bottom-right-radius:50% 20%;
}
#hero {
    display:flex;
    justify-content:center;    
    flex-direction: column;
    margin:120px auto;
    width:1200px;   
}
#hero #tiny {
    font-family:'Open Sans',sans-serif;
    font-size:15px;
    color:#ffffff;
    text-align:center;
    line-height:1.5em;
    font-weight:bold;
    letter-spacing:2px;
}
#hero h1 {
    font-size:70px;
    font-family:'Oswald',sans-serif;
    line-height:1.2em;
    text-align:center;
    margin:20px;    
    background: linear-gradient(to right,#7953cd 20%,#00affa 30%,#0190cd 70%,#764ada 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 3s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
#hero p {
    font-family:'Open Sans',sans-serif;
    font-size:22px;
    color:#ffffff;
    text-align:center;
    line-height:1.5em;
}
#hero a {
    align-items:center;
    background-image:linear-gradient(144deg,#AF40FF,#5B42F3 50%,#00DDEB);
    border:0;
    border-radius:8px;
    box-shadow:rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing:border-box;
    color:#ffffff;
    display:flex;
    font-family:'Open Sans',sans-serif;
    font-size:18px;
    font-weight:600;
    justify-content:center;
    line-height:1.5em;
    width:250px;
    padding:15px 20px;
    text-decoration:none;
    user-select:none;
    touch-action:manipulation;
    white-space:nowrap;
    margin:20px auto;
    transition:all ease-in 0.3s; 
}
#hero a:hover {
    background-image:linear-gradient(144deg,#00DDEB,#5B42F3 50%,#AF40FF);
}

/*About*/
#about {
    margin:120px auto;
    display:flex;
    flex-direction:row;
    gap:40px;
    align-items:center;
    box-sizing: border-box;
    padding:20px;
    width:1200px;
}
#about #first {
    width:400px;  
}
#about #first img {
    margin:auto;
    max-width:100%;
    height:auto;
}
#about #second {
    width:800px;
}
#about h2 {
    text-align:left;
    color:#ffffff;
    font-size:40px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
    margin:0px;
    line-height:1.2em;
}
#about h2 span {
    color:#faa84c;
}
#about p {
    font-family:'Open Sans',sans-serif;
    font-size:17px;
    color:#ffffff;
    text-align:left;
    line-height:1.5em;
}
#about a {
    font-family:'Open Sans',sans-serif;
    font-size:17px;
    color:#fff; 
    font-weight:500;
    text-align:center;
    padding:15px 10px;
    text-decoration:none;
    background-color:#17B6ED;
    border-radius:8px;
    line-height:1.5em;
    transition:all ease-in 0.3s;  
    width:150px;
    margin-top:10px;
    display:inline-block;
}
#about a:hover {
    opacity:0.5;
}

/*Title*/
.title {
    width:900px;
    padding:20px;
    box-sizing:border-box;
    margin:120px auto 0px;
}
.title h2 {
    text-align:center;
    color:#ffffff;
    font-size:40px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
    margin:0px;
    line-height:1.2em;    
}
.title h2 span {
    color:#faa84c;    
}
.title p {
    font-size:17px;
    line-height:1.5em;
    text-align:center;
    font-family:'Open Sans', sans-serif;
    color:#ffffff;
}   

/*Quote*/
.quotesection {
    width:150px;
    box-sizing:border-box;
    margin:auto;
}
.quotesection a {
    font-family:'Open Sans',sans-serif;
    font-size:17px;
    color:#fff; 
    font-weight:500;
    text-align:center;
    padding:15px 10px;
    text-decoration:none;
    background-color:#17B6ED;
    border-radius:8px;
    line-height:1.5em;
    transition:all ease-in 0.3s;  
    width:150px;
    margin:auto;
    display:inline-block;
}
.quotesection a:hover {
    opacity:0.5;
}

/*Services*/
.services {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;
    width:100%;
    padding:20px;
    box-sizing:border-box;
    margin:auto;
    gap:20px;
}
.services section {
    width:16.66%;
    padding:40px 20px 40px 20px;
    box-sizing:border-box;;
    align-items:center;
    justify-content:center;
    display:flex;
    flex-direction:column;
    background-color:#1D163F;
    transition:all ease-in 0.3s;    
}
.services section:hover {
    opacity:0.5;
}
.services i {
    color:#809B7C;
    font-size:50px;
    text-align:center;
    background-color:#141228;
    padding:25px;
    box-sizing:border-box;
    border-radius:50%;
}
.services section h3 {
    text-align:center;
    color:#ffffff;
    font-size:22px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
    line-height:1.2em;
    margin-bottom:0px;
}

/*Why Choose WGS*/
.whychoosewgssection {
    background:#ffffff;
    padding:20px 20px 30px 20px;
    width:1000px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:18px;
    box-sizing:border-box;
  }
.feature-icon {
    background:#141228;      
    color:#ffffff;           
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
  }
.feature-text h3 {
    text-align:left;
    color:#97b78d;
    font-size:22px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
    line-height:1.2em;
    margin:10px 0px 10px 0px;
  }
 .feature-text p {
    font-size:17px;
    line-height:1.5em;
    text-align:left;
    font-family:'Open Sans', sans-serif;
    color:#222222;
    margin:0px;
  }

/*Projects*/
.projectssection {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;
    width:100%;
    box-sizing:border-box;
    gap:20px;
}
.projectssection section {
    width:33.33%;
    box-sizing:border-box;;
    align-items:center;
    justify-content:center;
    display:flex;
    flex-direction:column;
    padding:20px 20px 0px; 
}
.projectssection section img {
    max-width:100%;
    height:auto;
    transition:all ease-in 0.3s;
}
.projectssection section img:hover {
    opacity:0.5;
}
.projectssection section h3 {
    text-align:center;
    color:#97b78d;
    font-size:22px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
}

/*Trusted By*/
.trustedbysection {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(100px, 1fr));
    gap:20px;
    align-items:center;
    justify-items:center;
    padding:20px;
    width:1000px;
    margin:auto;
    box-sizing:border-box;
}
.trustedbysection img {
    max-width:100%;
    height:auto;
    border-radius:5px;
}

/*Testimonials*/
.testimonialcontainer {
    width:800px;
    margin:auto;
}
.testimonial blockquote {
    margin:10px 10px 0;
    background:#ffffff;
    padding:40px;
    position:relative;
    border:none;
    border-radius:8px;
    font-style:italic;
    font-size:17px;
    line-height:1.5em;
    text-align:left;
    font-family:'Open Sans', sans-serif;
    color:#222222;   
    box-sizing:border-box;
}
.testimonial blockquote:before,.testimonial blockquote:after {
    content:"\201C";
    position:absolute;
    font-size:80px;
    line-height:1;
    color:#000000;
    font-style:normal;
}
.testimonial blockquote:before {
    top:0;
    left:10px;
}
.testimonial blockquote:after {
    content:"\201D";
    right:10px;
    bottom:-0.5em;
}
.testimonial div {
    width:0;
    height:0;
    border-left:0 solid transparent;
    border-right:20px solid transparent;
    border-top:20px solid #ffffff;
    margin:0 0 0 60px;
}
.testimonial p {
    margin:8px 0 0 20px;
    text-align:left;
    color:#ffffff;
    font-family:'Open Sans', sans-serif;
    font-size:18px;
}

/*Request A Quote*/
#request-a-quote {
    width:100%;
    background-color:#0f1027;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;
    margin-top:120px;
    padding:80px 20px 80px 20px;
    box-sizing:border-box; 
    gap:100px;
}
#request-a-quote section {
    width:35%;
    display:flex;
    justify-content:center;
    flex-direction:column;    
}
#request-a-quote section h2 {
    text-align:left;
    color:#ffffff;
    font-size:40px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
    margin:0px;
    line-height:1.2em;
}
#request-a-quote section h2 span {
    color:#faa84c;
}
#request-a-quote section p {
    font-size:17px;
    line-height:1.5em;
    text-align:left;
    font-family:'Open Sans', sans-serif;
    color:#ffffff;
    margin-bottom:30px;
}
#request-a-quote section h3 {
    color:#97b78d;
    text-align:left;
    font-size:25px;
    font-weight:500;
    font-family:'Oswald', sans-serif;
    margin:0px 0px 10px 0px;
    line-height:1.2em;
}
#request-a-quote section a {
    text-decoration:none;
    font-family:'Open Sans', sans-serif;
    color:#ffffff;
    transition:all ease-in 0.3s; 
}
#request-a-quote section a:hover {
    opacity:0.8;
}

/*Footer*/
footer {
    width:100%;
    box-sizing:border-box;
    background-color:#141228;
    padding:5px;
}
footer p {
    font-size:14px;
    line-height:1.2em;
    text-align:center;
    font-weight:400;
    font-family:'Open Sans', sans-serif;
    color:#ffffff;    
}

/*Cognito Forms*/
html .cog-form {
    width:100%!important;
}
html .cog-abuse ul, .cog-abuse ul {
    display:none!important;
}
html .cog-branding--minimal, html .cog-branding--minimal *, .cog-branding--minimal, .cog-branding--minimal * {
    display:none!important;
}
html .cog-cognito hr, .cog-cognito hr {
    display:none!important;
}
html .cog-cognito .el-select-dropdown__list li, html .cog-cognito .el-autocomplete-suggestion__list li {
    color:#0f1027!important;
}

/*Back To Top*/
#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
   opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*Responsive*/
@media all and (min-width:360px) and (max-width:1279px) {
/*Header*/
header {
    display:none;
    }
#headermobile {
    display:flex;
    }
    
/*Top Section*/
#hero {
    margin:30px auto;
    width:100%;   
}
#hero #tiny {
    font-size:12px;
}
#hero h1 {
    font-size:36px;
}
#hero p {
    font-size:17px;
}
#hero a {
    font-size:17px;
    padding:10px 15px;
}

/*About*/
#about {
    margin:0px auto;
    flex-direction:column;
    gap:20px;
    width:100%;
}
#about #first {
    width:100%;  
}
#about #first img {
    max-width:80%;
    display:block;
}
#about #second {
    width:100%;
}
#about h2 {
    text-align:center;
    font-size:32px;
    font-weight:500;
}
#about a {
    margin:10px auto 0px;
    display:block;
}
#about a:hover {
    opacity:0.5;
}

/*Title*/
.title {
    width:100%;
    padding:20px;
    box-sizing:border-box;
    margin:0px auto 0px;
}
.title h2 {
    font-size:32px; 
}

/*Quote Section*/
.quotesection {
    margin: 0px auto 30px auto;
}

/*Services*/
.services {
    flex-direction:column;
    width:100%;
}
.services section {
    width:100%;  
}
.services i {
    font-size:40px;
}

/*Why Choose WGS*/
.whychoosewgssection {
    width:90%;
}

/*Projects*/
.projectssection {
    flex-direction:column;
    width:100%;
    gap:0px;
}
.projectssection section {
    width:100%;
}
.projectssection section h3 {
    margin:10px;
}

/*Trusted By*/
.trustedbysection {
   grid-template-columns:repeat(3, 1fr);
   width:100%;
}

/*Testimonials*/
.testimonialcontainer {
    width:100%;
}

/*Request A Quote*/
#request-a-quote {
    width:100%;
    flex-direction:column;
    margin-top:30px; 
    gap:0px;
    padding:40px 20px 40px 20px;
}
#request-a-quote section {
    width:100%;
    flex-direction:column;    
}
#request-a-quote section h2 {
    text-align:center;
    font-size:32px;
}
#request-a-quote section h3 {
    color:#97b78d;
    text-align:left;
    margin:0px 0px 10px 0px;
}

/*Footer*/
footer {
    width:100%;
    box-sizing:border-box;
    background-color:#141228;
    padding:5px;
}
footer p {
    font-size:14px;
    line-height:1.2em;
    text-align:center;
    font-weight:400;
    font-family:'Open Sans', sans-serif;
    color:#ffffff;    
}

/*Cognito Forms*/
html .cog-cognito--styled .cog-button--primary, html .cog-cognito--styled .cog-page__navigation .cog-button {
    margin:auto!important;
}
    
}