/********************** Root**************************/

:root {
  --body-background-color: #e3f1fc;
  --header-background-color: linear-gradient(270deg, #0080d1 0%, #00a3da 100%);
  --action-button-collor: #e11a2e;
  --action-button-hover-color: rgb(228, 13, 13);
  --a-element-color: rgb(255, 255, 255);
  --menu-listitem-color: rgb(255, 255, 255);
  --landing-text-big-color: #003b56;
  --landing-text-medium-color: #0080d1;
  --landing-text-small-color: rgb(63, 64, 65);
  --bodyheaders-color: #00a3da;
  --servicecards-header-color: #003b56;
  --servicecards-lastcard-color: linear-gradient(
    270deg,
    #0080d1 0%,
    #00a3da 100%
  );
  --servicecards-background-color: radial-gradient(
    at top left,
    #f6f6f6 74%,
    #fff 42%
  );
  --footer-background-color: #002654;
}

/* ********************END OF ROOT********************/

/**********UNIVERSAL SELECTION AND RESET***********/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--body-background-color);
  font-family: Manrope, sans-serif;
}

a {
  text-decoration: none;
  color: var(--a-element-color);
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  line-height: 1.3;
}

/**********LANDING SECTION***********/

/* LANDING TEXT */

.landingtext h4 {
  color: var(--landing-text-medium-color);
  width: 90%;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: unset;
}

.landingtext h3 {
  font-size: 3rem;
  color: var(--landing-text-big-color);
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.landingtext h3::after {
  content: "";
  position: absolute;
  top: 5rem;
  left: 37%;
  margin-left: 1rem;
  width: 80%;
  border-bottom: 0.25rem solid #000000;
  transform: translateX(-50%);
}

.landingtext h5 {
  font-size: 1.3rem;
  color: var(--landing-text-small-color);
  width: 40%;
  margin: 3rem 0 1.5rem 0;
  font-weight: 500;
  line-height: 1.4;
}

.landing {
  display: flex;
}

.landingtext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 5%;
  margin-top: 13%;
}

.landingtext h5 {
  text-transform: unset;
}

.line {
  font-size: 5rem;
}

/* landing text end */

/* HEADER MENU */
.navbar {
  margin-top: 0.75rem;
}

.menuli {
  margin: 0 1.2rem;
  list-style: none;
  font-size: 1.2rem;
  color: var(--menu-listitem-color);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 0;
}

.menuli::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #ffffff;
  bottom: -10px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-out;
}

.menuli:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.menuli:hover {
  scale: 1.1;
  transition: 0.3s;
}

.menuli.calltoaction {
  box-sizing: border-box;
  background-color: var(--action-button-collor);
  padding: 0.5rem 1.3rem;
  border-radius: 0.6rem;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  margin-bottom: 0.5rem;
  color: white;
}

.menuli.calltoaction:hover {
  background-position: right center;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 20px #eee;
  scale: 1.05;
}

.menuli.calltoaction:hover::before {
  transform: scaleX(0);
}

.landingbtn {
  border-radius: 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2.75rem;
  margin: 2rem;
  color: white;
  display: inline-block;
  text-transform: uppercase;
}

.callbtn {
  background-color: var(--action-button-collor);
}

.callbtn:hover {
  background-color: var(--action-button-hover-color);
  transform: scale(1.05);
  transition: ease-in-out 0.3s;
  color: white;
}

.navul {
  margin-right: 3rem;
}

/**********Logo***********/

.logo {
  margin-left: 2rem;
  cursor: pointer;
  width: 10%;
}

.logoimg {
  width: 100%;
}

/**********Landing page LAYOUT***********/

