|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172 |
- *, body {
- margin: 0;
- padding: 0;
- list-style: none;
- box-sizing: border-box;
- font-family: Roboto;
- }
-
- p {
- opacity: 0.8;
- }
-
- .container {
- width: 100%;
- max-width: 1200px;
- margin: 0 auto;
- }
-
- img {
- width: 100%;
- }
-
- .overlay-blue {
- width: 100%;
- height: 100%;
- background-color: #221543;
- opacity: 0.8;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- position: absolute;
- }
-
- a {
- text-decoration: none;
- }
-
- #menu {
- position: absolute;
- opacity: 0;
- }
- #menu:checked + .hamburger-menu .patty {
- background-color: white;
- }
- #menu:checked + .hamburger-menu .patty::before {
- transform: rotate(-45deg);
- top: 0;
- left: 0;
- opacity: 0.5;
- }
- #menu:checked + .hamburger-menu .patty::after {
- transform: rotate(45deg);
- top: 0;
- left: 0;
- opacity: 0.5;
- }
- #menu:checked ~ header .container .navbar {
- height: 55vh;
- }
- #menu:checked ~ header .container .overlay {
- width: 100%;
- height: 100vh;
- position: absolute;
- background-color: black;
- left: 0;
- z-index: 3;
- opacity: 0.9;
- }
-
- .hamburger-menu {
- position: absolute;
- top: 5.5rem;
- right: 2rem;
- cursor: pointer;
- z-index: 5;
- display: none;
- }
- @media (max-width: 500px) {
- .hamburger-menu {
- display: block;
- }
- }
- .hamburger-menu .patty {
- width: 1.5rem;
- height: 0.2rem;
- background-color: black;
- position: relative;
- transition: transform 0.3s;
- }
- .hamburger-menu .patty::before {
- content: "";
- position: absolute;
- top: -0.5rem;
- left: -0.25rem;
- width: 1.5rem;
- height: 0.2rem;
- background-color: black;
- transition: transform 0.3s;
- }
- .hamburger-menu .patty::after {
- content: "";
- position: absolute;
- top: 0.5rem;
- left: 0.25rem;
- width: 1.5rem;
- height: 0.2rem;
- background-color: black;
- transition: transform 0.3s;
- }
-
- header {
- position: relative;
- }
- @media (max-width: 500px) {
- header {
- display: flex;
- flex-direction: column;
- }
- }
- header .top-bar {
- background-color: #EEEFF3;
- }
- header .top-bar .container {
- display: flex;
- flex-direction: row;
- }
- @media (max-width: 500px) {
- header .top-bar .container {
- width: 100%;
- justify-content: space-between;
- }
- }
- header .top-bar .container .top-bar-button {
- display: flex;
- width: 10%;
- justify-content: center;
- }
- @media (max-width: 500px) {
- header .top-bar .container .top-bar-button {
- display: none;
- }
- }
- header .top-bar .container .top-bar-button a {
- color: white;
- text-decoration: none;
- background-color: #652EE1;
- padding: 1rem;
- }
- header .top-bar .container h5 {
- padding-top: 1rem;
- text-align: left;
- width: 75%;
- }
- @media (max-width: 500px) {
- header .top-bar .container h5 {
- width: 70%;
- text-align: center;
- padding: 0.5rem;
- }
- }
- header .top-bar .container #lang {
- background-color: transparent;
- border: none;
- width: 5%;
- margin-right: 2%;
- }
- @media (max-width: 500px) {
- header .top-bar .container #lang {
- display: none;
- }
- }
- header .top-bar .container .social {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 10%;
- border-left: 1px solid lightgrey;
- margin: 0;
- }
- @media (max-width: 500px) {
- header .top-bar .container .social {
- width: 30%;
- }
- }
- header .top-bar .container .social figure {
- width: 50%;
- display: flex;
- }
- header .mid-bar {
- padding: 3rem 0 5rem;
- }
- @media (max-width: 500px) {
- header .mid-bar {
- padding: 2rem 0;
- background-color: white;
- }
- }
- header .mid-bar .container {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- @media (max-width: 500px) {
- header .mid-bar .container {
- display: flex;
- flex-direction: column;
- }
- }
- header .mid-bar .container .logo {
- width: 25%;
- margin-right: 10%;
- }
- @media (max-width: 500px) {
- header .mid-bar .container .logo {
- width: 60%;
- margin-left: 5%;
- }
- }
- header .mid-bar .container .contact-details {
- display: flex;
- justify-content: flex-end;
- width: 22%;
- }
- @media (max-width: 500px) {
- header .mid-bar .container .contact-details {
- display: none;
- }
- }
- header .mid-bar .container .contact-details .left-icon {
- margin-right: 10%;
- border: 1px solid lightgrey;
- height: 3rem;
- width: 3rem;
- position: relative;
- rotate: 45deg;
- }
- header .mid-bar .container .contact-details .left-icon img {
- width: 35%;
- top: 33%;
- left: 35%;
- position: absolute;
- rotate: -45deg;
- }
- header .mid-bar .container .contact-details .details h4 {
- color: #103660;
- }
- header .navbar {
- width: 100%;
- max-width: 1200px;
- margin: 0 auto;
- display: flex;
- flex-direction: row;
- background-color: #221543;
- z-index: 1;
- position: absolute;
- bottom: -2rem;
- }
- @media (max-width: 500px) {
- header .navbar {
- display: flex;
- flex-direction: column;
- bottom: auto;
- position: relative;
- top: 0;
- z-index: 3;
- height: 0;
- overflow: hidden;
- transition: height 1s;
- }
- }
- header .navbar .menu {
- display: flex;
- flex-direction: row;
- margin: 0;
- width: 75%;
- }
- @media (max-width: 500px) {
- header .navbar .menu {
- display: flex;
- flex-direction: column;
- width: 100%;
- margin-top: 4.4rem;
- margin-bottom: 1rem;
- }
- }
- header .navbar .menu a {
- display: flex;
- justify-content: center;
- align-items: center;
- color: white;
- text-transform: uppercase;
- font-size: 0.9rem;
- font-weight: 500;
- padding: 0 1.6rem;
- transition: background-color 0.5s;
- }
- @media (max-width: 500px) {
- header .navbar .menu a {
- padding: 1rem 0;
- }
- }
- header .navbar .menu a:hover {
- background-color: #652EE1;
- }
- header .navbar .menu a.active {
- background-color: #652EE1;
- }
- header .navbar .search {
- width: 25%;
- display: flex;
- justify-content: flex-end;
- }
- @media (max-width: 500px) {
- header .navbar .search {
- width: 80%;
- position: absolute;
- margin-top: 0.8rem;
- }
- }
- header .navbar .search input {
- padding: 1rem;
- border: none;
- background-color: transparent;
- color: white;
- outline: none;
- width: 100%;
- }
- header .navbar .search button {
- padding: 0.5rem 1rem;
- background-color: transparent;
- border: none;
- }
- header .navbar .search button figure {
- width: 1rem;
- }
- header .navbar a.cart {
- display: flex;
- padding: 1.5rem;
- background-color: transparent;
- transition: background-color 0.5s;
- }
- @media (max-width: 500px) {
- header .navbar a.cart {
- position: absolute;
- top: 0;
- right: 0;
- border-left: 1px solid rgba(255, 255, 255, 0.2);
- }
- }
- header .navbar a.cart figure {
- width: 1rem;
- }
- header .navbar a.cart:hover {
- background-color: #652EE1;
- }
-
- .upfold {
- width: 100%;
- position: relative;
- overflow: hidden;
- -o-object-position: bottom;
- object-position: bottom;
- height: 65vh;
- }
- @media (max-width: 500px) {
- .upfold {
- height: auto;
- }
- .upfold img {
- width: 100%;
- height: 50vh;
- -o-object-fit: cover;
- object-fit: cover;
- }
- }
- .upfold .upfold-text {
- position: absolute;
- z-index: 2;
- top: 30%;
- width: 100%;
- }
- @media (max-width: 500px) {
- .upfold .upfold-text {
- top: auto;
- bottom: 0;
- }
- }
- .upfold .upfold-text .container {
- display: flex;
- flex-direction: column;
- }
- .upfold .upfold-text .container h1 {
- font-size: 4rem;
- width: 70%;
- margin-bottom: 5%;
- color: #103660;
- }
- @media (max-width: 500px) {
- .upfold .upfold-text .container h1 {
- font-size: 2rem;
- text-align: center;
- width: 90%;
- margin-left: 5%;
- margin-bottom: 10%;
- }
- }
- @media (max-width: 500px) {
- .upfold .upfold-text .container .upfold-links {
- display: flex;
- flex-direction: row;
- }
- }
- .upfold .upfold-text .container .upfold-links a {
- background-color: white;
- color: #103660;
- padding: 0.7rem 2rem;
- text-decoration: none;
- margin-right: 1%;
- text-transform: uppercase;
- font-size: 0.8rem;
- line-height: 1.5rem;
- font-weight: 500;
- transition: background-color 0.5s, color 0.5s;
- }
- @media (max-width: 500px) {
- .upfold .upfold-text .container .upfold-links a {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 50%;
- margin: 0;
- }
- }
- .upfold .upfold-text .container .upfold-links a:nth-child(1) {
- background-color: white;
- color: #103660;
- }
- .upfold .upfold-text .container .upfold-links a:nth-child(2) {
- background-color: #652EE1;
- color: white;
- }
- .upfold .upfold-text .container .upfold-links a:hover {
- opacity: 0.8;
- }
-
- .get-quote {
- display: flex;
- flex-direction: row;
- background-color: #221543;
- color: white;
- margin: 0;
- padding: 2.5rem 0;
- }
- .get-quote .container {
- display: flex;
- flex-direction: row;
- }
- @media (max-width: 500px) {
- .get-quote .container {
- display: flex;
- flex-direction: column;
- margin: 0 2rem;
- height: 25vh;
- justify-content: space-between;
- }
- }
- .get-quote .container .get-quote-text {
- width: 90%;
- }
- @media (max-width: 500px) {
- .get-quote .container .get-quote-text {
- width: 100%;
- }
- .get-quote .container .get-quote-text h2 {
- margin-bottom: 2rem;
- }
- }
- .get-quote .container .get-quote-button {
- display: flex;
- }
- .get-quote .container .get-quote-button a {
- background-color: #652EE1;
- color: white;
- text-decoration: none;
- text-transform: uppercase;
- width: 10%;
- text-align: center;
- padding: 1rem;
- font-weight: 600;
- font-size: small;
- width: 100%;
- margin-top: 0.3rem;
- opacity: 1;
- transition: opacity 0.5s;
- }
- .get-quote .container .get-quote-button a:hover {
- opacity: 0.8;
- }
-
- .about {
- padding: 5% 0;
- text-align: center;
- }
- @media (max-width: 500px) {
- .about {
- padding: 3rem 0;
- padding-bottom: 0;
- }
- }
- .about .container {
- display: flex;
- flex-direction: column;
- }
- @media (max-width: 500px) {
- .about .container .about-text {
- width: 90%;
- margin: 0 auto;
- }
- }
- .about .container .about-text .heading {
- padding-bottom: 7%;
- color: #221543;
- position: relative;
- font-size: 2.5rem;
- text-align: center;
- }
- .about .container .about-text .heading::after {
- content: "";
- height: 5px;
- width: 5%;
- background-color: #652EE1;
- position: absolute;
- left: 47.5%;
- top: 60%;
- }
- .about .container .about-text .heading p {
- width: 70%;
- margin-left: 15%;
- font-size: large;
- line-height: 1.5rem;
- }
- .about .container .services-short {
- display: flex;
- margin-top: 5%;
- box-shadow: 0rem 0 2rem rgba(0, 0, 0, 0.361);
- }
- @media (max-width: 500px) {
- .about .container .services-short {
- margin-top: 4rem;
- display: flex;
- flex-direction: column;
- }
- }
- .about .container .services-short .content-box {
- padding: 3rem;
- position: relative;
- border-right: 1px solid rgba(196, 196, 196, 0.361);
- }
- @media (max-width: 500px) {
- .about .container .services-short .content-box {
- border: none;
- }
- }
- .about .container .services-short .content-box .overlay-blue {
- opacity: 0;
- transition: opacity 0.5s;
- }
- @media (max-width: 500px) {
- .about .container .services-short .content-box:nth-child(2) {
- background-image: url(images/pexels-karolina-grabowska-5882705.jpg);
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- position: relative;
- }
- .about .container .services-short .content-box:nth-child(2) .content-box-items {
- position: relative;
- z-index: 1;
- color: white;
- }
- .about .container .services-short .content-box:nth-child(2) .content-box-items h3 {
- color: white;
- }
- .about .container .services-short .content-box:nth-child(2) .overlay-blue {
- opacity: 0.8;
- }
- }
- .about .container .services-short .content-box:hover {
- background-image: url(images/pexels-karolina-grabowska-5882705.jpg);
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- position: relative;
- }
- .about .container .services-short .content-box:hover .content-box-items {
- position: relative;
- z-index: 1;
- color: white;
- }
- .about .container .services-short .content-box:hover .content-box-items h3 {
- color: white;
- }
- .about .container .services-short .content-box:hover .overlay-blue {
- opacity: 0.8;
- }
- .about .container .services-short .content-box:nth-child(3) {
- border: none;
- }
- .about .container .services-short .content-box figure {
- margin: 0 auto;
- margin-bottom: 5%;
- width: 2rem;
- }
- .about .container .services-short .content-box h3 {
- color: var(--third-color);
- }
- .about .container .services-short .content-box p {
- font-size: medium;
- line-height: 1.5rem;
- margin-top: 1rem;
- }
-
- .progress-report {
- background-image: url(images/pexels-karolina-grabowska-5882705.jpg);
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- padding: 5% 0;
- position: relative;
- }
- .progress-report .container {
- display: flex;
- flex-direction: column;
- position: relative;
- z-index: 1;
- }
- .progress-report .container .progress-report-text {
- text-align: center;
- color: white;
- }
- @media (max-width: 500px) {
- .progress-report .container .progress-report-text {
- width: 90%;
- margin-left: 5%;
- margin-top: 2.5rem;
- }
- }
- .progress-report .container .progress-report-text h2 {
- font-size: 2.5rem;
- margin-bottom: 1rem;
- }
- .progress-report .container .progress-report-text p {
- font-size: large;
- }
- .progress-report .container .progress-report-blocks {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- @media (max-width: 500px) {
- .progress-report .container .progress-report-blocks {
- flex-wrap: wrap;
- justify-content: space-between;
- height: 50vh;
- margin-top: 2rem;
- }
- }
- .progress-report .container .progress-report-blocks .progress-box {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: white;
- margin-top: 5%;
- }
- @media (max-width: 500px) {
- .progress-report .container .progress-report-blocks .progress-box {
- width: 50%;
- }
- }
- .progress-report .container .progress-report-blocks .progress-box h2 {
- font-size: 3rem;
- margin: 0.7rem 0;
- }
- .progress-report .container .progress-report-blocks .progress-box img {
- width: 40px;
- }
- .progress-report .container .progress-report-blocks .progress-box p {
- font-weight: 600;
- }
-
- .industries {
- margin: 5% 0;
- }
- @media (max-width: 500px) {
- .industries {
- margin: 3rem 0;
- }
- }
- .industries .container {
- display: flex;
- flex-direction: column;
- }
- .industries .container .heading {
- padding-bottom: 7%;
- color: #221543;
- position: relative;
- font-size: 2.5rem;
- text-align: center;
- }
- @media (max-width: 500px) {
- .industries .container .heading {
- padding-bottom: 5rem;
- }
- }
- .industries .container .heading::after {
- content: "";
- height: 5px;
- width: 5%;
- background-color: #652EE1;
- position: absolute;
- left: 47.5%;
- top: 60%;
- }
- @media (max-width: 500px) {
- .industries .container .heading::after {
- width: 20%;
- left: 40%;
- }
- }
- .industries .container .industry-list {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- margin-top: 2%;
- }
- .industries .container .industry-list li {
- width: 33.33%;
- display: flex;
- margin-bottom: 5%;
- }
- @media (max-width: 500px) {
- .industries .container .industry-list li {
- width: 50%;
- display: flex;
- flex-direction: column;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- margin-bottom: 2rem;
- }
- }
- .industries .container .industry-list li:nth-child(4), .industries .container .industry-list li:nth-child(5), .industries .container .industry-list li:nth-child(6) {
- margin-bottom: 0;
- }
- @media (max-width: 500px) {
- .industries .container .industry-list li:nth-child(4) {
- margin-bottom: 2rem;
- }
- }
- .industries .container .industry-list li figure {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 1rem;
- width: 6rem;
- height: 3.7rem;
- border-radius: 3rem;
- background-color: #652EE1;
- }
- @media (max-width: 500px) {
- .industries .container .industry-list li figure {
- width: 4rem;
- height: 4rem;
- margin-bottom: 1rem;
- }
- }
- .industries .container .industry-list li .industry-list-text {
- display: flex;
- flex-direction: column;
- margin-left: 5%;
- }
- .industries .container .industry-list li .industry-list-text h3 {
- color: #103660;
- margin-bottom: 3%;
- }
- .industries .container .industry-list li .industry-list-text p {
- line-height: 1.5rem;
- }
-
- .team {
- background-color: #EEEFF3;
- padding: 5% 0;
- }
- @media (max-width: 500px) {
- .team {
- padding: 3rem 0;
- }
- }
- .team .container {
- display: flex;
- flex-direction: column;
- }
- .team .container .heading-2 {
- text-align: center;
- margin-bottom: 5%;
- }
- .team .container .heading-2 h2 {
- font-size: 2rem;
- margin-bottom: 1%;
- }
- .team .container .heading-2 p {
- font-size: medium;
- }
- .team .container .staffs {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- @media (max-width: 500px) {
- .team .container .staffs {
- flex-wrap: wrap;
- justify-content: space-around;
- }
- }
- .team .container .staffs li {
- width: 25%;
- margin-right: 3%;
- position: relative;
- height: 40vh;
- overflow: hidden;
- }
- @media (max-width: 500px) {
- .team .container .staffs li {
- width: 45%;
- margin: 2.5%;
- }
- }
- .team .container .staffs li:hover .staff-social-media {
- bottom: 0;
- }
- .team .container .staffs li:last-child {
- margin: 0;
- }
- @media (max-width: 500px) {
- .team .container .staffs li:last-child {
- margin: 2.5%;
- }
- }
- .team .container .staffs li .staff-photo {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- @media (max-width: 500px) {
- .team .container .staffs li .staff-photo img {
- margin-top: 4rem;
- }
- }
- .team .container .staffs li .staff-details {
- position: absolute;
- z-index: 1;
- bottom: 0;
- display: flex;
- flex-direction: column;
- text-align: center;
- width: 100%;
- padding: 1rem;
- background-color: #221543;
- color: white;
- }
- @media (max-width: 500px) {
- .team .container .staffs li .staff-details {
- bottom: auto;
- top: 0;
- }
- }
- .team .container .staffs li .staff-social-media {
- position: absolute;
- z-index: 1;
- bottom: -5rem;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- width: 100%;
- padding: 1.57rem;
- background-color: #652EE1;
- color: white;
- transition: bottom 0.5s;
- }
- @media (max-width: 500px) {
- .team .container .staffs li .staff-social-media {
- bottom: 0;
- padding: 1rem;
- }
- }
- .team .container .staffs li .staff-social-media a {
- padding: 0.25rem;
- border-radius: 1rem;
- }
- .team .container .staffs li .staff-social-media a figure {
- height: 24px;
- }
- .team .container .staffs li .staff-social-media a figure img {
- width: 100%;
- }
- .team .container .staffs li .staff-social-media a:hover {
- background-color: white;
- }
- .team .container .staffs li .staff-social-media a:hover svg {
- fill: #652EE1;
- }
-
- .quick-enquiry-form {
- padding: 4rem 0;
- background-image: url(images/pexels-karolina-grabowska-5882705.jpg);
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- position: relative;
- }
- .quick-enquiry-form .container {
- display: flex;
- flex-direction: column;
- }
- .quick-enquiry-form .container .heading-2 {
- width: 70%;
- margin-left: 15%;
- position: relative;
- z-index: 1;
- color: white;
- text-align: center;
- padding-bottom: 0;
- margin-bottom: 0;
- }
- @media (max-width: 500px) {
- .quick-enquiry-form .container .heading-2 {
- width: 90%;
- margin-left: 5%;
- }
- }
- .quick-enquiry-form .container .heading-2 h2 {
- font-size: 2rem;
- margin-bottom: 1rem;
- }
- .quick-enquiry-form .container .heading-2 p {
- line-height: 1.5rem;
- margin-bottom: 2rem;
- }
- .quick-enquiry-form .container form {
- position: relative;
- z-index: 1;
- display: flex;
- width: 100%;
- }
- @media (max-width: 500px) {
- .quick-enquiry-form .container form {
- flex-wrap: wrap;
- justify-content: space-around;
- }
- }
- .quick-enquiry-form .container form select,
- .quick-enquiry-form .container form input,
- .quick-enquiry-form .container form button {
- display: flex;
- width: 25%;
- margin-right: 1%;
- padding: 1rem;
- border: none;
- font-size: 0.9rem;
- }
- @media (max-width: 500px) {
- .quick-enquiry-form .container form select,
- .quick-enquiry-form .container form input,
- .quick-enquiry-form .container form button {
- width: 65%;
- margin-bottom: 0.5rem;
- padding: auto;
- margin-right: 0;
- }
- }
- .quick-enquiry-form .container form button {
- justify-content: center;
- color: white;
- background-color: #652EE1;
- font-weight: 600;
- text-transform: uppercase;
- }
-
- .clients {
- background-color: #EEEFF3;
- padding: 2% 0;
- }
- .clients .container {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .clients .container figure {
- display: flex;
- width: 20%;
- padding: 0 5%;
- }
- .clients .container figure img {
- filter: grayscale(1);
- }
-
- footer {
- background-color: #221543;
- padding: 4% 0;
- }
- @media (max-width: 500px) {
- footer {
- padding: 3rem 0;
- }
- }
- footer .container {
- display: flex;
- flex-direction: row;
- }
- @media (max-width: 500px) {
- footer .container {
- display: flex;
- flex-direction: column;
- }
- }
- footer .container .company-details,
- footer .container .quick-links,
- footer .container .recent-news,
- footer .container .newsletter {
- display: flex;
- flex-direction: column;
- width: 25%;
- color: white;
- margin-top: 1rem;
- }
- @media (max-width: 500px) {
- footer .container .company-details,
- footer .container .quick-links,
- footer .container .recent-news,
- footer .container .newsletter {
- width: auto;
- margin: 2rem 2rem 0 2rem;
- }
- }
- footer .container .company-details {
- margin-top: 0;
- }
- footer .container .company-details figure {
- width: 70%;
- }
- footer .container .company-details p {
- font-size: small;
- margin-top: 2rem;
- margin-right: 2rem;
- }
- footer .container .company-details ul li {
- margin: 1rem 0;
- position: relative;
- padding-left: 2rem;
- font-size: small;
- opacity: 0.8;
- }
- footer .container .company-details ul li::before {
- fill: white;
- position: absolute;
- width: 1rem;
- left: 0;
- top: 0;
- }
- footer .container .company-details ul li:nth-child(1)::before {
- content: url(images/location.svg);
- }
- footer .container .company-details ul li:nth-child(2)::before {
- content: url(images/call.svg);
- }
- footer .container .company-details ul li:nth-child(3)::before {
- content: url(images/mail.svg);
- }
- footer .container .quick-links {
- width: 25%;
- }
- @media (max-width: 500px) {
- footer .container .quick-links {
- width: 100%;
- }
- }
- footer .container .quick-links h3 {
- width: 100%;
- }
- footer .container .quick-links .links {
- display: flex;
- width: 100%;
- margin-top: 2rem;
- }
- footer .container .quick-links .links ul {
- width: 50%;
- }
- footer .container .quick-links .links ul li {
- padding: 0.5rem 0;
- padding-left: 2rem;
- position: relative;
- }
- footer .container .quick-links .links ul li::before {
- position: absolute;
- content: url(images/chevron-forward.svg);
- width: 1rem;
- top: 0.6rem;
- left: 0;
- opacity: 0.8;
- }
- footer .container .quick-links .links ul li a {
- text-decoration: none;
- color: white;
- opacity: 0.8;
- font-size: small;
- }
- footer .container .recent-news {
- padding-right: 2rem;
- }
- footer .container .recent-news ul {
- margin-top: 2rem;
- display: flex;
- flex-direction: column;
- }
- footer .container .recent-news ul li {
- margin-bottom: 1.5rem;
- opacity: 0.8;
- }
- footer .container .recent-news ul li h4 {
- font-size: 1.1rem;
- font-weight: 100;
- margin-bottom: 0.5rem;
- line-height: 1.5rem;
- }
- footer .container .recent-news ul li h5 {
- padding-left: 1.5rem;
- font-weight: 100;
- opacity: 0.5;
- position: relative;
- }
- footer .container .recent-news ul li h5::before {
- content: url(images/time.svg);
- position: absolute;
- width: 16px;
- top: 0;
- left: 0;
- }
- footer .container .newsletter {
- padding-right: 2rem;
- }
- footer .container .newsletter p {
- margin-top: 1rem;
- margin-bottom: 2rem;
- font-size: small;
- }
- footer .container .newsletter form {
- display: flex;
- flex-direction: column;
- }
- footer .container .newsletter form input,
- footer .container .newsletter form button {
- padding: 0.8rem;
- margin-bottom: 0.3rem;
- border: none;
- }
- footer .container .newsletter form button {
- background-color: #652EE1;
- color: white;
- }/*# sourceMappingURL=style.css.map */
|