/*-----------------------------------------------------------------------------------
    Theme Name: Graphics Physician
    Theme URI: http://graphicsphysician.com
    Description: This is Version College web site. 
    Author: SA Bappy
    Author URI: http://sabappy.com
    License: GNU General Public License version 3.0
    License URI: http://www.gnu.org/licenses/gpl-3.0.html
    Version: 1.0

-----------------------------------------------------------------------------------

	1. Typography
	2. Header Area 
	3. Iteam Area
	4. Footer Area

-----------------------------------------------------------------------------------*/
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
        url('fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2'),
        url('fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
        url('fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff2') format('woff2'),
        url('fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/*----------------------------------
    1. TYPOGRAPHY
---------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
body {
    font-family: 'Roboto';
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #000000;
    background: #FFFFFF;
}
a {
    text-decoration: none;
    display: inline-block;
}
a:hover {
    text-decoration: none;
}
button {
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
            appearance: none;
}
input {
    border: none;
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
img {
    border: none;
    max-width: 100%
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
button:focus {
    border: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
input:focus {
    border: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.text-center {
    text-align: center;
}
.container {
    width: 100%;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--main-color) #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 30px;
    border: 3px solid #ffffff;
  }
/* Typography  ------------------*/
:root {
    --main-color: #FF642F;
    --yellow-color: #F89344;
    --heading-color: #272b3a;
    --text-hover-color: #818187;
    --gray-color: #f5f5f7;
    --text-color: #545454;
    --white-color: white;
    --bg-one-color: #393A3A;
    --bg-two-color: #575959;
    --bg-three-color: #F4F4F4;
    --blue-color: #419ed7;
}
.sec-m {
    margin: 120px 0;
}
.sec-p {
    padding: 120px 0;
}
.heading {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    color: var(--heading-color);
}
.heading span {
    font-size: 16px;
    font-weight: 500;
    color: #121217;
    display: block;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
}
.heading span::before,
.heading span::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 85px;
    height: 1px;
    background: #d6dfe1;
}
.heading span::before {
    left: -100px;
}
.heading span::after {
    right: -100px;
}
/* button  ----------------- */
.default-btn {
    position: relative;
    overflow: hidden;
    z-index: 2;
    min-width: 160px;
    padding: 14px 25px;
    border-radius: 3px;
    background-color: var(--main-color);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #fff;
    font-weight: 500;
    text-align: center;
}
.default-btn:hover {
    color: var(--heading-color);
}
.default-btn::before {
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 0px;
    height: 0px;
    background: var(--white-color);
    border-radius: 100%;
    z-index: -1;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    -webkit-transition: width 0.5s, height 0.5s;
    -o-transition: width 0.5s, height 0.5s;
    transition: width 0.5s, height 0.5s;
}
.default-btn:hover::before {
    width: 50px;
    height: 50px;
}
.bg-yellow {
    background: var(--yellow-color);
}
.bg-primary {
    background: var(--main-color);
}
.default-btn.arrow {
    position: relative;
    padding-right: 63px;
}
.default-btn.arrow i {
    font-size: 34px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 33px;
    right: 20px;
}
/*  Image Popup Gallery ---------- */
.image-popup-gallery {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.popup-img-wrp {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    max-height: 640px;
    height: 100%;
    margin: auto;
}
.img-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    line-height: 0;
    font-weight: 400;
    background: #c40101;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFF;
    border-radius: 3px;
}
.img-popup-close:hover {
    background: red;
}
.popup-imge {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #cccccc;
}
.popup-imge img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}
/*----------------------------------
    1. HEADER AREA START
---------------------------------- */
.main-header.fixed {
    background: var(--white-color);
    -webkit-box-shadow: 0 0 15px #00000012;
            box-shadow: 0 0 15px #00000012;
}
.main-header.fixed .header-top {
    padding: 15px 0;
}
.main-header {
    position: fixed;
    width: 100%;
    z-index: 999;
}
.header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 0;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}
.logo a img {
    width: 250px;
}
/* Menu  */
.main-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
.main-menu nav ul li {
    position: relative;
}
.main-menu nav ul li.menu-item-has-children {
    padding-right: 15px;
}
.menu-item-has-children::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 5px;
    height: 5px;
    border-left: 2px solid var(--heading-color);
    border-bottom: 2px solid var(--heading-color);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.main-menu nav ul li.menu-item-has-children:hover::before {
    border-color: var(--main-color);
}
.main-menu nav ul li a {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    position: relative;
}
.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--main-color);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.main-menu nav ul li a:hover::after, .main-menu nav ul li.current-menu-item > a::after {
    width: 100%;
}
.main-menu nav ul li a:hover, .main-menu nav ul li.current-menu-item > a {
    color: var(--main-color);
}
/* Drop Down Menu  */
.main-menu nav ul ul {
    display: block;
    position: absolute;
    top: 0;
    left: -15px;
    width: 250px;
    background: var(--white-color);
    padding: 10px 15px;
    border-radius: 3px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
}
.main-menu nav ul ul li {
    padding: 3px 0;
}
.main-menu nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.main-menu nav ul ul li a::after {
    display: none;
}
.main-menu nav ul ul li a:hover {
    color: var(--text-hover-color);
}
/* Mobil bar ---------- */
.mobail-bars {
    position: relative;
    width: 55px;
    height: 55px;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    overflow: hidden;
    -ms-grid-column-align: end;
        justify-self: end;
    z-index: 9999;
}
/*Single Bar */
.mobail-bars span {
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--main-color);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-radius: 4px;
}
.mobail-bars span:nth-child(1) {
    -webkit-transform: translateY(-13px);
        -ms-transform: translateY(-13px);
            transform: translateY(-13px);
    width: 25px;
    left: 8px;
}
.mobail-bars span:nth-child(2) {
    -webkit-transform: translateY(13px);
        -ms-transform: translateY(13px);
            transform: translateY(13px);
    width: 15px;
    left: 8px;
}
/*when click bar */
.mobail-bars.active span:nth-child(1) {
    -webkit-transform: translateY(0px) rotate(45deg);
        -ms-transform: translateY(0px) rotate(45deg);
            transform: translateY(0px) rotate(45deg);
    width: 40px;
}
.mobail-bars.active span:nth-child(2) {
    -webkit-transform: translateY(0px) rotate(-45deg);
        -ms-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotate(-45deg);
    width: 40px;
}
.mobail-bars.active span:nth-child(3) {
    -webkit-transform: translateX(60px);
        -ms-transform: translateX(60px);
            transform: translateX(60px);
}
/* Banner Section --------------------- */
.banner-section {
    background: url('images/headerBg.png') no-repeat, url('images/lineBg.png') no-repeat;
    background-size: 60%, 9%;
    background-position: top left, right 0 top 35%;
    padding-top: 88px;
    padding-bottom: 50px;
}
.banner-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 440px 50px 1fr;
    grid-template-columns: 440px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    padding-top: 100px;
}
/* left  */
.banner-left {
    max-width: 440px;
    width: 100%;
}
.banner-left h1 {
    font-size: 38px;
    line-height: 44px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--heading-color);
}
.banner-left p {
    color: var(--text-color);
}
.banner-left p strong {
    color: var(--yellow-color);
}
.banner-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}
/* right   */
.banner-right {
/*    background: url('images/imageBg.png') no-repeat;*/
    background-size: contain;
    background-position: bottom right;
}
.banner-right img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    max-width: 710px;
    width: 100%;
    height: 580px;
}
/* banner social icon  */
.banner-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 100px;
}
.banner-social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}
.banner-social ul li a i {
    font-size: 18px;
    color: #919197;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.banner-social ul li a i:hover {
    color: var(--main-color);
}
.banner-social ul p {
    padding-right: 25px;
    position: relative;
    color: var(--text-color);
}
.banner-social ul p::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 1px;
    background: var(--main-color);
}
.mouse-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
}
.mouse-scroll p {
    color: var(--text-color);
}
.mouse-icon {
    width: 20px;
    height: 30px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    position: relative;
}
.mouse-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    height: 4px;
    background: var(--main-color);
    -webkit-animation: scroll 3s ease-out infinite forwards;
            animation: scroll 3s ease-out infinite forwards;
}
@-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0);
    }
}
@keyframes scroll {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}
/* free trail btn  */
.mgs-fix-area {
    position: fixed;
    bottom: 40px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 99;
}
.mgs-fix-area .mgs {
    width: 40px;
}
.mgs-fix-area .mgs img {
    height: 100%;
    width: 100%;
    display: block;
    transition: .3s;
}
.mgs-fix-area .mgs img:hover {
    transform: scale(1.1);
}
.free-btn {
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 125px;
}
/* trail form  */
.free-trail-area {
    position: fixed;
    z-index: 9999;
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.free-trail .container {
    max-width: 600px;
}
.free-trail .single-input textarea {
    height: auto;
}
.free-trail form {
    position: relative;
    background: #FFF;
    padding: 50px;
    border-radius: 3px;
    box-shadow: 0 0 15px #646464;
}
.free-trail .question-wrap {
    margin-top: 0;
}
.free-trail form .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    font-weight: normal;
    cursor: pointer;
    color: #FFF;
}
.free-trail form .close:hover {
    background: red;
}








