/* custom props */

:root {
  --dark-blue-color: #091a83;
  --light-blue-color: #6175e1;
  --light-bluish-color: #b2b7da;
  --white-color: #fff;
  --btn-primary-color: #3468d6;
  --font-black-color: #030712;
  --footer-blue-color: #063089;
  --footer-text-blue-color: #81a8fb;
  --light-grey-color: #f5f5f5;
}

/* fonts import */
@font-face {
  font-family: 'Rubik-Bold', sans-serif;
  src: url('../fonts/Rubik/static/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Rubik-Medium', sans-serif;
  src: url('../fonts/Rubik/static/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Rubik-Regular', sans-serif;
  src: url('../fonts/Rubik/static/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins-Regular', sans-serif;
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins-Bold', sans-serif;
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins-Medium', sans-serif;
  src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins-SemiBold', sans-serif;
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* reset default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*:focus {
  outline: 4px solid #ff5349;
}
body {
  font-family: 'Rubik-Regular', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}
/* global components*/
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
a {
  text-decoration: none;
  color: var(--white-color);
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.d-flex {
  display: flex;
}
h2 {
  font-family: 'Poppins-Bold', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--font-black-color);
}
h3 {
  font-family: 'Rubik-Regular', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--font-black-color);
}
img {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
/* sr-only */
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/* sr-only */

/* common btns */
.primary-btn {
  font-family: 'Rubik-Bold', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 17px 38px;
  text-transform: uppercase;
  background-color: var(--btn-primary-color);
  border-radius: 25px;
  cursor: pointer;
  color: #fff;
}
.primary-btn-transparent {
  font-family: 'Rubik-Bold', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 17px 38px;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid var(--white-color);
  border-radius: 25px;
  cursor: pointer;
  color: #fff;
}
button {
  border: none;
}
button:hover,
a:hover,
a:focus button:focus {
  outline: 4px solid #ff5349;
  border: 0;
}
.blue-bg {
  background-color: var(--btn-primary-color);
}

/* ===============header starts==================*/
/*=== nav start=== */
header {
  overflow-x: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home-header {
  background-image: url('../images/homepage/home-hero-banner.webp');
}
#contact-us-header {
  background-image: url('../images/contact-us/contact-us-hero-banner.webp');
}
#marketing-header {
  background-image: url('../images/marketing/marketing-hero-banner.webp');
}
#web-design-header {
  background-image: url('../images/webdesign/web-design-hero-banner.webp');
}

.primary-header {
  padding: 22px 0 32px;
}
.primary-header .logo:hover {
  opacity: unset;
}

.primary-navigation {
  position: fixed;
  inset: 0 0 0 40%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.375rem;
  flex-direction: column;
  padding: min(30vh, 7rem) 2rem;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s linear;
  list-style: none;
  background-color: var(--dark-blue-color);
}
.primary-navigation[data-visible='true'] {
  transform: translateX(0);
}
.primary-navigation li a {
  font-family: 'Rubik-Medium', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white-color);
  text-transform: uppercase;
  padding: 0.5rem;
}
.mobile-nav-toggle {
  display: none;
}
.mobile-nav-toggle {
  display: block;
  position: absolute;
  border: 0;
  top: 2rem;
  right: 0.9375rem;
  z-index: 200;
  background: transparent;
}
.mobile-nav-toggle[aria-expanded='true'] {
  position: fixed;
}
.mobile-nav-toggle * + * {
  /* this selector means - first * means ignore 1st selector in elment, and 2nd * means select all elements*/
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px;
  background-color: var(--white-color);
  transition: transform 0.25s linear;
}

.mobile-nav-toggle[aria-expanded='true'] span:nth-child(3) {
  visibility: hidden;
}
.mobile-nav-toggle[aria-expanded='true'] span:nth-child(2) {
  transform: rotate(45deg);
  transform-origin: top left;
}
.mobile-nav-toggle[aria-expanded='true'] span:nth-child(4) {
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
a[aria-current='page'] {
  border-bottom: 2px solid #ff5349;
}
/*=== nav ends=== */

/*=== header content starts=== */
.header-content {
  padding: 60px 0 80px;
}
.header-content h1 {
  font-family: 'Poppins-Bold', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 20px;
}
.header-content p {
  /* color: var(--light-bluish-color); */
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 35px;
}
.header-content a {
  font-family: 'Rubik-Bold', sans-serif;
  font-weight: 700;
  padding: 15px 42px;
  border-radius: 25px;
  border: 1px solid var(--white-color);
  text-transform: uppercase;
}
/*=== header content ends=== */
/* header ends*/

/*============ main section start ================== */
/*=== Home Section two starts=== */
.home-section-two {
  background: url('../images/homepage/home-section-two-bg-image.webp') no-repeat
    center/cover;
}
.home-sec2-content {
  text-align: center;
  padding: 50px 0;
}
.home-sec2-content h2 {
  max-width: 880px;
  margin: 0 auto 57px;
}
.home-sec2-content h3 {
  max-width: 650px;
  margin: 0 auto 40px;
}
.home-sec2-content p {
  max-width: 770px;
  margin: 0 auto 40px;
}
.home-sec2-content p:nth-child(5) {
  margin-bottom: 50px;
  font-family: 'Rubik-Bold', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

/*=== Home Section two ends=== */
/*=== Home Section three start=== */
.home-sec3-content-container {
  padding: 50px 0;
  gap: 15px;
}
.sec3-left-content h2 {
  margin: 30px 0 40px;
}
.sec3-left-content p {
  margin: 0 0 47px;
}

.img-custom-style {
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

/*=== Home Section three ends=== */

/*=== Home Section Four starts=== */

.home-sec4-content-container {
  padding: 88px 0 100px;
  display: grid;
  gap: 40px;
}
.list-content-group img {
  margin: 0 auto;
}
.list-content-group {
  list-style-type: none;
  color: var(--white-color);
  text-align: center;
}
.list-content-group li:nth-child(2) {
  font-family: 'Poppins-SemiBold', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin: 22px 0;
}

/*=== Home Section Four ends=== */
/*=== Home Section five starts=== */
.home-sec5-content-container {
  margin: 50px 0;
}
.sec5-left-con {
  margin-bottom: 40px;
}

.home-sec5-content-container p {
  margin: 25px 0;
  color: var(--font-black-color);
}

.form-img-custom-style {
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

/* form */

.form input,
.form textarea {
  font-family: 'Rubik-Regular', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #6e6e6e; /*#b5b5b6;*/
  padding: 18px 25px;
  border: 1px solid #e5e5e5;
  width: 100%;
}

.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  font-family: 'Rubik-Regular', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #6e6e6e; /*#b5b5b6;*/
}

.form input {
  margin-bottom: 10px;
}
.form textarea {
  margin-bottom: 50px;
  resize: none;
}
/*=== Home Section five ends=== */

/*=== Footer Starts=== */
footer {
  background-color: var(--footer-blue-color);
}
.footer-content {
  padding: 75px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.footer-content a {
  display: block;
}
.footer-content img {
  opacity: 0.6;
}

.footer-content ul {
  list-style-type: none;
}
.footer-content ul li {
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 23px;
}
.footer-content ul li:last-child {
  margin-bottom: 0;
}
.footer-content ul li a {
  text-transform: uppercase;
}
.footer-content .footer-addr-phone {
  color: var(--footer-text-blue-color);
  font-size: 14px;
  max-width: 190px;
  text-transform: capitalize;
}
.footer-content > ul:nth-child(1),
.footer-content > address,
.footer-content > ul:nth-child(5) {
  grid-column: 1/5;
}
.footer-content address ul li:first-child,
.footer-content > ul:nth-child(5) li:first-child {
  margin-bottom: 15px;
}
address {
  font-style: normal;
}
.copy-right-text {
  text-align: center;
  color: #a7a3a3;
  font-family: 'Poppins-Regular', sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 45px 0;
  background: #000;
  text-transform: uppercase;
}

/*=== Footer Ends==== */

/* ============== Contact US page starts====================*/
#contact-us-header .header-content {
  padding: 196px 0 225px;
  text-align: center;
  max-width: 100%;
}
.contact-us-details {
  margin-bottom: 75px;
}
.contact-us-details ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  align-items: center;
  display: block;
}
.contact-us-details ul li,
.contact-us-details ul li a,
.contact-us-details ul li address {
  color: var(--font-black-color);
}
.contact-us-details ul li {
  margin-bottom: 15px;
  display: flex;
}
.contact-us-details ul li svg {
  margin-right: 8px;
  fill: var(--btn-primary-color);
}

/* ============== Contact US page ends====================*/

/* ============== Marketing page starts====================*/
#marketing-header .header-content {
  padding: 121px 0;
}

/* ===Marketing section one starts === */
.marketing-sec1-content {
  padding: 50px 0;
}
.marketing-sec1-left-container p {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.marketing-sec1-right-container ul {
  list-style-type: none;
  display: grid;
  gap: 20px 30px;
}

.marketing-sec1-right-container ul li span {
  font-family: 'Rubik-Bold', sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
/* ===Marketing section one ends === */

/* ===Marketing section two starts === */
.marketing-common-grey-section,
.grey-bg {
  background-color: var(--light-grey-color);
}
.marketing-common-grey-content {
  padding: 50px 0;
}
.marketing-common-grey-left-container > * {
  margin: 20px 0;
}

/* ===Marketing section two ends === */

/* ===Marketing section three starts === */
.marketing-sec3-content {
  padding: 50px 0;
}
.marketing-sec3-right-container h2 {
  margin: 20px 0;
}

/* ===Marketing section three ends === */
/* ===Marketing section five starts === */
.marketing-group-list-section .home-sec4-content-container {
  padding: 40px 0 100px;
}
.marketing-group-list-section h2 {
  color: var(--white-color);
  padding: 50px 0 40px;
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}
.marketing-group-list-section p {
  color: var(--white-color);
  text-align: center;
  max-width: 745px;
  margin: 0 auto;
}

/* ===Marketing section five starts === */
/* ===Marketing section six starts === */
.marketing-sec6-content {
  padding: 50px 0;
  text-align: center;
}
.marketing-sec6-content h2 {
  max-width: 545px;
  margin: 0 auto;
}
.ul-list-container {
  margin: 45px auto;
}
.ul-list-container ul {
  list-style-type: none;
}
.ul-list-container ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.ul-list-container ul li svg {
  fill: var(--btn-primary-color);
  margin-right: 7px;
}

/* ===Marketing section six ends === */
/* ===Marketing section seven starts === */

.markting-form-section .home-sec5-content-container .sec5-right-con h2 {
  margin-bottom: 40px;
}
/* ===Marketing section seven ends === */

/* ============== Marketing page ends====================*/

/* ============== web-design page starts====================*/

#web-design-header .header-content {
  text-align: center;
  max-width: 100%;
}
#web-design-header .header-content p {
  max-width: 800px;
  margin: 0 auto 35px;
}

.web-design-sec1 .sec3-left-content h2 {
  color: var(--white-color);
}
.web-design-sec1 .sec3-left-content p {
  color: var(--white-color);
}
.web-design-section-four {
  padding: 50px 0;
  text-align: center;
}
.web-design-section-four h2 {
  color: var(--white-color);

  max-width: 600px;
  margin: 0 auto 45px;
}
.web-design-section-four p {
  color: var(--white-color);
  max-width: 731px;
  margin: 0 auto;
}
.web-design-section-four p:nth-child(2) {
  margin-bottom: 40px;
}
.web-design-section-four p:last-child {
  font-family: 'Rubik-Bold', sans-serif;
  font-weight: 700;
}

.web-design-section-four .home-sec4-content-container {
  padding: 40px 0;
}
.web-design-section-four .list-content-group {
  text-align: left;
}
.web-design-sec5-content {
  padding: 50px 0;
  text-align: center;
}
.web-design-sec5-content h2 {
  max-width: 500px;
  margin: 0 auto;
}
.web-design-sec5-content p {
  padding: 25px 0 50px;
  max-width: 610px;
  margin: 0 auto;
}
.services-list {
  margin-bottom: 50px;
}
.services-list ul {
  list-style-type: none;
  display: grid;
  gap: 30px 20px;
  text-align: left;
  justify-content: center;
}
.services-list ul li {
  display: flex;
  gap: 15px;
}
.services-list ul li h3 {
  max-width: 190px;
}
/* ============== web-design page ends====================*/

/*============ main section ends ================== */
@media (min-width: 700px) {
  /*=== Home Section three start=== */
  .home-sec3-content-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
  }
  .home-sec3-content-container > div {
    flex: 1;
  }
  .sec3-left-content {
    max-width: 571px;
  }
  .sec3-right-content {
    max-width: 570px;
  }

  .img-custom-style {
    width: 100%;
    max-width: 570px;
    height: 402px;
  }
  .form-img-custom-style {
    width: 100%;
    max-width: 553px;
    height: 467px;
  }
  .sec3-left-content h2 {
    margin: 0 0 50px;
  }
  /*=== Home Section Four start=== */
  .home-sec4-content-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .list-content-group {
    text-align: unset;
  }
  .list-content-group img {
    margin: unset;
  }
  /*=== Home Section five starts=== */

  .form-img-custom-style {
    width: 100%;
    max-width: 553px;
    height: 467px;
  }
  /*=== footer starts=== */
  .footer-content {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer-content > ul:nth-child(1),
  .footer-content > address,
  .footer-content > ul:nth-child(5) {
    grid-column: unset;
  }

  /* ============== Contact US page starts====================*/

  .contact-us-details ul {
    display: flex;
    justify-content: center;
  }

  /* ============== Marketing page starts====================*/
  #marketing-header .header-content {
    text-align: center;
    margin: 0 auto;
  }

  /* ===Marketing section one starts === */
  .marketing-sec1-content {
    padding: 100px 0;
  }
  .marketing-sec1-right-container ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  /* ===Marketing section two starts === */
  .marketing-common-grey-content {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  .marketing-common-grey-content > div {
    flex: 1;
  }

  .marketing-common-grey-left-container p {
    max-width: 514px;
  }
  /* ===Marketing section three starts === */
  .marketing-sec3-content {
    padding: 100px 0;
  }
  .marketing-sec3-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  .marketing-sec3-right-container h2 {
    max-width: 400px;
  }
  .marketing-sec3-content > div {
    flex: 1;
  }
  .marketing-sec3-right-container {
    max-width: 525px;
  }

  /* ===Marketing section six starts === */

  .ul-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .web-design-sec5-content {
    padding: 100px 0;
  }
  .web-design-sec5-content p {
    padding: 45px 0 100px;
  }
  .services-list {
    margin-bottom: 100px;
  }
  .services-list ul {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ============== web-design page starts====================*/

  .web-design-sec1 .sec3-left-content h2 {
    max-width: 470px;
  }
  .web-design-sec1 .sec3-left-content p {
    max-width: 500px;
  }
  .web-design-section-four {
    padding: 100px 0;
  }
  .web-design-section-four .home-sec4-content-container {
    padding: 80px 0;
  }
}

@media (min-width: 896px) {
  .primary-header {
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .primary-header::after {
    content: '';
    position: absolute;
    width: 350%;
    left: -100%;
    height: 1px;
    background-color: var(--light-blue-color);
    bottom: 0;
  }
  .primary-navigation {
    position: relative;
    inset: unset;
    flex-direction: unset;
    padding: unset;
    transform: unset;
    background-color: unset;
  }

  .primary-navigation a > [aria-hidden='true'] {
    font-weight: 700;
    margin-inline-end: 0.75rem;
  }
  .mobile-nav-toggle {
    display: none;
  }

  /* header content */
  .header-content {
    padding: 120px 0 180px;
    max-width: 810px;
  }
  .header-content h1 {
    font-size: 48px;
  }

  /*============ main section start ================== */
  /*=== Home Section two starts=== */
  h2 {
    font-size: 40px;
  }
  .home-sec2-content {
    padding: 100px 0;
  }

  /*=== Home Section two ends=== */

  /*=== Home Section three start=== */
  .home-sec3-content-container {
    gap: 30px;
  }
  .home-sec3-content-container {
    padding: 102px 0 117px;
  }

  /*=== Home Section three ends=== */
  /*=== Home Section Four start=== */
  .home-sec4-content-container {
    grid-template-columns: repeat(3, 1fr);
  }
  /*=== Home Section Four erds=== */
  /*=== Home Section five starts=== */
  .home-sec5-content-container {
    margin: 100px 0;
    display: flex;
    gap: 30px;
  }
  .home-sec5-content-container > div {
    flex: 1;
  }
  .home-sec5-content-container p {
    margin: 46px 0;
  }
  .sec5-left-con {
    margin-bottom: unset;
  }
  .home-sec5-content-container h2 {
    max-width: 500px;
  }

  .home-sec5-content-container p {
    max-width: 502px;
  }
  /*=== Home Section five ends=== */

  /*============ main section ends ================== */

  /* ============== Contact US page starts====================*/

  #contact-us .sec5-left-con h2 {
    max-width: 425px;
  }
  #contact-us .sec5-right-con h2 {
    max-width: 300px;
  }
  /* ============== Marketing page starts====================*/
  .marketing-sec1-content {
    display: flex;
    gap: 25px;
  }
  .marketing-sec1-content > div {
    width: 100%;
  }
  .marketing-sec1-content > .marketing-sec1-left-container {
    max-width: 480px;
  }
  .marketing-sec1-left-container p {
    margin-bottom: 0;
  }
  .marketing-sec1-left-container h2 {
    max-width: 270px;
  }
  .marketing-sec1-right-container ul li span {
    min-height: 76px;
    display: flex;
    align-items: flex-end;
  }

  /* ===Marketing section two starts === */

  .marketing-common-grey-content {
    padding: 100px 0;
  }
  .marketing-common-grey-left-container > * {
    margin: 0 0 35px 0;
  }
  /* ===Marketing section five starts === */

  .marketing-group-list-section h2 {
    color: var(--white-color);
    padding: 100px 0 40px;
    max-width: 520px;
  }

  /* ===Marketing section seven starts === */
  .markting-form-section .home-sec5-content-container h2 {
    max-width: 430px;
  }
  .markting-form-section .home-sec5-content-container .sec5-right-con h2 {
    margin-bottom: 110px;
  }
  .web-design-form-section .sec5-left-con h2 {
    max-width: 400px;
  }
  .web-design-form-section .sec5-right-con h2 {
    max-width: 325px;
  }
}
@media (min-width: 1025px) {
  /* === Marketing page starts===*/
  .marketing-sec1-content {
    gap: 50px;
  }
  .marketing-sec1-right-container ul {
    gap: 30px;
  }
  .services-list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  /*=== Home Section Four start=== */
  .home-sec4-content-container {
    grid-template-columns: repeat(4, 1fr);
  }
  /* === Marketing page starts===*/
  .marketing-group-list-section .home-sec4-content-container {
    grid-template-columns: repeat(3, 1fr);
  }
  /* === web design page starts===*/

  .web-design-section-four .list-content-group li:nth-child(2) {
    min-height: 48px;
  }
  .services-list ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 319px) {
  .form-img-custom-style,
  .img-custom-style {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}
