/*!
Theme Name: GoodworkGroup
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: goodworkgroup
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

GoodworkGroup is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@charset "UTF-8";

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #4f5158;
  overflow-x: hidden;
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.gw-form-wrap {
    width: 100% !important;
    max-width: 555px !important;
    margin: 0 auto !important;
    padding: 20px 25px 10px !important;

    background: #ffffff !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 12px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TITLE
   ========================================================= */

.gw-form-title {
    margin: 0 0 30px 0 !important;
    padding: 0 !important;

    color: #080808 !important;

    font-family: inherit !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;

    letter-spacing: -0.4px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   FIELD GROUP
   ========================================================= */

.gw-grp {
    position: relative !important;

    width: 100% !important;

    margin: 0 0 24px 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   CF7 CONTROL WRAPPER
   IMPORTANT: Removes CF7 spacing
   ========================================================= */

.gw-form-wrap .wpcf7-form-control-wrap {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   LABEL WRAPPER
   ========================================================= */

.gw-field-label {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   REMOVE CF7 AUTOMATIC <BR>
   THIS FIXES THE LARGE GAP
   ========================================================= */

.gw-form-wrap .gw-field-label br {
    display: none !important;
}

.gw-form-wrap .gw-grp br {
    display: none !important;
}


/* =========================================================
   FLOATING LABEL
   ========================================================= */

.gw-label-text {
    position: absolute !important;

    top: -7px !important;
    left: 16px !important;

    z-index: 10 !important;

    display: inline-block !important;

    margin: 0 !important;
    padding: 0 6px !important;

    background: #ffffff !important;

    color: #777777 !important;

    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 14px !important;

    white-space: nowrap !important;

    box-sizing: border-box !important;
}


/* =========================================================
   REQUIRED STAR
   ========================================================= */

.gw-req {
    margin-left: 3px !important;

    color: #ff4b4b !important;

    font-size: 12px !important;
    line-height: 1 !important;
}


/* =========================================================
   INPUT
   ========================================================= */

.gw-input {
    display: block !important;

    width: 100% !important;

    height: 50px !important;
    min-height: 50px !important;

    margin: 0 !important;

    padding: 14px 20px !important;

    background: #ffffff !important;

    border: 1px solid #dddddd !important;
    border-radius: 6px !important;

    color: #111111 !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;

    outline: none !important;
    box-shadow: none !important;

    box-sizing: border-box !important;

    transition: border-color 0.2s ease !important;
}


/* =========================================================
   INPUT PLACEHOLDER
   ========================================================= */

.gw-input::placeholder {
    color: #999999 !important;
    opacity: 1 !important;
}


/* =========================================================
   INPUT FOCUS
   ========================================================= */

.gw-input:focus {
    border-color: #999999 !important;

    outline: none !important;
    box-shadow: none !important;
}


/* =========================================================
   TWO COLUMN ROW
   ========================================================= */

.gw-row {
    display: flex !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    gap: 20px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TWO COLUMN FIELD
   ========================================================= */

.gw-row .gw-grp {
    width: calc(50% - 10px) !important;

    flex: 0 0 calc(50% - 10px) !important;

    box-sizing: border-box !important;
}


/* =========================================================
   SELECT
   ========================================================= */

.gw-select {
    display: block !important;

    width: 100% !important;

    height: 50px !important;
    min-height: 50px !important;

    margin: 0 !important;

    padding: 14px 45px 14px 20px !important;

    background-color: #ffffff !important;
    background-image: none !important;

    border: 1px solid #dddddd !important;
    border-radius: 6px !important;

    color: #111111 !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;

    outline: none !important;
    box-shadow: none !important;

    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    cursor: pointer !important;

    box-sizing: border-box !important;
}


/* =========================================================
   SELECT FOCUS
   ========================================================= */

.gw-select:focus {
    border-color: #999999 !important;

    outline: none !important;
    box-shadow: none !important;
}


/* =========================================================
   SELECT ARROW
   ========================================================= */

.gw-grp:has(.gw-select) {
    position: relative !important;
}


.gw-grp:has(.gw-select)::after {
    content: "" !important;

    position: absolute !important;

    top: 24px !important;
    right: 18px !important;

    z-index: 5 !important;

    width: 9px !important;
    height: 9px !important;

    border-right: 1.5px solid #777777 !important;
    border-bottom: 1.5px solid #777777 !important;

    transform: rotate(45deg) !important;

    pointer-events: none !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TEXTAREA
   ========================================================= */

.gw-textarea {
    display: block !important;

    width: 100% !important;

    height: 110px !important;
    min-height: 110px !important;

    margin: 0 !important;

    padding: 16px 20px !important;

    background: #ffffff !important;

    border: 1px solid #dddddd !important;
    border-radius: 6px !important;

    color: #111111 !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;

    outline: none !important;
    box-shadow: none !important;

    resize: vertical !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TEXTAREA PLACEHOLDER
   ========================================================= */

.gw-textarea::placeholder {
    color: #999999 !important;
    opacity: 1 !important;
}


/* =========================================================
   TEXTAREA FOCUS
   ========================================================= */

.gw-textarea:focus {
    border-color: #999999 !important;

    outline: none !important;
    box-shadow: none !important;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.gw-submit {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 142px !important;

    height: 54px !important;

    margin: 0 !important;
    padding: 0 30px !important;

    background: #000000 !important;

    border: 1px solid #000000 !important;
    border-radius: 2px !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    text-align: center !important;

    cursor: pointer !important;

    outline: none !important;
    box-shadow: none !important;

    box-sizing: border-box !important;

    transition:
        background 0.2s ease !important,
        border-color 0.2s ease !important;
}


/* =========================================================
   BUTTON HOVER
   ========================================================= */

.gw-submit:hover {
    background: #222222 !important;

    border-color: #222222 !important;

    color: #ffffff !important;
}


/* =========================================================
   BUTTON FOCUS
   ========================================================= */

.gw-submit:focus {
    background: #000000 !important;

    border-color: #000000 !important;

    color: #ffffff !important;

    outline: none !important;
    box-shadow: none !important;
}


/* =========================================================
   CF7 VALIDATION
   ========================================================= */

.gw-form-wrap .wpcf7-not-valid {
    border-color: #e74c3c !important;
}


.gw-form-wrap .wpcf7-not-valid-tip {
    display: block !important;

    margin-top: 5px !important;

    color: #e74c3c !important;

    font-size: 12px !important;
    line-height: 1.3 !important;
}


.gw-form-wrap .wpcf7-response-output {
    margin: 15px 0 0 0 !important;

    padding: 10px 14px !important;

    border-radius: 4px !important;

    font-size: 13px !important;
    line-height: 1.4 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   MOBILE - 767PX
   ========================================================= */

@media (max-width: 767px) {

    .gw-form-wrap {
        width: calc(100% - 30px) !important;
        max-width: none !important;

        margin: 0 auto !important;

        padding: 28px 20px 25px !important;

        border-radius: 10px !important;
    }


    /* TITLE */

    .gw-form-title {
        margin: 0 0 26px 0 !important;

        font-size: 22px !important;
        line-height: 1.3 !important;

        letter-spacing: -0.2px !important;
    }


    /* FIELD GAP */

    .gw-grp {
        width: 100% !important;

        margin-bottom: 22px !important;
    }


    /* ROW BECOMES SINGLE COLUMN */

    .gw-row {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .gw-row .gw-grp {
        display: block !important;

        width: 100% !important;

        flex: none !important;

        margin-bottom: 22px !important;
    }


    /* INPUT */

    .gw-input {
        width: 100% !important;

        height: 54px !important;
        min-height: 54px !important;

        padding: 13px 17px !important;

        font-size: 15px !important;
    }


    /* SELECT */

    .gw-select {
        width: 100% !important;

        height: 54px !important;
        min-height: 54px !important;

        padding: 13px 43px 13px 17px !important;

        font-size: 15px !important;
    }


    /* TEXTAREA */

    .gw-textarea {
        width: 100% !important;

        height: 105px !important;
        min-height: 105px !important;

        padding: 15px 17px !important;

        font-size: 15px !important;
    }


    /* LABEL */

    .gw-label-text {
        top: -7px !important;
        left: 13px !important;

        padding: 0 5px !important;

        font-size: 13px !important;
        line-height: 13px !important;
    }


    /* ARROW */

    .gw-grp:has(.gw-select)::after {
        top: 23px !important;
        right: 17px !important;

        width: 8px !important;
        height: 8px !important;
    }


    /* SUBMIT */

    .gw-submit {
        width: 100% !important;

        min-width: 0 !important;

        height: 52px !important;
    }
}


/* =========================================================
   SMALL MOBILE - 480PX
   ========================================================= */

@media (max-width: 480px) {

    .gw-form-wrap {
        width: calc(100% - 20px) !important;

        padding: 25px 16px 22px !important;

        border-radius: 9px !important;
    }


    /* TITLE */

    .gw-form-title {
        margin-bottom: 24px !important;

        font-size: 20px !important;
        line-height: 1.3 !important;

        letter-spacing: -0.2px !important;
    }


    /* FIELD GAP */

    .gw-grp,
    .gw-row .gw-grp {
        margin-bottom: 20px !important;
    }


    /* INPUT */

    .gw-input {
        height: 52px !important;
        min-height: 52px !important;

        padding: 12px 15px !important;

        font-size: 15px !important;
    }


    /* SELECT */

    .gw-select {
        height: 52px !important;
        min-height: 52px !important;

        padding: 12px 40px 12px 15px !important;

        font-size: 15px !important;
    }


    /* TEXTAREA */

    .gw-textarea {
        height: 100px !important;
        min-height: 100px !important;

        padding: 14px 15px !important;

        font-size: 15px !important;
    }


    /* LABEL */

    .gw-label-text {
        top: -7px !important;
        left: 11px !important;

        padding: 0 4px !important;

        font-size: 12px !important;
        line-height: 13px !important;
    }


    /* STAR */

    .gw-req {
        margin-left: 3px !important;

        font-size: 11px !important;
    }


    /* ARROW */

    .gw-grp:has(.gw-select)::after {
        top: 22px !important;
        right: 15px !important;

        width: 8px !important;
        height: 8px !important;
    }


    /* BUTTON */

    .gw-submit {
        width: 100% !important;

        height: 50px !important;

        font-size: 15px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE - 360PX
   ========================================================= */

@media (max-width: 360px) {

    .gw-form-wrap {
        width: calc(100% - 14px) !important;

        padding: 22px 13px 20px !important;
    }


    .gw-form-title {
        font-size: 19px !important;

        margin-bottom: 23px !important;
    }


    .gw-input,
    .gw-select,
    .gw-textarea {
        font-size: 14px !important;
    }


    .gw-label-text {
        font-size: 12px !important;
    }
}











.abt-small-title span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.abt-small-title::before {
  content: "";
  background: #000;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.abt-small-title::after {
  content: "";
  background: #000;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.abt-title h2 {
  font-weight: 600;
  font-size: 36px;
  text-transform: capitalize;
  color: #000;
  line-height: 1.5em;
}
.abt-title h2 span {
  font-weight: 600;
  font-size: 48px;
  text-transform: capitalize;
  padding-right: 20px;
}
.abt-img img {
  width: 100%;
}
.abt-desc p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.6);
}
.abt-desc p b {
  font-weight: 600;
  color: #000;
}
.abt-title {
  margin-bottom: 30px;
}
.abt-desc {
  margin-top: 30px;
}
.trust-comp {
  padding: 70px 0;
}
.trust-title {
  margin-bottom: 50px;
}
.trust-title h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 11px;
  line-height: 1.2em;
  color: #000;
}
.trust-title p {
  color: #000;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5em;
  color: #000000;
  margin: 0;
}
.trust-comp .com-logo {
  display: grid;
  gap: 20px;
  justify-content: center;
  grid-template-columns: repeat(5, 1fr);
}
.trust-comp.new-comp .com-logo .logo {
  text-align: center;
}
.trust-comp.new-comp .com-logo .logo img {
  width: 210px;
}
.group {
  margin: 60px 0;
}
.group .grop-title span {
  font-family: "Poppins",;
  font-weight: 500;
  font-size: 16px;
  /* letter-spacing: 8px; */
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 20px;
  display: block;
}
.group .grop-title h2 {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #000;
  padding-bottom: 20px;
}
.group .grop-title p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  max-width: 720px;
  margin: 0 auto;
}
.group-box img {
  width: 100%;
}
.group-box .web-logo img {
  width: 180px;
}
.group-box-content span {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding-top: 2px;
  display: block;
}
.group-box-content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.dev-process {
  padding: 110px 0;
  padding-bottom: 60px;
  max-width: 1170px;
  margin: auto;
}
.dev-title {
  position: relative;
  z-index: 2;
  margin-bottom: 75px;
}
.dev-title h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  text-align: center;
}
.dev-process .parent-container-box {
  position: relative;
  padding: 45px 0;
}
.dev-process .parent-container-box:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  margin-left: -1px;
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.15) 100px,
    rgba(0, 0, 0, 0.15) calc(100% - 100px),
    transparent 100%
  );
}
.dev-process .container-box {
  position: relative;
  left: 42.55%;
  width: 500px;
  margin-bottom: 40px;
}
.dev-process .parent-block {
  display: flex;
  gap: 27px;
  align-items: center;
  justify-content: center;
}
.dev-process .step-number {
  margin-bottom: 0;
}
.dev-process .circle {
  margin-left: 4px;
}
.dev-process .circle {
  height: 20px;
  width: 20px;
  border: 3px solid;
  box-sizing: border-box;
  background: #fff;
  border-radius: 50%;
  border-color: #000;
  background: #000;
}
.dev-process .circle {
  margin-right: 4px;
}
.circle::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  transform: translate(-50%, -50%);
  opacity: 0;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.16);
}
.circle::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 34px;
  height: 34px;
  top: 50%;
  left: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  transform: translate(-50%, -50%);
  opacity: 0;
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.16);
}
.dev-process .step-detail {
  background: white;
  padding: 23px 30px;
  width: 100%;
  max-width: 350px;
  background: #fff;
  box-shadow: 5px 5px 28px 0 rgba(0, 0, 0, 0.1);
  border-left: 4px solid #000;
}
.dev-process .right-translate {
  animation: translateFromRight 1s ease-in-out forwards;
}
.dev-process .step-detail h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
  color: rgb(35, 35, 35);
  letter-spacing: 0.3px;
}
.dev-process .step-detail p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.dev-process .l-12 {
  left: 14.8%;
}
.step-detail.left-translate {
  text-align: end;
}
.dev-process .container-box:hover .parent-block,
.dev-process .container-box:hover .step-number {
  gap: 40px;
  transition: gap 0.2s ease-in-out;
  transition-delay: 0.2s;
}
.dev-process .container-box:hover .circle::after,
.dev-process .container-box:hover .circle::before {
  /* opacity: 1; */
}
.dev-process .left-translate {
  animation: translateFromLeft 1s ease-in-out forwards;
}
.award-title h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  margin-bottom: 40px;
}
.award-section .award-content h3 {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.3em;
}
.award-section .award-content {
  margin-top: 20px;
}
.award-section .award-content p {
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.6);
}
.award-img img {
  width: 100%;
  border-radius: 16px;
}
.award-section .award-content h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #000;
}
.service-title {
  margin-bottom: 60px;
}
.service-title h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}
.service-box img {
  width: 50px;
  margin-bottom: 30px;
}
.service-desc h4 {
  font-size: 20px;
  line-height: 1.5em;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  color: #000;
}
.service-desc p {
  font-size: 18px;
  line-height: 1.2em;
}
.service-five {
  margin: 80px 0;
}
.service-box {
  border-radius: 4px;
  padding: 30px 27px;
  border-top: 3px solid transparent;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-box:hover {
  -webkit-box-shadow: 0px -3px 0px 0px rgba(246, 58, 111, 0.004),
    0px 30px 30px 0px rgba(0, 9, 40, 0.12);
  box-shadow: 0px -3px 0px 0px rgba(246, 58, 111, 0.004),
    0px 30px 30px 0px rgba(0, 9, 40, 0.12);
  background-color: #fff;
  border-top-color: #000;
}
.blog-grid-three {
  padding: 110px 0 90px;
}
.section-heading.style-two {
  margin-bottom: 65px;
}
.section-heading.style-two h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}
.tt-blog-grid {
  background-color: #fff;
  border-radius: 6px;
  padding: 35px;
  -webkit-box-shadow: 0 30px 70px 0 rgba(0, 9, 40, 0.1);
  box-shadow: 0 30px 70px 0 rgba(0, 9, 40, 0.1);
  margin-bottom: 30px;
}
.tt-blog-grid.style-three {
  padding: 0;
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 9, 41, 0.08);
  box-shadow: 0 20px 50px 0 rgba(0, 9, 41, 0.08);
}
.tt-blog-grid .feature-image {
  margin-bottom: 18px;
}
.tt-blog-grid .feature-image img {
  min-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.tt-blog-grid.style-three .feature-image img {
  object-fit: cover;
  -o-object-fit: cover;
  width: 100%;
  height: 200px;
}
.tt-blog-grid.style-three .blog-content {
  padding: 30px 40px;
}
.post-meta {
  margin: 0;
  padding: 5px 0 0;
  line-height: 1;
}
.tt-blog-grid.style-three .post-meta {
  padding-top: 0;
  margin-bottom: 13px;
}
.post-meta li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #696969;
}
.post-meta li:not(:last-child) {
  margin-right: 10px;
}
.tt-blog-grid.style-three .entry-title {
  font-size: 20px;
  margin-bottom: 7px;
  line-height: 26px;
}
.tt-blog-grid .entry-title a {
  color: #1c1e21;
}
.tt-blog-grid.style-three .entry-content {
  margin-bottom: 12px;
}
.tt-blog-grid.style-three .tt__btn-link {
  color: #1c1e21;
  font-size: 15px;
}
.tt-blog-grid.style-four {
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 9, 41, 0.08);
  box-shadow: 0 20px 50px 0 rgba(0, 9, 41, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tt-blog-grid.style-four .blog-content {
  padding: 15px 30px;
  max-width: 359px;
}
.tt-blog-grid .entry-title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
.tt-blog-grid.style-four .feature-image {
  margin: 0;
  overflow: hidden;
}
.tt-blog-grid .feature-image.latest-post img {
  width: 300px;
}
.tt-blog-grid.style-four .post-meta {
  padding-top: 0;
  margin-bottom: 13px;
}
.tt-blog-grid.style-four .tt__btn-link {
  color: #1c1e21;
  font-size: 15px;
}
.tt-blog-grid .entry-title a:hover {
  color: #572aff;
}
.appointment-section {
  background-color: #f1f2f3;
  padding: 115px 0 120px;
}
.appointment-content {
  padding-right: 100px;
}
.appointment-content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 1%;
  color: #000;
}
.appointment-content h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}
.appointment-content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.appointment-form .row p {
  margin-bottom: 0;
}
.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form textarea {
  background-color: #fff;
  padding: 10px !important;
  margin-bottom: 16px;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  border: none;
}
.intl-tel-input {
  display: flex;
  margin-bottom: 15px;
}
.intl-tel-input .flag-container {
  position: unset;
  padding-right: 0;
}
.intl-tel-input .flag-container .selected-flag {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
div.intl-tel-input input {
  padding-left: 10px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.appointment-form input:focus-visible,
.appointment-form textarea:focus-visible {
  outline: none;
  border: none;
}
.appointment-form input[type="submit"] {
  padding: 11px 25px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  border-radius: 6px;
  border: 2px solid #000;
  color: #ffffff;
  overflow: hidden;
  font-size: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #000;
  width: auto;
}
.appointment-form input[type="submit"]:hover {
  background: transparent;
  color: #000;
}
.cta {
  background: #000;
  padding: 60px 0;
}
.cta h2 {
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  text-transform: capitalize;
  padding-bottom: 20px;
}
.cta p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  padding-bottom: 20px;
}
.cta .btn-primary:hover {
  border: 1px solid #fff;
}
.f-top {
  padding: 45px 0px;
}
.f-links .widget {
  margin: 0;
}
.f-links h3,
.fcent-box h3 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
footer ul {
  padding-left: 0;
}
.menu {
  list-style: none;
}
footer ul li {
  list-style: none;
}
.f-links ul li a {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #4d4d4d;
  display: block;
  max-width: fit-content;
}
.f-links ul li + li {
  margin-top: 13px;
}
.footer-contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ftopge-cont ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #4d4d4d;
  gap: 8px;
}
.f-bottom {
  padding: 20px 0px;
  background: #fafafa;
}
.fbo-left ul {
  margin: 0;
}
.fbo-left ul,
.f-social ul {
  display: flex;
  align-items: center;
}
.fcent-box p,
.fbo-left ul li a,
.fbo-left ul li,
.f-social ul {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #4d4d4d;
  margin-bottom: 0;
}
.f-social ul {
  justify-content: flex-end;
}
.f-social ul li + li {
  margin-left: 22px;
}
.f-social ul li svg {
  max-width: 20px;
  transform: rotate(0);
  transition: all 0.3s;
}
.f-links ul li a:hover {
  color: #000;
  text-decoration: underline;
}
.f-social ul li a:hover svg {
  transform: rotate(360deg);
}
.grop-title {
  padding-bottom: 30px;
}
.f-social.ft-social-top ul li a {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 4px;
}
.f-social.ft-social-top ul li + li {
  margin-top: 0;
}
.group .row + .row,
.award-section .row + .row {
  row-gap: 50px;
}
p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.award-section {
  padding: 60px 0;
}
.cta-content {
  text-align: center;
}
.page-header {
  text-align: center;
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-color: #5e26ca;
}
.single-post-header-bg {
  text-align: left;
  position: relative;
  height: 650px;
}
.single-post-header-bg .overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 22, 54, 0.7);
}
.single-post-header-bg .single-post-header {
  position: relative;
  text-align: left;
}
.single-post-header-bg .single-post-title {
  font-size: 38px;
  color: #fff;
  line-height: 1.2;
  margin: 8px 0 11px;
  max-width: 780px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.post-meta {
  margin: 0;
  padding: 5px 0 0;
  line-height: 1;
}
.post-meta li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #696969;
}
.single-post-header-bg .post-meta li a {
  color: #fff;
}
.single-post-header .cat-list a {
  color: #1ca30d;
  margin-right: 10px;
}
.blog-single {
  padding: 120px 0;
}
.blog-single h2,
.blog-single h3,
.blog-single h4,
.blog-single h5 {
  font-weight: 600;
  color: #000;
  line-height: 1.5em;
}
.blog-single h2 {
  font-size: 28px;
}
.blog-single h3 {
  font-size: 26px;
}
.blog-single h4 {
  font-size: 22px;
}
.blog-single h5 {
  font-size: 20px;
}
.blog-single-footer {
  border-top: 1px solid #e7e9ed;
  padding-top: 25px;
  margin-top: 40px;
}
.blog-single-footer .taglist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-single-footer .taglist li {
  display: inline-block;
  margin-right: 5px;
}
.blog-single-footer .taglist li a {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  border: 2px solid #e3e5ee;
  color: #1c1e21;
  border-radius: 6px;
  line-height: 1;
  padding: 4px 17px;
}
.single-post-navigation {
  margin-top: 80px;
  border: 2px solid #e7e9ed;
  padding: 0 25px;
  border-radius: 6px;
  position: relative;
}
.single-post-nav {
  max-width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-post-nav .post-nav-wrapper {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 21px 0;
}
.single-post-nav .post-nav-title {
  font-size: 13px;
  font-weight: 400;
  color: #76787d;
  margin-bottom: 6px;
  line-height: 1;
}
.single-post-nav .post-title {
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0;
  color: #0c1636;
  font-weight: 500;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  max-width: 270px;
}
.post-next:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  background-color: #e7e9ed;
}
.post-next .single-post-nav {
  margin-left: auto;
}
.post-next .post-nav-wrapper {
  text-align: right;
}
.blog-post-archive .sidebar,
.blog-single .sidebar {
  position: sticky;
  top: 200px;
}
.widget {
  margin-bottom: 44px;
}
.search-form {
  border-radius: 6px;
  position: relative;
  background-color: #f0f1f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.search-form input {
  padding: 11px 30px;
  border-radius: 0;
  border: 0;
  width: 100%;
  color: #696969;
  height: 55px;
  margin: 0;
  background: transparent;
  font-size: 16px;
}
.search-form button {
  border: 0;
  padding: 0 15px;
  font-size: 20px;
  line-height: 40px;
  color: #0c1636;
  background: transparent;
}
.sidebar .widget-title {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
  font-size: 20px;
}
.ultraland-widget-recent-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ultraland-widget-recent-posts .recent-posts-image_wrapper {
  width: 70px;
  margin-right: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.ultraland-widget-recent-posts .recent-posts-image_wrapper img {
  border-radius: 6px;
  width: 100%;
}
.ultraland-widget-recent-posts .recent-posts-content_wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.ultraland-widget-recent-posts .post-title {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}
.ultraland-widget-recent-posts .post-title a {
  color: #0c1636;
  line-height: 1.2;
}
.ultraland-widget-recent-posts .date a {
  color: #4f5158;
  font-size: 14px;
}
.blog-category {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-category li:not(:last-child) {
  margin-bottom: 10px;
}
.blog-category li {
  position: relative;
  padding-left: 20px;
}
.blog-category li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 6px;
  width: 6px;
  border-radius: 6px;
  background-color: #acadba;
}
.blog-category li a {
  color: #4f5158;
}
.blog-category li a:hover {
  color: #000;
}
.widget #block-3 .wp-block-archives-dropdown .wp-block-archives__label {
  position: relative;
  margin-bottom: 35px;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  color: #1c1e21;
  line-height: 1.2;
  margin-top: 0;
  font-weight: 600;
}
#block-3 .wp-block-archives select {
  padding: 5px;
  width: 100%;
  height: 40px;
  color: #4f5158;
}
#block-3 .wp-block-archives select > option {
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter";
  color: #4f5158;
}
.search-form input:focus-visible {
  outline: none;
}
.blog-single-content ul li,
.blog-single-content ol li {
  line-height: 2em;
}
.blog-single-footer .taglist li a:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tag-list li {
  display: inline-block;
}
.tag-list li a {
  padding: 4px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #1c1e21;
  border: 2px solid #e3e5ee;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 9px;
  margin-right: 5px;
}
.tag-list li a:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.page-header {
  text-align: center;
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-color: #000;
}
.page-header h1 {
  font-size: 60px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin-bottom: 0;
  color: #fff;
  margin-top: 35px;
}
.blog-post-archive {
  padding: 120px 0;
}
.post-wrapper .post {
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e7e9ed;
}
.post-wrapper .post .feature-image {
  position: relative;
  overflow: hidden;
}
.post-wrapper .post .feature-image img {
  border-radius: 6px;
  width: 100%;
}
.post-wrapper .post .blog-content {
  padding-top: 20px;
}
.post-wrapper .post .post-meta-tags {
  margin-bottom: 3px;
}
.post-wrapper .post .post-meta-tags a {
  font-size: 14px;
  color: #1ca30d;
}
.post-wrapper .post .blog-content .entry-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.post-wrapper .post .blog-content .entry-title a {
  color: #1c1e21;
  line-height: 1.4em;
}
.post-wrapper .post .blog-content p {
  margin-bottom: 19px;
}
.post-wrapper .post .post-meta {
  margin-bottom: 24px;
}
.post-meta {
  margin: 0;
  padding: 5px 0 0;
  line-height: 1;
}
.post-meta li.author {
  margin-left: 5px;
}
.post-meta li:not(:last-child) {
  margin-right: 10px;
}
.post-meta li.author .avatar {
  height: 36px;
  width: 36px;
  margin-right: 12px;
}
.post-meta li.author a {
  color: #1c1e21;
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
}
.post-wrapper .post .read-more {
  font-size: 15px;
  font-weight: 500;
  color: #4f5158;
}
.post-nav .page-numbers {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 36px;
  border: 2px solid #e3e5ee;
  text-align: center;
  color: #0c1636;
  border-radius: 4px;
  margin-right: 5px;
  font-size: 15px;
  font-weight: 500;
}
.post-nav .page-numbers.current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.page-content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5em;
}
.page-content h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5em;
}
.page-content h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
}
.page-content h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
}
.page-content h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
}
.error_page {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 70px;
}
.pr {
  position: relative;
  z-index: 2;
}
.error_page .error-page-content {
  position: relative;
  z-index: 2;
  max-width: 990px;
  margin: 0 auto;
  padding: 0 15px;
}
.error_page .error-page-content .error-image {
  margin-bottom: 32px;
}
.error_page .error-info {
  max-width: 600px;
  margin: 0 auto;
}
.error_page .error-page-content .error-title {
  font-size: 100px;
  margin-bottom: 3px;
  line-height: 1.1;
  color: #000;
  font-weight: 600;
}
.error_page .error-page-content p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
}
body.error404 header {
  background: #000;
}
.award-section a {
  color: #000;
}
@keyframes translateFromLeft {
  from {
    transform: translateX(-40%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes translateFromRight {
  from {
    transform: translateX(40%);
  }

  to {
    transform: translateX(0);
  }
}
@keyframes translateFromLeft {
  from {
    transform: translateX(-40%);
  }

  to {
    transform: translateX(0);
  }
}
.fade {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}
#main_content {
  overflow-x: clip;
}
@media (min-width: 1170px) {
  .circle::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 91px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    transform: translate(-50%, -50%);
    opacity: 0;
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.16);
  }
  .circle::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 34px;
    height: 34px;
    top: 50%;
    left: 91px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    transform: translate(-50%, -50%);
    opacity: 0;
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.16);
  }
  .devpro-wrap .circle::before {
    right: 52px;
    left: initial;
  }
}
@media only screen and (min-width: 991) and (max-width: 1620px) {
  .hb-desc h1 {
    font-size: 60px;
  }
}