/* About Section ------------ */
.about-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
}
/* about left  */
.about-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
}
.about-title {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    -webkit-writing-mode: tb-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: tb-rl;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    position: relative;
}
.about-title::before,
.about-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 84px;
    background: #d6dfe1;
}
.about-title::before {
    top: 120%;
}
.about-title::after {
    bottom: 120%;
}
.about-img {
    overflow: hidden;
    border-radius: 150px 200px 300px 120px;
    max-width: 550px;
    min-width: 550px;
    width: 100%;
    height: 550px;
}
.about-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
/* about right  */
.about-right {
    max-width: 520px;
    width: 100%;
}
.about-right h2 {
    font-size: 28px;
    margin-bottom: 22px;
    text-align: left;
}
.about-right p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 40px;
}
.about-inner .container {
    max-width: 960px;
}
/* Top Service Section ------------ */
.top-service-wrp {
    margin-top: 80px;
}
.top-single-service {
    display: grid;
    grid-template-columns: 640px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    overflow: hidden;
}
.top-single-service:nth-child(odd) {
    grid-template-columns: 1fr 640px;
}
.top-single-service:nth-child(odd) .top-service-text {
    order: -1;
}
.top-service-text {
    align-self: center;
}
.img-comp-container {
    position: relative;
    height: 480px;
    max-width: 640px;
    border-radius: 150px 200px 300px 120px;
    overflow: hidden;
    margin-bottom: 40px;
}
.top-single-service:nth-child(even) .img-comp-container {
    border-radius: 200px 150px 120px 300px;
}
.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: all-scroll;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #FFF;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 7px #d4d4d4;
}
.img-comp-responsive {
    height: 0;
    width: 100%;
}
.img-comp-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden
}
.img-comp-img img {
    /* display: block;
    vertical-align: middle;
    width: auto; */
    height: 480px;
    max-width: max-content;
}
.img-comp-overlay {
    width: 50%;
    border-right: 1px solid #000;
}
/* rigth  */
.top-service-text h2 {
    font-size: 28px;
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 22px;
}
.top-service-text p {
    margin-bottom: 20px;
}
.top-service-text p,
.top-service-text ul li, 
.top-service-text ul li a {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
}
.top-service-text ul {
    margin-top: 20px;
    padding-left: 35px;
}
.top-service-text ul li {
    list-style: disc;
}
.top-service-text ul li a {
    color: var(--main-color);
}
.top-service-text ul li a:hover {
    text-decoration: underline;
}
.top-service-text .default-btn {
    margin-top: 40px;
}
/* Latest Work Section  ------------------- */
.latest-work-sec {
    background: url('images/work/workDotsBg.png') no-repeat;
    background-size: 9%;
    background-position: left 0 bottom 20px;
    padding-bottom: 500px;
}
.bt-gray {
    background: var(--gray-color);
    padding-top: 100px;
}
.latest-work-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
    margin-top: 80px;
}
.single-work {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 50px);
            flex: 1 1 calc(50% - 50px);
    text-align: center;
    height: 385px;
    position: relative;
    -webkit-box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 40px 50px -20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
}
.single-work::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,0.5);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.single-work:hover::after {
    left: 0;
}
.single-work > div {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}
.single-work:hover > div {
    top: 50%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.single-work h3 {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.latest-work-wrp .default-btn {
    margin: auto;
    margin-top: 20px;
}
.work-image {
    text-align: center;
    margin-top: -26%;
    background: url('images/work/workBg.png') no-repeat;
    background-size: contain;
    background-position: center;
    padding-top: 30px;
}
.work-image .container {
    position: relative;
}
.work-image .work-arrwo {
    position: absolute;
    right: 160px;
    bottom: 60px;
    width: 150px;
    -webkit-filter: blur(4px);
            filter: blur(4px);
}
/*payment method section */
.payment-method-sec h2 {
    margin-bottom: 50px;
}
.single-payment {
    margin: 0 10px;
}
.single-payment img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


/* Counter Section -------------------- */
.counter-section {
    background: var(--gray-color);
    margin-top: 150px;
    padding-top: 150px;
}
.counter-wrap {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}
.single-counter {
    text-align: center;
}
.single-counter h2 {
    font-size: 52px;
    margin-bottom: 20px;
}
.single-counter p {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
}
/* Our Prices Section  ------------- */
.our-price-wra {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 50px;
}
.our-prices-sec .container {
    max-width: 990px;
}
.single-price {
    max-width: 185px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.price-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px auto;
    background: var(--white-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    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;
    border: 10px solid var(--main-color);
}
.price-icon img {
    width: 55%;
}
.single-price h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.single-price h4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
    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;
    gap: 10px;
}
.single-price h4 span {
    font-size: 50px;
    line-height: 50px;
    font-weight: 300;
    font-style: normal;
}
.single-price ul {
    margin-bottom: 40px;
}
.single-price ul li {
    color: var(--text-color);
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}
.single-price .default-btn {
    margin-top: auto;
}
/* Our Clients Logo Section --------- */
.our-team-section {
    position: relative;
    background: var(--gray-color);
    padding-top: 160px;
}
.our-team-section svg {
    position: absolute;
    top: 0;
}
.our-team-section .shape-fill {
    fill: #FFFFFF;
}
.our-team-wrap {
    margin-top: 80px;
}
.our-team-wrap .slick-list {
    margin: 0 -30px;
}
.single-team {
    text-align: center;
    margin: 0 30px;
}
.single-team .team-avatar {
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    width: 350px;
    height: 280px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}
.single-team .team-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.single-team h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}
.single-team p {
    font-size: 15px;
    color: var(--text-color);
}
.single-team ul {
    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;
    gap: 15px;
    margin-top: 20px;
}
.single-team ul p {
    padding-right: 25px;
    position: relative;
    color: var(--text-color);
}
.single-team ul p::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 15px;
    height: 1px;
    background: var(--main-color);
}
.single-team ul li button i {
    font-size: 15px;
    color: #919197;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.single-team ul li button i:hover {
    color: var(--main-color);
}
.arrow-dots .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    width: 100%;
}
.arrow-dots .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 100%;
}
.arrow-dots .slick-dots li.slick-active button {
    background: var(--blue-color);
}
/* Do you have a question Section  ----- */
.do-you-question-sec {
    background: var(--gray-color);
    padding-bottom: 80px;
}
/* Our Clients Logo Section  ---------- */
.our-clients-logo-sec {
    background: var(--gray-color);
}
.our-clients-log-wrp {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    padding: 50px;
    border: 1px solid #e1e1e1;
}
.our-clients-log-wrp h2 {
    position: absolute;
    font-size: 16px;
    font-weight: 500;
    top: -14px;
    left: 0;
    right: 0;
    margin: auto;
    background: #f5f5f7;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px;
}
.single-clients-logo {
    text-align: center;
}
.single-clients-logo img {
    opacity: 0.6;
    max-height: 60px;
    width: auto;
    height: auto;
}
/* Do you have a question Section  ---- */
.do-you-question-sec .container {
    max-width: 960px;
}
.question-wrap {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 25px 40px;
}
.single-input {
    -webkit-box-flex: calc(50% - 25px);
        -ms-flex: calc(50% - 25px);
            flex: calc(50% - 25px);
}
.question-wrap label {
    color: #717177;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.single-input > div {
    background: #FFF;
    padding: 0 10px;
    -webkit-box-shadow: 14px 14px 50px -20px rgba(0, 0, 0, 0.1);
            box-shadow: 14px 14px 50px -20px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    height: 55px;
    border-bottom: 1px solid #dce7e9;
    border-radius: 3px;
}
.single-input:hover div {
    border-color: var(--main-color);
}
.single-input > div i {
    font-size: 18px;
    color: var(--text-color);
}
.single-input > div input {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    width: 100%;
    background: transparent;
    padding: 15px 0;
}
.single-input > div select {
    width: 100%;
    border: none;
    outline: none;
    height: 100%;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}