header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  background-image: var(--header-background-color);
  box-shadow: 0px 10px 5px -10px rgba(0, 0, 0, 0.65);
  z-index: 9999;
  padding-top: 0.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.landing {
  background-image: url(media/images/herolanding.jpg);
  min-height: 90vh;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bar {
  display: block;
  width: 35px;
  height: 4px;
  margin: 7px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgb(255, 255, 255);
}

.close {
  width: 3.5rem;
  display: none;
  z-index: 12;
  color: #ffffff;
  margin-right: 1rem;
}

/* END OF THE LANDING SECTION */

/* SERVICE CARD SECTION */

.servicecards {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  margin: auto;
}

.card {
  margin: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: transparent;
  background-image: var(--servicecards-background-color);
}

.card p {
  text-transform: capitalize;
  line-height: 1.4;
  margin: 0.75rem 0;
}

.cardheader {
  font-size: 1.4rem;
  text-align: left;
  font-weight: 550;
  padding: 2rem;
  padding-bottom: 1rem;
  color: var(--servicecards-header-color);
}

.carddescription {
  font-size: 1rem;
  text-align: left;
  padding: 0 2rem;
  margin-bottom: 0.5rem;
}

.cardlogos {
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-evenly;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.cardlogos img {
  width: 22.5%;
}

.lastcard {
  background-image: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: var(--servicecards-lastcard-color);
}

.lastcarddescription {
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem;
  color: white;
  font-weight: 700;
}

.cardbtn {
  display: flex;
  background-color: var(--action-button-collor);
  padding: 1rem 2rem;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.services {
  padding-top: 3rem;
  max-width: 120rem;
  margin: 4rem auto;
  margin-bottom: 5rem;
}

/* SERVICES SECTION TOP TEXT */

.servicestext {
  display: flex;
  width: 75%;
  justify-content: space-between;
  margin: auto;
  margin-bottom: 2rem;
}

.servicestoptextleft {
  font-size: 2rem;
  font-weight: 750;
  color: var(--bodyheaders-color);
  width: 45%;
  line-height: 1.2;
  text-transform: capitalize;
}

.servicestoptextright {
  font-size: 1.2rem;
  font-weight: 500;
  width: 45%;
  margin-top: 1rem;
  line-height: 1.4;
}

/* END OF SERVICE CARD SECTION */

/* START OF THE WHY ME SECTION */

.whyme {
  padding: 3rem 0;
  background-color: #f9f9f9;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  padding-top: 7rem;
}

.whymeimg {
  border-radius: 0.5rem;
}

.whymeflex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 1rem;
  margin: 1rem;
  background-color: #f9f9f9;
}

.whymeimgdiv {
  width: 40%;
}

.whymeimg {
  width: 100%;
}

.whymetextdiv {
  width: 50%;
  max-width: 600px;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.whymetextdiv h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--bodyheaders-color);
  font-weight: 600;
}

.whymetextdiv p {
  line-height: 1.6;
  font-size: 1.1rem;
}

.whymetextdiv2 {
  line-height: 1.6;
  width: 50%;
  max-width: 600px;
  margin-right: 2rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

/* END OF THE WHY ME SECTION */

/* START IMAGE AND TEXT OF WHY ME SECTION */

.imgandtext {
  background-image: url(media/images/raudona4.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-top: #e3f1fc solid 14rem;
}

.imgtextflex {
  display: flex;
  justify-content: right;
  margin: auto;
  width: 80%;
  position: relative;
  padding-bottom: 1.75rem;
  max-width: 68.75rem;
}

.aboutmeimg img {
  width: 90%;
}
.aboutmeimg {
  width: 420px;
  position: absolute;
  top: -11.15rem;
  left: 0;
}

.aboutmetext {
  max-width: 550px;
  font-size: 1.3rem;
  line-height: 1.6;
  padding-bottom: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
  margin-top: 2rem;
}

.aboutmetext p {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.aboutmetext h2 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

/* END IMAGE AND TEXT OF WHY ME SECTION */

/* START OF QUALITY SECTION  */

.quality {
  width: 75%;
  margin: auto;
  margin-bottom: 5rem;
  padding-top: 1rem;
}

.qualityimg img {
  width: 100%;
  margin: 0.5rem 0;
  border-radius: 2rem;
}

.qualitygrid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  margin: 0 2rem;
  gap: 0.75rem;
}

.img1 {
  width: 80%;
  margin-right: 0;
  margin-left: auto;
}

.img2 img {
  width: 90%;
}

.twoimages {
  margin-top: 6rem;
  margin-left: -0.5rem;
}

.img3 {
  width: 80%;
  margin-right: 0;
  margin-left: auto;
}

.img4 img {
  width: 90%;
  margin-left: 1rem;
}

.img5 img {
  width: 80%;
  margin-left: 2rem;
}

.qualitytext {
  width: 100%;
  margin-left: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.qualitytext h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 3.5rem;
  margin-left: 1rem;
  width: 100%;
  text-align: left;
  line-height: 1.2;
  font-weight: 600;
}

.redline h2 {
  position: relative;
}

.redline h2::after {
  content: "";
  position: absolute;
  left: -15px;
  bottom: -30px;
  width: 10%;
  height: 7px;
  background-color: red;
}

.firstp {
  width: 100%;
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.secondp {
  width: 90%;
  margin-left: 1rem;
  line-height: 1.5;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.secondp2 {
  margin-bottom: 0;
}

.secondtext {
  display: flex;
  justify-content: space-around;
}

.secondtextbackground {
  background-color: #ffffff;
  padding: 1.5rem;
  padding-bottom: 1.5rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.qualitytextimgbelow {
  display: none;
}

/* END OF QUALITY SECTION  */

/* START CONTACT SECTION */

.container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  width: 80%;
}

.image-container img {
  width: 100%;
  display: block;
  border-radius: 0.5rem;
}

.text-container {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40%;
  padding: 3rem;
  background-color: rgb(255, 255, 255);
  border-radius: 1rem;
}

.text-container h2 {
  font-size: 2rem;
  font-weight: 600;
}

.contactp {
  font-size: 1.2rem;
  font-weight: 600;
}

.contactextratext {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2rem;
  line-height: 1.5;
}

.contactmesection {
  background-color: #f9f9f9;
  padding: 4rem 0;
  padding-bottom: 10rem;
}

/* END OF CONTACT SECTION */

/* FOOTER SECTION */

.footermaindiv {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  justify-items: center;
}

footer {
  width: 100%;
  background-color: var(--footer-background-color);
  color: #eee;
  padding-top: 2rem;
}

.contactandsocials {
  max-width: 31.25rem;
}

.contactsvg img {
  width: 6%;
  margin-right: 1rem;
}

.socials {
  display: flex;
  align-items: center;
}

.socials img {
  width: 5rem;
  margin-left: 2rem;
  margin-top: 1.5rem;
}

.fbicon {
  width: 30% !important;
}

.skelbiu {
  width: 130px !important;
  height: 28px !important;
}

.contactsvg {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.contactsvg svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}

.footermenuli {
  color: var(--menu-listitem-color);
  font-weight: 500;
  cursor: pointer;
}

.footermenuli::before {
  content: "";
  position: absolute;
  width: 35%;
  height: 3px;
  border-radius: 10px;
  background-color: #ffffff;
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-out;
}

.footermenuli:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.footermenuli:hover {
  scale: 1.1;
  transition: 0.3s;
}

.bloglili::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 3px;
  border-radius: 10px;
  background-color: #ffffff;
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-out;
}

.bloglili:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.bloglili:hover {
  scale: 1.1;
  transition: 0.3s;
}

.footermenu ul li {
  display: inline-block;
  margin-right: 30%;
}

.footermenu {
  margin-left: 3rem;
}

.blogli1 {
  font-size: 1.3rem;
  margin-left: 1rem;
}

.blogulfooter {
  margin-top: 1.5rem;
}

.blogulfooter a {
  font-size: 1.2rem;
  font-weight: 500;
}

footer li {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2.5;
  list-style-type: none;
}

.footermenuli a {
  font-size: 1rem;
}

.footerblogs {
  margin-right: 3rem;
  margin-top: 1.5rem;
}

.footercontact {
  background-color: #a1a1a39b;
  padding: 2rem 3rem;
  padding-bottom: 3rem;
  border: 2rem;
  border-radius: 4rem 0 4rem 0;
  display: flex;
  flex-direction: column;
  padding: 2rem 0 3rem 4rem;
  margin-bottom: 2rem;
  width: 80%;
}

.footersocials img {
  height: 2.5rem;
  margin-left: 2rem;
}

hr {
  margin-top: 1.5rem;
  height: 1px;
  background-color: #ccc;
}

.footercopy {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  padding-bottom: 1rem;
}

.footerlogo2 {
  width: 50%;
}

.footerlogo2 img {
  width: 100%;
}

/* END OF FOOTER SECTION */

/* START OF THE BLOG1 PAGE */

.blog1h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.blogmarginbottom {
  margin: auto;
  margin-bottom: 0;
  margin-top: 3rem;
  max-width: 140rem;
  padding-bottom: 5rem;
}

.blogul {
  margin-top: 3rem;
  max-width: 550px;
}

.blogul li {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog1flex {
  display: flex;
  align-items: flex-start;
}

.version2h2 {
  margin-bottom: 2rem;
  font-size: 1.4rem !important;
  line-height: 1.6;
}

.top10blogimg {
  width: 80%;
}

.top10blogdiv {
  margin-bottom: 5rem;
}

.version2h4 {
  font-size: 1.4rem;
  text-align: center;
  width: 60%;
  margin: auto;
  margin-bottom: 3rem;
}

.version2ul {
  text-align: left;
  width: 60%;
  margin: auto;
  margin-bottom: 3rem;
}

.version2ul li {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.version2h2p {
  font-size: 1.1rem;
  max-width: 550px;
}

/* END OF THE  BLOG1 PAGE */

/* START BLOG 2 */

.blog2text {
  width: 60%;
  margin: auto;
  margin-top: 5rem;
  font-size: 1.1rem;
}

.blog2section {
  padding-bottom: 7rem !important;
}

.blog2text li {
  margin-bottom: 1.2rem;
}

.blog2text ul {
  margin-bottom: 3rem;
  max-width: 800px;
  line-height: 1.3;
}

.blog2text h3 {
  margin: 2rem 0;
  font-size: 1.3rem;
  max-width: 800px;
  line-height: 1.5;
}

.blog2p {
  max-width: 800px;
  line-height: 1.5;
}

.blog2img {
  width: 55%;
  margin: 2.5rem 0;
}

.blog2text span {
  display: block;
}

.blog2h2 {
  font-size: 1.6rem !important;
  color: var(--bodyheaders-color);
  font-weight: 600;
}
/* END BLOG 2 */

/* START BLOG 3 */
.blog3h1 {
  font-size: 2.2rem;
  width: 80%;
  margin: auto;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.blog3text span {
  display: block;
  margin: 1rem 0;
  width: 60%;
  line-height: 1.6;
}

.blog3text {
  width: 80%;
  margin: auto;
  margin-top: 4rem;
}

.blog3h3 {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--bodyheaders-color);
  font-weight: 600;
}

.blog3h2 {
  font-size: 1.9rem;
  color: var(--landing-text-big-color) !important;
}

.blog3margin {
  padding-bottom: 10rem !important;
}

/* BLOG HEADER STYLING */

.menuliblog {
  margin: 0 1.2rem;
  list-style: none;
  font-size: 1.2rem;
  color: var(--menu-listitem-color);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 0;
}

.menuliblog::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #ffffff;
  bottom: -10px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-out;
}

.menuliblog:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.menuliblog:hover {
  scale: 1.1;
  transition: 0.3s;
}

.menuliblog.calltoaction {
  box-sizing: border-box;
  background-color: var(--action-button-collor);
  padding: 0.5rem 1.3rem;
  border-radius: 0.6rem;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  margin-bottom: 0.5rem;
  color: white;
}

.menuliblog.calltoaction:hover {
  background-position: right center;

  transition: 0.3s ease-in-out;

  box-shadow: 0 0 20px #eee;
  scale: 1.05;
}

.menuliblog.calltoaction:hover::before {
  transform: scaleX(0);
}

/* END BLOG 3 */