@media (min-width: 1170px) {
  .circle::before {
    left: 84px;
  }
  .circle::after {
    left: 84px;
  }
  .dev-process .step-number {
    font-size: 20px;
    min-width: 25px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .sidebar {
    padding-left: 70px;
  }
}
@media (max-width: 1024px) {
  .page-header {
    min-height: 350px !important;
  }
}
@media (max-width: 1170px) {
  .dev-process .container-box {
    position: static;
    width: fit-content;
    display: contents;
  }
  .dev-process .parent-block {
    flex-direction: column;
  }
  .dev-process .step-detail {
    order: 2;
    margin-bottom: 47px;
  }
  .dev-process .container-box:hover .circle::after,
  .dev-process .container-box:hover .circle::before {
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .site-header:not(.mobile-header) .main-nav-container {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .site-header .tt-hamburger {
    display: none;
  }
  .close-menu {
    display: none;
  }
}
@media screen and (max-width: 993px) {
  .mobile-header .tt-hamburger {
    display: block;
  }
  header.mobile-header {
    position: absolute;
  }
  header.mobile-header.showed {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  }
  header.mobile-header .container {
    position: relative;
  }
  .site-header.showed .tt-hamburger .bar {
    background: #1c1e21;
  }
  .site-header .tt-hamburger .bar:not(:last-child) {
    margin-bottom: 6px;
  }
  .mobile-header .main-nav .close-menu svg {
    max-width: 22px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
  }
  @-webkit-keyframes stickySlideDown {
    from {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    to {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @keyframes stickySlideDown {
    from {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
    }
    to {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .sub-menu {
    position: relative !important;
    display: none !important;
    top: 0 !important;
    min-width: 100% !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    border-top: 0 !important;
    border-radius: 0 !important;
  }

  header .navbar-nav .sub-menu a {
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 10px 0px !important;
    line-height: 1;
    border: 0;
    background: transparent !important;
    color: #000 !important;
    font-weight: 400;
    text-align: left;
    border-top: 1px solid #edeef1 !important;
  }

  .sub-open .sub-menu {
    display: block !important;
    opacity: 1 !important;
    -ms-transform: rotateX(0) !important;
    -webkit-transform: rotateX(0) !important;
    transform: rotateX(0) !important;
  }
  .site-header .nav-right {
    margin: 20px 0 0 25px;
  }
  .site-header .nav-right .btn-primary {
    padding: 11px 15px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    border: 2px solid #000;
    line-height: 1.2;
    font-size: 15px;
  }
  .site-header .nav-right .btn-primary:hover {
    background: #fff;
    color: #000;
    border-color: #000;
  }
}
@media screen and (max-width: 1200px) {
  .tt-blog-grid.style-four .blog-content {
    max-width: 285px;
  }
}
@media screen and (max-width: 992px) {
  .site-header .main-nav-container .menu-wrapper {
    display: block;
  }
  .site-header .main-nav-container .menu-wrapper :first-child {
    margin-bottom: 0px;
  }
  header .navbar-nav .menu-item.menu-item-has-children::after {
    right: 10px;
    top: 15px;
    cursor: pointer;
    border-color: #000;
    width: 10px;
    height: 10px;
    transition: 0.5s all;
    z-index: -1;
  }
  header .navbar-nav {
    flex-direction: column;
  }
  .mobile-header .main-nav .close-menu {
    display: block;
  }
  header.mobile-header .container {
    position: relative;
    max-width: 95%;
  }
  .hb-desc h1 {
    font-size: 60px;
  }
  .hb-desc br {
    display: none;
  }
  .hb-desc h2 {
    font-size: 32px;
  }
  .hb-desc p {
    font-size: 18px;
  }
  .abt-title h2 span {
    font-size: 42px;
  }
  .abt-title h2 {
    font-size: 32px;
  }
  .abt-title br {
    display: none;
  }
  .hb-desc .row {
    padding: 0 20px;
  }
  .trust-comp .com-logo {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .blog-grid-three {
    padding: 0;
  }
  .group .grop-title h2,
  .trust-title h2,
  .award-title h2,
  .service-title h2,
  .section-heading.style-two h2,
  .cta h2,
  .appointment-content h2,
  .dev-title h2,
  .abt-title h2 span {
    font-size: 32px;
  }
  .appointment-content {
    padding-right: 0px;
  }
  .appointment-content h3 {
    font-size: 32px;
  }
  .cta p {
    font-size: 20px;
  }
  .appointment-content {
    padding-bottom: 30px;
  }
  .group .grop-title p br {
    display: none;
  }
  .tt-blog-grid.style-four .blog-content {
    max-width: initial;
  }
  .group .row + .row,
  .award-section .row + .row {
    row-gap: 50px;
  }
  .single-post-header-bg {
    height: auto;
    padding: 120px 0 70px;
  }
  .single-post-header-bg .single-post-title {
    font-size: 32px;
  }
  .blog-single {
    padding: 80px 0 50px;
  }
  .blog-single h2 {
    font-size: 22px;
  }
  .blog-single h3 {
    font-size: 20px;
  }
  .blog-single h4 {
    font-size: 18px;
  }
  .blog-single h5 {
    font-size: 16px;
  }
  .sidebar {
    margin-top: 70px;
  }
  .blog-single-footer .taglist li {
    margin-bottom: 10px;
  }
  .page-header .page-header_title {
    font-size: 32px;
  }
  .blog-post-archive {
    padding: 80px 0 30px;
  }
  .error_page .error-page-content .error-title {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  .hb-desc h1 {
    font-size: 34px;
    line-height: 1.1em;
  }
  .hb-desc p {
    padding: 0 20px;
  }
  .hb-btns {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hb-desc {
    top: 23%;
  }
  .group .grop-title h2,
  .trust-title h2,
  .award-title h2,
  .service-title h2,
  .section-heading.style-two h2,
  .cta h2,
  .appointment-content h2,
  .dev-title h2,
  .abt-title h2 span {
    font-size: 24px;
    line-height: 1.3em;
  }
  .abt-title h2 {
    font-size: 24px;
  }
  .abt-desc p {
    font-size: 18px;
    line-height: 32px;
  }
  .home-abt .row {
    row-gap: 30px;
  }
  .group-box .web-logo img {
    padding-top: 20px;
  }
  .dev-process {
    padding-top: 0;
    padding: 0 16px;
  }
  .tt-blog-grid .feature-image.latest-post img {
    width: 350px;
    object-fit: fill;
  }
  .f-bottom .row {
    row-gap: 20px;
  }
  .f-social ul {
    justify-content: start;
  }
  .soc-title {
    margin-top: 20px;
  }
  .single-post-header-bg {
    padding: 120px 0 70px;
  }
  .single-post-header {
    margin-top: 50px;
  }
  .single-post-header-bg .single-post-title {
    font-size: 22px;
  }
  .post-next:before {
    content: none;
  }
  .post-wrapper .post .blog-content .entry-title {
    font-size: 18px;
    line-height: 30px;
  }
  .page-header {
    height: auto !important;
    padding: 120px 0;
  }
  .page-content h2 {
    font-size: 24px;
  }
  .page-content h3 {
    font-size: 22px;
  }
  .page-content h4 {
    font-size: 20px;
  }
  .page-content h5 {
    font-size: 18px;
  }
  .page-content h6 {
    font-size: 26px;
  }
  .error_page .error-page-content .error-title {
    font-size: 50px;
  }
  .error-image img {
    width: 100%;
  }
  .group-box-content {
    padding-top: 12px;
  }
  .tt-blog-grid.style-three .entry-title,
  .tt-blog-grid .entry-title {
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .mobile-header .main-nav-container {
    max-width: 100%;
  }
  .tt-blog-grid.style-four {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tt-blog-grid.style-four .blog-content {
    padding: 25px 30px;
  }
  .tt-blog-grid.style-four .feature-image {
    width: 100%;
    margin-bottom: 10px;
  }
  .tt-blog-grid.style-four .blog-content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .single-post-navigation {
    padding: 0 15px;
  }
  .post-meta li:not(:last-child) {
    margin-bottom: 15px;
  }
  .error_page {
    height: 60vh;
  }
}