.single-input.textarea {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
}
.single-input.textarea div {
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.single-input.textarea div i {
    padding: 18px 0 0 10px;
}
.single-input textarea {
    max-width: 870px;
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    width: 100%;
    background: transparent;
    padding: 15px 0;
    height: 150px;
}
.question-wrap button {
    width: 100%;
    padding: 18px 10px;
    font-size: 18px;
    border-radius: 3px;
}
/* Footer Section --------- */
.main-footer {
    padding-top: 270px;
    padding-bottom: 100px;
    background: var(--gray-color) url(images/footerBg.png) no-repeat;
    background-size: cover;
    background-position: top center;
}
.main-footer .container {
    max-width: 1500px;
}
.footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px;
}
.single-footer {
    flex: auto;
    max-width: 300px;
}
.single-footer img {
    width: 160px;
    display: block;
}
.single-footer h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--heading-color);
}
.single-footer p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}
.single-footer p a {
    color: #b5b5be;
    text-decoration: underline;
}
.single-footer p a:hover {
    text-decoration: none;
}
.footer-social-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-top: 22px;
}
.footer-social-nav li a {
    font-size: 25px;
    display: block;
    color: var(--text-color);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.footer-social-nav li a:hover {
    color: var(--main-color);
}
.footer-nav ul li a {
    color: #919197;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}
.footer-nav ul li a:hover {
    text-decoration: underline;
}
/* Inner Banner Section ------------ */
.inner-banner-sec {
    padding: 210px 0 322px 0;
    position: relative;
    z-index: 2;
    background: #d6dfe1 url("images/inner/innerBannerBg.jpg") no-repeat;
    background-size: cover;
}
.inner-banner-sec::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('images/inner/innerBg3.png') no-repeat;
    background-size: contain;
    z-index: -1;
    -webkit-filter: blur(3px);
            filter: blur(3px);
    bottom: 0;
    left: 100px;
}
.inner-banner {
    text-align: center;
}
.inner-banner h1 {
    font-size: 46px;
    line-height: 52px;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.inner-banner p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
}
/* Main Inner ------------ */
.main-inner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
}
.main-inner {
    padding: 30px;
    border: 1px solid #ededed;
    border-radius: 8px;
    margin-bottom: 100px;
}
.main-inner img {
    margin: 35px 0;
    display: block;
    width: 100%;
}
.main-inner .img-comp-container img {
    width: unset;
}
.main-inner .default-btn {
    margin-top: 25px;
}
.main-inner img:first-child {
    margin-top: 0;
}
.main-inner h2 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--heading-color);
}
.main-inner h3 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
    color: var(--heading-color);
}
.main-inner h4 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 500;
    color: var(--heading-color);
}
.main-inner h5 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
    color: var(--heading-color);
}
.main-inner h6 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
    color: var(--heading-color);
}
.main-inner p,
.main-inner a,
.main-inner p a,
.main-inner ul li,
.main-inner ul li a,
.main-inner ol li,
.main-inner ol li a {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
}
.main-inner p {
    margin-bottom: 15px;
}
.main-inner p a {
    text-decoration: underline;
}
.main-inner p a:hover {
    text-decoration: none;
}
.main-inner ul li {
    list-style: disc;
    margin: 5px 0;
}
.main-inner ol li {
    margin: 5px 0;
}
.main-inner ul,
.main-inner ol {
    margin-bottom: 20px;
    margin-left: 30px;
}
.main-inner ul li a,
.main-inner ol li a {
    text-decoration: underline;
}
.main-inner ul li a:hover,
.main-inner ol li a:hover {
    text-decoration: none;
} 
.main-inner .slider-container {
    margin-bottom: 40px;
}
.main-inner .slider-container img {
    margin-bottom: 0;
}

/* Side bar  -------------------*/
.side-bar {
    max-width: 340px;
    width: 100%;
}
.single-side {
    margin-bottom: 50px;
    position: sticky;
    top: 170px;
    left: 0;
}
.single-side p,
.single-side a {
    color: var(--text-color);
}
.single-side p a {
    text-decoration: underline;
}
.single-side p a:hover {
    text-decoration: none;
}
.single-side ul li a:hover {
    text-decoration: underline;
}
.side-bar .question-wrap {
    margin-top: 0;
}
.side-bar .single-input {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
}
.side-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.side-title span {
    background: #FFF;
    padding: 0 15px;
}
.side-title::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background: var(--text-color);
    z-index: -1;
}
/* Inner Service Page ------------- */
.inner-service-sec {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}
.inner-service-sec::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('images/inner/ServiceBg.png') no-repeat;
    background-position: left top;
    background-size: 110%;
}
.inner-service-sec .container {
    max-width: 1080px;
}
.inner-service-wrp {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 380px 70px 1fr;
    grid-template-columns: 380px 1fr;
    gap: 70px;
}
/* inner service left  */
.in-service-sticky {
    position: sticky;
    top: 140px;
}
.in-service-left h2 {
    text-align: left;
    margin-bottom: 25px;
}
.in-service-left h2 span {
    margin-left: 100px;
    margin-bottom: 10px;
}
.in-service-left p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 40px;
}
.main-inner .default-btn {
    color: var(--white-color);
}
/* inner service right  */
.in-service-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
}
.in-single-service {
    -webkit-box-flex: calc(50% - 50px);
        -ms-flex: calc(50% - 50px);
            flex: calc(50% - 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.in-single-service .icon {
    min-width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 5px solid var(--main-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.in-single-service .icon i {
    font-size: 30px;
    color: var(--white-color);
}
.in-single-service .icon img {
    width: 35px;
    height: auto;
}
.in-single-service .con a {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--heading-color);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.in-single-service .con a:hover {
    color: var(--main-color);
}
.in-single-service .con p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
}
/* two service area  */
.two-single-ser {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}
.two-single-ser:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.two-single-ser > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.two-single-ser .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    max-height: 500px;
    z-index: 2;
}
.two-single-ser .left::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 80%;
    height: 80%;
    background: var(--main-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
}
.two-single-ser .left img {
    max-height: 500px;
}
.two-single-ser .right h2 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
    color: var(--heading-color);
}
.two-single-ser .right p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
}
.two-single-ser .right .default-btn {
    margin-top: 30px;
}
.banner-social.contact-in,
.banner-social.contact-in ul p {
    margin: 0;
}
/* Contact page --------- */
.contact-wrap {
    margin-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 180px;
}
.contact-left {
    min-width: 340px;
}
.contact-left h2 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
    color: var(--heading-color);
}
.contact-left p,
.contact-left a {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-color);
}
.contact-left p {
    margin-bottom: 8px;
}
.contact-right {
    width: 100%;
    height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url('images/inner/ServiceBg.png') no-repeat;
    padding: 50px;
    background-size: contain;
    background-position: center;
}
.contact-right iframe {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
/* Portfolio Page ----------------------- */
.latest-work-sec.portfolio {
    margin-bottom: 100px;
    padding-top: 0;
}
.work-image.porit {
    margin-bottom: 100px;
}
.portfolio-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.portfolio-nav li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
}
.portfolio-nav li.active,
.portfolio-nav li:hover {
    color: var(--main-color);
}
.port-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-top: 15px;
}
.port-link a {
    background: var(--main-color);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 100%;
    font-size: 23px;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.port-link a:hover {
    background: transparent;
    border-color: var(--main-color);
}
.single-work img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
/* 404  Page -----------*/
.four-0 {
    text-align: center;
    margin-bottom: 150px;
}
.four-0 i {
    font-size: 55px;
    color: var(--text-color);
    margin-bottom: 30px;
}
.four-0 h2 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 12px;
}
.four-0 p {    
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 30px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.gallery figure.gallery-item {
    margin: 0;
}
.gallery a {
    display: block;
}
.gallery a img {
    width: 100%;
    height: auto;
    margin: 0;
}
/* New Before After Image Slider Section -------------------------------------------- */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 480px;
  border-radius: 0.7rem;
  overflow: hidden;
  border-radius: 150px 200px 300px 120px;
}
.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Hide the After text initially */
.after-image .after-text {
  visibility: visible;
  z-index: 3;
}
.after-image {
  clip-path: inset(0 50% 0 0);
}
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}
.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 1;
}
.pulse-container {
  position: relative;
  display: inline-block;
}
.pulse-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px; /* Larger than the SVG */
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff; /* Color of the pulse */
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
.slider-line svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
}
/* Prevent text/image selection while dragging */
.slider-container,
.before-image img,
.after-image img {
  user-select: none; /* Disable selection on most browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
}
.slider-handle,
.slider-line {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.main-inner .slider-container {
    border-radius: 5px;
}